summaryrefslogtreecommitdiff
path: root/sw/inc/unoredline.hxx
blob: 30e03ddaec71a2c25db91df91e63fe11e823bc27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/* -*- 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_UNOREDLINE_HXX
#define INCLUDED_SW_INC_UNOREDLINE_HXX

#include <unotext.hxx>

class SwRangeRedline;

/**
 * SwXRedlineText provides an XText which may be used to write
 * directly into a redline node. It got implemented to enable XML
 * import of redlines and should not be used directly via the API.
 */
class SwXRedlineText :
    public SwXText,
    public cppu::OWeakObject,
    public css::container::XEnumerationAccess
{
    SwNodeIndex aNodeIndex;
    virtual const SwStartNode *GetStartNode() const override;

public:
    SwXRedlineText(SwDoc* pDoc, SwNodeIndex aNodeIndex);

    virtual     css::uno::Any SAL_CALL queryInterface( const css::uno::Type& aType ) throw(css::uno::RuntimeException, std::exception) override;
    virtual void SAL_CALL acquire(  ) throw() override {OWeakObject::acquire();}
    virtual void SAL_CALL release(  ) throw() override {OWeakObject::release();}

    virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes(  ) throw(css::uno::RuntimeException, std::exception) override;
    virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId(  ) throw(css::uno::RuntimeException, std::exception) override;

    //XText
    virtual css::uno::Reference< css::text::XTextCursor >  SAL_CALL createTextCursor() throw( css::uno::RuntimeException, std::exception ) override;
    virtual css::uno::Reference< css::text::XTextCursor >  SAL_CALL createTextCursorByRange(const css::uno::Reference< css::text::XTextRange > & aTextPosition) throw( css::uno::RuntimeException, std::exception ) override;

    //XEnumerationAccess
    virtual css::uno::Reference< css::container::XEnumeration >  SAL_CALL createEnumeration() throw( css::uno::RuntimeException, std::exception ) override;

    //XElementAccess (via XEnumerationAccess)
    virtual css::uno::Type SAL_CALL getElementType(  ) throw(css::uno::RuntimeException, std::exception) override;
    virtual sal_Bool SAL_CALL hasElements(  ) throw(css::uno::RuntimeException, std::exception) override;
};

typedef
cppu::WeakImplHelper
<
    css::container::XEnumerationAccess
>
SwXRedlineBaseClass;
class SwXRedline :
        public SwXRedlineBaseClass,
        public SwXText,
        public SwClient
{
    SwDoc*      pDoc;
    SwRangeRedline*  pRedline;
public:
    SwXRedline(SwRangeRedline& rRedline, SwDoc& rDoc);
    virtual ~SwXRedline();


    virtual     css::uno::Any SAL_CALL queryInterface( const css::uno::Type& aType ) throw(css::uno::RuntimeException, std::exception) override;
    virtual void SAL_CALL acquire(  ) throw() override {OWeakObject::acquire();}
    virtual void SAL_CALL release(  ) throw() override {OWeakObject::release();}

    virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes(  ) throw(css::uno::RuntimeException, std::exception) override;
    virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId(  ) throw(css::uno::RuntimeException, std::exception) override;

    //XText
    virtual css::uno::Reference< css::text::XTextCursor >  SAL_CALL createTextCursor() throw( css::uno::RuntimeException, std::exception ) override;
    virtual css::uno::Reference< css::text::XTextCursor >  SAL_CALL createTextCursorByRange(const css::uno::Reference< css::text::XTextRange > & aTextPosition) throw( css::uno::RuntimeException, std::exception ) override;

    //XPropertySet
    virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo(  ) throw(css::uno::RuntimeException, std::exception) override;
    virtual void SAL_CALL setPropertyValue( const OUString& aPropertyName, const css::uno::Any& aValue ) throw(css::beans::UnknownPropertyException, css::beans::PropertyVetoException, css::lang::IllegalArgumentException, css::lang::WrappedTargetException, css::uno::RuntimeException, std::exception) override;
    virtual css::uno::Any SAL_CALL getPropertyValue( const OUString& PropertyName ) throw(css::beans::UnknownPropertyException, css::lang::WrappedTargetException, css::uno::RuntimeException, std::exception) override;
    virtual void SAL_CALL addPropertyChangeListener( const OUString& aPropertyName, const css::uno::Reference< css::beans::XPropertyChangeListener >& xListener ) throw(css::beans::UnknownPropertyException, css::lang::WrappedTargetException, css::uno::RuntimeException, std::exception) override;
    virtual void SAL_CALL removePropertyChangeListener( const OUString& aPropertyName, const css::uno::Reference< css::beans::XPropertyChangeListener >& aListener ) throw(css::beans::UnknownPropertyException, css::lang::WrappedTargetException, css::uno::RuntimeException, std::exception) override;
    virtual void SAL_CALL addVetoableChangeListener( const OUString& PropertyName, const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener ) throw(css::beans::UnknownPropertyException, css::lang::WrappedTargetException, css::uno::RuntimeException, std::exception) override;
    virtual void SAL_CALL removeVetoableChangeListener( const OUString& PropertyName, const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener ) throw(css::beans::UnknownPropertyException, css::lang::WrappedTargetException, css::uno::RuntimeException, std::exception) override;

    //XEnumerationAccess
    virtual css::uno::Reference< css::container::XEnumeration >  SAL_CALL createEnumeration() throw( css::uno::RuntimeException, std::exception ) override;

    //XElementAccess
    virtual css::uno::Type SAL_CALL getElementType(  ) throw(css::uno::RuntimeException, std::exception) override;
    virtual sal_Bool SAL_CALL hasElements(  ) throw(css::uno::RuntimeException, std::exception) override;

    const SwRangeRedline*    GetRedline() const {return pRedline;}
protected:
    //SwClient
   virtual void Modify( const SfxPoolItem* pOld, const SfxPoolItem *pNew) override;
};
#endif

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
d' style='width: 0.1%;'/> -rw-r--r--source/ar/helpcontent2/source/text/swriter/01.po42
-rw-r--r--source/ar/helpcontent2/source/text/swriter/guide.po42
-rw-r--r--source/ar/officecfg/registry/data/org/openoffice/Office/UI.po98
-rw-r--r--source/ar/sc/messages.po266
-rw-r--r--source/ar/sd/messages.po362
-rw-r--r--source/ar/sfx2/messages.po510
-rw-r--r--source/ar/svtools/messages.po132
-rw-r--r--source/ar/svx/messages.po298
-rw-r--r--source/ar/sw/messages.po306
-rw-r--r--source/ar/vcl/messages.po126
-rw-r--r--source/as/chart2/messages.po144
-rw-r--r--source/as/cui/messages.po660
-rw-r--r--source/as/dictionaries/mn_MN.po23
-rw-r--r--source/as/extensions/messages.po4
-rw-r--r--source/as/extras/source/gallery/share.po11
-rw-r--r--source/as/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/as/sc/messages.po264
-rw-r--r--source/as/sd/messages.po360
-rw-r--r--source/as/sfx2/messages.po510
-rw-r--r--source/as/svtools/messages.po130
-rw-r--r--source/as/svx/messages.po296
-rw-r--r--source/as/sw/messages.po306
-rw-r--r--source/as/vcl/messages.po126
-rw-r--r--source/ast/chart2/messages.po144
-rw-r--r--source/ast/cui/messages.po660
-rw-r--r--source/ast/dictionaries/mn_MN.po23
-rw-r--r--source/ast/extensions/messages.po6
-rw-r--r--source/ast/extras/source/gallery/share.po11
-rw-r--r--source/ast/helpcontent2/source/text/sbasic/shared.po436
-rw-r--r--source/ast/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/ast/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/ast/helpcontent2/source/text/scalc/01.po552
-rw-r--r--source/ast/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/ast/helpcontent2/source/text/sdatabase.po293
-rw-r--r--source/ast/helpcontent2/source/text/sdraw/guide.po12
-rw-r--r--source/ast/helpcontent2/source/text/shared/00.po21
-rw-r--r--source/ast/helpcontent2/source/text/shared/01.po1121
-rw-r--r--source/ast/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/ast/helpcontent2/source/text/shared/explorer/database.po287
-rw-r--r--source/ast/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/ast/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/ast/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/ast/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/ast/helpcontent2/source/text/swriter/01.po50
-rw-r--r--source/ast/helpcontent2/source/text/swriter/guide.po50
-rw-r--r--source/ast/officecfg/registry/data/org/openoffice/Office/UI.po114
-rw-r--r--source/ast/sc/messages.po270
-rw-r--r--source/ast/sd/messages.po360
-rw-r--r--source/ast/sfx2/messages.po520
-rw-r--r--source/ast/svtools/messages.po132
-rw-r--r--source/ast/svx/messages.po306
-rw-r--r--source/ast/sw/messages.po310
-rw-r--r--source/ast/vcl/messages.po126
-rw-r--r--source/az/chart2/messages.po144
-rw-r--r--source/az/cui/messages.po661
-rw-r--r--source/az/dictionaries/mn_MN.po23
-rw-r--r--source/az/extensions/messages.po4
-rw-r--r--source/az/extras/source/gallery/share.po11
-rw-r--r--source/az/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/az/sc/messages.po264
-rw-r--r--source/az/sd/messages.po360
-rw-r--r--source/az/sfx2/messages.po510
-rw-r--r--source/az/svtools/messages.po130
-rw-r--r--source/az/svx/messages.po296
-rw-r--r--source/az/sw/messages.po306
-rw-r--r--source/az/vcl/messages.po126
-rw-r--r--source/be/chart2/messages.po144
-rw-r--r--source/be/cui/messages.po660
-rw-r--r--source/be/dictionaries/mn_MN.po23
-rw-r--r--source/be/extensions/messages.po4
-rw-r--r--source/be/extras/source/gallery/share.po11
-rw-r--r--source/be/officecfg/registry/data/org/openoffice/Office/UI.po98
-rw-r--r--source/be/sc/messages.po264
-rw-r--r--source/be/sd/messages.po360
-rw-r--r--source/be/sfx2/messages.po510
-rw-r--r--source/be/svtools/messages.po130
-rw-r--r--source/be/svx/messages.po296
-rw-r--r--source/be/sw/messages.po306
-rw-r--r--source/be/vcl/messages.po126
-rw-r--r--source/bg/chart2/messages.po144
-rw-r--r--source/bg/cui/messages.po674
-rw-r--r--source/bg/dictionaries/eo.po12
-rw-r--r--source/bg/dictionaries/mn_MN.po23
-rw-r--r--source/bg/extensions/messages.po6
-rw-r--r--source/bg/extras/source/gallery/share.po13
-rw-r--r--source/bg/helpcontent2/source/auxiliary.po10
-rw-r--r--source/bg/helpcontent2/source/text/sbasic/shared.po564
-rw-r--r--source/bg/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/bg/helpcontent2/source/text/scalc/00.po13
-rw-r--r--source/bg/helpcontent2/source/text/scalc/01.po984
-rw-r--r--source/bg/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--source/bg/helpcontent2/source/text/sdatabase.po283
-rw-r--r--source/bg/helpcontent2/source/text/sdraw.po6
-rw-r--r--source/bg/helpcontent2/source/text/sdraw/guide.po4
-rw-r--r--source/bg/helpcontent2/source/text/shared/00.po45
-rw-r--r--source/bg/helpcontent2/source/text/shared/01.po1509
-rw-r--r--source/bg/helpcontent2/source/text/shared/02.po18
-rw-r--r--source/bg/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/bg/helpcontent2/source/text/shared/guide.po16
-rw-r--r--source/bg/helpcontent2/source/text/shared/optionen.po10
-rw-r--r--source/bg/helpcontent2/source/text/simpress/guide.po16
-rw-r--r--source/bg/helpcontent2/source/text/swriter.po6
-rw-r--r--source/bg/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/bg/helpcontent2/source/text/swriter/01.po44
-rw-r--r--source/bg/helpcontent2/source/text/swriter/02.po82
-rw-r--r--source/bg/helpcontent2/source/text/swriter/04.po12
-rw-r--r--source/bg/helpcontent2/source/text/swriter/guide.po48
-rw-r--r--source/bg/officecfg/registry/data/org/openoffice/Office/UI.po104
-rw-r--r--source/bg/sc/messages.po270
-rw-r--r--source/bg/scp2/source/ooo.po8
-rw-r--r--source/bg/sd/messages.po366
-rw-r--r--source/bg/sfx2/messages.po596
-rw-r--r--source/bg/svtools/messages.po132
-rw-r--r--source/bg/svx/messages.po300
-rw-r--r--source/bg/sw/messages.po372
-rw-r--r--source/bg/vcl/messages.po133
-rw-r--r--source/bn-IN/chart2/messages.po144
-rw-r--r--source/bn-IN/cui/messages.po660
-rw-r--r--source/bn-IN/dictionaries/be_BY.po14
-rw-r--r--source/bn-IN/dictionaries/en/dialog/registry/data/org/openoffice/Office.po18
-rw-r--r--source/bn-IN/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po18
-rw-r--r--source/bn-IN/dictionaries/mn_MN.po23
-rw-r--r--source/bn-IN/dictionaries/pt_BR/dialog.po18
-rw-r--r--source/bn-IN/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po18
-rw-r--r--source/bn-IN/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po18
-rw-r--r--source/bn-IN/extensions/messages.po4
-rw-r--r--source/bn-IN/extras/source/gallery/share.po31
-rw-r--r--source/bn-IN/filter/source/config/fragments/types.po54
-rw-r--r--source/bn-IN/fpicker/messages.po53
-rw-r--r--source/bn-IN/helpcontent2/source/auxiliary.po38
-rw-r--r--source/bn-IN/helpcontent2/source/text/sbasic/shared.po436
-rw-r--r--source/bn-IN/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/bn-IN/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/bn-IN/helpcontent2/source/text/scalc/01.po552
-rw-r--r--source/bn-IN/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/bn-IN/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/00.po21
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/01.po1117
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/bn-IN/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/bn-IN/helpcontent2/source/text/swriter/01.po44
-rw-r--r--source/bn-IN/helpcontent2/source/text/swriter/guide.po44
-rw-r--r--source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/bn-IN/oox/messages.po14
-rw-r--r--source/bn-IN/sc/messages.po264
-rw-r--r--source/bn-IN/scp2/source/winexplorerext.po14
-rw-r--r--source/bn-IN/sd/messages.po360
-rw-r--r--source/bn-IN/sfx2/messages.po510
-rw-r--r--source/bn-IN/shell/messages.po24
-rw-r--r--source/bn-IN/svl/messages.po14
-rw-r--r--source/bn-IN/svtools/messages.po130
-rw-r--r--source/bn-IN/svx/messages.po296
-rw-r--r--source/bn-IN/sw/messages.po306
-rw-r--r--source/bn-IN/uui/messages.po21
-rw-r--r--source/bn-IN/vcl/messages.po126
-rw-r--r--source/bn/chart2/messages.po144
-rw-r--r--source/bn/cui/messages.po660
-rw-r--r--source/bn/dictionaries/mn_MN.po23
-rw-r--r--source/bn/extensions/messages.po4
-rw-r--r--source/bn/extras/source/gallery/share.po11
-rw-r--r--source/bn/helpcontent2/source/text/sbasic/shared.po436
-rw-r--r--source/bn/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/bn/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/bn/helpcontent2/source/text/scalc/01.po552
-rw-r--r--source/bn/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/bn/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/bn/helpcontent2/source/text/shared/00.po21
-rw-r--r--source/bn/helpcontent2/source/text/shared/01.po1117
-rw-r--r--source/bn/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/bn/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/bn/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/bn/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/bn/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/bn/helpcontent2/source/text/swriter/01.po44
-rw-r--r--source/bn/helpcontent2/source/text/swriter/guide.po44
-rw-r--r--source/bn/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/bn/sc/messages.po264
-rw-r--r--source/bn/sd/messages.po360
-rw-r--r--source/bn/sfx2/messages.po510
-rw-r--r--source/bn/svtools/messages.po130
-rw-r--r--source/bn/svx/messages.po296
-rw-r--r--source/bn/sw/messages.po306
-rw-r--r--source/bn/vcl/messages.po126
-rw-r--r--source/bo/chart2/messages.po144
-rw-r--r--source/bo/cui/messages.po662
-rw-r--r--source/bo/dictionaries/mn_MN.po23
-rw-r--r--source/bo/extensions/messages.po4
-rw-r--r--source/bo/extras/source/gallery/share.po11
-rw-r--r--source/bo/helpcontent2/source/text/sbasic/shared.po436
-rw-r--r--source/bo/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/bo/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/bo/helpcontent2/source/text/scalc/01.po550
-rw-r--r--source/bo/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/bo/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/bo/helpcontent2/source/text/shared/00.po21
-rw-r--r--source/bo/helpcontent2/source/text/shared/01.po1117
-rw-r--r--source/bo/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/bo/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/bo/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/bo/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/bo/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/bo/helpcontent2/source/text/swriter/01.po42
-rw-r--r--source/bo/helpcontent2/source/text/swriter/guide.po44
-rw-r--r--source/bo/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/bo/sc/messages.po264
-rw-r--r--source/bo/sd/messages.po360
-rw-r--r--source/bo/sfx2/messages.po510
-rw-r--r--source/bo/svtools/messages.po130
-rw-r--r--source/bo/svx/messages.po296
-rw-r--r--source/bo/sw/messages.po306
-rw-r--r--source/bo/vcl/messages.po126
-rw-r--r--source/br/chart2/messages.po144
-rw-r--r--source/br/cui/messages.po660
-rw-r--r--source/br/dictionaries/mn_MN.po23
-rw-r--r--source/br/extensions/messages.po4
-rw-r--r--source/br/extras/source/gallery/share.po11
-rw-r--r--source/br/officecfg/registry/data/org/openoffice/Office/UI.po98
-rw-r--r--source/br/sc/messages.po264
-rw-r--r--source/br/sd/messages.po360
-rw-r--r--source/br/sfx2/messages.po510
-rw-r--r--source/br/svtools/messages.po130
-rw-r--r--source/br/svx/messages.po296
-rw-r--r--source/br/sw/messages.po306
-rw-r--r--source/br/vcl/messages.po126
-rw-r--r--source/brx/chart2/messages.po144
-rw-r--r--source/brx/cui/messages.po661
-rw-r--r--source/brx/dictionaries/mn_MN.po23
-rw-r--r--source/brx/extensions/messages.po4
-rw-r--r--source/brx/extras/source/gallery/share.po11
-rw-r--r--source/brx/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/brx/sc/messages.po264
-rw-r--r--source/brx/sd/messages.po360
-rw-r--r--source/brx/sfx2/messages.po510
-rw-r--r--source/brx/svtools/messages.po130
-rw-r--r--source/brx/svx/messages.po296
-rw-r--r--source/brx/sw/messages.po306
-rw-r--r--source/brx/vcl/messages.po126
-rw-r--r--source/bs/chart2/messages.po144
-rw-r--r--source/bs/cui/messages.po660
-rw-r--r--source/bs/dictionaries/mn_MN.po23
-rw-r--r--source/bs/extensions/messages.po4
-rw-r--r--source/bs/extras/source/gallery/share.po11
-rw-r--r--source/bs/helpcontent2/source/text/sbasic/shared.po434
-rw-r--r--source/bs/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/bs/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/bs/helpcontent2/source/text/scalc/01.po546
-rw-r--r--source/bs/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/bs/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/bs/helpcontent2/source/text/shared/00.po21
-rw-r--r--source/bs/helpcontent2/source/text/shared/01.po1197
-rw-r--r--source/bs/helpcontent2/source/text/shared/02.po6
-rw-r--r--source/bs/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/bs/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/bs/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/bs/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/bs/helpcontent2/source/text/swriter/01.po44
-rw-r--r--source/bs/helpcontent2/source/text/swriter/guide.po42
-rw-r--r--source/bs/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/bs/sc/messages.po264
-rw-r--r--source/bs/sd/messages.po360
-rw-r--r--source/bs/sfx2/messages.po510
-rw-r--r--source/bs/svtools/messages.po130
-rw-r--r--source/bs/svx/messages.po296
-rw-r--r--source/bs/sw/messages.po306
-rw-r--r--source/bs/vcl/messages.po126
-rw-r--r--source/ca-valencia/chart2/messages.po144
-rw-r--r--source/ca-valencia/cui/messages.po660
-rw-r--r--source/ca-valencia/dictionaries/mn_MN.po23
-rw-r--r--source/ca-valencia/extensions/messages.po4
-rw-r--r--source/ca-valencia/extras/source/gallery/share.po13
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sbasic/shared.po436
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/ca-valencia/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/ca-valencia/helpcontent2/source/text/scalc/01.po554
-rw-r--r--source/ca-valencia/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/00.po23
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/01.po1237
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/optionen.po8
-rw-r--r--source/ca-valencia/helpcontent2/source/text/simpress/guide.po8
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter/01.po44
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter/guide.po44
-rw-r--r--source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po98
-rw-r--r--source/ca-valencia/sc/messages.po264
-rw-r--r--source/ca-valencia/sd/messages.po360
-rw-r--r--source/ca-valencia/sfx2/messages.po510
-rw-r--r--source/ca-valencia/svtools/messages.po130
-rw-r--r--source/ca-valencia/svx/messages.po296
-rw-r--r--source/ca-valencia/sw/messages.po308
-rw-r--r--source/ca-valencia/vcl/messages.po126
-rw-r--r--source/ca/chart2/messages.po144
-rw-r--r--source/ca/cui/messages.po666
-rw-r--r--source/ca/dictionaries/mn_MN.po23
-rw-r--r--source/ca/extensions/messages.po6
-rw-r--r--source/ca/extras/source/gallery/share.po13
-rw-r--r--source/ca/helpcontent2/source/text/sbasic/shared.po446
-rw-r--r--source/ca/helpcontent2/source/text/sbasic/shared/03.po2858
-rw-r--r--source/ca/helpcontent2/source/text/scalc.po10
-rw-r--r--source/ca/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/ca/helpcontent2/source/text/scalc/01.po605
-rw-r--r--source/ca/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/ca/helpcontent2/source/text/sdatabase.po435
-rw-r--r--source/ca/helpcontent2/source/text/shared/00.po33
-rw-r--r--source/ca/helpcontent2/source/text/shared/01.po1265
-rw-r--r--source/ca/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/ca/helpcontent2/source/text/shared/explorer/database.po287
-rw-r--r--source/ca/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/ca/helpcontent2/source/text/shared/optionen.po28
-rw-r--r--source/ca/helpcontent2/source/text/simpress.po4
-rw-r--r--source/ca/helpcontent2/source/text/simpress/guide.po8
-rw-r--r--source/ca/helpcontent2/source/text/smath.po8
-rw-r--r--source/ca/helpcontent2/source/text/smath/01.po18
-rw-r--r--source/ca/helpcontent2/source/text/swriter.po8
-rw-r--r--source/ca/helpcontent2/source/text/swriter/01.po44
-rw-r--r--source/ca/helpcontent2/source/text/swriter/guide.po52
-rw-r--r--source/ca/officecfg/registry/data/org/openoffice/Office/UI.po98
-rw-r--r--source/ca/sc/messages.po264
-rw-r--r--source/ca/scp2/source/ooo.po8
-rw-r--r--source/ca/sd/messages.po360
-rw-r--r--source/ca/sfx2/messages.po518
-rw-r--r--source/ca/svtools/messages.po132
-rw-r--r--source/ca/svx/messages.po300
-rw-r--r--source/ca/sw/messages.po318
-rw-r--r--source/ca/vcl/messages.po126
-rw-r--r--source/ckb/chart2/messages.po144
-rw-r--r--source/ckb/cui/messages.po660
-rw-r--r--source/ckb/dictionaries/mn_MN.po23
-rw-r--r--source/ckb/extensions/messages.po4
-rw-r--r--source/ckb/extras/source/gallery/share.po13
-rw-r--r--source/ckb/officecfg/registry/data/org/openoffice/Office/UI.po98
-rw-r--r--source/ckb/sc/messages.po264
-rw-r--r--source/ckb/sd/messages.po360
-rw-r--r--source/ckb/sfx2/messages.po510
-rw-r--r--source/ckb/svtools/messages.po130
-rw-r--r--source/ckb/svx/messages.po296
-rw-r--r--source/ckb/sw/messages.po310
-rw-r--r--source/ckb/vcl/messages.po126
-rw-r--r--source/cs/chart2/messages.po144
-rw-r--r--source/cs/cui/messages.po666
-rw-r--r--source/cs/dictionaries/eo.po12
-rw-r--r--source/cs/dictionaries/mn_MN.po23
-rw-r--r--source/cs/extensions/messages.po4
-rw-r--r--source/cs/extras/source/gallery/share.po13
-rw-r--r--source/cs/helpcontent2/source/text/sbasic/shared.po512
-rw-r--r--source/cs/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/cs/helpcontent2/source/text/scalc/00.po13
-rw-r--r--source/cs/helpcontent2/source/text/scalc/01.po588
-rw-r--r--source/cs/helpcontent2/source/text/scalc/guide.po10
-rw-r--r--source/cs/helpcontent2/source/text/sdatabase.po421
-rw-r--r--source/cs/helpcontent2/source/text/shared/00.po27
-rw-r--r--source/cs/helpcontent2/source/text/shared/01.po1697
-rw-r--r--source/cs/helpcontent2/source/text/shared/02.po10
-rw-r--r--source/cs/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/cs/helpcontent2/source/text/shared/guide.po202
-rw-r--r--source/cs/helpcontent2/source/text/shared/optionen.po10
-rw-r--r--source/cs/helpcontent2/source/text/simpress/guide.po10
-rw-r--r--source/cs/helpcontent2/source/text/swriter/01.po46
-rw-r--r--source/cs/helpcontent2/source/text/swriter/guide.po46
-rw-r--r--source/cs/officecfg/registry/data/org/openoffice/Office/UI.po102
-rw-r--r--source/cs/sc/messages.po264
-rw-r--r--source/cs/scp2/source/ooo.po8
-rw-r--r--source/cs/sd/messages.po362
-rw-r--r--source/cs/sfx2/messages.po516
-rw-r--r--source/cs/svtools/messages.po132
-rw-r--r--source/cs/svx/messages.po298
-rw-r--r--source/cs/sw/messages.po320
-rw-r--r--source/cs/vcl/messages.po128
-rw-r--r--source/cy/chart2/messages.po158
-rw-r--r--source/cy/cui/messages.po688
-rw-r--r--source/cy/dbaccess/messages.po10
-rw-r--r--source/cy/dictionaries/eo.po12
-rw-r--r--source/cy/dictionaries/mn_MN.po23
-rw-r--r--source/cy/extensions/messages.po6
-rw-r--r--source/cy/extras/source/gallery/share.po13
-rw-r--r--source/cy/officecfg/registry/data/org/openoffice/Office/UI.po110
-rw-r--r--source/cy/sc/messages.po264
-rw-r--r--source/cy/scp2/source/ooo.po10
-rw-r--r--source/cy/sd/messages.po366
-rw-r--r--source/cy/sfx2/messages.po516
-rw-r--r--source/cy/svtools/messages.po132
-rw-r--r--source/cy/svx/messages.po300
-rw-r--r--source/cy/sw/messages.po370
-rw-r--r--source/cy/vcl/messages.po135
-rw-r--r--source/da/chart2/messages.po144
-rw-r--r--source/da/cui/messages.po696
-rw-r--r--source/da/dictionaries/mn_MN.po23
-rw-r--r--source/da/extensions/messages.po6
-rw-r--r--source/da/extras/source/gallery/share.po13
-rw-r--r--source/da/helpcontent2/source/auxiliary.po10
-rw-r--r--source/da/helpcontent2/source/text/sbasic/python.po4
-rw-r--r--source/da/helpcontent2/source/text/sbasic/shared.po566
-rw-r--r--source/da/helpcontent2/source/text/sbasic/shared/03.po2833
-rw-r--r--source/da/helpcontent2/source/text/scalc/00.po13
-rw-r--r--source/da/helpcontent2/source/text/scalc/01.po902
-rw-r--r--source/da/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--source/da/helpcontent2/source/text/sdatabase.po419
-rw-r--r--source/da/helpcontent2/source/text/shared/00.po91
-rw-r--r--source/da/helpcontent2/source/text/shared/01.po1287
-rw-r--r--source/da/helpcontent2/source/text/shared/02.po28
-rw-r--r--source/da/helpcontent2/source/text/shared/04.po4
-rw-r--r--source/da/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/da/helpcontent2/source/text/shared/guide.po28
-rw-r--r--source/da/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/da/helpcontent2/source/text/simpress.po98
-rw-r--r--source/da/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/da/helpcontent2/source/text/simpress/01.po16
-rw-r--r--source/da/helpcontent2/source/text/simpress/guide.po20
-rw-r--r--source/da/helpcontent2/source/text/smath/01.po24
-rw-r--r--source/da/helpcontent2/source/text/swriter.po12
-rw-r--r--source/da/helpcontent2/source/text/swriter/00.po10
-rw-r--r--source/da/helpcontent2/source/text/swriter/01.po94
-rw-r--r--source/da/helpcontent2/source/text/swriter/02.po64
-rw-r--r--source/da/helpcontent2/source/text/swriter/guide.po168
-rw-r--r--source/da/officecfg/registry/data/org/openoffice/Office/UI.po116
-rw-r--r--source/da/sc/messages.po264
-rw-r--r--source/da/sd/messages.po368
-rw-r--r--source/da/sfx2/messages.po526
-rw-r--r--source/da/svtools/messages.po132
-rw-r--r--source/da/svx/messages.po302
-rw-r--r--source/da/sw/messages.po370
-rw-r--r--source/da/vcl/messages.po133
-rw-r--r--source/de/basctl/messages.po6
-rw-r--r--source/de/chart2/messages.po160
-rw-r--r--source/de/cui/messages.po668
-rw-r--r--source/de/dbaccess/messages.po14
-rw-r--r--source/de/dictionaries/eo.po12
-rw-r--r--source/de/dictionaries/mn_MN.po23
-rw-r--r--source/de/extensions/messages.po6
-rw-r--r--source/de/extras/source/gallery/share.po13
-rw-r--r--source/de/filter/messages.po4
-rw-r--r--source/de/fpicker/messages.po10
-rw-r--r--source/de/helpcontent2/source/text/sbasic/shared.po446
-rw-r--r--source/de/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/de/helpcontent2/source/text/scalc/00.po13
-rw-r--r--source/de/helpcontent2/source/text/scalc/01.po614
-rw-r--r--source/de/helpcontent2/source/text/scalc/guide.po10
-rw-r--r--source/de/helpcontent2/source/text/sdatabase.po283
-rw-r--r--source/de/helpcontent2/source/text/shared/00.po25
-rw-r--r--source/de/helpcontent2/source/text/shared/01.po1439
-rw-r--r--source/de/helpcontent2/source/text/shared/02.po10
-rw-r--r--source/de/helpcontent2/source/text/shared/autokorr.po6
-rw-r--r--source/de/helpcontent2/source/text/shared/explorer/database.po283
-rw-r--r--source/de/helpcontent2/source/text/shared/guide.po32
-rw-r--r--source/de/helpcontent2/source/text/shared/optionen.po36
-rw-r--r--source/de/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/de/helpcontent2/source/text/simpress/02.po8
-rw-r--r--source/de/helpcontent2/source/text/simpress/guide.po10
-rw-r--r--source/de/helpcontent2/source/text/smath/01.po4
-rw-r--r--source/de/helpcontent2/source/text/swriter.po6
-rw-r--r--source/de/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/de/helpcontent2/source/text/swriter/01.po44
-rw-r--r--source/de/helpcontent2/source/text/swriter/guide.po44
-rw-r--r--source/de/officecfg/registry/data/org/openoffice/Office/UI.po106
-rw-r--r--source/de/reportdesign/messages.po8
-rw-r--r--source/de/sc/messages.po292
-rw-r--r--source/de/scp2/source/ooo.po10
-rw-r--r--source/de/sd/messages.po362
-rw-r--r--source/de/sfx2/messages.po514
-rw-r--r--source/de/svtools/messages.po132
-rw-r--r--source/de/svx/messages.po304
-rw-r--r--source/de/sw/messages.po350
-rw-r--r--source/de/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po8
-rw-r--r--source/de/vcl/messages.po133
-rw-r--r--source/de/wizards/messages.po26
-rw-r--r--source/de/wizards/source/resources.po10
-rw-r--r--source/dgo/chart2/messages.po144
-rw-r--r--source/dgo/cui/messages.po662
-rw-r--r--source/dgo/dictionaries/mn_MN.po23
-rw-r--r--source/dgo/extensions/messages.po4
-rw-r--r--source/dgo/extras/source/gallery/share.po11
-rw-r--r--source/dgo/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/dgo/sc/messages.po264
-rw-r--r--source/dgo/sd/messages.po360
-rw-r--r--source/dgo/sfx2/messages.po510
-rw-r--r--source/dgo/svtools/messages.po130
-rw-r--r--source/dgo/svx/messages.po296
-rw-r--r--source/dgo/sw/messages.po306
-rw-r--r--source/dgo/vcl/messages.po126
-rw-r--r--source/dsb/chart2/messages.po144
-rw-r--r--source/dsb/cui/messages.po660
-rw-r--r--source/dsb/dictionaries/eo.po12
-rw-r--r--source/dsb/dictionaries/mn_MN.po25
-rw-r--r--source/dsb/extensions/messages.po4
-rw-r--r--source/dsb/extras/source/gallery/share.po13
-rw-r--r--source/dsb/officecfg/registry/data/org/openoffice/Office/UI.po104
-rw-r--r--source/dsb/sc/messages.po264
-rw-r--r--source/dsb/scp2/source/ooo.po8
-rw-r--r--source/dsb/sd/messages.po362
-rw-r--r--source/dsb/sfx2/messages.po518
-rw-r--r--source/dsb/svtools/messages.po134
-rw-r--r--source/dsb/svx/messages.po298
-rw-r--r--source/dsb/sw/messages.po308
-rw-r--r--source/dsb/vcl/messages.po128
-rw-r--r--source/dz/chart2/messages.po144
-rw-r--r--source/dz/cui/messages.po661
-rw-r--r--source/dz/dictionaries/mn_MN.po23
-rw-r--r--source/dz/extensions/messages.po4
-rw-r--r--source/dz/extras/source/gallery/share.po11
-rw-r--r--source/dz/helpcontent2/source/text/sbasic/shared.po436
-rw-r--r--source/dz/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/dz/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/dz/helpcontent2/source/text/scalc/01.po552
-rw-r--r--source/dz/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/dz/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/dz/helpcontent2/source/text/shared/00.po21
-rw-r--r--source/dz/helpcontent2/source/text/shared/01.po1211
-rw-r--r--source/dz/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/dz/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/dz/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/dz/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/dz/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/dz/helpcontent2/source/text/swriter/01.po42
-rw-r--r--source/dz/helpcontent2/source/text/swriter/guide.po44
-rw-r--r--source/dz/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/dz/sc/messages.po264
-rw-r--r--source/dz/sd/messages.po360
-rw-r--r--source/dz/sfx2/messages.po510
-rw-r--r--source/dz/svtools/messages.po130
-rw-r--r--source/dz/svx/messages.po296
-rw-r--r--source/dz/sw/messages.po306
-rw-r--r--source/dz/vcl/messages.po126
-rw-r--r--source/el/chart2/messages.po144
-rw-r--r--source/el/cui/messages.po664
-rw-r--r--source/el/dictionaries/eo.po12
-rw-r--r--source/el/dictionaries/mn_MN.po23
-rw-r--r--source/el/extensions/messages.po4
-rw-r--r--source/el/extras/source/gallery/share.po13
-rw-r--r--source/el/helpcontent2/source/text/sbasic/shared.po454
-rw-r--r--source/el/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/el/helpcontent2/source/text/scalc/00.po13
-rw-r--r--source/el/helpcontent2/source/text/scalc/01.po718
-rw-r--r--source/el/helpcontent2/source/text/scalc/guide.po10
-rw-r--r--source/el/helpcontent2/source/text/sdatabase.po473
-rw-r--r--source/el/helpcontent2/source/text/shared/00.po27
-rw-r--r--source/el/helpcontent2/source/text/shared/01.po1259
-rw-r--r--source/el/helpcontent2/source/text/shared/02.po10
-rw-r--r--source/el/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/el/helpcontent2/source/text/shared/guide.po22
-rw-r--r--source/el/helpcontent2/source/text/shared/optionen.po10
-rw-r--r--source/el/helpcontent2/source/text/simpress/guide.po10
-rw-r--r--source/el/helpcontent2/source/text/swriter/01.po46
-rw-r--r--source/el/helpcontent2/source/text/swriter/guide.po48
-rw-r--r--source/el/officecfg/registry/data/org/openoffice/Office/UI.po102
-rw-r--r--source/el/sc/messages.po264
-rw-r--r--source/el/scp2/source/ooo.po8
-rw-r--r--source/el/sd/messages.po362
-rw-r--r--source/el/sfx2/messages.po516
-rw-r--r--source/el/svtools/messages.po132
-rw-r--r--source/el/svx/messages.po298
-rw-r--r--source/el/sw/messages.po320
-rw-r--r--source/el/vcl/messages.po128
-rw-r--r--source/en-GB/chart2/messages.po144
-rw-r--r--source/en-GB/cui/messages.po664
-rw-r--r--source/en-GB/dictionaries/eo.po12
-rw-r--r--source/en-GB/dictionaries/mn_MN.po23
-rw-r--r--source/en-GB/extensions/messages.po4
-rw-r--r--source/en-GB/extras/source/gallery/share.po13
-rw-r--r--source/en-GB/helpcontent2/source/text/sbasic/shared.po436
-rw-r--r--source/en-GB/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/en-GB/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/en-GB/helpcontent2/source/text/scalc/01.po568
-rw-r--r--source/en-GB/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/en-GB/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/00.po23
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/01.po1255
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/optionen.po8
-rw-r--r--source/en-GB/helpcontent2/source/text/simpress/guide.po8
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter/01.po44
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter/guide.po44
-rw-r--r--source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po102
-rw-r--r--source/en-GB/sc/messages.po264
-rw-r--r--source/en-GB/scp2/source/ooo.po8
-rw-r--r--source/en-GB/sd/messages.po362
-rw-r--r--source/en-GB/sfx2/messages.po522
-rw-r--r--source/en-GB/svtools/messages.po132
-rw-r--r--source/en-GB/svx/messages.po296
-rw-r--r--source/en-GB/sw/messages.po308
-rw-r--r--source/en-GB/vcl/messages.po128
-rw-r--r--source/en-ZA/chart2/messages.po144
-rw-r--r--source/en-ZA/cui/messages.po660
-rw-r--r--source/en-ZA/dictionaries/mn_MN.po23
-rw-r--r--source/en-ZA/extensions/messages.po4
-rw-r--r--source/en-ZA/extras/source/gallery/share.po11
-rw-r--r--source/en-ZA/helpcontent2/source/text/sbasic/shared.po436
-rw-r--r--source/en-ZA/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/en-ZA/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/en-ZA/helpcontent2/source/text/scalc/01.po552
-rw-r--r--source/en-ZA/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/en-ZA/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/00.po21
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/01.po1147
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/en-ZA/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/01.po44
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/guide.po44
-rw-r--r--source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/en-ZA/sc/messages.po264
-rw-r--r--source/en-ZA/sd/messages.po360
-rw-r--r--source/en-ZA/sfx2/messages.po510
-rw-r--r--source/en-ZA/svtools/messages.po130
-rw-r--r--source/en-ZA/svx/messages.po296
-rw-r--r--source/en-ZA/sw/messages.po306
-rw-r--r--source/en-ZA/vcl/messages.po126
-rw-r--r--source/eo/chart2/messages.po144
-rw-r--r--source/eo/cui/messages.po660
-rw-r--r--source/eo/dictionaries/mn_MN.po23
-rw-r--r--source/eo/extensions/messages.po4
-rw-r--r--source/eo/extras/source/gallery/share.po13
-rw-r--r--source/eo/helpcontent2/source/text/sbasic/shared.po436
-rw-r--r--source/eo/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/eo/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/eo/helpcontent2/source/text/scalc/01.po544
-rw-r--r--source/eo/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/eo/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/eo/helpcontent2/source/text/shared/00.po23
-rw-r--r--source/eo/helpcontent2/source/text/shared/01.po1197
-rw-r--r--source/eo/helpcontent2/source/text/shared/02.po6
-rw-r--r--source/eo/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/eo/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/eo/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/eo/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/eo/helpcontent2/source/text/swriter/01.po44
-rw-r--r--source/eo/helpcontent2/source/text/swriter/guide.po44
-rw-r--r--source/eo/officecfg/registry/data/org/openoffice/Office/UI.po98
-rw-r--r--source/eo/sc/messages.po264
-rw-r--r--source/eo/sd/messages.po360
-rw-r--r--source/eo/sfx2/messages.po510
-rw-r--r--source/eo/svtools/messages.po130
-rw-r--r--source/eo/svx/messages.po296
-rw-r--r--source/eo/sw/messages.po308
-rw-r--r--source/eo/vcl/messages.po126
-rw-r--r--source/es/chart2/messages.po144
-rw-r--r--source/es/cui/messages.po688
-rw-r--r--source/es/dbaccess/messages.po4
-rw-r--r--source/es/dictionaries/eo.po12
-rw-r--r--source/es/dictionaries/mn_MN.po25
-rw-r--r--source/es/extensions/messages.po6
-rw-r--r--source/es/extras/source/gallery/share.po13
-rw-r--r--source/es/helpcontent2/source/text/sbasic/python.po4
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared.po452
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared/02.po6
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared/03.po2829
-rw-r--r--source/es/helpcontent2/source/text/scalc/00.po13
-rw-r--r--source/es/helpcontent2/source/text/scalc/01.po588
-rw-r--r--source/es/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/es/helpcontent2/source/text/schart/01.po8
-rw-r--r--source/es/helpcontent2/source/text/sdatabase.po331
-rw-r--r--source/es/helpcontent2/source/text/shared/00.po37
-rw-r--r--source/es/helpcontent2/source/text/shared/01.po1307
-rw-r--r--source/es/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/es/helpcontent2/source/text/shared/04.po4
-rw-r--r--source/es/helpcontent2/source/text/shared/explorer/database.po287
-rw-r--r--source/es/helpcontent2/source/text/shared/guide.po36
-rw-r--r--source/es/helpcontent2/source/text/shared/optionen.po26
-rw-r--r--source/es/helpcontent2/source/text/simpress/01.po6
-rw-r--r--source/es/helpcontent2/source/text/simpress/02.po10
-rw-r--r--source/es/helpcontent2/source/text/simpress/04.po6
-rw-r--r--source/es/helpcontent2/source/text/simpress/guide.po10
-rw-r--r--source/es/helpcontent2/source/text/smath/01.po6
-rw-r--r--source/es/helpcontent2/source/text/swriter.po6
-rw-r--r--source/es/helpcontent2/source/text/swriter/01.po72
-rw-r--r--source/es/helpcontent2/source/text/swriter/02.po4
-rw-r--r--source/es/helpcontent2/source/text/swriter/guide.po66
-rw-r--r--source/es/helpcontent2/source/text/swriter/librelogo.po6
-rw-r--r--source/es/helpcontent2/source/text/swriter/menu.po8
-rw-r--r--source/es/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po8
-rw-r--r--source/es/officecfg/registry/data/org/openoffice/Office/UI.po104
-rw-r--r--source/es/sc/messages.po266
-rw-r--r--source/es/scaddins/messages.po122
-rw-r--r--source/es/scp2/source/ooo.po10
-rw-r--r--source/es/sd/messages.po370
-rw-r--r--source/es/sfx2/messages.po520
-rw-r--r--source/es/svtools/messages.po134
-rw-r--r--source/es/svx/messages.po298
-rw-r--r--source/es/sw/messages.po334
-rw-r--r--source/es/uui/messages.po10
-rw-r--r--source/es/vcl/messages.po126
-rw-r--r--source/et/accessibility/messages.po36
-rw-r--r--source/et/avmedia/messages.po32
-rw-r--r--source/et/basctl/messages.po42
-rw-r--r--source/et/basic/messages.po36
-rw-r--r--source/et/chart2/messages.po198
-rw-r--r--source/et/connectivity/messages.po32
-rw-r--r--source/et/cui/messages.po1076
-rw-r--r--source/et/dbaccess/messages.po64
-rw-r--r--source/et/desktop/messages.po54
-rw-r--r--source/et/dictionaries/da_DK.po14
-rw-r--r--source/et/dictionaries/eo.po12
-rw-r--r--source/et/dictionaries/es.po12
-rw-r--r--source/et/dictionaries/ko_KR.po12
-rw-r--r--source/et/dictionaries/mn_MN.po23
-rw-r--r--source/et/dictionaries/pt_PT.po12
-rw-r--r--source/et/dictionaries/sq_AL.po10
-rw-r--r--source/et/editeng/messages.po32
-rw-r--r--source/et/extensions/messages.po34
-rw-r--r--source/et/extras/source/gallery/share.po13
-rw-r--r--source/et/filter/messages.po66
-rw-r--r--source/et/forms/messages.po36
-rw-r--r--source/et/formula/messages.po50
-rw-r--r--source/et/fpicker/messages.po40
-rw-r--r--source/et/framework/messages.po72
-rw-r--r--source/et/helpcontent2/source/text/sbasic/shared.po436
-rw-r--r--source/et/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/et/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/et/helpcontent2/source/text/scalc/01.po558
-rw-r--r--source/et/helpcontent2/source/text/scalc/02.po14
-rw-r--r--source/et/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/et/helpcontent2/source/text/schart/01.po14
-rw-r--r--source/et/helpcontent2/source/text/sdatabase.po297
-rw-r--r--source/et/helpcontent2/source/text/shared/00.po23
-rw-r--r--source/et/helpcontent2/source/text/shared/01.po1293
-rw-r--r--source/et/helpcontent2/source/text/shared/02.po18
-rw-r--r--source/et/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/et/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/et/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/et/helpcontent2/source/text/simpress/guide.po8
-rw-r--r--source/et/helpcontent2/source/text/swriter/01.po72
-rw-r--r--source/et/helpcontent2/source/text/swriter/02.po82
-rw-r--r--source/et/helpcontent2/source/text/swriter/guide.po44
-rw-r--r--source/et/officecfg/registry/data/org/openoffice/Office.po22
-rw-r--r--source/et/officecfg/registry/data/org/openoffice/Office/UI.po310
-rw-r--r--source/et/oox/messages.po32
-rw-r--r--source/et/readlicense_oo/docs.po16
-rw-r--r--source/et/reportdesign/messages.po32
-rw-r--r--source/et/sc/messages.po512
-rw-r--r--source/et/scaddins/messages.po32
-rw-r--r--source/et/sccomp/messages.po32
-rw-r--r--source/et/scp2/source/ooo.po14
-rw-r--r--source/et/sd/messages.po421
-rw-r--r--source/et/sfx2/messages.po586
-rw-r--r--source/et/shell/messages.po34
-rw-r--r--source/et/starmath/messages.po138
-rw-r--r--source/et/svl/messages.po32
-rw-r--r--source/et/svtools/messages.po160
-rw-r--r--source/et/svx/messages.po533
-rw-r--r--source/et/sw/messages.po1088
-rw-r--r--source/et/uui/messages.po38
-rw-r--r--source/et/vcl/messages.po158
-rw-r--r--source/et/wizards/messages.po34
-rw-r--r--source/et/wizards/source/resources.po10
-rw-r--r--source/et/writerperfect/messages.po32
-rw-r--r--source/et/xmlsecurity/messages.po40
-rw-r--r--source/eu/chart2/messages.po146
-rw-r--r--source/eu/cui/messages.po666
-rw-r--r--source/eu/dictionaries/eo.po12
-rw-r--r--source/eu/dictionaries/mn_MN.po25
-rw-r--r--source/eu/extensions/messages.po4
-rw-r--r--source/eu/extras/source/gallery/share.po13
-rw-r--r--source/eu/helpcontent2/source/text/sbasic/shared.po542
-rw-r--r--source/eu/helpcontent2/source/text/sbasic/shared/03.po3000
-rw-r--r--source/eu/helpcontent2/source/text/scalc/00.po13
-rw-r--r--source/eu/helpcontent2/source/text/scalc/01.po633
-rw-r--r--source/eu/helpcontent2/source/text/scalc/guide.po10
-rw-r--r--source/eu/helpcontent2/source/text/sdatabase.po527
-rw-r--r--source/eu/helpcontent2/source/text/sdraw.po6
-rw-r--r--source/eu/helpcontent2/source/text/shared/00.po27
-rw-r--r--source/eu/helpcontent2/source/text/shared/01.po1391
-rw-r--r--source/eu/helpcontent2/source/text/shared/02.po10
-rw-r--r--source/eu/helpcontent2/source/text/shared/explorer/database.po283
-rw-r--r--source/eu/helpcontent2/source/text/shared/guide.po119
-rw-r--r--source/eu/helpcontent2/source/text/shared/optionen.po10
-rw-r--r--source/eu/helpcontent2/source/text/simpress.po76
-rw-r--r--source/eu/helpcontent2/source/text/simpress/01.po6
-rw-r--r--source/eu/helpcontent2/source/text/simpress/guide.po18
-rw-r--r--source/eu/helpcontent2/source/text/smath/01.po18
-rw-r--r--source/eu/helpcontent2/source/text/swriter/01.po130
-rw-r--r--source/eu/helpcontent2/source/text/swriter/guide.po172
-rw-r--r--source/eu/officecfg/registry/data/org/openoffice/Office/UI.po110
-rw-r--r--source/eu/sc/messages.po266
-rw-r--r--source/eu/scp2/source/ooo.po10
-rw-r--r--source/eu/sd/messages.po368
-rw-r--r--source/eu/sfx2/messages.po520
-rw-r--r--source/eu/svtools/messages.po132
-rw-r--r--source/eu/svx/messages.po298
-rw-r--r--source/eu/sw/messages.po338
-rw-r--r--source/eu/vcl/messages.po128
-rw-r--r--source/fa/chart2/messages.po144
-rw-r--r--source/fa/cui/messages.po660
-rw-r--r--source/fa/dictionaries/mn_MN.po23
-rw-r--r--source/fa/extensions/messages.po6
-rw-r--r--source/fa/extras/source/gallery/share.po13
-rw-r--r--source/fa/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/fa/sc/messages.po264
-rw-r--r--source/fa/sd/messages.po360
-rw-r--r--source/fa/sfx2/messages.po510
-rw-r--r--source/fa/svtools/messages.po132
-rw-r--r--source/fa/svx/messages.po296
-rw-r--r--source/fa/sw/messages.po306
-rw-r--r--source/fa/vcl/messages.po126
-rw-r--r--source/fi/chart2/messages.po156
-rw-r--r--source/fi/cui/messages.po660
-rw-r--r--source/fi/dictionaries/eo.po12
-rw-r--r--source/fi/dictionaries/mn_MN.po23
-rw-r--r--source/fi/editeng/messages.po5
-rw-r--r--source/fi/extensions/messages.po6
-rw-r--r--source/fi/extras/source/gallery/share.po13
-rw-r--r--source/fi/helpcontent2/source/text/sbasic/shared.po438
-rw-r--r--source/fi/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/fi/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/fi/helpcontent2/source/text/scalc/01.po532
-rw-r--r--source/fi/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/fi/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/fi/helpcontent2/source/text/shared/00.po21
-rw-r--r--source/fi/helpcontent2/source/text/shared/01.po1221
-rw-r--r--source/fi/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/fi/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/fi/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/fi/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/fi/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/fi/helpcontent2/source/text/swriter/01.po44
-rw-r--r--source/fi/helpcontent2/source/text/swriter/guide.po44
-rw-r--r--source/fi/officecfg/registry/data/org/openoffice/Office/UI.po98
-rw-r--r--source/fi/sc/messages.po285
-rw-r--r--source/fi/scp2/source/ooo.po10
-rw-r--r--source/fi/sd/messages.po360
-rw-r--r--source/fi/sfx2/messages.po532
-rw-r--r--source/fi/svtools/messages.po136
-rw-r--r--source/fi/svx/messages.po313
-rw-r--r--source/fi/sw/messages.po308
-rw-r--r--source/fi/vcl/messages.po126
-rw-r--r--source/fr/accessibility/messages.po36
-rw-r--r--source/fr/avmedia/messages.po32
-rw-r--r--source/fr/basctl/messages.po32
-rw-r--r--source/fr/basic/messages.po32
-rw-r--r--source/fr/chart2/messages.po172
-rw-r--r--source/fr/connectivity/messages.po32
-rw-r--r--source/fr/cui/messages.po688
-rw-r--r--source/fr/dbaccess/messages.po30
-rw-r--r--source/fr/desktop/messages.po30
-rw-r--r--source/fr/dictionaries/eo.po12
-rw-r--r--source/fr/dictionaries/mn_MN.po23
-rw-r--r--source/fr/editeng/messages.po32
-rw-r--r--source/fr/extensions/messages.po34
-rw-r--r--source/fr/extras/source/gallery/share.po13
-rw-r--r--source/fr/filter/messages.po30
-rw-r--r--source/fr/forms/messages.po32
-rw-r--r--source/fr/formula/messages.po32
-rw-r--r--source/fr/fpicker/messages.po32
-rw-r--r--source/fr/framework/messages.po32
-rw-r--r--source/fr/helpcontent2/source/text/sbasic/shared.po444
-rw-r--r--source/fr/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/fr/helpcontent2/source/text/scalc/00.po13
-rw-r--r--source/fr/helpcontent2/source/text/scalc/01.po584
-rw-r--r--source/fr/helpcontent2/source/text/scalc/guide.po10
-rw-r--r--source/fr/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/fr/helpcontent2/source/text/shared/00.po27
-rw-r--r--source/fr/helpcontent2/source/text/shared/01.po1257
-rw-r--r--source/fr/helpcontent2/source/text/shared/02.po12
-rw-r--r--source/fr/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/fr/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/fr/helpcontent2/source/text/shared/optionen.po8
-rw-r--r--source/fr/helpcontent2/source/text/simpress/guide.po10
-rw-r--r--source/fr/helpcontent2/source/text/swriter/01.po134
-rw-r--r--source/fr/helpcontent2/source/text/swriter/02.po64
-rw-r--r--source/fr/helpcontent2/source/text/swriter/guide.po174
-rw-r--r--source/fr/officecfg/registry/data/org/openoffice/Office/UI.po98
-rw-r--r--source/fr/oox/messages.po32
-rw-r--r--source/fr/reportdesign/messages.po32
-rw-r--r--source/fr/sc/messages.po292
-rw-r--r--source/fr/scaddins/messages.po32
-rw-r--r--source/fr/sccomp/messages.po36
-rw-r--r--source/fr/sd/messages.po388
-rw-r--r--source/fr/sfx2/messages.po614
-rw-r--r--source/fr/shell/messages.po32
-rw-r--r--source/fr/starmath/messages.po30
-rw-r--r--source/fr/svl/messages.po32
-rw-r--r--source/fr/svtools/messages.po158
-rw-r--r--source/fr/svx/messages.po326
-rw-r--r--source/fr/sw/messages.po336
-rw-r--r--source/fr/uui/messages.po32
-rw-r--r--source/fr/vcl/messages.po156
-rw-r--r--source/fr/wizards/messages.po32
-rw-r--r--source/fr/writerperfect/messages.po32
-rw-r--r--source/fr/xmlsecurity/messages.po32
-rw-r--r--source/fur/chart2/messages.po144
-rw-r--r--source/fur/cui/messages.po660
-rw-r--r--source/fur/dictionaries/mn_MN.po23
-rw-r--r--source/fur/extensions/messages.po4
-rw-r--r--source/fur/extras/source/gallery/share.po11
-rw-r--r--source/fur/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/fur/sc/messages.po264
-rw-r--r--source/fur/sd/messages.po360
-rw-r--r--source/fur/sfx2/messages.po510
-rw-r--r--source/fur/svtools/messages.po130
-rw-r--r--source/fur/svx/messages.po296
-rw-r--r--source/fur/sw/messages.po306
-rw-r--r--source/fur/vcl/messages.po126
-rw-r--r--source/fy/chart2/messages.po144
-rw-r--r--source/fy/cui/messages.po660
-rw-r--r--source/fy/dictionaries/mn_MN.po23
-rw-r--r--source/fy/extensions/messages.po4
-rw-r--r--source/fy/extras/source/gallery/share.po13
-rw-r--r--source/fy/officecfg/registry/data/org/openoffice/Office/UI.po98
-rw-r--r--source/fy/sc/messages.po264
-rw-r--r--source/fy/sd/messages.po360
-rw-r--r--source/fy/sfx2/messages.po510
-rw-r--r--source/fy/svtools/messages.po132
-rw-r--r--source/fy/svx/messages.po296
-rw-r--r--source/fy/sw/messages.po308
-rw-r--r--source/fy/vcl/messages.po126
-rw-r--r--source/ga/chart2/messages.po144
-rw-r--r--source/ga/cui/messages.po660
-rw-r--r--source/ga/dictionaries/mn_MN.po23
-rw-r--r--source/ga/extensions/messages.po6
-rw-r--r--source/ga/extras/source/gallery/share.po13
-rw-r--r--source/ga/officecfg/registry/data/org/openoffice/Office/UI.po98
-rw-r--r--source/ga/sc/messages.po264
-rw-r--r--source/ga/sd/messages.po360
-rw-r--r--source/ga/sfx2/messages.po510
-rw-r--r--source/ga/svtools/messages.po132
-rw-r--r--source/ga/svx/messages.po296
-rw-r--r--source/ga/sw/messages.po306
-rw-r--r--source/ga/vcl/messages.po126
-rw-r--r--source/gd/chart2/messages.po144
-rw-r--r--source/gd/cui/messages.po660
-rw-r--r--source/gd/dictionaries/mn_MN.po23
-rw-r--r--source/gd/extensions/messages.po4
-rw-r--r--source/gd/extras/source/gallery/share.po11
-rw-r--r--source/gd/officecfg/registry/data/org/openoffice/Office/UI.po98
-rw-r--r--source/gd/sc/messages.po264
-rw-r--r--source/gd/sd/messages.po360
-rw-r--r--source/gd/sfx2/messages.po510
-rw-r--r--source/gd/svtools/messages.po130
-rw-r--r--source/gd/svx/messages.po296
-rw-r--r--source/gd/sw/messages.po306
-rw-r--r--source/gd/vcl/messages.po126
-rw-r--r--source/gl/chart2/messages.po144
-rw-r--r--source/gl/cui/messages.po672
-rw-r--r--source/gl/dictionaries/eo.po12
-rw-r--r--source/gl/dictionaries/mn_MN.po23
-rw-r--r--source/gl/extensions/messages.po4
-rw-r--r--source/gl/extras/source/gallery/share.po13
-rw-r--r--source/gl/helpcontent2/source/text/sbasic/shared.po420
-rw-r--r--source/gl/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/gl/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/gl/helpcontent2/source/text/scalc/01.po562
-rw-r--r--source/gl/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/gl/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/gl/helpcontent2/source/text/shared/00.po23
-rw-r--r--source/gl/helpcontent2/source/text/shared/01.po1223
-rw-r--r--source/gl/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/gl/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/gl/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/gl/helpcontent2/source/text/shared/optionen.po8
-rw-r--r--source/gl/helpcontent2/source/text/simpress/guide.po8
-rw-r--r--source/gl/helpcontent2/source/text/swriter/01.po44
-rw-r--r--source/gl/helpcontent2/source/text/swriter/guide.po44
-rw-r--r--source/gl/officecfg/registry/data/org/openoffice/Office/UI.po108
-rw-r--r--source/gl/sc/messages.po278
-rw-r--r--source/gl/scp2/source/ooo.po8
-rw-r--r--source/gl/sd/messages.po362
-rw-r--r--source/gl/sfx2/messages.po516
-rw-r--r--source/gl/starmath/messages.po6
-rw-r--r--source/gl/svtools/messages.po132
-rw-r--r--source/gl/svx/messages.po304
-rw-r--r--source/gl/sw/messages.po334
-rw-r--r--source/gl/vcl/messages.po128
-rw-r--r--source/gu/chart2/messages.po144
-rw-r--r--source/gu/cui/messages.po660
-rw-r--r--source/gu/dictionaries/mn_MN.po23
-rw-r--r--source/gu/extensions/messages.po4
-rw-r--r--source/gu/extras/source/gallery/share.po11
-rw-r--r--source/gu/helpcontent2/source/text/sbasic/shared.po434
-rw-r--r--source/gu/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/gu/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/gu/helpcontent2/source/text/scalc/01.po550
-rw-r--r--source/gu/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/gu/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/gu/helpcontent2/source/text/shared/00.po21
-rw-r--r--source/gu/helpcontent2/source/text/shared/01.po1209
-rw-r--r--source/gu/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/gu/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/gu/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/gu/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/gu/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/gu/helpcontent2/source/text/swriter/01.po42
-rw-r--r--source/gu/helpcontent2/source/text/swriter/guide.po44
-rw-r--r--source/gu/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/gu/sc/messages.po264
-rw-r--r--source/gu/sd/messages.po360
-rw-r--r--source/gu/sfx2/messages.po510
-rw-r--r--source/gu/svtools/messages.po130
-rw-r--r--source/gu/svx/messages.po296
-rw-r--r--source/gu/sw/messages.po306
-rw-r--r--source/gu/vcl/messages.po126
-rw-r--r--source/gug/chart2/messages.po144
-rw-r--r--source/gug/cui/messages.po660
-rw-r--r--source/gug/dictionaries/mn_MN.po23
-rw-r--r--source/gug/extensions/messages.po4
-rw-r--r--source/gug/extras/source/gallery/share.po11
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/python.po4
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/shared.po452
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/shared/02.po6
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/shared/03.po2829
-rw-r--r--source/gug/helpcontent2/source/text/scalc/00.po13
-rw-r--r--source/gug/helpcontent2/source/text/scalc/01.po588
-rw-r--r--source/gug/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/gug/helpcontent2/source/text/schart/01.po8
-rw-r--r--source/gug/helpcontent2/source/text/sdatabase.po331
-rw-r--r--source/gug/helpcontent2/source/text/shared/00.po37
-rw-r--r--source/gug/helpcontent2/source/text/shared/01.po1307
-rw-r--r--source/gug/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/gug/helpcontent2/source/text/shared/04.po4
-rw-r--r--source/gug/helpcontent2/source/text/shared/explorer/database.po287
-rw-r--r--source/gug/helpcontent2/source/text/shared/guide.po36
-rw-r--r--source/gug/helpcontent2/source/text/shared/optionen.po26
-rw-r--r--source/gug/helpcontent2/source/text/simpress/01.po6
-rw-r--r--source/gug/helpcontent2/source/text/simpress/02.po10
-rw-r--r--source/gug/helpcontent2/source/text/simpress/04.po6
-rw-r--r--source/gug/helpcontent2/source/text/simpress/guide.po10
-rw-r--r--source/gug/helpcontent2/source/text/smath/01.po6
-rw-r--r--source/gug/helpcontent2/source/text/swriter.po6
-rw-r--r--source/gug/helpcontent2/source/text/swriter/01.po72
-rw-r--r--source/gug/helpcontent2/source/text/swriter/02.po4
-rw-r--r--source/gug/helpcontent2/source/text/swriter/guide.po66
-rw-r--r--source/gug/helpcontent2/source/text/swriter/librelogo.po6
-rw-r--r--source/gug/helpcontent2/source/text/swriter/menu.po8
-rw-r--r--source/gug/officecfg/registry/data/org/openoffice/Office/UI.po98
-rw-r--r--source/gug/sc/messages.po264
-rw-r--r--source/gug/sd/messages.po360
-rw-r--r--source/gug/sfx2/messages.po510
-rw-r--r--source/gug/svtools/messages.po130
-rw-r--r--source/gug/svx/messages.po296
-rw-r--r--source/gug/sw/messages.po306
-rw-r--r--source/gug/vcl/messages.po126
-rw-r--r--source/he/chart2/messages.po144
-rw-r--r--source/he/cui/messages.po660
-rw-r--r--source/he/dictionaries/mn_MN.po23
-rw-r--r--source/he/extensions/messages.po6
-rw-r--r--source/he/extras/source/gallery/share.po13
-rw-r--r--source/he/helpcontent2/source/text/sbasic/shared.po434
-rw-r--r--source/he/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/he/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/he/helpcontent2/source/text/scalc/01.po548
-rw-r--r--source/he/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/he/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/he/helpcontent2/source/text/shared/00.po21
-rw-r--r--source/he/helpcontent2/source/text/shared/01.po1125
-rw-r--r--source/he/helpcontent2/source/text/shared/02.po6
-rw-r--r--source/he/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/he/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/he/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/he/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/he/helpcontent2/source/text/swriter/01.po42
-rw-r--r--source/he/helpcontent2/source/text/swriter/guide.po44
-rw-r--r--source/he/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/he/sc/messages.po264
-rw-r--r--source/he/sd/messages.po360
-rw-r--r--source/he/sfx2/messages.po510
-rw-r--r--source/he/svtools/messages.po132
-rw-r--r--source/he/svx/messages.po296
-rw-r--r--source/he/sw/messages.po306
-rw-r--r--source/he/swext/mediawiki/help.po15
-rw-r--r--source/he/vcl/messages.po126
-rw-r--r--source/hi/chart2/messages.po144
-rw-r--r--source/hi/cui/messages.po660
-rw-r--r--source/hi/dictionaries/mn_MN.po23
-rw-r--r--source/hi/extensions/messages.po4
-rw-r--r--source/hi/extras/source/gallery/share.po11
-rw-r--r--source/hi/helpcontent2/source/text/sbasic/shared.po420
-rw-r--r--source/hi/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/hi/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/hi/helpcontent2/source/text/scalc/01.po534
-rw-r--r--source/hi/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/hi/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/hi/helpcontent2/source/text/shared/00.po21
-rw-r--r--source/hi/helpcontent2/source/text/shared/01.po1117
-rw-r--r--source/hi/helpcontent2/source/text/shared/02.po6
-rw-r--r--source/hi/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/hi/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/hi/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/hi/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/hi/helpcontent2/source/text/swriter/01.po42
-rw-r--r--source/hi/helpcontent2/source/text/swriter/guide.po42
-rw-r--r--source/hi/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/hi/sc/messages.po264
-rw-r--r--source/hi/sd/messages.po360
-rw-r--r--source/hi/sfx2/messages.po510
-rw-r--r--source/hi/svtools/messages.po130
-rw-r--r--source/hi/svx/messages.po296
-rw-r--r--source/hi/sw/messages.po306
-rw-r--r--source/hi/vcl/messages.po126
-rw-r--r--source/hr/accessibility/messages.po36
-rw-r--r--source/hr/avmedia/messages.po34
-rw-r--r--source/hr/basctl/messages.po134
-rw-r--r--source/hr/basic/messages.po36
-rw-r--r--source/hr/chart2/messages.po176
-rw-r--r--source/hr/connectivity/messages.po34
-rw-r--r--source/hr/cui/messages.po726
-rw-r--r--source/hr/dbaccess/messages.po34
-rw-r--r--source/hr/desktop/messages.po34
-rw-r--r--source/hr/dictionaries/eo.po12
-rw-r--r--source/hr/dictionaries/es.po12
-rw-r--r--source/hr/dictionaries/ko_KR.po12
-rw-r--r--source/hr/dictionaries/mn_MN.po23
-rw-r--r--source/hr/dictionaries/pt_PT.po12
-rw-r--r--source/hr/dictionaries/sq_AL.po12
-rw-r--r--source/hr/editeng/messages.po34
-rw-r--r--source/hr/extensions/messages.po36
-rw-r--r--source/hr/extras/source/gallery/share.po13
-rw-r--r--source/hr/filter/messages.po34
-rw-r--r--source/hr/forms/messages.po36
-rw-r--r--source/hr/formula/messages.po34
-rw-r--r--source/hr/fpicker/messages.po38
-rw-r--r--source/hr/framework/messages.po52
-rw-r--r--source/hr/helpcontent2/source/text/sbasic/shared.po420
-rw-r--r--source/hr/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/hr/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/hr/helpcontent2/source/text/scalc/01.po532
-rw-r--r--source/hr/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/hr/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/hr/helpcontent2/source/text/shared/00.po21
-rw-r--r--source/hr/helpcontent2/source/text/shared/01.po1119
-rw-r--r--source/hr/helpcontent2/source/text/shared/02.po6
-rw-r--r--source/hr/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/hr/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/hr/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/hr/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/hr/helpcontent2/source/text/swriter/01.po42
-rw-r--r--source/hr/helpcontent2/source/text/swriter/guide.po42
-rw-r--r--source/hr/officecfg/registry/data/org/openoffice/Office.po16
-rw-r--r--source/hr/officecfg/registry/data/org/openoffice/Office/UI.po120
-rw-r--r--source/hr/oox/messages.po34
-rw-r--r--source/hr/readlicense_oo/docs.po12
-rw-r--r--source/hr/reportdesign/messages.po34
-rw-r--r--source/hr/sc/messages.po296
-rw-r--r--source/hr/scaddins/messages.po34
-rw-r--r--source/hr/sccomp/messages.po36
-rw-r--r--source/hr/sd/messages.po392
-rw-r--r--source/hr/sfx2/messages.po554
-rw-r--r--source/hr/shell/messages.po36
-rw-r--r--source/hr/starmath/messages.po34
-rw-r--r--source/hr/svl/messages.po34
-rw-r--r--source/hr/svtools/messages.po162
-rw-r--r--source/hr/svx/messages.po332
-rw-r--r--source/hr/sw/messages.po445
-rw-r--r--source/hr/uui/messages.po52
-rw-r--r--source/hr/vcl/messages.po158
-rw-r--r--source/hr/wizards/messages.po34
-rw-r--r--source/hr/wizards/source/resources.po10
-rw-r--r--source/hr/writerperfect/messages.po34
-rw-r--r--source/hr/xmlsecurity/messages.po92
-rw-r--r--source/hsb/chart2/messages.po144
-rw-r--r--source/hsb/cui/messages.po660
-rw-r--r--source/hsb/dictionaries/eo.po12
-rw-r--r--source/hsb/dictionaries/mn_MN.po25
-rw-r--r--source/hsb/extensions/messages.po4
-rw-r--r--source/hsb/extras/source/gallery/share.po13
-rw-r--r--source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po104
-rw-r--r--source/hsb/sc/messages.po264
-rw-r--r--source/hsb/scp2/source/ooo.po8
-rw-r--r--source/hsb/sd/messages.po362
-rw-r--r--source/hsb/sfx2/messages.po518
-rw-r--r--source/hsb/svtools/messages.po134
-rw-r--r--source/hsb/svx/messages.po298
-rw-r--r--source/hsb/sw/messages.po308
-rw-r--r--source/hsb/vcl/messages.po128
-rw-r--r--source/hu/chart2/messages.po144
-rw-r--r--source/hu/cui/messages.po660
-rw-r--r--source/hu/dictionaries/mn_MN.po23
-rw-r--r--source/hu/extensions/messages.po6
-rw-r--r--source/hu/extras/source/gallery/share.po13
-rw-r--r--source/hu/helpcontent2/source/text/sbasic/shared.po436
-rw-r--r--source/hu/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/hu/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/hu/helpcontent2/source/text/scalc/01.po560
-rw-r--r--source/hu/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/hu/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/hu/helpcontent2/source/text/shared/00.po21
-rw-r--r--source/hu/helpcontent2/source/text/shared/01.po1221
-rw-r--r--source/hu/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/hu/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/hu/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/hu/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/hu/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/hu/helpcontent2/source/text/swriter/01.po44
-rw-r--r--source/hu/helpcontent2/source/text/swriter/guide.po44
-rw-r--r--source/hu/officecfg/registry/data/org/openoffice/Office/UI.po98
-rw-r--r--source/hu/sc/messages.po264
-rw-r--r--source/hu/sd/messages.po360
-rw-r--r--source/hu/sfx2/messages.po510
-rw-r--r--source/hu/svtools/messages.po132
-rw-r--r--source/hu/svx/messages.po296
-rw-r--r--source/hu/sw/messages.po308
-rw-r--r--source/hu/vcl/messages.po126
-rw-r--r--source/id/basctl/messages.po6
-rw-r--r--source/id/chart2/messages.po150
-rw-r--r--source/id/cui/messages.po770
-rw-r--r--source/id/dbaccess/messages.po34
-rw-r--r--source/id/desktop/messages.po8
-rw-r--r--source/id/dictionaries/mn_MN.po23
-rw-r--r--source/id/extensions/messages.po14
-rw-r--r--source/id/extras/source/gallery/share.po13
-rw-r--r--source/id/fpicker/messages.po10
-rw-r--r--source/id/helpcontent2/source/text/sbasic/shared.po436
-rw-r--r--source/id/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/id/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/id/helpcontent2/source/text/scalc/01.po568
-rw-r--r--source/id/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/id/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/id/helpcontent2/source/text/shared/00.po23
-rw-r--r--source/id/helpcontent2/source/text/shared/01.po1255
-rw-r--r--source/id/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/id/helpcontent2/source/text/shared/autopi.po8
-rw-r--r--source/id/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/id/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/id/helpcontent2/source/text/shared/optionen.po8
-rw-r--r--source/id/helpcontent2/source/text/simpress/guide.po8
-rw-r--r--source/id/helpcontent2/source/text/swriter/01.po54
-rw-r--r--source/id/helpcontent2/source/text/swriter/guide.po48
-rw-r--r--source/id/officecfg/registry/data/org/openoffice/Office.po60
-rw-r--r--source/id/officecfg/registry/data/org/openoffice/Office/UI.po332
-rw-r--r--source/id/sc/messages.po302
-rw-r--r--source/id/scp2/source/winexplorerext.po10
-rw-r--r--source/id/sd/messages.po404
-rw-r--r--source/id/sfx2/messages.po638
-rw-r--r--source/id/shell/source/win32/shlxthandler/res.po55
-rw-r--r--source/id/svtools/messages.po138
-rw-r--r--source/id/svx/messages.po318
-rw-r--r--source/id/sw/messages.po548
-rw-r--r--source/id/vcl/messages.po128
-rw-r--r--source/id/wizards/source/resources.po4
-rw-r--r--source/id/writerperfect/messages.po8
-rw-r--r--source/id/xmlsecurity/messages.po16
-rw-r--r--source/is/chart2/messages.po144
-rw-r--r--source/is/cui/messages.po660
-rw-r--r--source/is/dictionaries/mn_MN.po23
-rw-r--r--source/is/extensions/messages.po4
-rw-r--r--source/is/extras/source/gallery/share.po11
-rw-r--r--source/is/helpcontent2/source/text/sbasic/shared.po420
-rw-r--r--source/is/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/is/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/is/helpcontent2/source/text/scalc/01.po538
-rw-r--r--source/is/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/is/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/is/helpcontent2/source/text/shared/00.po21
-rw-r--r--source/is/helpcontent2/source/text/shared/01.po1191
-rw-r--r--source/is/helpcontent2/source/text/shared/02.po6
-rw-r--r--source/is/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/is/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/is/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/is/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/is/helpcontent2/source/text/swriter/01.po42
-rw-r--r--source/is/helpcontent2/source/text/swriter/guide.po42
-rw-r--r--source/is/officecfg/registry/data/org/openoffice/Office/UI.po98
-rw-r--r--source/is/sc/messages.po264
-rw-r--r--source/is/sd/messages.po360
-rw-r--r--source/is/sfx2/messages.po510
-rw-r--r--source/is/svtools/messages.po130
-rw-r--r--source/is/svx/messages.po296
-rw-r--r--source/is/sw/messages.po308
-rw-r--r--source/is/vcl/messages.po126
-rw-r--r--source/it/chart2/messages.po144
-rw-r--r--source/it/cui/messages.po660
-rw-r--r--source/it/dictionaries/mn_MN.po23
-rw-r--r--source/it/extensions/messages.po4
-rw-r--r--source/it/extras/source/gallery/share.po13
-rw-r--r--source/it/helpcontent2/source/text/sbasic/shared.po436
-rw-r--r--source/it/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/it/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/it/helpcontent2/source/text/scalc/01.po580
-rw-r--r--source/it/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/it/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/it/helpcontent2/source/text/shared/00.po25
-rw-r--r--source/it/helpcontent2/source/text/shared/01.po1255
-rw-r--r--source/it/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/it/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/it/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/it/helpcontent2/source/text/shared/optionen.po8
-rw-r--r--source/it/helpcontent2/source/text/simpress/guide.po8
-rw-r--r--source/it/helpcontent2/source/text/swriter.po6
-rw-r--r--source/it/helpcontent2/source/text/swriter/01.po44
-rw-r--r--source/it/helpcontent2/source/text/swriter/guide.po44
-rw-r--r--source/it/officecfg/registry/data/org/openoffice/Office/UI.po98
-rw-r--r--source/it/sc/messages.po264
-rw-r--r--source/it/sd/messages.po360
-rw-r--r--source/it/sfx2/messages.po510
-rw-r--r--source/it/shell/source/win32/shlxthandler/res.po49
-rw-r--r--source/it/svtools/messages.po130
-rw-r--r--source/it/svx/messages.po296
-rw-r--r--source/it/sw/messages.po308
-rw-r--r--source/it/vcl/messages.po126
-rw-r--r--source/ja/chart2/messages.po144
-rw-r--r--source/ja/cui/messages.po756
-rw-r--r--source/ja/dbaccess/messages.po40
-rw-r--r--source/ja/dictionaries/eo.po12
-rw-r--r--source/ja/dictionaries/mn_MN.po23
-rw-r--r--source/ja/editeng/messages.po28
-rw-r--r--source/ja/extensions/messages.po33
-rw-r--r--source/ja/extras/source/gallery/share.po13
-rw-r--r--source/ja/helpcontent2/source/auxiliary.po36
-rw-r--r--source/ja/helpcontent2/source/text/sbasic/python.po104
-rw-r--r--source/ja/helpcontent2/source/text/sbasic/shared.po444
-rw-r--r--source/ja/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/ja/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/ja/helpcontent2/source/text/scalc/01.po552
-rw-r--r--source/ja/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/ja/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/ja/helpcontent2/source/text/shared/00.po21
-rw-r--r--source/ja/helpcontent2/source/text/shared/01.po1221
-rw-r--r--source/ja/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/ja/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/ja/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/ja/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/ja/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/ja/helpcontent2/source/text/swriter/01.po44
-rw-r--r--source/ja/helpcontent2/source/text/swriter/guide.po44
-rw-r--r--source/ja/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/ja/officecfg/registry/data/org/openoffice/Office/UI.po162
-rw-r--r--source/ja/sc/messages.po264
-rw-r--r--source/ja/scp2/source/ooo.po8
-rw-r--r--source/ja/sd/messages.po362
-rw-r--r--source/ja/sfx2/messages.po596
-rw-r--r--source/ja/svtools/messages.po146
-rw-r--r--source/ja/svx/messages.po428
-rw-r--r--source/ja/sw/messages.po376
-rw-r--r--source/ja/vcl/messages.po126
-rw-r--r--source/jv/chart2/messages.po144
-rw-r--r--source/jv/cui/messages.po662
-rw-r--r--source/jv/dictionaries/mn_MN.po23
-rw-r--r--source/jv/extensions/messages.po4
-rw-r--r--source/jv/extras/source/gallery/share.po11
-rw-r--r--source/jv/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/jv/sc/messages.po264
-rw-r--r--source/jv/sd/messages.po360
-rw-r--r--source/jv/sfx2/messages.po510
-rw-r--r--source/jv/svtools/messages.po130
-rw-r--r--source/jv/svx/messages.po296
-rw-r--r--source/jv/sw/messages.po306
-rw-r--r--source/jv/vcl/messages.po126
-rw-r--r--source/ka/chart2/messages.po144
-rw-r--r--source/ka/cui/messages.po660
-rw-r--r--source/ka/dictionaries/mn_MN.po23
-rw-r--r--source/ka/extensions/messages.po4
-rw-r--r--source/ka/extras/source/gallery/share.po11
-rw-r--r--source/ka/helpcontent2/source/text/sbasic/shared.po420
-rw-r--r--source/ka/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/ka/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/ka/helpcontent2/source/text/scalc/01.po548
-rw-r--r--source/ka/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/ka/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/ka/helpcontent2/source/text/shared/00.po21
-rw-r--r--source/ka/helpcontent2/source/text/shared/01.po1197
-rw-r--r--source/ka/helpcontent2/source/text/shared/02.po6
-rw-r--r--source/ka/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/ka/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/ka/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/ka/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/ka/helpcontent2/source/text/swriter/01.po42
-rw-r--r--source/ka/helpcontent2/source/text/swriter/guide.po42
-rw-r--r--source/ka/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/ka/sc/messages.po264
-rw-r--r--source/ka/sd/messages.po360
-rw-r--r--source/ka/sfx2/messages.po510
-rw-r--r--source/ka/svtools/messages.po130
-rw-r--r--source/ka/svx/messages.po296
-rw-r--r--source/ka/sw/messages.po306
-rw-r--r--source/ka/vcl/messages.po126
-rw-r--r--source/kab/chart2/messages.po144
-rw-r--r--source/kab/cui/messages.po660
-rw-r--r--source/kab/dictionaries/mn_MN.po23
-rw-r--r--source/kab/extensions/messages.po4
-rw-r--r--source/kab/extras/source/gallery/share.po11
-rw-r--r--source/kab/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/kab/sc/messages.po264
-rw-r--r--source/kab/sd/messages.po360
-rw-r--r--source/kab/sfx2/messages.po510
-rw-r--r--source/kab/svtools/messages.po130
-rw-r--r--source/kab/svx/messages.po296
-rw-r--r--source/kab/sw/messages.po306
-rw-r--r--source/kab/vcl/messages.po126
-rw-r--r--source/kk/chart2/messages.po144
-rw-r--r--source/kk/cui/messages.po660
-rw-r--r--source/kk/dictionaries/mn_MN.po23
-rw-r--r--source/kk/extensions/messages.po4
-rw-r--r--source/kk/extras/source/gallery/share.po13
-rw-r--r--source/kk/officecfg/registry/data/org/openoffice/Office/UI.po98
-rw-r--r--source/kk/sc/messages.po264
-rw-r--r--source/kk/sd/messages.po360
-rw-r--r--source/kk/sfx2/messages.po510
-rw-r--r--source/kk/svtools/messages.po132
-rw-r--r--source/kk/svx/messages.po296
-rw-r--r--source/kk/sw/messages.po310
-rw-r--r--source/kk/vcl/messages.po126
-rw-r--r--source/kl/chart2/messages.po144
-rw-r--r--source/kl/cui/messages.po661
-rw-r--r--source/kl/dictionaries/mn_MN.po23
-rw-r--r--source/kl/extensions/messages.po4
-rw-r--r--source/kl/extras/source/gallery/share.po11
-rw-r--r--source/kl/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/kl/sc/messages.po264
-rw-r--r--source/kl/sd/messages.po360
-rw-r--r--source/kl/sfx2/messages.po510
-rw-r--r--source/kl/svtools/messages.po130
-rw-r--r--source/kl/svx/messages.po296
-rw-r--r--source/kl/sw/messages.po306
-rw-r--r--source/kl/vcl/messages.po126
-rw-r--r--source/km/chart2/messages.po144
-rw-r--r--source/km/cui/messages.po660
-rw-r--r--source/km/dictionaries/mn_MN.po23
-rw-r--r--source/km/extensions/messages.po4
-rw-r--r--source/km/extras/source/gallery/share.po11
-rw-r--r--source/km/helpcontent2/source/text/sbasic/shared.po436
-rw-r--r--source/km/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/km/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/km/helpcontent2/source/text/scalc/01.po552
-rw-r--r--source/km/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/km/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/km/helpcontent2/source/text/shared/00.po21
-rw-r--r--source/km/helpcontent2/source/text/shared/01.po1221
-rw-r--r--source/km/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/km/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/km/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/km/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/km/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/km/helpcontent2/source/text/swriter/01.po44
-rw-r--r--source/km/helpcontent2/source/text/swriter/guide.po44
-rw-r--r--source/km/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/km/sc/messages.po264
-rw-r--r--source/km/sd/messages.po360
-rw-r--r--source/km/sfx2/messages.po510
-rw-r--r--source/km/svtools/messages.po130
-rw-r--r--source/km/svx/messages.po296
-rw-r--r--source/km/sw/messages.po306
-rw-r--r--source/km/vcl/messages.po126
-rw-r--r--source/kmr-Latn/chart2/messages.po144
-rw-r--r--source/kmr-Latn/cui/messages.po661
-rw-r--r--source/kmr-Latn/dictionaries/mn_MN.po23
-rw-r--r--source/kmr-Latn/extensions/messages.po4
-rw-r--r--source/kmr-Latn/extras/source/gallery/share.po11
-rw-r--r--source/kmr-Latn/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/kmr-Latn/sc/messages.po264
-rw-r--r--source/kmr-Latn/sd/messages.po360
-rw-r--r--source/kmr-Latn/sfx2/messages.po510
-rw-r--r--source/kmr-Latn/svtools/messages.po130
-rw-r--r--source/kmr-Latn/svx/messages.po296
-rw-r--r--source/kmr-Latn/sw/messages.po306
-rw-r--r--source/kmr-Latn/vcl/messages.po126
-rw-r--r--source/kn/chart2/messages.po144
-rw-r--r--source/kn/cui/messages.po660
-rw-r--r--source/kn/dictionaries/mn_MN.po23
-rw-r--r--source/kn/extensions/messages.po4
-rw-r--r--source/kn/extras/source/gallery/share.po11
-rw-r--r--source/kn/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/kn/sc/messages.po264
-rw-r--r--source/kn/sd/messages.po360
-rw-r--r--source/kn/sfx2/messages.po510
-rw-r--r--source/kn/svtools/messages.po130
-rw-r--r--source/kn/svx/messages.po296
-rw-r--r--source/kn/sw/messages.po306
-rw-r--r--source/kn/vcl/messages.po126
-rw-r--r--source/ko/chart2/messages.po144
-rw-r--r--source/ko/cui/messages.po660
-rw-r--r--source/ko/dictionaries/mn_MN.po23
-rw-r--r--source/ko/extensions/messages.po4
-rw-r--r--source/ko/extras/source/gallery/share.po13
-rw-r--r--source/ko/helpcontent2/source/text/sbasic/shared.po436
-rw-r--r--source/ko/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/ko/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/ko/helpcontent2/source/text/scalc/01.po552
-rw-r--r--source/ko/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/ko/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/ko/helpcontent2/source/text/shared/00.po21
-rw-r--r--source/ko/helpcontent2/source/text/shared/01.po1221
-rw-r--r--source/ko/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/ko/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/ko/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/ko/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/ko/helpcontent2/source/text/simpress/guide.po8
-rw-r--r--source/ko/helpcontent2/source/text/swriter/01.po44
-rw-r--r--source/ko/helpcontent2/source/text/swriter/guide.po44
-rw-r--r--source/ko/officecfg/registry/data/org/openoffice/Office/UI.po98
-rw-r--r--source/ko/sc/messages.po264
-rw-r--r--source/ko/sd/messages.po360
-rw-r--r--source/ko/sfx2/messages.po510
-rw-r--r--source/ko/svtools/messages.po130
-rw-r--r--source/ko/svx/messages.po296
-rw-r--r--source/ko/sw/messages.po306
-rw-r--r--source/ko/vcl/messages.po126
-rw-r--r--source/kok/chart2/messages.po144
-rw-r--r--source/kok/cui/messages.po662
-rw-r--r--source/kok/dictionaries/mn_MN.po23
-rw-r--r--source/kok/extensions/messages.po4
-rw-r--r--source/kok/extras/source/gallery/share.po11
-rw-r--r--source/kok/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/kok/sc/messages.po264
-rw-r--r--source/kok/sd/messages.po360
-rw-r--r--source/kok/sfx2/messages.po510
-rw-r--r--source/kok/svtools/messages.po130
-rw-r--r--source/kok/svx/messages.po296
-rw-r--r--source/kok/sw/messages.po306
-rw-r--r--source/kok/vcl/messages.po126
-rw-r--r--source/ks/chart2/messages.po144
-rw-r--r--source/ks/cui/messages.po660
-rw-r--r--source/ks/dictionaries/mn_MN.po23
-rw-r--r--source/ks/extensions/messages.po4
-rw-r--r--source/ks/extras/source/gallery/share.po11
-rw-r--r--source/ks/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/ks/sc/messages.po264
-rw-r--r--source/ks/sd/messages.po360
-rw-r--r--source/ks/sfx2/messages.po510
-rw-r--r--source/ks/svtools/messages.po130
-rw-r--r--source/ks/svx/messages.po296
-rw-r--r--source/ks/sw/messages.po306
-rw-r--r--source/ks/vcl/messages.po126
-rw-r--r--source/ky/chart2/messages.po144
-rw-r--r--source/ky/cui/messages.po660
-rw-r--r--source/ky/dictionaries/mn_MN.po23
-rw-r--r--source/ky/extensions/messages.po4
-rw-r--r--source/ky/extras/source/gallery/share.po11
-rw-r--r--source/ky/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/ky/sc/messages.po264
-rw-r--r--source/ky/sd/messages.po360
-rw-r--r--source/ky/sfx2/messages.po510
-rw-r--r--source/ky/svtools/messages.po130
-rw-r--r--source/ky/svx/messages.po296
-rw-r--r--source/ky/sw/messages.po306
-rw-r--r--source/ky/vcl/messages.po126
-rw-r--r--source/lb/chart2/messages.po144
-rw-r--r--source/lb/cui/messages.po661
-rw-r--r--source/lb/dictionaries/mn_MN.po23
-rw-r--r--source/lb/extensions/messages.po4
-rw-r--r--source/lb/extras/source/gallery/share.po11
-rw-r--r--source/lb/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/lb/sc/messages.po264
-rw-r--r--source/lb/sd/messages.po360
-rw-r--r--source/lb/sfx2/messages.po510
-rw-r--r--source/lb/svtools/messages.po130
-rw-r--r--source/lb/svx/messages.po296
-rw-r--r--source/lb/sw/messages.po306
-rw-r--r--source/lb/vcl/messages.po126
-rw-r--r--source/lo/chart2/messages.po144
-rw-r--r--source/lo/cui/messages.po660
-rw-r--r--source/lo/dictionaries/mn_MN.po23
-rw-r--r--source/lo/extensions/messages.po4
-rw-r--r--source/lo/extras/source/gallery/share.po11
-rw-r--r--source/lo/helpcontent2/source/text/sbasic/shared.po418
-rw-r--r--source/lo/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/lo/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/lo/helpcontent2/source/text/scalc/01.po532
-rw-r--r--source/lo/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/lo/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/lo/helpcontent2/source/text/shared/00.po21
-rw-r--r--source/lo/helpcontent2/source/text/shared/01.po1117
-rw-r--r--source/lo/helpcontent2/source/text/shared/02.po6
-rw-r--r--source/lo/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/lo/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/lo/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/lo/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/lo/helpcontent2/source/text/swriter/01.po42
-rw-r--r--source/lo/helpcontent2/source/text/swriter/guide.po42
-rw-r--r--source/lo/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/lo/sc/messages.po264
-rw-r--r--source/lo/sd/messages.po360
-rw-r--r--source/lo/sfx2/messages.po510
-rw-r--r--source/lo/svtools/messages.po130
-rw-r--r--source/lo/svx/messages.po296
-rw-r--r--source/lo/sw/messages.po306
-rw-r--r--source/lo/vcl/messages.po126
-rw-r--r--source/lt/chart2/messages.po144
-rw-r--r--source/lt/cui/messages.po660
-rw-r--r--source/lt/dictionaries/mn_MN.po23
-rw-r--r--source/lt/extensions/messages.po4
-rw-r--r--source/lt/extras/source/gallery/share.po11
-rw-r--r--source/lt/helpcontent2/source/text/sbasic/shared.po436
-rw-r--r--source/lt/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/lt/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/lt/helpcontent2/source/text/scalc/01.po580
-rw-r--r--source/lt/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/lt/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/lt/helpcontent2/source/text/shared/00.po25
-rw-r--r--source/lt/helpcontent2/source/text/shared/01.po1251
-rw-r--r--source/lt/helpcontent2/source/text/shared/02.po6
-rw-r--r--source/lt/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/lt/helpcontent2/source/text/shared/guide.po16
-rw-r--r--source/lt/helpcontent2/source/text/shared/optionen.po8
-rw-r--r--source/lt/helpcontent2/source/text/simpress/guide.po8
-rw-r--r--source/lt/helpcontent2/source/text/swriter/01.po44
-rw-r--r--source/lt/helpcontent2/source/text/swriter/guide.po44
-rw-r--r--source/lt/officecfg/registry/data/org/openoffice/Office/UI.po98
-rw-r--r--source/lt/sc/messages.po264
-rw-r--r--source/lt/sd/messages.po360
-rw-r--r--source/lt/sfx2/messages.po510
-rw-r--r--source/lt/svtools/messages.po130
-rw-r--r--source/lt/svx/messages.po296
-rw-r--r--source/lt/sw/messages.po308
-rw-r--r--source/lt/vcl/messages.po126
-rw-r--r--source/lv/chart2/messages.po144
-rw-r--r--source/lv/cui/messages.po660
-rw-r--r--source/lv/dictionaries/mn_MN.po23
-rw-r--r--source/lv/extensions/messages.po4
-rw-r--r--source/lv/extras/source/gallery/share.po13
-rw-r--r--source/lv/helpcontent2/source/text/sbasic/shared.po420
-rw-r--r--source/lv/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/lv/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/lv/helpcontent2/source/text/scalc/01.po538
-rw-r--r--source/lv/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/lv/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/lv/helpcontent2/source/text/shared/00.po21
-rw-r--r--source/lv/helpcontent2/source/text/shared/01.po1141
-rw-r--r--source/lv/helpcontent2/source/text/shared/02.po6
-rw-r--r--source/lv/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/lv/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/lv/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/lv/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/lv/helpcontent2/source/text/swriter/01.po42
-rw-r--r--source/lv/helpcontent2/source/text/swriter/guide.po42
-rw-r--r--source/lv/officecfg/registry/data/org/openoffice/Office/UI.po98
-rw-r--r--source/lv/sc/messages.po264
-rw-r--r--source/lv/sd/messages.po360
-rw-r--r--source/lv/sfx2/messages.po510
-rw-r--r--source/lv/svtools/messages.po130
-rw-r--r--source/lv/svx/messages.po296
-rw-r--r--source/lv/sw/messages.po310
-rw-r--r--source/lv/vcl/messages.po126
-rw-r--r--source/mai/chart2/messages.po144
-rw-r--r--source/mai/cui/messages.po663
-rw-r--r--source/mai/dictionaries/mn_MN.po23
-rw-r--r--source/mai/extensions/messages.po4
-rw-r--r--source/mai/extras/source/gallery/share.po11
-rw-r--r--source/mai/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/mai/sc/messages.po264
-rw-r--r--source/mai/sd/messages.po360
-rw-r--r--source/mai/sfx2/messages.po510
-rw-r--r--source/mai/svtools/messages.po130
-rw-r--r--source/mai/svx/messages.po296
-rw-r--r--source/mai/sw/messages.po306
-rw-r--r--source/mai/vcl/messages.po126
-rw-r--r--source/mk/chart2/messages.po144
-rw-r--r--source/mk/cui/messages.po661
-rw-r--r--source/mk/dictionaries/mn_MN.po23
-rw-r--r--source/mk/extensions/messages.po4
-rw-r--r--source/mk/extras/source/gallery/share.po11
-rw-r--r--source/mk/helpcontent2/source/text/sbasic/shared.po436
-rw-r--r--source/mk/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/mk/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/mk/helpcontent2/source/text/scalc/01.po552
-rw-r--r--source/mk/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/mk/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/mk/helpcontent2/source/text/shared/00.po21
-rw-r--r--source/mk/helpcontent2/source/text/shared/01.po1215
-rw-r--r--source/mk/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/mk/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/mk/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/mk/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/mk/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/mk/helpcontent2/source/text/swriter/01.po42
-rw-r--r--source/mk/helpcontent2/source/text/swriter/guide.po44
-rw-r--r--source/mk/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/mk/sc/messages.po264
-rw-r--r--source/mk/sd/messages.po360
-rw-r--r--source/mk/sfx2/messages.po510
-rw-r--r--source/mk/svtools/messages.po130
-rw-r--r--source/mk/svx/messages.po296
-rw-r--r--source/mk/sw/messages.po306
-rw-r--r--source/mk/vcl/messages.po126
-rw-r--r--source/ml/chart2/messages.po144
-rw-r--r--source/ml/cui/messages.po660
-rw-r--r--source/ml/dictionaries/mn_MN.po23
-rw-r--r--source/ml/extensions/messages.po4
-rw-r--r--source/ml/extras/source/gallery/share.po11
-rw-r--r--source/ml/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/ml/sc/messages.po264
-rw-r--r--source/ml/sd/messages.po360
-rw-r--r--source/ml/sfx2/messages.po510
-rw-r--r--source/ml/svtools/messages.po130
-rw-r--r--source/ml/svx/messages.po296
-rw-r--r--source/ml/sw/messages.po306
-rw-r--r--source/ml/vcl/messages.po126
-rw-r--r--source/mn/chart2/messages.po144
-rw-r--r--source/mn/cui/messages.po660
-rw-r--r--source/mn/dictionaries/mn_MN.po23
-rw-r--r--source/mn/extensions/messages.po4
-rw-r--r--source/mn/extras/source/gallery/share.po13
-rw-r--r--source/mn/officecfg/registry/data/org/openoffice/Office/UI.po98
-rw-r--r--source/mn/sc/messages.po264
-rw-r--r--source/mn/sd/messages.po360
-rw-r--r--source/mn/sfx2/messages.po510
-rw-r--r--source/mn/svtools/messages.po132
-rw-r--r--source/mn/svx/messages.po296
-rw-r--r--source/mn/sw/messages.po306
-rw-r--r--source/mn/vcl/messages.po126
-rw-r--r--source/mni/chart2/messages.po144
-rw-r--r--source/mni/cui/messages.po663
-rw-r--r--source/mni/dictionaries/mn_MN.po23
-rw-r--r--source/mni/extensions/messages.po4
-rw-r--r--source/mni/extras/source/gallery/share.po11
-rw-r--r--source/mni/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/mni/sc/messages.po264
-rw-r--r--source/mni/sd/messages.po360
-rw-r--r--source/mni/sfx2/messages.po510
-rw-r--r--source/mni/svtools/messages.po130
-rw-r--r--source/mni/svx/messages.po296
-rw-r--r--source/mni/sw/messages.po306
-rw-r--r--source/mni/vcl/messages.po126
-rw-r--r--source/mr/chart2/messages.po144
-rw-r--r--source/mr/cui/messages.po660
-rw-r--r--source/mr/dictionaries/mn_MN.po23
-rw-r--r--source/mr/extensions/messages.po4
-rw-r--r--source/mr/extras/source/gallery/share.po11
-rw-r--r--source/mr/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/mr/sc/messages.po264
-rw-r--r--source/mr/sd/messages.po360
-rw-r--r--source/mr/sfx2/messages.po510
-rw-r--r--source/mr/svtools/messages.po130
-rw-r--r--source/mr/svx/messages.po296
-rw-r--r--source/mr/sw/messages.po306
-rw-r--r--source/mr/vcl/messages.po126
-rw-r--r--source/my/chart2/messages.po144
-rw-r--r--source/my/cui/messages.po660
-rw-r--r--source/my/dictionaries/mn_MN.po23
-rw-r--r--source/my/extensions/messages.po4
-rw-r--r--source/my/extras/source/gallery/share.po11
-rw-r--r--source/my/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/my/sc/messages.po264
-rw-r--r--source/my/sd/messages.po360
-rw-r--r--source/my/sfx2/messages.po510
-rw-r--r--source/my/svtools/messages.po130
-rw-r--r--source/my/svx/messages.po296
-rw-r--r--source/my/sw/messages.po306
-rw-r--r--source/my/vcl/messages.po126
-rw-r--r--source/nb/accessibility/messages.po8
-rw-r--r--source/nb/basctl/messages.po4
-rw-r--r--source/nb/basic/messages.po10
-rw-r--r--source/nb/chart2/messages.po200
-rw-r--r--source/nb/connectivity/messages.po54
-rw-r--r--source/nb/cui/messages.po748
-rw-r--r--source/nb/dbaccess/messages.po10
-rw-r--r--source/nb/dictionaries/eo.po12
-rw-r--r--source/nb/dictionaries/mn_MN.po25
-rw-r--r--source/nb/editeng/messages.po14
-rw-r--r--source/nb/extensions/messages.po20
-rw-r--r--source/nb/extras/source/gallery/share.po13
-rw-r--r--source/nb/forms/messages.po4
-rw-r--r--source/nb/helpcontent2/source/text/sbasic/shared.po428
-rw-r--r--source/nb/helpcontent2/source/text/sbasic/shared/02.po16
-rw-r--r--source/nb/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/nb/helpcontent2/source/text/scalc.po8
-rw-r--r--source/nb/helpcontent2/source/text/scalc/00.po29
-rw-r--r--source/nb/helpcontent2/source/text/scalc/01.po544
-rw-r--r--source/nb/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--source/nb/helpcontent2/source/text/schart.po110
-rw-r--r--source/nb/helpcontent2/source/text/schart/00.po74
-rw-r--r--source/nb/helpcontent2/source/text/sdatabase.po287
-rw-r--r--source/nb/helpcontent2/source/text/sdraw.po28
-rw-r--r--source/nb/helpcontent2/source/text/sdraw/01.po16
-rw-r--r--source/nb/helpcontent2/source/text/sdraw/guide.po8
-rw-r--r--source/nb/helpcontent2/source/text/shared.po6
-rw-r--r--source/nb/helpcontent2/source/text/shared/00.po37
-rw-r--r--source/nb/helpcontent2/source/text/shared/01.po1177
-rw-r--r--source/nb/helpcontent2/source/text/shared/02.po30
-rw-r--r--source/nb/helpcontent2/source/text/shared/04.po18
-rw-r--r--source/nb/helpcontent2/source/text/shared/explorer/database.po283
-rw-r--r--source/nb/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/nb/helpcontent2/source/text/shared/optionen.po8
-rw-r--r--source/nb/helpcontent2/source/text/simpress.po116
-rw-r--r--source/nb/helpcontent2/source/text/simpress/00.po18
-rw-r--r--source/nb/helpcontent2/source/text/simpress/01.po22
-rw-r--r--source/nb/helpcontent2/source/text/simpress/02.po30
-rw-r--r--source/nb/helpcontent2/source/text/simpress/04.po20
-rw-r--r--source/nb/helpcontent2/source/text/simpress/guide.po54
-rw-r--r--source/nb/helpcontent2/source/text/smath/01.po12
-rw-r--r--source/nb/helpcontent2/source/text/swriter.po126
-rw-r--r--source/nb/helpcontent2/source/text/swriter/00.po88
-rw-r--r--source/nb/helpcontent2/source/text/swriter/01.po44
-rw-r--r--source/nb/helpcontent2/source/text/swriter/02.po24
-rw-r--r--source/nb/helpcontent2/source/text/swriter/guide.po44
-rw-r--r--source/nb/helpcontent2/source/text/swriter/librelogo.po22
-rw-r--r--source/nb/helpcontent2/source/text/swriter/menu.po28
-rw-r--r--source/nb/officecfg/registry/data/org/openoffice/Office.po10
-rw-r--r--source/nb/officecfg/registry/data/org/openoffice/Office/UI.po296
-rw-r--r--source/nb/readlicense_oo/docs.po8
-rw-r--r--source/nb/sc/messages.po480
-rw-r--r--source/nb/scp2/source/ooo.po8
-rw-r--r--source/nb/sd/messages.po398
-rw-r--r--source/nb/sfx2/messages.po526
-rw-r--r--source/nb/starmath/messages.po16
-rw-r--r--source/nb/svtools/messages.po166
-rw-r--r--source/nb/svx/messages.po466
-rw-r--r--source/nb/sw/messages.po510
-rw-r--r--source/nb/swext/mediawiki/help.po8
-rw-r--r--source/nb/uui/messages.po20
-rw-r--r--source/nb/vcl/messages.po128
-rw-r--r--source/nb/wizards/source/resources.po4
-rw-r--r--source/ne/chart2/messages.po144
-rw-r--r--source/ne/cui/messages.po660
-rw-r--r--source/ne/dictionaries/mn_MN.po23
-rw-r--r--source/ne/extensions/messages.po4
-rw-r--r--source/ne/extras/source/gallery/share.po11
-rw-r--r--source/ne/helpcontent2/source/text/sbasic/shared.po436
-rw-r--r--source/ne/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/ne/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/ne/helpcontent2/source/text/scalc/01.po552
-rw-r--r--source/ne/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/ne/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/ne/helpcontent2/source/text/shared/00.po21
-rw-r--r--source/ne/helpcontent2/source/text/shared/01.po1211
-rw-r--r--source/ne/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/ne/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/ne/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/ne/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/ne/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/ne/helpcontent2/source/text/swriter/01.po42
-rw-r--r--source/ne/helpcontent2/source/text/swriter/guide.po42
-rw-r--r--source/ne/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/ne/sc/messages.po264
-rw-r--r--source/ne/sd/messages.po360
-rw-r--r--source/ne/sfx2/messages.po510
-rw-r--r--source/ne/svtools/messages.po130
-rw-r--r--source/ne/svx/messages.po296
-rw-r--r--source/ne/sw/messages.po306
-rw-r--r--source/ne/vcl/messages.po126
-rw-r--r--source/nl/chart2/messages.po156
-rw-r--r--source/nl/cui/messages.po694
-rw-r--r--source/nl/dbaccess/messages.po6
-rw-r--r--source/nl/dictionaries/eo.po12
-rw-r--r--source/nl/dictionaries/mn_MN.po25
-rw-r--r--source/nl/extensions/messages.po12
-rw-r--r--source/nl/extras/source/autocorr/emoji.po20
-rw-r--r--source/nl/extras/source/gallery/share.po15
-rw-r--r--source/nl/helpcontent2/source/text/sbasic/shared.po436
-rw-r--r--source/nl/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/nl/helpcontent2/source/text/scalc/00.po13
-rw-r--r--source/nl/helpcontent2/source/text/scalc/01.po580
-rw-r--r--source/nl/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/nl/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/nl/helpcontent2/source/text/shared/00.po25
-rw-r--r--source/nl/helpcontent2/source/text/shared/01.po1255
-rw-r--r--source/nl/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/nl/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/nl/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/nl/helpcontent2/source/text/shared/optionen.po8
-rw-r--r--source/nl/helpcontent2/source/text/simpress/guide.po8
-rw-r--r--source/nl/helpcontent2/source/text/swriter/01.po44
-rw-r--r--source/nl/helpcontent2/source/text/swriter/guide.po44
-rw-r--r--source/nl/librelogo/source/pythonpath.po8
-rw-r--r--source/nl/officecfg/registry/data/org/openoffice/Office/UI.po136
-rw-r--r--source/nl/sc/messages.po264
-rw-r--r--source/nl/scp2/source/ooo.po10
-rw-r--r--source/nl/sd/messages.po364
-rw-r--r--source/nl/sfx2/messages.po518
-rw-r--r--source/nl/starmath/messages.po10
-rw-r--r--source/nl/svtools/messages.po136
-rw-r--r--source/nl/svx/messages.po302
-rw-r--r--source/nl/sw/messages.po372
-rw-r--r--source/nl/vcl/messages.po128
-rw-r--r--source/nl/writerperfect/messages.po6
-rw-r--r--source/nn/chart2/messages.po144
-rw-r--r--source/nn/cui/messages.po676
-rw-r--r--source/nn/dictionaries/mn_MN.po23
-rw-r--r--source/nn/extensions/messages.po6
-rw-r--r--source/nn/extras/source/gallery/share.po13
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/shared.po582
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/nn/helpcontent2/source/text/scalc/00.po13
-rw-r--r--source/nn/helpcontent2/source/text/scalc/01.po598
-rw-r--r--source/nn/helpcontent2/source/text/scalc/guide.po53
-rw-r--r--source/nn/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/nn/helpcontent2/source/text/shared/00.po35
-rw-r--r--source/nn/helpcontent2/source/text/shared/01.po1497
-rw-r--r--source/nn/helpcontent2/source/text/shared/02.po44
-rw-r--r--source/nn/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/nn/helpcontent2/source/text/shared/guide.po142
-rw-r--r--source/nn/helpcontent2/source/text/shared/optionen.po51
-rw-r--r--source/nn/helpcontent2/source/text/simpress/guide.po8
-rw-r--r--source/nn/helpcontent2/source/text/swriter/01.po188
-rw-r--r--source/nn/helpcontent2/source/text/swriter/guide.po160
-rw-r--r--source/nn/officecfg/registry/data/org/openoffice/Office/UI.po102
-rw-r--r--source/nn/sc/messages.po264
-rw-r--r--source/nn/sd/messages.po360
-rw-r--r--source/nn/sfx2/messages.po514
-rw-r--r--source/nn/svtools/messages.po132
-rw-r--r--source/nn/svx/messages.po302
-rw-r--r--source/nn/sw/messages.po316
-rw-r--r--source/nn/vcl/messages.po126
-rw-r--r--source/nr/chart2/messages.po144
-rw-r--r--source/nr/cui/messages.po662
-rw-r--r--source/nr/dictionaries/mn_MN.po23
-rw-r--r--source/nr/extensions/messages.po4
-rw-r--r--source/nr/extras/source/gallery/share.po11
-rw-r--r--source/nr/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/nr/sc/messages.po264
-rw-r--r--source/nr/sd/messages.po360
-rw-r--r--source/nr/sfx2/messages.po510
-rw-r--r--source/nr/svtools/messages.po130
-rw-r--r--source/nr/svx/messages.po296
-rw-r--r--source/nr/sw/messages.po306
-rw-r--r--source/nr/vcl/messages.po126
-rw-r--r--source/nso/chart2/messages.po144
-rw-r--r--source/nso/cui/messages.po660
-rw-r--r--source/nso/dictionaries/mn_MN.po23
-rw-r--r--source/nso/extensions/messages.po4
-rw-r--r--source/nso/extras/source/gallery/share.po11
-rw-r--r--source/nso/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/nso/sc/messages.po264
-rw-r--r--source/nso/sd/messages.po360
-rw-r--r--source/nso/sfx2/messages.po510
-rw-r--r--source/nso/svtools/messages.po130
-rw-r--r--source/nso/svx/messages.po296
-rw-r--r--source/nso/sw/messages.po306
-rw-r--r--source/nso/vcl/messages.po126
-rw-r--r--source/oc/chart2/messages.po144
-rw-r--r--source/oc/cui/messages.po690
-rw-r--r--source/oc/desktop/messages.po24
-rw-r--r--source/oc/dictionaries/eo.po12
-rw-r--r--source/oc/dictionaries/mn_MN.po23
-rw-r--r--source/oc/extensions/messages.po6
-rw-r--r--source/oc/extras/source/autocorr/emoji.po10
-rw-r--r--source/oc/extras/source/gallery/share.po13
-rw-r--r--source/oc/officecfg/registry/data/org/openoffice/Office.po12
-rw-r--r--source/oc/officecfg/registry/data/org/openoffice/Office/UI.po144
-rw-r--r--source/oc/sc/messages.po266
-rw-r--r--source/oc/scp2/source/impress.po45
-rw-r--r--source/oc/scp2/source/ooo.po8
-rw-r--r--source/oc/sd/messages.po366
-rw-r--r--source/oc/sfx2/messages.po516
-rw-r--r--source/oc/svtools/messages.po142
-rw-r--r--source/oc/svx/messages.po306
-rw-r--r--source/oc/sw/messages.po658
-rw-r--r--source/oc/swext/mediawiki/help.po105
-rw-r--r--source/oc/vcl/messages.po134
-rw-r--r--source/oc/wizards/source/resources.po22
-rw-r--r--source/om/chart2/messages.po144
-rw-r--r--source/om/cui/messages.po660
-rw-r--r--source/om/dictionaries/mn_MN.po23
-rw-r--r--source/om/extensions/messages.po4
-rw-r--r--source/om/extras/source/gallery/share.po11
-rw-r--r--source/om/helpcontent2/source/text/sbasic/shared.po436
-rw-r--r--source/om/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/om/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/om/helpcontent2/source/text/scalc/01.po552
-rw-r--r--source/om/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/om/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/om/helpcontent2/source/text/shared/00.po21
-rw-r--r--source/om/helpcontent2/source/text/shared/01.po1209
-rw-r--r--source/om/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/om/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/om/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/om/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/om/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/om/helpcontent2/source/text/swriter/01.po44
-rw-r--r--source/om/helpcontent2/source/text/swriter/guide.po44
-rw-r--r--source/om/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/om/sc/messages.po264
-rw-r--r--source/om/sd/messages.po360
-rw-r--r--source/om/sfx2/messages.po510
-rw-r--r--source/om/svtools/messages.po130
-rw-r--r--source/om/svx/messages.po296
-rw-r--r--source/om/sw/messages.po306
-rw-r--r--source/om/vcl/messages.po126
-rw-r--r--source/or/chart2/messages.po144
-rw-r--r--source/or/cui/messages.po660
-rw-r--r--source/or/dictionaries/mn_MN.po23
-rw-r--r--source/or/extensions/messages.po4
-rw-r--r--source/or/extras/source/gallery/share.po11
-rw-r--r--source/or/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/or/sc/messages.po264
-rw-r--r--source/or/sd/messages.po360
-rw-r--r--source/or/sfx2/messages.po510
-rw-r--r--source/or/svtools/messages.po130
-rw-r--r--source/or/svx/messages.po296
-rw-r--r--source/or/sw/messages.po306
-rw-r--r--source/or/vcl/messages.po126
-rw-r--r--source/pa-IN/chart2/messages.po144
-rw-r--r--source/pa-IN/cui/messages.po660
-rw-r--r--source/pa-IN/dictionaries/mn_MN.po23
-rw-r--r--source/pa-IN/extensions/messages.po4
-rw-r--r--source/pa-IN/extras/source/gallery/share.po11
-rw-r--r--source/pa-IN/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/pa-IN/sc/messages.po264
-rw-r--r--source/pa-IN/sd/messages.po360
-rw-r--r--source/pa-IN/sfx2/messages.po510
-rw-r--r--source/pa-IN/svtools/messages.po130
-rw-r--r--source/pa-IN/svx/messages.po296
-rw-r--r--source/pa-IN/sw/messages.po306
-rw-r--r--source/pa-IN/vcl/messages.po126
-rw-r--r--source/pl/chart2/messages.po144
-rw-r--r--source/pl/cui/messages.po666
-rw-r--r--source/pl/dictionaries/eo.po12
-rw-r--r--source/pl/dictionaries/mn_MN.po25
-rw-r--r--source/pl/extensions/messages.po4
-rw-r--r--source/pl/extras/source/gallery/share.po13
-rw-r--r--source/pl/helpcontent2/source/text/sbasic/shared.po436
-rw-r--r--source/pl/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/pl/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/pl/helpcontent2/source/text/scalc/01.po562
-rw-r--r--source/pl/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/pl/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/pl/helpcontent2/source/text/shared/00.po23
-rw-r--r--source/pl/helpcontent2/source/text/shared/01.po1221
-rw-r--r--source/pl/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/pl/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/pl/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/pl/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/pl/helpcontent2/source/text/simpress/guide.po8
-rw-r--r--source/pl/helpcontent2/source/text/swriter/01.po44
-rw-r--r--source/pl/helpcontent2/source/text/swriter/guide.po44
-rw-r--r--source/pl/officecfg/registry/data/org/openoffice/Office/UI.po104
-rw-r--r--source/pl/sc/messages.po264
-rw-r--r--source/pl/scp2/source/ooo.po10
-rw-r--r--source/pl/sd/messages.po366
-rw-r--r--source/pl/sfx2/messages.po518
-rw-r--r--source/pl/svtools/messages.po134
-rw-r--r--source/pl/svx/messages.po298
-rw-r--r--source/pl/sw/messages.po326
-rw-r--r--source/pl/vcl/messages.po128
-rw-r--r--source/pt-BR/chart2/messages.po144
-rw-r--r--source/pt-BR/cui/messages.po666
-rw-r--r--source/pt-BR/dictionaries/eo.po12
-rw-r--r--source/pt-BR/dictionaries/mn_MN.po25
-rw-r--r--source/pt-BR/extensions/messages.po6
-rw-r--r--source/pt-BR/extras/source/gallery/share.po13
-rw-r--r--source/pt-BR/helpcontent2/source/text/sbasic/shared.po436
-rw-r--r--source/pt-BR/helpcontent2/source/text/sbasic/shared/03.po2865
-rw-r--r--source/pt-BR/helpcontent2/source/text/scalc/00.po13
-rw-r--r--source/pt-BR/helpcontent2/source/text/scalc/01.po760
-rw-r--r--source/pt-BR/helpcontent2/source/text/scalc/guide.po10
-rw-r--r--source/pt-BR/helpcontent2/source/text/sdatabase.po283
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared.po10
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/00.po27
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/01.po1259
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/guide.po22
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/optionen.po12
-rw-r--r--source/pt-BR/helpcontent2/source/text/simpress/guide.po12
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/01.po46
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/guide.po146
-rw-r--r--source/pt-BR/officecfg/registry/data/org/openoffice/Office/UI.po102
-rw-r--r--source/pt-BR/sc/messages.po264
-rw-r--r--source/pt-BR/scp2/source/ooo.po8
-rw-r--r--source/pt-BR/sd/messages.po362
-rw-r--r--source/pt-BR/sfx2/messages.po518
-rw-r--r--source/pt-BR/svtools/messages.po132
-rw-r--r--source/pt-BR/svx/messages.po298
-rw-r--r--source/pt-BR/sw/messages.po320
-rw-r--r--source/pt-BR/vcl/messages.po128
-rw-r--r--source/pt/chart2/messages.po144
-rw-r--r--source/pt/cui/messages.po664
-rw-r--r--source/pt/dictionaries/eo.po12
-rw-r--r--source/pt/dictionaries/mn_MN.po23
-rw-r--r--source/pt/extensions/messages.po6
-rw-r--r--source/pt/extras/source/gallery/share.po13
-rw-r--r--source/pt/helpcontent2/source/text/sbasic/guide.po58
-rw-r--r--source/pt/helpcontent2/source/text/sbasic/shared.po436
-rw-r--r--source/pt/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/pt/helpcontent2/source/text/scalc/00.po13
-rw-r--r--source/pt/helpcontent2/source/text/scalc/01.po560
-rw-r--r--source/pt/helpcontent2/source/text/scalc/guide.po10
-rw-r--r--source/pt/helpcontent2/source/text/sdatabase.po283
-rw-r--r--source/pt/helpcontent2/source/text/shared/00.po23
-rw-r--r--source/pt/helpcontent2/source/text/shared/01.po1255
-rw-r--r--source/pt/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/pt/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/pt/helpcontent2/source/text/shared/guide.po38
-rw-r--r--source/pt/helpcontent2/source/text/shared/optionen.po22
-rw-r--r--source/pt/helpcontent2/source/text/simpress/guide.po8
-rw-r--r--source/pt/helpcontent2/source/text/swriter/01.po44
-rw-r--r--source/pt/helpcontent2/source/text/swriter/guide.po44
-rw-r--r--source/pt/officecfg/registry/data/org/openoffice/Office/UI.po102
-rw-r--r--source/pt/sc/messages.po264
-rw-r--r--source/pt/scp2/source/ooo.po10
-rw-r--r--source/pt/sd/messages.po362
-rw-r--r--source/pt/sfx2/messages.po516
-rw-r--r--source/pt/svtools/messages.po132
-rw-r--r--source/pt/svx/messages.po298
-rw-r--r--source/pt/sw/messages.po320
-rw-r--r--source/pt/vcl/messages.po128
-rw-r--r--source/ro/chart2/messages.po144
-rw-r--r--source/ro/cui/messages.po660
-rw-r--r--source/ro/dictionaries/mn_MN.po23
-rw-r--r--source/ro/extensions/messages.po4
-rw-r--r--source/ro/extras/source/gallery/share.po11
-rw-r--r--source/ro/helpcontent2/source/text/sbasic/shared.po418
-rw-r--r--source/ro/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/ro/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/ro/helpcontent2/source/text/scalc/01.po532
-rw-r--r--source/ro/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/ro/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/ro/helpcontent2/source/text/shared/00.po21
-rw-r--r--source/ro/helpcontent2/source/text/shared/01.po1117
-rw-r--r--source/ro/helpcontent2/source/text/shared/02.po6
-rw-r--r--source/ro/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/ro/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/ro/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/ro/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/ro/helpcontent2/source/text/swriter/01.po42
-rw-r--r--source/ro/helpcontent2/source/text/swriter/guide.po42
-rw-r--r--source/ro/officecfg/registry/data/org/openoffice/Office/UI.po98
-rw-r--r--source/ro/sc/messages.po264
-rw-r--r--source/ro/sd/messages.po360
-rw-r--r--source/ro/sfx2/messages.po510
-rw-r--r--source/ro/svtools/messages.po130
-rw-r--r--source/ro/svx/messages.po296
-rw-r--r--source/ro/sw/messages.po306
-rw-r--r--source/ro/vcl/messages.po126
-rw-r--r--source/ru/chart2/messages.po144
-rw-r--r--source/ru/cui/messages.po660
-rw-r--r--source/ru/dictionaries/mn_MN.po23
-rw-r--r--source/ru/extensions/messages.po6
-rw-r--r--source/ru/extras/source/gallery/share.po13
-rw-r--r--source/ru/helpcontent2/source/text/sbasic/shared.po436
-rw-r--r--source/ru/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/ru/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/ru/helpcontent2/source/text/scalc/01.po552
-rw-r--r--source/ru/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/ru/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/ru/helpcontent2/source/text/shared/00.po21
-rw-r--r--source/ru/helpcontent2/source/text/shared/01.po1221
-rw-r--r--source/ru/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/ru/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/ru/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/ru/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/ru/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/ru/helpcontent2/source/text/swriter/01.po44
-rw-r--r--source/ru/helpcontent2/source/text/swriter/guide.po44
-rw-r--r--source/ru/officecfg/registry/data/org/openoffice/Office/UI.po98
-rw-r--r--source/ru/sc/messages.po264
-rw-r--r--source/ru/sd/messages.po360
-rw-r--r--source/ru/sfx2/messages.po510
-rw-r--r--source/ru/svtools/messages.po130
-rw-r--r--source/ru/svx/messages.po296
-rw-r--r--source/ru/sw/messages.po308
-rw-r--r--source/ru/vcl/messages.po126
-rw-r--r--source/rw/chart2/messages.po144
-rw-r--r--source/rw/cui/messages.po660
-rw-r--r--source/rw/dictionaries/mn_MN.po23
-rw-r--r--source/rw/extensions/messages.po4
-rw-r--r--source/rw/extras/source/gallery/share.po11
-rw-r--r--source/rw/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/rw/sc/messages.po264
-rw-r--r--source/rw/sd/messages.po360
-rw-r--r--source/rw/sfx2/messages.po510
-rw-r--r--source/rw/svtools/messages.po130
-rw-r--r--source/rw/svx/messages.po296
-rw-r--r--source/rw/sw/messages.po306
-rw-r--r--source/rw/vcl/messages.po126
-rw-r--r--source/sa-IN/chart2/messages.po144
-rw-r--r--source/sa-IN/cui/messages.po663
-rw-r--r--source/sa-IN/dictionaries/mn_MN.po23
-rw-r--r--source/sa-IN/extensions/messages.po4
-rw-r--r--source/sa-IN/extras/source/gallery/share.po11
-rw-r--r--source/sa-IN/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/sa-IN/sc/messages.po264
-rw-r--r--source/sa-IN/sd/messages.po360
-rw-r--r--source/sa-IN/sfx2/messages.po510
-rw-r--r--source/sa-IN/svtools/messages.po130
-rw-r--r--source/sa-IN/svx/messages.po296
-rw-r--r--source/sa-IN/sw/messages.po306
-rw-r--r--source/sa-IN/vcl/messages.po126
-rw-r--r--source/sah/chart2/messages.po144
-rw-r--r--source/sah/cui/messages.po660
-rw-r--r--source/sah/dictionaries/mn_MN.po23
-rw-r--r--source/sah/extensions/messages.po4
-rw-r--r--source/sah/extras/source/gallery/share.po11
-rw-r--r--source/sah/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/sah/sc/messages.po264
-rw-r--r--source/sah/sd/messages.po360
-rw-r--r--source/sah/sfx2/messages.po510
-rw-r--r--source/sah/svtools/messages.po130
-rw-r--r--source/sah/svx/messages.po296
-rw-r--r--source/sah/sw/messages.po306
-rw-r--r--source/sah/vcl/messages.po126
-rw-r--r--source/sat/chart2/messages.po144
-rw-r--r--source/sat/cui/messages.po661
-rw-r--r--source/sat/dictionaries/mn_MN.po23
-rw-r--r--source/sat/extensions/messages.po4
-rw-r--r--source/sat/extras/source/gallery/share.po11
-rw-r--r--source/sat/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/sat/sc/messages.po264
-rw-r--r--source/sat/sd/messages.po360
-rw-r--r--source/sat/sfx2/messages.po510
-rw-r--r--source/sat/svtools/messages.po130
-rw-r--r--source/sat/svx/messages.po296
-rw-r--r--source/sat/sw/messages.po306
-rw-r--r--source/sat/vcl/messages.po126
-rw-r--r--source/sd/chart2/messages.po144
-rw-r--r--source/sd/cui/messages.po660
-rw-r--r--source/sd/dictionaries/mn_MN.po23
-rw-r--r--source/sd/extensions/messages.po4
-rw-r--r--source/sd/extras/source/gallery/share.po11
-rw-r--r--source/sd/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/sd/sc/messages.po264
-rw-r--r--source/sd/sd/messages.po360
-rw-r--r--source/sd/sfx2/messages.po510
-rw-r--r--source/sd/svtools/messages.po130
-rw-r--r--source/sd/svx/messages.po296
-rw-r--r--source/sd/sw/messages.po306
-rw-r--r--source/sd/vcl/messages.po126
-rw-r--r--source/si/chart2/messages.po146
-rw-r--r--source/si/cui/messages.po660
-rw-r--r--source/si/dictionaries/mn_MN.po23
-rw-r--r--source/si/extensions/messages.po6
-rw-r--r--source/si/extras/source/gallery/share.po11
-rw-r--r--source/si/helpcontent2/source/text/sbasic/shared.po422
-rw-r--r--source/si/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/si/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/si/helpcontent2/source/text/scalc/01.po534
-rw-r--r--source/si/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/si/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/si/helpcontent2/source/text/shared/00.po21
-rw-r--r--source/si/helpcontent2/source/text/shared/01.po1195
-rw-r--r--source/si/helpcontent2/source/text/shared/02.po6
-rw-r--r--source/si/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/si/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/si/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/si/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/si/helpcontent2/source/text/swriter/01.po42
-rw-r--r--source/si/helpcontent2/source/text/swriter/guide.po42
-rw-r--r--source/si/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/si/sc/messages.po266
-rw-r--r--source/si/sd/messages.po362
-rw-r--r--source/si/sfx2/messages.po510
-rw-r--r--source/si/svtools/messages.po132
-rw-r--r--source/si/svx/messages.po298
-rw-r--r--source/si/sw/messages.po306
-rw-r--r--source/si/vcl/messages.po126
-rw-r--r--source/sid/chart2/messages.po144
-rw-r--r--source/sid/cui/messages.po660
-rw-r--r--source/sid/dictionaries/mn_MN.po23
-rw-r--r--source/sid/extensions/messages.po4
-rw-r--r--source/sid/extras/source/gallery/share.po11
-rw-r--r--source/sid/helpcontent2/source/text/sbasic/shared.po436
-rw-r--r--source/sid/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/sid/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/sid/helpcontent2/source/text/scalc/01.po546
-rw-r--r--source/sid/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/sid/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/sid/helpcontent2/source/text/shared/00.po21
-rw-r--r--source/sid/helpcontent2/source/text/shared/01.po1217
-rw-r--r--source/sid/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/sid/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/sid/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/sid/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/sid/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/sid/helpcontent2/source/text/swriter/01.po44
-rw-r--r--source/sid/helpcontent2/source/text/swriter/guide.po44
-rw-r--r--source/sid/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/sid/sc/messages.po264
-rw-r--r--source/sid/sd/messages.po360
-rw-r--r--source/sid/sfx2/messages.po510
-rw-r--r--source/sid/svtools/messages.po130
-rw-r--r--source/sid/svx/messages.po296
-rw-r--r--source/sid/sw/messages.po306
-rw-r--r--source/sid/vcl/messages.po126
-rw-r--r--source/sk/chart2/messages.po186
-rw-r--r--source/sk/cui/messages.po676
-rw-r--r--source/sk/dbaccess/messages.po6
-rw-r--r--source/sk/dictionaries/eo.po12
-rw-r--r--source/sk/dictionaries/mn_MN.po23
-rw-r--r--source/sk/extensions/messages.po4
-rw-r--r--source/sk/extras/source/gallery/share.po13
-rw-r--r--source/sk/framework/messages.po10
-rw-r--r--source/sk/helpcontent2/source/text/sbasic/shared.po436
-rw-r--r--source/sk/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/sk/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/sk/helpcontent2/source/text/scalc/01.po542
-rw-r--r--source/sk/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/sk/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/sk/helpcontent2/source/text/shared/00.po21
-rw-r--r--source/sk/helpcontent2/source/text/shared/01.po1221
-rw-r--r--source/sk/helpcontent2/source/text/shared/02.po6
-rw-r--r--source/sk/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/sk/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/sk/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/sk/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/sk/helpcontent2/source/text/swriter/01.po44
-rw-r--r--source/sk/helpcontent2/source/text/swriter/guide.po42
-rw-r--r--source/sk/officecfg/registry/data/org/openoffice/Office.po18
-rw-r--r--source/sk/officecfg/registry/data/org/openoffice/Office/UI.po98
-rw-r--r--source/sk/sc/messages.po274
-rw-r--r--source/sk/scp2/source/ooo.po8
-rw-r--r--source/sk/sd/messages.po368
-rw-r--r--source/sk/sfx2/messages.po510
-rw-r--r--source/sk/starmath/messages.po8
-rw-r--r--source/sk/svtools/messages.po140
-rw-r--r--source/sk/svx/messages.po296
-rw-r--r--source/sk/sw/messages.po318
-rw-r--r--source/sk/vcl/messages.po135
-rw-r--r--source/sq/chart2/messages.po144
-rw-r--r--source/sq/cui/messages.po660
-rw-r--r--source/sq/dictionaries/mn_MN.po23
-rw-r--r--source/sq/extensions/messages.po4
-rw-r--r--source/sq/extras/source/gallery/share.po11
-rw-r--r--source/sq/helpcontent2/source/text/sbasic/shared.po420
-rw-r--r--source/sq/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/sq/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/sq/helpcontent2/source/text/scalc/01.po536
-rw-r--r--source/sq/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/sq/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/sq/helpcontent2/source/text/shared/00.po21
-rw-r--r--source/sq/helpcontent2/source/text/shared/01.po1119
-rw-r--r--source/sq/helpcontent2/source/text/shared/02.po6
-rw-r--r--source/sq/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/sq/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/sq/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/sq/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/sq/helpcontent2/source/text/swriter/01.po42
-rw-r--r--source/sq/helpcontent2/source/text/swriter/guide.po42
-rw-r--r--source/sq/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/sq/sc/messages.po264
-rw-r--r--source/sq/sd/messages.po360
-rw-r--r--source/sq/sfx2/messages.po510
-rw-r--r--source/sq/svtools/messages.po130
-rw-r--r--source/sq/svx/messages.po296
-rw-r--r--source/sq/sw/messages.po306
-rw-r--r--source/sq/vcl/messages.po126
-rw-r--r--source/sr-Latn/chart2/messages.po144
-rw-r--r--source/sr-Latn/cui/messages.po660
-rw-r--r--source/sr-Latn/dictionaries/mn_MN.po23
-rw-r--r--source/sr-Latn/extensions/messages.po4
-rw-r--r--source/sr-Latn/extras/source/gallery/share.po11
-rw-r--r--source/sr-Latn/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/sr-Latn/sc/messages.po264
-rw-r--r--source/sr-Latn/sd/messages.po360
-rw-r--r--source/sr-Latn/sfx2/messages.po510
-rw-r--r--source/sr-Latn/svtools/messages.po130
-rw-r--r--source/sr-Latn/svx/messages.po296
-rw-r--r--source/sr-Latn/sw/messages.po306
-rw-r--r--source/sr-Latn/vcl/messages.po126
-rw-r--r--source/sr/chart2/messages.po156
-rw-r--r--source/sr/cui/messages.po660
-rw-r--r--source/sr/dictionaries/mn_MN.po23
-rw-r--r--source/sr/extensions/messages.po4
-rw-r--r--source/sr/extras/source/gallery/share.po13
-rw-r--r--source/sr/officecfg/registry/data/org/openoffice/Office/UI.po98
-rw-r--r--source/sr/sc/messages.po266
-rw-r--r--source/sr/sd/messages.po360
-rw-r--r--source/sr/sfx2/messages.po510
-rw-r--r--source/sr/svtools/messages.po130
-rw-r--r--source/sr/svx/messages.po298
-rw-r--r--source/sr/sw/messages.po308
-rw-r--r--source/sr/vcl/messages.po126
-rw-r--r--source/ss/chart2/messages.po144
-rw-r--r--source/ss/cui/messages.po662
-rw-r--r--source/ss/dictionaries/mn_MN.po23
-rw-r--r--source/ss/extensions/messages.po4
-rw-r--r--source/ss/extras/source/gallery/share.po11
-rw-r--r--source/ss/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/ss/sc/messages.po264
-rw-r--r--source/ss/sd/messages.po360
-rw-r--r--source/ss/sfx2/messages.po510
-rw-r--r--source/ss/svtools/messages.po130
-rw-r--r--source/ss/svx/messages.po296
-rw-r--r--source/ss/sw/messages.po306
-rw-r--r--source/ss/vcl/messages.po126
-rw-r--r--source/st/chart2/messages.po144
-rw-r--r--source/st/cui/messages.po662
-rw-r--r--source/st/dictionaries/mn_MN.po23
-rw-r--r--source/st/extensions/messages.po4
-rw-r--r--source/st/extras/source/gallery/share.po11
-rw-r--r--source/st/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/st/sc/messages.po264
-rw-r--r--source/st/sd/messages.po360
-rw-r--r--source/st/sfx2/messages.po510
-rw-r--r--source/st/svtools/messages.po130
-rw-r--r--source/st/svx/messages.po296
-rw-r--r--source/st/sw/messages.po306
-rw-r--r--source/st/vcl/messages.po126
-rw-r--r--source/sv/chart2/messages.po144
-rw-r--r--source/sv/cui/messages.po734
-rw-r--r--source/sv/dictionaries/mn_MN.po23
-rw-r--r--source/sv/extensions/messages.po6
-rw-r--r--source/sv/extras/source/gallery/share.po13
-rw-r--r--source/sv/helpcontent2/source/text/sbasic/shared.po436
-rw-r--r--source/sv/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/sv/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/sv/helpcontent2/source/text/scalc/01.po552
-rw-r--r--source/sv/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/sv/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/sv/helpcontent2/source/text/shared/00.po21
-rw-r--r--source/sv/helpcontent2/source/text/shared/01.po1221
-rw-r--r--source/sv/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/sv/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/sv/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/sv/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/sv/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/sv/helpcontent2/source/text/swriter/01.po44
-rw-r--r--source/sv/helpcontent2/source/text/swriter/guide.po44
-rw-r--r--source/sv/officecfg/registry/data/org/openoffice/Office/UI.po98
-rw-r--r--source/sv/sc/messages.po264
-rw-r--r--source/sv/sd/messages.po360
-rw-r--r--source/sv/sfx2/messages.po514
-rw-r--r--source/sv/svtools/messages.po132
-rw-r--r--source/sv/svx/messages.po546
-rw-r--r--source/sv/sw/messages.po308
-rw-r--r--source/sv/vcl/messages.po126
-rw-r--r--source/sw-TZ/chart2/messages.po144
-rw-r--r--source/sw-TZ/cui/messages.po660
-rw-r--r--source/sw-TZ/dictionaries/mn_MN.po23
-rw-r--r--source/sw-TZ/extensions/messages.po4
-rw-r--r--source/sw-TZ/extras/source/gallery/share.po11
-rw-r--r--source/sw-TZ/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/sw-TZ/sc/messages.po264
-rw-r--r--source/sw-TZ/sd/messages.po360
-rw-r--r--source/sw-TZ/sfx2/messages.po510
-rw-r--r--source/sw-TZ/svtools/messages.po130
-rw-r--r--source/sw-TZ/svx/messages.po296
-rw-r--r--source/sw-TZ/sw/messages.po306
-rw-r--r--source/sw-TZ/vcl/messages.po126
-rw-r--r--source/szl/chart2/messages.po144
-rw-r--r--source/szl/cui/messages.po660
-rw-r--r--source/szl/dictionaries/mn_MN.po23
-rw-r--r--source/szl/extensions/messages.po4
-rw-r--r--source/szl/extras/source/gallery/share.po11
-rw-r--r--source/szl/officecfg/registry/data/org/openoffice/Office/UI.po98
-rw-r--r--source/szl/sc/messages.po264
-rw-r--r--source/szl/sd/messages.po360
-rw-r--r--source/szl/sfx2/messages.po510
-rw-r--r--source/szl/svtools/messages.po130
-rw-r--r--source/szl/svx/messages.po296
-rw-r--r--source/szl/sw/messages.po308
-rw-r--r--source/szl/vcl/messages.po126
-rw-r--r--source/ta/chart2/messages.po144
-rw-r--r--source/ta/cui/messages.po660
-rw-r--r--source/ta/dictionaries/mn_MN.po23
-rw-r--r--source/ta/extensions/messages.po4
-rw-r--r--source/ta/extras/source/gallery/share.po11
-rw-r--r--source/ta/helpcontent2/source/text/sbasic/shared.po420
-rw-r--r--source/ta/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/ta/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/ta/helpcontent2/source/text/scalc/01.po532
-rw-r--r--source/ta/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/ta/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/ta/helpcontent2/source/text/shared/00.po21
-rw-r--r--source/ta/helpcontent2/source/text/shared/01.po1213
-rw-r--r--source/ta/helpcontent2/source/text/shared/02.po6
-rw-r--r--source/ta/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/ta/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/ta/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/ta/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/ta/helpcontent2/source/text/swriter/01.po44
-rw-r--r--source/ta/helpcontent2/source/text/swriter/guide.po42
-rw-r--r--source/ta/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/ta/sc/messages.po264
-rw-r--r--source/ta/sd/messages.po360
-rw-r--r--source/ta/sfx2/messages.po510
-rw-r--r--source/ta/svtools/messages.po130
-rw-r--r--source/ta/svx/messages.po296
-rw-r--r--source/ta/sw/messages.po306
-rw-r--r--source/ta/vcl/messages.po126
-rw-r--r--source/te/chart2/messages.po144
-rw-r--r--source/te/cui/messages.po660
-rw-r--r--source/te/dictionaries/mn_MN.po23
-rw-r--r--source/te/extensions/messages.po4
-rw-r--r--source/te/extras/source/gallery/share.po11
-rw-r--r--source/te/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/te/sc/messages.po264
-rw-r--r--source/te/sd/messages.po360
-rw-r--r--source/te/sfx2/messages.po510
-rw-r--r--source/te/svtools/messages.po130
-rw-r--r--source/te/svx/messages.po296
-rw-r--r--source/te/sw/messages.po306
-rw-r--r--source/te/vcl/messages.po126
-rw-r--r--source/tg/chart2/messages.po144
-rw-r--r--source/tg/cui/messages.po661
-rw-r--r--source/tg/dictionaries/mn_MN.po23
-rw-r--r--source/tg/extensions/messages.po4
-rw-r--r--source/tg/extras/source/gallery/share.po11
-rw-r--r--source/tg/helpcontent2/source/text/sbasic/shared.po420
-rw-r--r--source/tg/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/tg/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/tg/helpcontent2/source/text/scalc/01.po550
-rw-r--r--source/tg/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/tg/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/tg/helpcontent2/source/text/shared/00.po21
-rw-r--r--source/tg/helpcontent2/source/text/shared/01.po1131
-rw-r--r--source/tg/helpcontent2/source/text/shared/02.po6
-rw-r--r--source/tg/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/tg/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/tg/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/tg/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/tg/helpcontent2/source/text/swriter/01.po42
-rw-r--r--source/tg/helpcontent2/source/text/swriter/guide.po42
-rw-r--r--source/tg/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/tg/sc/messages.po264
-rw-r--r--source/tg/sd/messages.po360
-rw-r--r--source/tg/sfx2/messages.po510
-rw-r--r--source/tg/svtools/messages.po130
-rw-r--r--source/tg/svx/messages.po296
-rw-r--r--source/tg/sw/messages.po306
-rw-r--r--source/tg/vcl/messages.po126
-rw-r--r--source/th/chart2/messages.po144
-rw-r--r--source/th/cui/messages.po660
-rw-r--r--source/th/dictionaries/mn_MN.po23
-rw-r--r--source/th/extensions/messages.po4
-rw-r--r--source/th/extras/source/gallery/share.po11
-rw-r--r--source/th/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/th/sc/messages.po264
-rw-r--r--source/th/sd/messages.po360
-rw-r--r--source/th/sfx2/messages.po510
-rw-r--r--source/th/svtools/messages.po130
-rw-r--r--source/th/svx/messages.po296
-rw-r--r--source/th/sw/messages.po306
-rw-r--r--source/th/vcl/messages.po126
-rw-r--r--source/ti/chart2/messages.po144
-rw-r--r--source/ti/cui/messages.po660
-rw-r--r--source/ti/dictionaries/mn_MN.po23
-rw-r--r--source/ti/extensions/messages.po4
-rw-r--r--source/ti/extras/source/gallery/share.po11
-rw-r--r--source/ti/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/ti/sc/messages.po264
-rw-r--r--source/ti/sd/messages.po360
-rw-r--r--source/ti/sfx2/messages.po510
-rw-r--r--source/ti/svtools/messages.po130
-rw-r--r--source/ti/svx/messages.po296
-rw-r--r--source/ti/sw/messages.po306
-rw-r--r--source/ti/vcl/messages.po126
-rw-r--r--source/tn/chart2/messages.po144
-rw-r--r--source/tn/cui/messages.po662
-rw-r--r--source/tn/dictionaries/mn_MN.po23
-rw-r--r--source/tn/extensions/messages.po4
-rw-r--r--source/tn/extras/source/gallery/share.po11
-rw-r--r--source/tn/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/tn/sc/messages.po264
-rw-r--r--source/tn/sd/messages.po360
-rw-r--r--source/tn/sfx2/messages.po510
-rw-r--r--source/tn/svtools/messages.po130
-rw-r--r--source/tn/svx/messages.po296
-rw-r--r--source/tn/sw/messages.po306
-rw-r--r--source/tn/vcl/messages.po126
-rw-r--r--source/tr/chart2/messages.po144
-rw-r--r--source/tr/cui/messages.po660
-rw-r--r--source/tr/dictionaries/mn_MN.po23
-rw-r--r--source/tr/extensions/messages.po4
-rw-r--r--source/tr/extras/source/gallery/share.po13
-rw-r--r--source/tr/helpcontent2/source/text/sbasic/shared.po436
-rw-r--r--source/tr/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/tr/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/tr/helpcontent2/source/text/scalc/01.po560
-rw-r--r--source/tr/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/tr/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/tr/helpcontent2/source/text/shared/00.po23
-rw-r--r--source/tr/helpcontent2/source/text/shared/01.po1221
-rw-r--r--source/tr/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/tr/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/tr/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/tr/helpcontent2/source/text/shared/optionen.po8
-rw-r--r--source/tr/helpcontent2/source/text/simpress/guide.po8
-rw-r--r--source/tr/helpcontent2/source/text/swriter/01.po44
-rw-r--r--source/tr/helpcontent2/source/text/swriter/guide.po44
-rw-r--r--source/tr/officecfg/registry/data/org/openoffice/Office/UI.po98
-rw-r--r--source/tr/sc/messages.po264
-rw-r--r--source/tr/sd/messages.po360
-rw-r--r--source/tr/sfx2/messages.po510
-rw-r--r--source/tr/svtools/messages.po130
-rw-r--r--source/tr/svx/messages.po296
-rw-r--r--source/tr/sw/messages.po364
-rw-r--r--source/tr/vcl/messages.po126
-rw-r--r--source/ts/chart2/messages.po144
-rw-r--r--source/ts/cui/messages.po663
-rw-r--r--source/ts/dictionaries/mn_MN.po23
-rw-r--r--source/ts/extensions/messages.po4
-rw-r--r--source/ts/extras/source/gallery/share.po11
-rw-r--r--source/ts/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/ts/sc/messages.po264
-rw-r--r--source/ts/sd/messages.po360
-rw-r--r--source/ts/sfx2/messages.po510
-rw-r--r--source/ts/svtools/messages.po130
-rw-r--r--source/ts/svx/messages.po296
-rw-r--r--source/ts/sw/messages.po306
-rw-r--r--source/ts/vcl/messages.po126
-rw-r--r--source/tt/chart2/messages.po144
-rw-r--r--source/tt/cui/messages.po661
-rw-r--r--source/tt/dictionaries/mn_MN.po23
-rw-r--r--source/tt/extensions/messages.po4
-rw-r--r--source/tt/extras/source/gallery/share.po11
-rw-r--r--source/tt/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/tt/sc/messages.po264
-rw-r--r--source/tt/sd/messages.po360
-rw-r--r--source/tt/sfx2/messages.po510
-rw-r--r--source/tt/svtools/messages.po130
-rw-r--r--source/tt/svx/messages.po296
-rw-r--r--source/tt/sw/messages.po306
-rw-r--r--source/tt/vcl/messages.po126
-rw-r--r--source/ug/chart2/messages.po144
-rw-r--r--source/ug/cui/messages.po660
-rw-r--r--source/ug/dictionaries/mn_MN.po23
-rw-r--r--source/ug/extensions/messages.po4
-rw-r--r--source/ug/extras/source/gallery/share.po11
-rw-r--r--source/ug/helpcontent2/source/text/sbasic/shared.po420
-rw-r--r--source/ug/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/ug/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/ug/helpcontent2/source/text/scalc/01.po532
-rw-r--r--source/ug/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/ug/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/ug/helpcontent2/source/text/shared/00.po21
-rw-r--r--source/ug/helpcontent2/source/text/shared/01.po1197
-rw-r--r--source/ug/helpcontent2/source/text/shared/02.po6
-rw-r--r--source/ug/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/ug/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/ug/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/ug/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/ug/helpcontent2/source/text/swriter/01.po42
-rw-r--r--source/ug/helpcontent2/source/text/swriter/guide.po42
-rw-r--r--source/ug/officecfg/registry/data/org/openoffice/Office/UI.po98
-rw-r--r--source/ug/sc/messages.po264
-rw-r--r--source/ug/sd/messages.po360
-rw-r--r--source/ug/sfx2/messages.po510
-rw-r--r--source/ug/svtools/messages.po130
-rw-r--r--source/ug/svx/messages.po296
-rw-r--r--source/ug/sw/messages.po306
-rw-r--r--source/ug/vcl/messages.po126
-rw-r--r--source/uk/chart2/messages.po172
-rw-r--r--source/uk/cui/messages.po674
-rw-r--r--source/uk/dictionaries/eo.po12
-rw-r--r--source/uk/dictionaries/mn_MN.po25
-rw-r--r--source/uk/extensions/messages.po4
-rw-r--r--source/uk/extras/source/gallery/share.po13
-rw-r--r--source/uk/filter/messages.po6
-rw-r--r--source/uk/framework/messages.po46
-rw-r--r--source/uk/helpcontent2/source/text/sbasic/shared.po436
-rw-r--r--source/uk/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/uk/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/uk/helpcontent2/source/text/scalc/01.po534
-rw-r--r--source/uk/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/uk/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/uk/helpcontent2/source/text/shared/00.po23
-rw-r--r--source/uk/helpcontent2/source/text/shared/01.po1259
-rw-r--r--source/uk/helpcontent2/source/text/shared/02.po6
-rw-r--r--source/uk/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/uk/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/uk/helpcontent2/source/text/shared/optionen.po66
-rw-r--r--source/uk/helpcontent2/source/text/simpress/guide.po8
-rw-r--r--source/uk/helpcontent2/source/text/smath/01.po102
-rw-r--r--source/uk/helpcontent2/source/text/swriter/01.po44
-rw-r--r--source/uk/helpcontent2/source/text/swriter/guide.po44
-rw-r--r--source/uk/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/uk/officecfg/registry/data/org/openoffice/Office/UI.po192
-rw-r--r--source/uk/sc/messages.po344
-rw-r--r--source/uk/scp2/source/ooo.po12
-rw-r--r--source/uk/sd/messages.po372
-rw-r--r--source/uk/sfx2/messages.po654
-rw-r--r--source/uk/starmath/messages.po102
-rw-r--r--source/uk/svtools/messages.po132
-rw-r--r--source/uk/svx/messages.po304
-rw-r--r--source/uk/sw/messages.po494
-rw-r--r--source/uk/sysui/desktop/share.po80
-rw-r--r--source/uk/uui/messages.po6
-rw-r--r--source/uk/vcl/messages.po133
-rw-r--r--source/ur/chart2/messages.po144
-rw-r--r--source/ur/cui/messages.po660
-rw-r--r--source/ur/dictionaries/mn_MN.po23
-rw-r--r--source/ur/extensions/messages.po4
-rw-r--r--source/ur/extras/source/gallery/share.po11
-rw-r--r--source/ur/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/ur/sc/messages.po264
-rw-r--r--source/ur/sd/messages.po360
-rw-r--r--source/ur/sfx2/messages.po510
-rw-r--r--source/ur/svtools/messages.po130
-rw-r--r--source/ur/svx/messages.po296
-rw-r--r--source/ur/sw/messages.po306
-rw-r--r--source/ur/vcl/messages.po126
-rw-r--r--source/uz/chart2/messages.po144
-rw-r--r--source/uz/cui/messages.po660
-rw-r--r--source/uz/dictionaries/mn_MN.po23
-rw-r--r--source/uz/extensions/messages.po4
-rw-r--r--source/uz/extras/source/gallery/share.po11
-rw-r--r--source/uz/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/uz/sc/messages.po264
-rw-r--r--source/uz/sd/messages.po360
-rw-r--r--source/uz/sfx2/messages.po510
-rw-r--r--source/uz/svtools/messages.po130
-rw-r--r--source/uz/svx/messages.po296
-rw-r--r--source/uz/sw/messages.po306
-rw-r--r--source/uz/vcl/messages.po126
-rw-r--r--source/ve/chart2/messages.po144
-rw-r--r--source/ve/cui/messages.po662
-rw-r--r--source/ve/dictionaries/mn_MN.po23
-rw-r--r--source/ve/extensions/messages.po4
-rw-r--r--source/ve/extras/source/gallery/share.po11
-rw-r--r--source/ve/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/ve/sc/messages.po264
-rw-r--r--source/ve/sd/messages.po360
-rw-r--r--source/ve/sfx2/messages.po510
-rw-r--r--source/ve/svtools/messages.po130
-rw-r--r--source/ve/svx/messages.po296
-rw-r--r--source/ve/sw/messages.po306
-rw-r--r--source/ve/vcl/messages.po126
-rw-r--r--source/vec/chart2/messages.po144
-rw-r--r--source/vec/cui/messages.po660
-rw-r--r--source/vec/dictionaries/mn_MN.po23
-rw-r--r--source/vec/extensions/messages.po6
-rw-r--r--source/vec/extras/source/gallery/share.po13
-rw-r--r--source/vec/officecfg/registry/data/org/openoffice/Office/UI.po98
-rw-r--r--source/vec/sc/messages.po266
-rw-r--r--source/vec/sd/messages.po360
-rw-r--r--source/vec/sfx2/messages.po510
-rw-r--r--source/vec/svtools/messages.po132
-rw-r--r--source/vec/svx/messages.po296
-rw-r--r--source/vec/sw/messages.po310
-rw-r--r--source/vec/vcl/messages.po126
-rw-r--r--source/vi/chart2/messages.po144
-rw-r--r--source/vi/cui/messages.po660
-rw-r--r--source/vi/dictionaries/mn_MN.po23
-rw-r--r--source/vi/extensions/messages.po4
-rw-r--r--source/vi/extras/source/gallery/share.po11
-rw-r--r--source/vi/helpcontent2/source/text/sbasic/shared.po436
-rw-r--r--source/vi/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/vi/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/vi/helpcontent2/source/text/scalc/01.po552
-rw-r--r--source/vi/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/vi/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/vi/helpcontent2/source/text/shared/00.po21
-rw-r--r--source/vi/helpcontent2/source/text/shared/01.po1209
-rw-r--r--source/vi/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/vi/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/vi/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/vi/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/vi/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/vi/helpcontent2/source/text/swriter/01.po44
-rw-r--r--source/vi/helpcontent2/source/text/swriter/guide.po44
-rw-r--r--source/vi/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/vi/sc/messages.po264
-rw-r--r--source/vi/sd/messages.po360
-rw-r--r--source/vi/sfx2/messages.po510
-rw-r--r--source/vi/svtools/messages.po130
-rw-r--r--source/vi/svx/messages.po296
-rw-r--r--source/vi/sw/messages.po306
-rw-r--r--source/vi/vcl/messages.po126
-rw-r--r--source/xh/chart2/messages.po144
-rw-r--r--source/xh/cui/messages.po663
-rw-r--r--source/xh/dictionaries/mn_MN.po23
-rw-r--r--source/xh/extensions/messages.po4
-rw-r--r--source/xh/extras/source/gallery/share.po11
-rw-r--r--source/xh/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/xh/sc/messages.po264
-rw-r--r--source/xh/sd/messages.po360
-rw-r--r--source/xh/sfx2/messages.po510
-rw-r--r--source/xh/svtools/messages.po130
-rw-r--r--source/xh/svx/messages.po296
-rw-r--r--source/xh/sw/messages.po306
-rw-r--r--source/xh/vcl/messages.po126
-rw-r--r--source/zh-CN/chart2/messages.po148
-rw-r--r--source/zh-CN/cui/messages.po666
-rw-r--r--source/zh-CN/dictionaries/eo.po12
-rw-r--r--source/zh-CN/dictionaries/mn_MN.po25
-rw-r--r--source/zh-CN/extensions/messages.po6
-rw-r--r--source/zh-CN/extras/source/gallery/share.po19
-rw-r--r--source/zh-CN/framework/messages.po8
-rw-r--r--source/zh-CN/helpcontent2/source/text/sbasic/shared.po436
-rw-r--r--source/zh-CN/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc/01.po566
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/zh-CN/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/00.po23
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/01.po1229
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/optionen.po8
-rw-r--r--source/zh-CN/helpcontent2/source/text/simpress/guide.po8
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/01.po44
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/guide.po44
-rw-r--r--source/zh-CN/officecfg/registry/data/org/openoffice/Office/UI.po116
-rw-r--r--source/zh-CN/sc/messages.po278
-rw-r--r--source/zh-CN/scp2/source/ooo.po8
-rw-r--r--source/zh-CN/sd/messages.po362
-rw-r--r--source/zh-CN/sfx2/messages.po534
-rw-r--r--source/zh-CN/svtools/messages.po132
-rw-r--r--source/zh-CN/svx/messages.po298
-rw-r--r--source/zh-CN/sw/messages.po354
-rw-r--r--source/zh-CN/vcl/messages.po135
-rw-r--r--source/zh-TW/chart2/messages.po144
-rw-r--r--source/zh-TW/cui/messages.po660
-rw-r--r--source/zh-TW/dictionaries/eo.po12
-rw-r--r--source/zh-TW/dictionaries/mn_MN.po23
-rw-r--r--source/zh-TW/extensions/messages.po6
-rw-r--r--source/zh-TW/extras/source/gallery/share.po13
-rw-r--r--source/zh-TW/filter/messages.po10
-rw-r--r--source/zh-TW/helpcontent2/source/text/sbasic/shared.po436
-rw-r--r--source/zh-TW/helpcontent2/source/text/sbasic/shared/03.po2819
-rw-r--r--source/zh-TW/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/zh-TW/helpcontent2/source/text/scalc/01.po552
-rw-r--r--source/zh-TW/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/zh-TW/helpcontent2/source/text/sdatabase.po281
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/00.po21
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/01.po1151
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/explorer/database.po281
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/zh-TW/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/zh-TW/helpcontent2/source/text/swriter/01.po44
-rw-r--r--source/zh-TW/helpcontent2/source/text/swriter/guide.po44
-rw-r--r--source/zh-TW/officecfg/registry/data/org/openoffice/Office/UI.po98
-rw-r--r--source/zh-TW/sc/messages.po454
-rw-r--r--source/zh-TW/sd/messages.po362
-rw-r--r--source/zh-TW/sfx2/messages.po510
-rw-r--r--source/zh-TW/svtools/messages.po132
-rw-r--r--source/zh-TW/svx/messages.po296
-rw-r--r--source/zh-TW/sw/messages.po308
-rw-r--r--source/zh-TW/vcl/messages.po128
-rw-r--r--source/zu/chart2/messages.po144
-rw-r--r--source/zu/cui/messages.po662
-rw-r--r--source/zu/dictionaries/mn_MN.po23
-rw-r--r--source/zu/extensions/messages.po4
-rw-r--r--source/zu/extras/source/gallery/share.po11
-rw-r--r--source/zu/officecfg/registry/data/org/openoffice/Office/UI.po96
-rw-r--r--source/zu/sc/messages.po264
-rw-r--r--source/zu/sd/messages.po360
-rw-r--r--source/zu/sfx2/messages.po510
-rw-r--r--source/zu/svtools/messages.po130
-rw-r--r--source/zu/svx/messages.po296
-rw-r--r--source/zu/sw/messages.po306
-rw-r--r--source/zu/vcl/messages.po126
2909 files changed, 499530 insertions, 260618 deletions
diff --git a/source/ab/chart2/messages.po b/source/ab/chart2/messages.po
index 28b9c584ca9..11486fcbac6 100644
--- a/source/ab/chart2/messages.po
+++ b/source/ab/chart2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:01+0200\n"
+"POT-Creation-Date: 2021-04-27 17:02+0200\n"
"PO-Revision-Date: 2021-02-08 11:26+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/chart2messages/ab/>\n"
@@ -1386,217 +1386,217 @@ msgid "_Series name"
msgstr ""
#. 8bEui
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:268
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:267
msgctxt "dlg_DataLabel|extended_tip|CB_DATA_SERIES_NAME"
msgid "Shows the data series name in the label."
msgstr ""
#. mFeMA
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:289
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:288
msgctxt "dlg_DataLabel|label1"
msgid "Text Attributes"
msgstr "Атеқст атрибутқәа"
#. FDBQW
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:323
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:322
msgctxt "dlg_DataLabel|FT_LABEL_PLACEMENT"
msgid "Place_ment"
msgstr "Аҭыԥы_ркра"
#. RBvRC
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:339
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:338
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Best fit"
msgstr "Иоптималтәу амасштабркра"
#. CFGTS
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:340
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:339
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Center"
msgstr "Ацентр"
#. kxNDG
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:341
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:340
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Above"
msgstr "Хыхьла"
#. dnhiD
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:342
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:341
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Top left"
msgstr "Хыхьла арымарахь"
#. TGuEk
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:343
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:342
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Left"
msgstr "Арымарахь"
#. eUxTR
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:344
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:343
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Bottom left"
msgstr "Ҵаҟала арымарахь"
#. CGQj7
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:345
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:344
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Below"
msgstr "Ҵаҟала"
#. UJ7uQ
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:346
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:345
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Bottom right"
msgstr "Ҵаҟала арыӷьарахь"
#. nEFuG
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:347
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:346
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Right"
msgstr "Арыӷьарахь"
#. NQCGE
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:348
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:347
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Top right"
msgstr "Хыхьла арыӷьарахь"
#. UagUt
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:349
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:348
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Inside"
msgstr "Аҩныҵҟа"
#. y25DL
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:350
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:349
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Outside"
msgstr "Адәныҟа"
#. 3HjyB
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:351
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:350
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Near origin"
msgstr "Акоординатқәа ралагамҭа авараҟны"
#. TMEug
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:355
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:354
msgctxt "dlg_DataLabel|extended_tip|LB_LABEL_PLACEMENT"
msgid "Selects the placement of data labels relative to the objects."
msgstr ""
#. NvbuM
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:368
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:367
msgctxt "dlg_DataLabel|FT_TEXT_SEPARATOR"
msgid "_Separator"
msgstr "Аиҟәшага"
#. m8qsr
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:384
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:383
msgctxt "dlg_DataLabel|liststoreSEPARATOR"
msgid "Space"
msgstr "Акосмос"
#. d6M3S
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:385
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:384
msgctxt "dlg_DataLabel|liststoreSEPARATOR"
msgid "Comma"
msgstr "Аҿарҵәи"
#. HUBkD
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:386
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:385
msgctxt "dlg_DataLabel|liststoreSEPARATOR"
msgid "Semicolon"
msgstr "Акәаԥ аҿарҵәи ацны"
#. 3CaCX
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:387
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:386
msgctxt "dlg_DataLabel|liststoreSEPARATOR"
msgid "New line"
msgstr "Ацәаҳәа ҿыц"
#. CAtwB
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:388
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:387
msgctxt "dlg_DataLabel|liststoreSEPARATOR"
msgid "Period"
msgstr "Акәаԥ"
#. 8Z3DJ
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:392
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:391
msgctxt "dlg_DataLabel|extended_tip|LB_TEXT_SEPARATOR"
msgid "Selects the separator between multiple text strings for the same object."
msgstr ""
#. oEFpN
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:407
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:406
msgctxt "dlg_DataLabel|label1"
msgid "Attribute Options"
msgstr ""
#. gE7CA
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:459
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:458
msgctxt "dlg_DataLabel|extended_tip|CT_DIAL"
msgid "Click in the dial to set the text orientation for the data labels."
msgstr ""
#. MjCoG
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:480
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:479
msgctxt "dlg_DataLabel|extended_tip|NF_LABEL_DEGREES"
msgid "Enter the counterclockwise rotation angle for the data labels."
msgstr ""
#. Jhjwb
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:494
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:493
msgctxt "dlg_DataLabel|FT_LABEL_DEGREES"
msgid "_Degrees"
msgstr "Градуск"
#. vtVy2
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:519
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:518
msgctxt "dlg_DataLabel|FT_LABEL_TEXTDIR"
msgid "Te_xt direction"
msgstr "Атеқст ахырхарҭа"
#. tjcHp
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:536
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:535
msgctxt "dlg_DataLabel|extended_tip|LB_LABEL_TEXTDIR"
msgid "Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled."
msgstr ""
#. xpAEz
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:559
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:558
msgctxt "dlg_DataLabel|label2"
msgid "Rotate Text"
msgstr "Атеқст аргьежьра"
#. NpD8D
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:588
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:587
msgctxt "dlg_DataLabel|CB_CUSTOM_LEADER_LINES"
msgid "_Connect displaced data labels to data points"
msgstr ""
#. MJdmK
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:596
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:595
msgctxt "dlg_DataLabel|extended_tip|CB_CUSTOM_LEADER_LINES"
msgid "Draws a line connecting the data labels to the data points"
msgstr ""
#. UKVF9
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:612
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:611
msgctxt "dlg_DataLabel|label3"
msgid "Leader Lines"
msgstr ""
#. 2cE35
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:642
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:641
msgctxt "dlg_DataLabel|extended_tip|dlg_DataLabel"
msgid "Opens the Data Labels dialog, which enables you to set the data labels."
msgstr ""
#. bt7D7
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:661
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:660
msgctxt "dlg_DataLabel|extended_tip|dlg_DataLabels"
msgid "Opens the Data Labels dialog, which enables you to set the data labels."
msgstr ""
@@ -3702,211 +3702,211 @@ msgid "_Series name"
msgstr ""
#. 3tWYv
-#: chart2/uiconfig/ui/tp_DataLabel.ui:200
+#: chart2/uiconfig/ui/tp_DataLabel.ui:199
msgctxt "tp_DataLabel|extended_tip|CB_DATA_SERIES_NAME"
msgid "Shows the data series name in the label."
msgstr ""
#. 3BZrx
-#: chart2/uiconfig/ui/tp_DataLabel.ui:221
+#: chart2/uiconfig/ui/tp_DataLabel.ui:220
msgctxt "tp_DataLabel|label1"
msgid "Text Attributes"
msgstr "Атеқст атрибутқәа"
#. 2MNGz
-#: chart2/uiconfig/ui/tp_DataLabel.ui:255
+#: chart2/uiconfig/ui/tp_DataLabel.ui:254
msgctxt "tp_DataLabel|FT_LABEL_PLACEMENT"
msgid "Place_ment"
msgstr "Аҭыԥы_ркра"
#. L2MYb
-#: chart2/uiconfig/ui/tp_DataLabel.ui:271
+#: chart2/uiconfig/ui/tp_DataLabel.ui:270
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Best fit"
msgstr "Иоптималтәу амасштабркра"
#. ba7eW
-#: chart2/uiconfig/ui/tp_DataLabel.ui:272
+#: chart2/uiconfig/ui/tp_DataLabel.ui:271
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Center"
msgstr "Ацентр"
#. nW5vs
-#: chart2/uiconfig/ui/tp_DataLabel.ui:273
+#: chart2/uiconfig/ui/tp_DataLabel.ui:272
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Above"
msgstr "Хыхьла"
#. gW9Aa
-#: chart2/uiconfig/ui/tp_DataLabel.ui:274
+#: chart2/uiconfig/ui/tp_DataLabel.ui:273
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Top left"
msgstr "Хыхьла арымарахь"
#. UQBcJ
-#: chart2/uiconfig/ui/tp_DataLabel.ui:275
+#: chart2/uiconfig/ui/tp_DataLabel.ui:274
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Left"
msgstr "Арымарахь"
#. CVw6x
-#: chart2/uiconfig/ui/tp_DataLabel.ui:276
+#: chart2/uiconfig/ui/tp_DataLabel.ui:275
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Bottom left"
msgstr "Ҵаҟала арымарахь"
#. EF7Qb
-#: chart2/uiconfig/ui/tp_DataLabel.ui:277
+#: chart2/uiconfig/ui/tp_DataLabel.ui:276
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Below"
msgstr "Ҵаҟала"
#. bdAYf
-#: chart2/uiconfig/ui/tp_DataLabel.ui:278
+#: chart2/uiconfig/ui/tp_DataLabel.ui:277
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Bottom right"
msgstr "Ҵаҟала арыӷьарахь"
#. kHGEs
-#: chart2/uiconfig/ui/tp_DataLabel.ui:279
+#: chart2/uiconfig/ui/tp_DataLabel.ui:278
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Right"
msgstr "Арыӷьарахь"
#. GFkmP
-#: chart2/uiconfig/ui/tp_DataLabel.ui:280
+#: chart2/uiconfig/ui/tp_DataLabel.ui:279
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Top right"
msgstr "Хыхьла арыӷьарахь"
#. KFZhx
-#: chart2/uiconfig/ui/tp_DataLabel.ui:281
+#: chart2/uiconfig/ui/tp_DataLabel.ui:280
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Inside"
msgstr "Аҩныҵҟа"
#. BJm6w
-#: chart2/uiconfig/ui/tp_DataLabel.ui:282
+#: chart2/uiconfig/ui/tp_DataLabel.ui:281
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Outside"
msgstr "Адәныҟа"
#. XGkMi
-#: chart2/uiconfig/ui/tp_DataLabel.ui:283
+#: chart2/uiconfig/ui/tp_DataLabel.ui:282
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Near origin"
msgstr "Акоординатқәа ралагамҭа авараҟны"
#. vq2Bf
-#: chart2/uiconfig/ui/tp_DataLabel.ui:287
+#: chart2/uiconfig/ui/tp_DataLabel.ui:286
msgctxt "tp_DataLabel|extended_tip|LB_LABEL_PLACEMENT"
msgid "Selects the placement of data labels relative to the objects."
msgstr ""
#. GqA8C
-#: chart2/uiconfig/ui/tp_DataLabel.ui:300
+#: chart2/uiconfig/ui/tp_DataLabel.ui:299
msgctxt "tp_DataLabel|FT_TEXT_SEPARATOR"
msgid "_Separator"
msgstr "Аиҟәшага"
#. oPhGH
-#: chart2/uiconfig/ui/tp_DataLabel.ui:316
+#: chart2/uiconfig/ui/tp_DataLabel.ui:315
msgctxt "tp_DataLabel|liststoreSEPARATOR"
msgid "Space"
msgstr "Абжьажь"
#. fR4fG
-#: chart2/uiconfig/ui/tp_DataLabel.ui:317
+#: chart2/uiconfig/ui/tp_DataLabel.ui:316
msgctxt "tp_DataLabel|liststoreSEPARATOR"
msgid "Comma"
msgstr "Аҿарҵәи"
#. 5baF4
-#: chart2/uiconfig/ui/tp_DataLabel.ui:318
+#: chart2/uiconfig/ui/tp_DataLabel.ui:317
msgctxt "tp_DataLabel|liststoreSEPARATOR"
msgid "Semicolon"
msgstr "Акәаԥ аҿарҵәи ацны"
#. 8MGkQ
-#: chart2/uiconfig/ui/tp_DataLabel.ui:319
+#: chart2/uiconfig/ui/tp_DataLabel.ui:318
msgctxt "tp_DataLabel|liststoreSEPARATOR"
msgid "New line"
msgstr "Ацәаҳәа ҿыц"
#. bpmiF
-#: chart2/uiconfig/ui/tp_DataLabel.ui:320
+#: chart2/uiconfig/ui/tp_DataLabel.ui:319
msgctxt "tp_DataLabel|liststoreSEPARATOR"
msgid "Period"
msgstr "Акәаԥ"
#. jjR8u
-#: chart2/uiconfig/ui/tp_DataLabel.ui:324
+#: chart2/uiconfig/ui/tp_DataLabel.ui:323
msgctxt "tp_DataLabel|extended_tip|LB_TEXT_SEPARATOR"
msgid "Selects the separator between multiple text strings for the same object."
msgstr ""
#. mFEKm
-#: chart2/uiconfig/ui/tp_DataLabel.ui:339
+#: chart2/uiconfig/ui/tp_DataLabel.ui:338
msgctxt "tp_DataLabel|label1"
msgid "Attribute Options"
msgstr ""
#. avLCL
-#: chart2/uiconfig/ui/tp_DataLabel.ui:391
+#: chart2/uiconfig/ui/tp_DataLabel.ui:390
msgctxt "tp_DataLabel|extended_tip|CT_DIAL"
msgid "Click in the dial to set the text orientation for the data labels."
msgstr ""
#. eKwUH
-#: chart2/uiconfig/ui/tp_DataLabel.ui:412
+#: chart2/uiconfig/ui/tp_DataLabel.ui:411
msgctxt "tp_DataLabel|extended_tip|NF_LABEL_DEGREES"
msgid "Enter the counterclockwise rotation angle for the data labels."
msgstr ""
#. VArif
-#: chart2/uiconfig/ui/tp_DataLabel.ui:426
+#: chart2/uiconfig/ui/tp_DataLabel.ui:425
msgctxt "tp_DataLabel|FT_LABEL_DEGREES"
msgid "_Degrees"
msgstr "Градуск"
#. zdP7E
-#: chart2/uiconfig/ui/tp_DataLabel.ui:451
+#: chart2/uiconfig/ui/tp_DataLabel.ui:450
msgctxt "tp_DataLabel|FT_LABEL_TEXTDIR"
msgid "Te_xt direction"
msgstr "Атеқст ахырхарҭа"
#. MYXZo
-#: chart2/uiconfig/ui/tp_DataLabel.ui:468
+#: chart2/uiconfig/ui/tp_DataLabel.ui:467
msgctxt "tp_DataLabel|extended_tip|LB_LABEL_TEXTDIR"
msgid "Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled."
msgstr ""
#. PKnKk
-#: chart2/uiconfig/ui/tp_DataLabel.ui:491
+#: chart2/uiconfig/ui/tp_DataLabel.ui:490
msgctxt "tp_DataLabel|label2"
msgid "Rotate Text"
msgstr "Атеқст аргьежьра"
#. wBzcx
-#: chart2/uiconfig/ui/tp_DataLabel.ui:520
+#: chart2/uiconfig/ui/tp_DataLabel.ui:519
msgctxt "tp_DataLabel|CB_CUSTOM_LEADER_LINES"
msgid "_Connect displaced data labels to data points"
msgstr ""
#. BXobT
-#: chart2/uiconfig/ui/tp_DataLabel.ui:528
+#: chart2/uiconfig/ui/tp_DataLabel.ui:527
msgctxt "tp_DataLabel|extended_tip|CB_CUSTOM_LEADER_LINES"
msgid "Draws a line connecting the data labels to the data points"
msgstr ""
#. MBFBB
-#: chart2/uiconfig/ui/tp_DataLabel.ui:544
+#: chart2/uiconfig/ui/tp_DataLabel.ui:543
msgctxt "tp_DataLabel|label3"
msgid "Leader Lines"
msgstr ""
#. iDheE
-#: chart2/uiconfig/ui/tp_DataLabel.ui:574
+#: chart2/uiconfig/ui/tp_DataLabel.ui:573
msgctxt "tp_DataLabel|extended_tip|tp_DataLabel"
msgid "Opens the Data Labels dialog, which enables you to set the data labels."
msgstr ""
diff --git a/source/ab/cui/messages.po b/source/ab/cui/messages.po
index 18b023728e8..a49f52eb451 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: 2021-04-12 12:05+0200\n"
+"POT-Creation-Date: 2021-04-27 17:02+0200\n"
"PO-Revision-Date: 2021-02-04 19:36+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/ab/>\n"
@@ -400,870 +400,900 @@ msgctxt "RID_SVXSTR_RENAME_TOOLBAR"
msgid "Rename Toolbar"
msgstr "Апанель ахьӡ ҧсахтәуп"
-#. GN45E
+#. GsaZE
+#: cui/inc/strings.hrc:70
+msgctxt "RID_SVXSTR_ALL_COMMANDS"
+msgid "All Commands"
+msgstr ""
+
+#. A7cUy
#: cui/inc/strings.hrc:71
+msgctxt "RID_SVXSTR_TABBED"
+msgid "Tabbed"
+msgstr ""
+
+#. xqrfE
+#: cui/inc/strings.hrc:72
+msgctxt "RID_SVXSTR_TABBED_COMPACT"
+msgid "Tabbed Compact"
+msgstr ""
+
+#. fLLH2
+#: cui/inc/strings.hrc:73
+msgctxt "RID_SVXSTR_GROUPEDBAR"
+msgid "Groupedbar"
+msgstr ""
+
+#. AnFxX
+#: cui/inc/strings.hrc:74
+msgctxt "RID_SVXSTR_GROUPEDBAR_COMPACT"
+msgid "Groupedbar Compact"
+msgstr ""
+
+#. GN45E
+#: cui/inc/strings.hrc:76
msgctxt "RID_SVXSTR_HYPDLG_CLOSEBUT"
msgid "Close"
msgstr "Иарктәуп"
#. dkH9d
-#: cui/inc/strings.hrc:72
+#: cui/inc/strings.hrc:77
msgctxt "RID_SVXSTR_HYPDLG_MACROACT1"
msgid "Mouse over object"
msgstr "Аҳәынаҧ аобиект аҩадахьы"
#. 4QYHe
-#: cui/inc/strings.hrc:73
+#: cui/inc/strings.hrc:78
msgctxt "RID_SVXSTR_HYPDLG_MACROACT2"
msgid "Trigger hyperlink"
msgstr "Агиперзхьарҧш ала аиасра"
#. WMQPj
-#: cui/inc/strings.hrc:74
+#: cui/inc/strings.hrc:79
msgctxt "RID_SVXSTR_HYPDLG_MACROACT3"
msgid "Mouse leaves object"
msgstr "Аҳәынаҧ аобиект ннажьуеит"
#. E8XCn
-#: cui/inc/strings.hrc:75
+#: cui/inc/strings.hrc:80
msgctxt "RID_SVXSTR_HYPDLG_NOVALIDFILENAME"
msgid "Please type in a valid file name."
msgstr "Иҭажәгал афаил ииашоу ахьӡ."
#. ES4Pj
-#: cui/inc/strings.hrc:76
+#: cui/inc/strings.hrc:81
msgctxt "RID_SVXSTR_HYPERDLG_FORM_BUTTON"
msgid "Button"
msgstr "Акнопка"
#. MPHHF
-#: cui/inc/strings.hrc:77
+#: cui/inc/strings.hrc:82
msgctxt "RID_SVXSTR_HYPERDLG_FROM_TEXT"
msgid "Text"
msgstr "Атеқст"
#. 9nkb2
-#: cui/inc/strings.hrc:78
+#: cui/inc/strings.hrc:83
msgctxt "RID_SVXSTR_HYPERDLG_QUERYOVERWRITE"
msgid "The file already exists. Overwrite?"
msgstr "Ари афаил ыҟоуп. Ихҩылаатәума?"
#. smWax
-#: cui/inc/strings.hrc:80
+#: cui/inc/strings.hrc:85
msgctxt "RID_SVXSTR_SELECT_FILE_IFRAME"
msgid "Select File for Floating Frame"
msgstr "Иалхтәуп афаил афреим азы"
#. F74rR
-#: cui/inc/strings.hrc:81
+#: cui/inc/strings.hrc:86
msgctxt "RID_SVXSTR_ALLFUNCTIONS"
msgid "All commands"
msgstr "Акомандақәа зегьы"
#. EeB6i
-#: cui/inc/strings.hrc:82
+#: cui/inc/strings.hrc:87
msgctxt "RID_SVXSTR_MACROS"
msgid "Macros"
msgstr "Амакросқәа"
#. mkEjQ
-#: cui/inc/strings.hrc:83
+#: cui/inc/strings.hrc:88
msgctxt "RID_SVXSTR_MYMACROS"
msgid "My Macros"
msgstr "Сара смакросқәа"
#. Cv5m8
-#: cui/inc/strings.hrc:84
+#: cui/inc/strings.hrc:89
msgctxt "RID_SVXSTR_PRODMACROS"
msgid "%PRODUCTNAME Macros"
msgstr "%PRODUCTNAME Амакросқәа"
#. RGCGW
-#: cui/inc/strings.hrc:85
+#: cui/inc/strings.hrc:90
msgctxt "RID_SVXSTR_NOMACRODESC"
msgid "There is no description available for this macro."
msgstr "Ахҳәаа ыҟам."
#. AFniE
-#: cui/inc/strings.hrc:86
+#: cui/inc/strings.hrc:91
msgctxt "RID_SVXSTR_SELECTOR_RUN"
msgid "Run"
msgstr "Инагӡатәуп"
#. whwAN
-#: cui/inc/strings.hrc:87
+#: cui/inc/strings.hrc:92
msgctxt "RID_SVXSTR_ROW"
msgid "Insert Rows"
msgstr "Ибжьаргылатәуп ацәаҳәақәа"
#. Su38S
#. tdf#119293 Labels depending on row/col
-#: cui/inc/strings.hrc:89
+#: cui/inc/strings.hrc:94
msgctxt "RID_SVXSTR_INSERTROW_BEFORE"
msgid "Above selection"
msgstr "Иалкаау аҩадахьы"
#. oBHui
-#: cui/inc/strings.hrc:90
+#: cui/inc/strings.hrc:95
msgctxt "RID_SVXSTR_INSERTROW_AFTER"
msgid "Below selection"
msgstr "Иалкаау аҵаҟа"
#. c8nou
-#: cui/inc/strings.hrc:91
+#: cui/inc/strings.hrc:96
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr "Ианыхтәкп иалкаау аҟынтәи"
#. XpjRm
-#: cui/inc/strings.hrc:92
+#: cui/inc/strings.hrc:97
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr "Иҟам асимвол"
#. 7tBGT
-#: cui/inc/strings.hrc:93
+#: cui/inc/strings.hrc:98
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
#. AvBBC
#. PPI is pixel per inch, %1 is a number
-#: cui/inc/strings.hrc:95
+#: cui/inc/strings.hrc:100
msgctxt "RID_SVXSTR_PPI"
msgid "(%1 PPI)"
msgstr "(%1 PPI)"
#. thimC
-#: cui/inc/strings.hrc:96
+#: cui/inc/strings.hrc:101
msgctxt "RID_SVXSTR_COL"
msgid "Insert Columns"
msgstr "Ибжьаргылатәуп аиҵагылақәа"
#. AgqiD
#. tdf#119293 Labels depending on row/col
-#: cui/inc/strings.hrc:98
+#: cui/inc/strings.hrc:103
msgctxt "RID_SVXSTR_INSERTCOL_BEFORE"
msgid "Before selection"
msgstr "Алкаара аԥхьа"
#. nXnb3
-#: cui/inc/strings.hrc:99
+#: cui/inc/strings.hrc:104
msgctxt "RID_SVXSTR_INSERTCOL_AFTER"
msgid "After selection"
msgstr "Алкаара ашьҭахь"
#. QrFJZ
-#: cui/inc/strings.hrc:100
+#: cui/inc/strings.hrc:105
msgctxt "RID_SVXSTR_AUTO_ENTRY"
msgid "Automatic"
msgstr "Автоматикала"
#. X9CWA
-#: cui/inc/strings.hrc:101
+#: cui/inc/strings.hrc:106
msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
msgid "Link"
msgstr "Аимадара"
#. QCgnw
-#: cui/inc/strings.hrc:102
+#: cui/inc/strings.hrc:107
msgctxt "RID_SVXSTR_LOADACCELCONFIG"
msgid "Load Keyboard Configuration"
msgstr "Иҭагалатәуп аклавиатура архиарақәа"
#. eWQoY
-#: cui/inc/strings.hrc:103
+#: cui/inc/strings.hrc:108
msgctxt "RID_SVXSTR_SAVEACCELCONFIG"
msgid "Save Keyboard Configuration"
msgstr "Еиқырхатәуп аклавиатура архиарақәа"
#. ggFZE
-#: cui/inc/strings.hrc:104
+#: cui/inc/strings.hrc:109
msgctxt "RID_SVXSTR_FILTERNAME_CFG"
msgid "Configuration (*.cfg)"
msgstr "Архиарақәа (*.cfg)"
#. DigQB
-#: cui/inc/strings.hrc:105
+#: cui/inc/strings.hrc:110
msgctxt "RID_SVXSTR_HYPDLG_ERR_LERR_NOENTRIES"
msgid "Targets do not exist in the document."
msgstr "Адокумент аҟны иҟам азхьарҧш азы аелементқәа."
#. pCbRV
-#: cui/inc/strings.hrc:106
+#: cui/inc/strings.hrc:111
msgctxt "RID_SVXSTR_HYPDLG_ERR_LERR_DOCNOTOPEN"
msgid "Couldn't open the document."
msgstr "Адокумент аартра ауам."
#. zAUfq
-#: cui/inc/strings.hrc:107
+#: cui/inc/strings.hrc:112
msgctxt "RID_SVXSTR_EDITHINT"
msgid "[Enter text here]"
msgstr "[Иҭажәгал атеқст]"
#. ResDx
-#: cui/inc/strings.hrc:108
+#: cui/inc/strings.hrc:113
msgctxt "RID_SVXSTR_HANGUL"
msgid "Hangul"
msgstr "Хангыль"
#. 3t3AC
-#: cui/inc/strings.hrc:109
+#: cui/inc/strings.hrc:114
msgctxt "RID_SVXSTR_HANJA"
msgid "Hanja"
msgstr "Ханча"
#. 88dts
-#: cui/inc/strings.hrc:110
+#: cui/inc/strings.hrc:115
msgctxt "RID_SVXSTR_BASICMACROS"
msgid "BASIC Macros"
msgstr "BASIC Амакросқәа"
#. XKYHn
-#: cui/inc/strings.hrc:111
+#: cui/inc/strings.hrc:116
msgctxt "RID_SVXSTR_GROUP_STYLES"
msgid "Styles"
msgstr "Астильқәа"
#. hFEBv
-#: cui/inc/strings.hrc:113
+#: cui/inc/strings.hrc:118
msgctxt "RID_SVXSTR_EVENT_STARTAPP"
msgid "Start Application"
msgstr ""
#. 6tUvx
-#: cui/inc/strings.hrc:114
+#: cui/inc/strings.hrc:119
msgctxt "RID_SVXSTR_EVENT_CLOSEAPP"
msgid "Close Application"
msgstr ""
#. 6NsQz
-#: cui/inc/strings.hrc:115
+#: cui/inc/strings.hrc:120
msgctxt "RID_SVXSTR_EVENT_NEWDOC"
msgid "New Document"
msgstr "Адокумент аҧҵара"
#. G6b2e
-#: cui/inc/strings.hrc:116
+#: cui/inc/strings.hrc:121
msgctxt "RID_SVXSTR_EVENT_CLOSEDOC"
msgid "Document closed"
msgstr "Адокумент аркуп"
#. yvsTa
-#: cui/inc/strings.hrc:117
+#: cui/inc/strings.hrc:122
msgctxt "RID_SVXSTR_EVENT_PREPARECLOSEDOC"
msgid "Document is going to be closed"
msgstr "Адокумент аркхоит"
#. DKpfj
-#: cui/inc/strings.hrc:118
+#: cui/inc/strings.hrc:123
msgctxt "RID_SVXSTR_EVENT_OPENDOC"
msgid "Open Document"
msgstr "Адокумент аартра"
#. DTDDm
-#: cui/inc/strings.hrc:119
+#: cui/inc/strings.hrc:124
msgctxt "RID_SVXSTR_EVENT_SAVEDOC"
msgid "Save Document"
msgstr "Адокумент аиқәырхара"
#. Trc82
-#: cui/inc/strings.hrc:120
+#: cui/inc/strings.hrc:125
msgctxt "RID_SVXSTR_EVENT_SAVEASDOC"
msgid "Save Document As"
msgstr "Адокумент аиқәырхара иаба(ишҧа)"
#. GCbZt
-#: cui/inc/strings.hrc:121
+#: cui/inc/strings.hrc:126
msgctxt "RID_SVXSTR_EVENT_SAVEDOCDONE"
msgid "Document has been saved"
msgstr "Адокумент аиқәырхара ашьҭахь"
#. mYtMa
-#: cui/inc/strings.hrc:122
+#: cui/inc/strings.hrc:127
msgctxt "RID_SVXSTR_EVENT_SAVEASDOCDONE"
msgid "Document has been saved as"
msgstr "Адокумент аиқәырхара иаба(ишҧа) ашьҭахь"
#. t8F8W
-#: cui/inc/strings.hrc:123
+#: cui/inc/strings.hrc:128
msgctxt "RID_SVXSTR_EVENT_ACTIVATEDOC"
msgid "Activate Document"
msgstr "Адокумент активтәра"
#. T7QE3
-#: cui/inc/strings.hrc:124
+#: cui/inc/strings.hrc:129
msgctxt "RID_SVXSTR_EVENT_DEACTIVATEDOC"
msgid "Deactivate Document"
msgstr ""
#. AQXyC
-#: cui/inc/strings.hrc:125
+#: cui/inc/strings.hrc:130
msgctxt "RID_SVXSTR_EVENT_PRINTDOC"
msgid "Print Document"
msgstr "Адокумент акьыҧхьра"
#. 8uXuz
-#: cui/inc/strings.hrc:126
+#: cui/inc/strings.hrc:131
msgctxt "RID_SVXSTR_EVENT_MODIFYCHANGED"
msgid "'Modified' status was changed"
msgstr ""
#. 5CKDG
-#: cui/inc/strings.hrc:127
+#: cui/inc/strings.hrc:132
msgctxt "RID_SVXSTR_EVENT_MAILMERGE"
msgid "Printing of form letters started"
msgstr ""
#. AZ2io
-#: cui/inc/strings.hrc:128
+#: cui/inc/strings.hrc:133
msgctxt "RID_SVXSTR_EVENT_MAILMERGE_END"
msgid "Printing of form letters finished"
msgstr ""
#. dHtbz
-#: cui/inc/strings.hrc:129
+#: cui/inc/strings.hrc:134
msgctxt "RID_SVXSTR_EVENT_FIELDMERGE"
msgid "Merging of form fields started"
msgstr ""
#. uGCdD
-#: cui/inc/strings.hrc:130
+#: cui/inc/strings.hrc:135
msgctxt "RID_SVXSTR_EVENT_FIELDMERGE_FINISHED"
msgid "Merging of form fields finished"
msgstr ""
#. srLLa
-#: cui/inc/strings.hrc:131
+#: cui/inc/strings.hrc:136
msgctxt "RID_SVXSTR_EVENT_PAGECOUNTCHANGE"
msgid "Changing the page count"
msgstr "Адаҟьақәа рхыҧхьаӡара аҧсахра"
#. AsuQF
-#: cui/inc/strings.hrc:132
+#: cui/inc/strings.hrc:137
msgctxt "RID_SVXSTR_EVENT_SUBCOMPONENT_OPENED"
msgid "Loaded a sub component"
msgstr "Акомпонент ҭагалоуп"
#. Gf22f
-#: cui/inc/strings.hrc:133
+#: cui/inc/strings.hrc:138
msgctxt "RID_SVXSTR_EVENT_SUBCOMPONENT_CLOSED"
msgid "Closed a sub component"
msgstr "Акомпонент аркуп"
#. QayEb
-#: cui/inc/strings.hrc:134
+#: cui/inc/strings.hrc:139
msgctxt "RID_SVXSTR_EVENT_APPROVEPARAMETER"
msgid "Fill parameters"
msgstr "Апараметрқәа рхарҭәаара"
#. mL59X
-#: cui/inc/strings.hrc:135
+#: cui/inc/strings.hrc:140
msgctxt "RID_SVXSTR_EVENT_ACTIONPERFORMED"
msgid "Execute action"
msgstr "Иазалху аҟаҵара"
#. KtHBE
-#: cui/inc/strings.hrc:136
+#: cui/inc/strings.hrc:141
msgctxt "RID_SVXSTR_EVENT_AFTERUPDATE"
msgid "After updating"
msgstr "Арҿыцра ашьҭахь"
#. b6CCj
-#: cui/inc/strings.hrc:137
+#: cui/inc/strings.hrc:142
msgctxt "RID_SVXSTR_EVENT_BEFOREUPDATE"
msgid "Before updating"
msgstr "Арҿыцра аҧхьа"
#. KTBcp
-#: cui/inc/strings.hrc:138
+#: cui/inc/strings.hrc:143
msgctxt "RID_SVXSTR_EVENT_APPROVEROWCHANGE"
msgid "Before record action"
msgstr "Аиқәырхара аҧхьа"
#. Fhyio
-#: cui/inc/strings.hrc:139
+#: cui/inc/strings.hrc:144
msgctxt "RID_SVXSTR_EVENT_ROWCHANGE"
msgid "After record action"
msgstr "Аиқәырхара ашьҭахь"
#. PmJgM
-#: cui/inc/strings.hrc:140
+#: cui/inc/strings.hrc:145
msgctxt "RID_SVXSTR_EVENT_CONFIRMDELETE"
msgid "Confirm deletion"
msgstr "Аныхра ашьақәырӷәӷәара"
#. gcREA
-#: cui/inc/strings.hrc:141
+#: cui/inc/strings.hrc:146
msgctxt "RID_SVXSTR_EVENT_ERROROCCURRED"
msgid "Error occurred"
msgstr "Агха аҟалараан"
#. oAwDt
-#: cui/inc/strings.hrc:142
+#: cui/inc/strings.hrc:147
msgctxt "RID_SVXSTR_EVENT_ADJUSTMENTVALUECHANGED"
msgid "While adjusting"
msgstr "Аиҟаратәра аан"
#. AyfwP
-#: cui/inc/strings.hrc:143
+#: cui/inc/strings.hrc:148
msgctxt "RID_SVXSTR_EVENT_FOCUSGAINED"
msgid "When receiving focus"
msgstr "Афокус аиураан"
#. BD96B
-#: cui/inc/strings.hrc:144
+#: cui/inc/strings.hrc:149
msgctxt "RID_SVXSTR_EVENT_FOCUSLOST"
msgid "When losing focus"
msgstr "Афокус ацәыӡраан"
#. wEhfE
-#: cui/inc/strings.hrc:145
+#: cui/inc/strings.hrc:150
msgctxt "RID_SVXSTR_EVENT_ITEMSTATECHANGED"
msgid "Item status changed"
msgstr "Аелемент аҭагылазаашьа аҧсахра "
#. FRW7b
-#: cui/inc/strings.hrc:146
+#: cui/inc/strings.hrc:151
msgctxt "RID_SVXSTR_EVENT_KEYTYPED"
msgid "Key pressed"
msgstr "Аклавиша ақәыӷәӷәара"
#. 4kZCD
-#: cui/inc/strings.hrc:147
+#: cui/inc/strings.hrc:152
msgctxt "RID_SVXSTR_EVENT_KEYUP"
msgid "Key released"
msgstr "Аклавиша аушьҭра"
#. ZiS2D
-#: cui/inc/strings.hrc:148
+#: cui/inc/strings.hrc:153
msgctxt "RID_SVXSTR_EVENT_LOADED"
msgid "When loading"
msgstr "Аҭагалараан"
#. vEjAG
-#: cui/inc/strings.hrc:149
+#: cui/inc/strings.hrc:154
msgctxt "RID_SVXSTR_EVENT_RELOADING"
msgid "Before reloading"
msgstr ""
#. 5FvrE
-#: cui/inc/strings.hrc:150
+#: cui/inc/strings.hrc:155
msgctxt "RID_SVXSTR_EVENT_RELOADED"
msgid "When reloading"
msgstr "Аиҭаҭагалараан"
#. CDcYt
-#: cui/inc/strings.hrc:151
+#: cui/inc/strings.hrc:156
msgctxt "RID_SVXSTR_EVENT_MOUSEDRAGGED"
msgid "Mouse moved while key pressed"
msgstr ""
#. CPpyk
-#: cui/inc/strings.hrc:152
+#: cui/inc/strings.hrc:157
msgctxt "RID_SVXSTR_EVENT_MOUSEENTERED"
msgid "Mouse inside"
msgstr "Аҳәынаԥ аҩныҵҟа"
#. 4hGfp
-#: cui/inc/strings.hrc:153
+#: cui/inc/strings.hrc:158
msgctxt "RID_SVXSTR_EVENT_MOUSEEXITED"
msgid "Mouse outside"
msgstr "Аҳәынаԥ адәныҟа"
#. QEuWr
-#: cui/inc/strings.hrc:154
+#: cui/inc/strings.hrc:159
msgctxt "RID_SVXSTR_EVENT_MOUSEMOVED"
msgid "Mouse moved"
msgstr ""
#. 8YA3S
-#: cui/inc/strings.hrc:155
+#: cui/inc/strings.hrc:160
msgctxt "RID_SVXSTR_EVENT_MOUSEPRESSED"
msgid "Mouse button pressed"
msgstr "Аҳәынаԥ аклавиша ақәыӷәӷәара"
#. RMuJe
-#: cui/inc/strings.hrc:156
+#: cui/inc/strings.hrc:161
msgctxt "RID_SVXSTR_EVENT_MOUSERELEASED"
msgid "Mouse button released"
msgstr ""
#. 5iPHQ
-#: cui/inc/strings.hrc:157
+#: cui/inc/strings.hrc:162
msgctxt "RID_SVXSTR_EVENT_POSITIONING"
msgid "Before record change"
msgstr ""
#. yrBiz
-#: cui/inc/strings.hrc:158
+#: cui/inc/strings.hrc:163
msgctxt "RID_SVXSTR_EVENT_POSITIONED"
msgid "After record change"
msgstr ""
#. bdBH4
-#: cui/inc/strings.hrc:159
+#: cui/inc/strings.hrc:164
msgctxt "RID_SVXSTR_EVENT_RESETTED"
msgid "After resetting"
msgstr ""
#. eVsFk
-#: cui/inc/strings.hrc:160
+#: cui/inc/strings.hrc:165
msgctxt "RID_SVXSTR_EVENT_APPROVERESETTED"
msgid "Prior to reset"
msgstr ""
#. 2oAoV
-#: cui/inc/strings.hrc:161
+#: cui/inc/strings.hrc:166
msgctxt "RID_SVXSTR_EVENT_APPROVEACTIONPERFORMED"
msgid "Approve action"
msgstr "Ишьақәырӷәӷәатәуп аҟаҵара"
#. hQAzK
-#: cui/inc/strings.hrc:162
+#: cui/inc/strings.hrc:167
msgctxt "RID_SVXSTR_EVENT_SUBMITTED"
msgid "Before submitting"
msgstr "Ашақәырӷәӷәара аҧхьа"
#. CFPSo
-#: cui/inc/strings.hrc:163
+#: cui/inc/strings.hrc:168
msgctxt "RID_SVXSTR_EVENT_TEXTCHANGED"
msgid "Text modified"
msgstr "Атеқст аҧсахра"
#. 2ADMH
-#: cui/inc/strings.hrc:164
+#: cui/inc/strings.hrc:169
msgctxt "RID_SVXSTR_EVENT_UNLOADING"
msgid "Before unloading"
msgstr ""
#. F8BL3
-#: cui/inc/strings.hrc:165
+#: cui/inc/strings.hrc:170
msgctxt "RID_SVXSTR_EVENT_UNLOADED"
msgid "When unloading"
msgstr "Аҭыгараан"
#. M6fPe
-#: cui/inc/strings.hrc:166
+#: cui/inc/strings.hrc:171
msgctxt "RID_SVXSTR_EVENT_CHANGED"
msgid "Changed"
msgstr "Аҧсахра"
#. gZyVB
-#: cui/inc/strings.hrc:167
+#: cui/inc/strings.hrc:172
msgctxt "RID_SVXSTR_EVENT_CREATEDOC"
msgid "Document created"
msgstr "Адокумент аҧҵоуп"
#. BcPDW
-#: cui/inc/strings.hrc:168
+#: cui/inc/strings.hrc:173
msgctxt "RID_SVXSTR_EVENT_LOADDOCFINISHED"
msgid "Document loading finished"
msgstr "Адокумент ҭагалоуп"
#. ir7AQ
-#: cui/inc/strings.hrc:169
+#: cui/inc/strings.hrc:174
msgctxt "RID_SVXSTR_EVENT_SAVEDOCFAILED"
msgid "Saving of document failed"
msgstr "Адокумент аиқәырхараан аиҧҟьара"
#. BFtTF
-#: cui/inc/strings.hrc:170
+#: cui/inc/strings.hrc:175
msgctxt "RID_SVXSTR_EVENT_SAVEASDOCFAILED"
msgid "'Save as' has failed"
msgstr ""
#. N9e6u
-#: cui/inc/strings.hrc:171
+#: cui/inc/strings.hrc:176
msgctxt "RID_SVXSTR_EVENT_COPYTODOC"
msgid "Storing or exporting copy of document"
msgstr "Адокумент акопиа аиқәырхара ма аекспорт "
#. okb9H
-#: cui/inc/strings.hrc:172
+#: cui/inc/strings.hrc:177
msgctxt "RID_SVXSTR_EVENT_COPYTODOCDONE"
msgid "Document copy has been created"
msgstr "Адокумент акопиа аиқәырхара ашьҭахь"
#. DrYTY
-#: cui/inc/strings.hrc:173
+#: cui/inc/strings.hrc:178
msgctxt "RID_SVXSTR_EVENT_COPYTODOCFAILED"
msgid "Creating of document copy failed"
msgstr "Адокумент акопиа аҧҵараан аиҧҟьара"
#. BBJJQ
-#: cui/inc/strings.hrc:174
+#: cui/inc/strings.hrc:179
msgctxt "RID_SVXSTR_EVENT_VIEWCREATED"
msgid "View created"
msgstr "Ахәаҧшра аҧҵоуп"
#. XN9Az
-#: cui/inc/strings.hrc:175
+#: cui/inc/strings.hrc:180
msgctxt "RID_SVXSTR_EVENT_PREPARECLOSEVIEW"
msgid "View is going to be closed"
msgstr "Ахәаҧшра аркхоит"
#. a9qty
-#: cui/inc/strings.hrc:176
+#: cui/inc/strings.hrc:181
msgctxt "RID_SVXSTR_EVENT_CLOSEVIEW"
msgid "View closed"
msgstr "Ахәаҧшра аркуп"
#. dDunN
-#: cui/inc/strings.hrc:177
+#: cui/inc/strings.hrc:182
msgctxt "RID_SVXSTR_EVENT_TITLECHANGED"
msgid "Document title changed"
msgstr "Адокумент ахы ҧсахуп"
#. 6D6BS
-#: cui/inc/strings.hrc:178
+#: cui/inc/strings.hrc:183
msgctxt "RID_SVXSTR_EVENT_SELECTIONCHANGED"
msgid "Selection changed"
msgstr "Иалкаау аҵакыра ҧсахуп"
#. XArW3
-#: cui/inc/strings.hrc:179
+#: cui/inc/strings.hrc:184
msgctxt "RID_SVXSTR_EVENT_DOUBLECLICK"
msgid "Double click"
msgstr "Ҩынтә ақәыӷәӷәара"
#. oDkyz
-#: cui/inc/strings.hrc:180
+#: cui/inc/strings.hrc:185
msgctxt "RID_SVXSTR_EVENT_RIGHTCLICK"
msgid "Right click"
msgstr "Арӷьа кнопка ақәыӷәӷәара"
#. tVSz9
-#: cui/inc/strings.hrc:181
+#: cui/inc/strings.hrc:186
msgctxt "RID_SVXSTR_EVENT_CALCULATE"
msgid "Formulas calculated"
msgstr "Аформулақәа еилкаауп"
#. ESxTQ
-#: cui/inc/strings.hrc:182
+#: cui/inc/strings.hrc:187
msgctxt "RID_SVXSTR_EVENT_CONTENTCHANGED"
msgid "Content changed"
msgstr "Аҵакы ҧсахуп"
#. Zimeo
-#: cui/inc/strings.hrc:184
+#: cui/inc/strings.hrc:189
msgctxt "RID_STR_SEARCH_ANYWHERE"
msgid "anywhere in the field"
msgstr ""
#. qCKMY
-#: cui/inc/strings.hrc:185
+#: cui/inc/strings.hrc:190
msgctxt "RID_STR_SEARCH_BEGINNING"
msgid "beginning of field"
msgstr ""
#. CKVTF
-#: cui/inc/strings.hrc:186
+#: cui/inc/strings.hrc:191
msgctxt "RID_STR_SEARCH_END"
msgid "end of field"
msgstr ""
#. FZwxu
-#: cui/inc/strings.hrc:187
+#: cui/inc/strings.hrc:192
msgctxt "RID_STR_SEARCH_WHOLE"
msgid "entire field"
msgstr ""
#. AFUFs
-#: cui/inc/strings.hrc:188
+#: cui/inc/strings.hrc:193
msgctxt "RID_STR_FROM_TOP"
msgid "From top"
msgstr "Хыхьла"
#. FBDbX
-#: cui/inc/strings.hrc:189
+#: cui/inc/strings.hrc:194
msgctxt "RID_STR_FROM_BOTTOM"
msgid "From bottom"
msgstr "Ҵаҟала"
#. brdgV
-#: cui/inc/strings.hrc:190
+#: cui/inc/strings.hrc:195
msgctxt "RID_STR_SEARCH_NORECORD"
msgid "No records corresponding to your data found."
msgstr ""
#. VkTjA
-#: cui/inc/strings.hrc:191
+#: cui/inc/strings.hrc:196
msgctxt "RID_STR_SEARCH_GENERAL_ERROR"
msgid "An unknown error occurred. The search could not be finished."
msgstr ""
#. jiQdw
-#: cui/inc/strings.hrc:192
+#: cui/inc/strings.hrc:197
msgctxt "RID_STR_OVERFLOW_FORWARD"
msgid "Overflow, search continued at the beginning"
msgstr ""
#. EzK3y
-#: cui/inc/strings.hrc:193
+#: cui/inc/strings.hrc:198
msgctxt "RID_STR_OVERFLOW_BACKWARD"
msgid "Overflow, search continued at the end"
msgstr ""
#. zwiat
-#: cui/inc/strings.hrc:194
+#: cui/inc/strings.hrc:199
msgctxt "RID_STR_SEARCH_COUNTING"
msgid "counting records"
msgstr "анҵамҭақәа рыҧхьаӡара"
#. 7cVWa
-#: cui/inc/strings.hrc:196
+#: cui/inc/strings.hrc:201
msgctxt "RID_SVXSTR_GALLERY_NOFILES"
msgid "<No Files>"
msgstr "<фаилда>"
#. AnJUu
-#: cui/inc/strings.hrc:197
+#: cui/inc/strings.hrc:202
msgctxt "RID_SVXSTR_GALLERYPROPS_OBJECT"
msgid "Object;Objects"
msgstr "Аобиеқт;Аобиеқтқәа"
#. GQXSM
-#: cui/inc/strings.hrc:198
+#: cui/inc/strings.hrc:203
msgctxt "RID_SVXSTR_GALLERY_READONLY"
msgid "(read-only)"
msgstr "(аҧхьара мацара)"
#. sAwgA
-#: cui/inc/strings.hrc:199
+#: cui/inc/strings.hrc:204
msgctxt "RID_SVXSTR_GALLERY_ALLFILES"
msgid "<All Files>"
msgstr "<Афаилқәа зегьы>"
#. YkCky
-#: cui/inc/strings.hrc:200
+#: cui/inc/strings.hrc:205
msgctxt "RID_SVXSTR_GALLERY_ID_EXISTS"
msgid "This ID already exists..."
msgstr "Ари ID ыҟоуп..."
#. w3AUk
-#: cui/inc/strings.hrc:202
+#: cui/inc/strings.hrc:207
msgctxt "RID_MULTIPATH_DBL_ERR"
msgid "The path %1 already exists."
msgstr "Амҩа %1 ыҟоуп."
#. 54BsS
-#: cui/inc/strings.hrc:203
+#: cui/inc/strings.hrc:208
msgctxt "RID_SVXSTR_ARCHIVE_TITLE"
msgid "Select Archives"
msgstr "Архивқәа ралхра"
#. NDB5V
-#: cui/inc/strings.hrc:204
+#: cui/inc/strings.hrc:209
msgctxt "RID_SVXSTR_ARCHIVE_HEADLINE"
msgid "Archives"
msgstr "Архивқәа"
#. ffPAq
-#: cui/inc/strings.hrc:205
+#: cui/inc/strings.hrc:210
msgctxt "RID_SVXSTR_MULTIFILE_DBL_ERR"
msgid "The file %1 already exists."
msgstr "Афаил %1 ыҟоуп."
#. 5FyxP
-#: cui/inc/strings.hrc:206
+#: cui/inc/strings.hrc:211
msgctxt "RID_SVXSTR_ADD_IMAGE"
msgid "Add Image"
msgstr "Иацҵатәуп асахьа"
#. eUzGk
-#: cui/inc/strings.hrc:208
+#: cui/inc/strings.hrc:213
msgctxt "RID_SVXSTR_ONE_PASSWORD_MISMATCH"
msgid "The confirmation password did not match the password. Set the password again by entering the same password in both boxes."
msgstr ""
#. mN9jE
-#: cui/inc/strings.hrc:209
+#: cui/inc/strings.hrc:214
msgctxt "RID_SVXSTR_TWO_PASSWORDS_MISMATCH"
msgid "The confirmation passwords did not match the original passwords. Set the passwords again."
msgstr ""
#. 48ez3
-#: cui/inc/strings.hrc:210
+#: cui/inc/strings.hrc:215
msgctxt "RID_SVXSTR_INVALID_STATE_FOR_OK_BUTTON"
msgid "Please enter a password to open or to modify, or check the open read-only option to continue."
msgstr ""
#. aAbAN
-#: cui/inc/strings.hrc:211
+#: cui/inc/strings.hrc:216
msgctxt "RID_SVXSTR_INVALID_STATE_FOR_OK_BUTTON_V2"
msgid "Set the password by entering the same password in both boxes."
msgstr ""
#. ZXcFw
-#: cui/inc/strings.hrc:212
+#: cui/inc/strings.hrc:217
msgctxt "RID_SVXSTR_PASSWORD_LEN_INDICATOR"
msgid "Password length limit of %1 reached"
msgstr ""
#. Fko49
-#: cui/inc/strings.hrc:214
+#: cui/inc/strings.hrc:219
msgctxt "STR_AUTOLINK"
msgid "Automatic"
msgstr "Автоматикала"
#. WYHFb
-#: cui/inc/strings.hrc:215
+#: cui/inc/strings.hrc:220
msgctxt "STR_MANUALLINK"
msgid "Manual"
msgstr "Напыла"
#. PFN4j
-#: cui/inc/strings.hrc:216
+#: cui/inc/strings.hrc:221
msgctxt "STR_BROKENLINK"
msgid "Not available"
msgstr ""
#. 5ymS3
-#: cui/inc/strings.hrc:217
+#: cui/inc/strings.hrc:222
msgctxt "STR_CLOSELINKMSG"
msgid "Are you sure you want to remove the selected link?"
msgstr "Ианыхтәума иалкаау аимадарақәа?"
#. wyMwT
-#: cui/inc/strings.hrc:218
+#: cui/inc/strings.hrc:223
msgctxt "STR_CLOSELINKMSG_MULTI"
msgid "Are you sure you want to remove the selected link?"
msgstr "Ианыхтәума иалкаау аимадарақәа?"
#. CN74h
-#: cui/inc/strings.hrc:219
+#: cui/inc/strings.hrc:224
msgctxt "STR_WAITINGLINK"
msgid "Waiting"
msgstr "Азыҧшра"
#. QJKgF
-#: cui/inc/strings.hrc:221
+#: cui/inc/strings.hrc:226
msgctxt "RID_SVXSTR_SAVE_SCREENSHOT_AS"
msgid "Save Screenshot As..."
msgstr "Еиқәырхатәуп аекран ақәҭыхымҭа..."
#. CAaFf
#. $(ROW) can be a number or the caption of the row in quotes
-#: cui/inc/strings.hrc:224
+#: cui/inc/strings.hrc:229
msgctxt "RID_SVXSTR_DIAGRAM_ROW"
msgid "Data Series $(ROW)"
msgstr "Адырқәа реишьҭагыла $(ROW)"
#. HzhXp
-#: cui/inc/strings.hrc:226
+#: cui/inc/strings.hrc:231
msgctxt "RID_SVXSTR_YES"
msgid "Yes"
msgstr "Ааи"
#. RuQiB
-#: cui/inc/strings.hrc:227
+#: cui/inc/strings.hrc:232
msgctxt "RID_SVXSTR_NO"
msgid "No"
msgstr "Мап"
#. irLeD
-#: cui/inc/strings.hrc:229
+#: cui/inc/strings.hrc:234
msgctxt "STR_LINKEDDOC_DOESNOTEXIST"
msgid ""
"The file\n"
@@ -1275,7 +1305,7 @@ msgstr ""
"ԥшааӡам."
#. iQYnX
-#: cui/inc/strings.hrc:230
+#: cui/inc/strings.hrc:235
msgctxt "STR_LINKEDDOC_NO_SYSTEM_FILE"
msgid ""
"The file\n"
@@ -1287,7 +1317,7 @@ msgstr ""
"ԥшаам илокалу афаил система аҟны."
#. 4PaJ2
-#: cui/inc/strings.hrc:231
+#: cui/inc/strings.hrc:236
msgctxt "STR_NAME_CONFLICT"
msgid ""
"The name '$file$' is already used for another database.\n"
@@ -1295,163 +1325,163 @@ msgid ""
msgstr ""
#. KFB7q
-#: cui/inc/strings.hrc:232
+#: cui/inc/strings.hrc:237
msgctxt "RID_SVXSTR_QUERY_DELETE_CONFIRM"
msgid "Do you want to delete the entry?"
msgstr "Ианыхтәума абри аелемент?"
#. gg9gD
-#: cui/inc/strings.hrc:234
+#: cui/inc/strings.hrc:239
msgctxt "RID_SVXSTR_DELQUERY"
msgid "Do you want to delete the following object?"
msgstr "Ишәҭахума ари аобиеқт аныхра?"
#. 42ivC
-#: cui/inc/strings.hrc:235
+#: cui/inc/strings.hrc:240
msgctxt "RID_SVXSTR_DELQUERY_TITLE"
msgid "Confirm Deletion"
msgstr "Аныхра шьақәырӷәӷәатәуп"
#. kn5KE
-#: cui/inc/strings.hrc:236
+#: cui/inc/strings.hrc:241
msgctxt "RID_SVXSTR_DELFAILED"
msgid "The selected object could not be deleted."
msgstr "Иалху аобиеқт аныхра ауам."
#. T7T8x
-#: cui/inc/strings.hrc:237
+#: cui/inc/strings.hrc:242
msgctxt "RID_SVXSTR_DELFAILED_TITLE"
msgid "Error Deleting Object"
msgstr "Аобиеқт аныхраан иҟалеит агха"
#. SCgXy
-#: cui/inc/strings.hrc:238
+#: cui/inc/strings.hrc:243
msgctxt "RID_SVXSTR_CREATEFAILED"
msgid "The object could not be created."
msgstr "Аобиеқт аҧҵара ауам."
#. TmiCU
-#: cui/inc/strings.hrc:239
+#: cui/inc/strings.hrc:244
msgctxt "RID_SVXSTR_CREATEFAILEDDUP"
msgid " Object with the same name already exists."
msgstr "Аобиеқт, ари аҩыза ахьӡ змоу ыҟоуп."
#. ffc5M
-#: cui/inc/strings.hrc:240
+#: cui/inc/strings.hrc:245
msgctxt "RID_SVXSTR_CREATEFAILED_TITLE"
msgid "Error Creating Object"
msgstr "Аобиеқт аҧҵараан агха"
#. hpB8B
-#: cui/inc/strings.hrc:241
+#: cui/inc/strings.hrc:246
msgctxt "RID_SVXSTR_RENAMEFAILED"
msgid "The object could not be renamed."
msgstr "Аобиеқт ахьӡ аҧсахра ауам."
#. eevjm
-#: cui/inc/strings.hrc:242
+#: cui/inc/strings.hrc:247
msgctxt "RID_SVXSTR_RENAMEFAILED_TITLE"
msgid "Error Renaming Object"
msgstr "Аобиеқт ахьӡ аҧсахраан агха."
#. fTHFY
-#: cui/inc/strings.hrc:243
+#: cui/inc/strings.hrc:248
msgctxt "RID_SVXSTR_ERROR_TITLE"
msgid "%PRODUCTNAME Error"
msgstr "%PRODUCTNAME Амакросқәа"
#. e6BgS
-#: cui/inc/strings.hrc:244
+#: cui/inc/strings.hrc:249
msgctxt "RID_SVXSTR_ERROR_LANG_NOT_SUPPORTED"
msgid "The scripting language %LANGUAGENAME is not supported."
msgstr ""
#. EUek9
-#: cui/inc/strings.hrc:245
+#: cui/inc/strings.hrc:250
msgctxt "RID_SVXSTR_ERROR_RUNNING"
msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr "Асценари %LANGUAGENAME %SCRIPTNAME анагӡараан агха."
#. KVQAh
-#: cui/inc/strings.hrc:246
+#: cui/inc/strings.hrc:251
msgctxt "RID_SVXSTR_EXCEPTION_RUNNING"
msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr ""
#. 5bFCQ
-#: cui/inc/strings.hrc:247
+#: cui/inc/strings.hrc:252
msgctxt "RID_SVXSTR_ERROR_AT_LINE"
msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
msgstr "Асценари %LANGUAGENAME %SCRIPTNAME анагӡараан, ацәаҳәа: %LINENUMBER аҟны агха."
#. KTptU
-#: cui/inc/strings.hrc:248
+#: cui/inc/strings.hrc:253
msgctxt "RID_SVXSTR_EXCEPTION_AT_LINE"
msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
msgstr ""
#. BZDbp
-#: cui/inc/strings.hrc:249
+#: cui/inc/strings.hrc:254
msgctxt "RID_SVXSTR_FRAMEWORK_ERROR_RUNNING"
msgid "A Scripting Framework error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr ""
#. AAghx
-#: cui/inc/strings.hrc:250
+#: cui/inc/strings.hrc:255
msgctxt "RID_SVXSTR_ERROR_TYPE_LABEL"
msgid "Type:"
msgstr "Атип:"
#. GAsca
-#: cui/inc/strings.hrc:251
+#: cui/inc/strings.hrc:256
msgctxt "RID_SVXSTR_ERROR_MESSAGE_LABEL"
msgid "Message:"
msgstr "Ацҳамҭа:"
#. ZcxRY
-#: cui/inc/strings.hrc:253
+#: cui/inc/strings.hrc:258
msgctxt "RID_SVXSTR_CHG_MATH"
msgid "MathType to %PRODUCTNAME Math or reverse"
msgstr ""
#. Ttggs
-#: cui/inc/strings.hrc:254
+#: cui/inc/strings.hrc:259
msgctxt "RID_SVXSTR_CHG_WRITER"
msgid "WinWord to %PRODUCTNAME Writer or reverse"
msgstr ""
#. ZJRKY
-#: cui/inc/strings.hrc:255
+#: cui/inc/strings.hrc:260
msgctxt "RID_SVXSTR_CHG_CALC"
msgid "Excel to %PRODUCTNAME Calc or reverse"
msgstr ""
#. VmuND
-#: cui/inc/strings.hrc:256
+#: cui/inc/strings.hrc:261
msgctxt "RID_SVXSTR_CHG_IMPRESS"
msgid "PowerPoint to %PRODUCTNAME Impress or reverse"
msgstr ""
#. sE8as
-#: cui/inc/strings.hrc:257
+#: cui/inc/strings.hrc:262
msgctxt "RID_SVXSTR_CHG_SMARTART"
msgid "SmartArt to %PRODUCTNAME shapes or reverse"
msgstr ""
#. AEgXY
-#: cui/inc/strings.hrc:258
+#: cui/inc/strings.hrc:263
msgctxt "RID_SVXSTR_CHG_VISIO"
msgid "Visio to %PRODUCTNAME Draw or reverse"
msgstr ""
#. Zarkq
-#: cui/inc/strings.hrc:259
+#: cui/inc/strings.hrc:264
msgctxt "RID_SVXSTR_CHG_PDF"
msgid "PDF to %PRODUCTNAME Draw or reverse"
msgstr ""
#. dDtDU
-#: cui/inc/strings.hrc:261
+#: cui/inc/strings.hrc:266
msgctxt "RID_SVXSTR_OPT_DOUBLE_DICTS"
msgid ""
"The specified name already exists.\n"
@@ -1461,7 +1491,7 @@ msgstr ""
"Иҭажәгал даҽа хьӡык."
#. kzhkA
-#: cui/inc/strings.hrc:262
+#: cui/inc/strings.hrc:267
msgctxt "RID_SVXSTR_OPT_INVALID_DICT_NAME"
msgid ""
"The specified name is invalid.\n"
@@ -1481,133 +1511,133 @@ msgstr ""
#. For example, adding "Grammar By" word "fund" to the new user
#. word "crowdfund", the spell checker will recognize "crowdfund"
#. with suffixes of "fund": "crowdfunding", "crowdfund's" etc.
-#: cui/inc/strings.hrc:277
+#: cui/inc/strings.hrc:282
msgctxt "RID_SVXSTR_OPT_GRAMMAR_BY"
msgid "~Grammar By"
msgstr ""
#. LPb5d
-#: cui/inc/strings.hrc:278
+#: cui/inc/strings.hrc:283
msgctxt "STR_MODIFY"
msgid "~Replace"
msgstr "Иҧсахтәуп"
#. anivV
-#: cui/inc/strings.hrc:279
+#: cui/inc/strings.hrc:284
msgctxt "RID_SVXSTR_CONFIRM_SET_LANGUAGE"
msgid "Do you want to change the '%1' dictionary language?"
msgstr "Иҧсахтәума ажәар «%1» абызшәа?"
#. XEFrB
-#: cui/inc/strings.hrc:281
+#: cui/inc/strings.hrc:286
msgctxt "RID_SVXSTR_COLOR_CONFIG_DELETE"
msgid "Do you really want to delete the color scheme?"
msgstr "Ианыхтәума аҧштәы асхема?"
#. ybdED
-#: cui/inc/strings.hrc:282
+#: cui/inc/strings.hrc:287
msgctxt "RID_SVXSTR_COLOR_CONFIG_DELETE_TITLE"
msgid "Color Scheme Deletion"
msgstr "Аҧштәқәа рсхема аныхра"
#. DoNBE
-#: cui/inc/strings.hrc:283
+#: cui/inc/strings.hrc:288
msgctxt "RID_SVXSTR_COLOR_CONFIG_SAVE1"
msgid "Save scheme"
msgstr "Еиқырхатәуп асхема"
#. tFrki
-#: cui/inc/strings.hrc:284
+#: cui/inc/strings.hrc:289
msgctxt "RID_SVXSTR_COLOR_CONFIG_SAVE2"
msgid "Name of color scheme"
msgstr "Аҧштәы асхема ахьӡ"
#. BAGbe
-#: cui/inc/strings.hrc:286
+#: cui/inc/strings.hrc:291
msgctxt "RID_SVXSTR_SPELL"
msgid "Spelling"
msgstr "Аорфографиа агәаҭара"
#. uBohu
-#: cui/inc/strings.hrc:287
+#: cui/inc/strings.hrc:292
msgctxt "RID_SVXSTR_HYPH"
msgid "Hyphenation"
msgstr "Аиагагақәа рыргылара"
#. XGkt6
-#: cui/inc/strings.hrc:288
+#: cui/inc/strings.hrc:293
msgctxt "RID_SVXSTR_THES"
msgid "Thesaurus"
msgstr "Атезаурус"
#. EFrDA
-#: cui/inc/strings.hrc:289
+#: cui/inc/strings.hrc:294
msgctxt "RID_SVXSTR_GRAMMAR"
msgid "Grammar"
msgstr "Аграмматика"
#. zbEv9
-#: cui/inc/strings.hrc:290
+#: cui/inc/strings.hrc:295
msgctxt "RID_SVXSTR_CAPITAL_WORDS"
msgid "Check uppercase words"
msgstr ""
#. BbDNe
-#: cui/inc/strings.hrc:291
+#: cui/inc/strings.hrc:296
msgctxt "RID_SVXSTR_WORDS_WITH_DIGITS"
msgid "Check words with numbers "
msgstr ""
#. bPDyB
-#: cui/inc/strings.hrc:292
+#: cui/inc/strings.hrc:297
msgctxt "RID_SVXSTR_SPELL_SPECIAL"
msgid "Check special regions"
msgstr ""
#. XjifG
-#: cui/inc/strings.hrc:293
+#: cui/inc/strings.hrc:298
msgctxt "RID_SVXSTR_SPELL_AUTO"
msgid "Check spelling as you type"
msgstr ""
#. J3ENq
-#: cui/inc/strings.hrc:294
+#: cui/inc/strings.hrc:299
msgctxt "RID_SVXSTR_GRAMMAR_AUTO"
msgid "Check grammar as you type"
msgstr ""
#. f6v3L
-#: cui/inc/strings.hrc:295
+#: cui/inc/strings.hrc:300
msgctxt "RID_SVXSTR_NUM_MIN_WORDLEN"
msgid "Minimal number of characters for hyphenation: "
msgstr ""
#. BCrEf
-#: cui/inc/strings.hrc:296
+#: cui/inc/strings.hrc:301
msgctxt "RID_SVXSTR_NUM_PRE_BREAK"
msgid "Characters before line break: "
msgstr ""
#. Kgioh
-#: cui/inc/strings.hrc:297
+#: cui/inc/strings.hrc:302
msgctxt "RID_SVXSTR_NUM_POST_BREAK"
msgid "Characters after line break: "
msgstr ""
#. AewrH
-#: cui/inc/strings.hrc:298
+#: cui/inc/strings.hrc:303
msgctxt "RID_SVXSTR_HYPH_AUTO"
msgid "Hyphenate without inquiry"
msgstr ""
#. qCKn9
-#: cui/inc/strings.hrc:299
+#: cui/inc/strings.hrc:304
msgctxt "RID_SVXSTR_HYPH_SPECIAL"
msgid "Hyphenate special regions"
msgstr ""
#. weKUF
-#: cui/inc/strings.hrc:301
+#: cui/inc/strings.hrc:306
msgctxt "RID_SVXSTR_JRE_NOT_RECOGNIZED"
msgid ""
"The folder you selected does not contain a Java runtime environment.\n"
@@ -1615,7 +1645,7 @@ msgid ""
msgstr ""
#. jFLdB
-#: cui/inc/strings.hrc:302
+#: cui/inc/strings.hrc:307
msgctxt "RID_SVXSTR_JRE_FAILED_VERSION"
msgid ""
"The Java runtime environment you selected is not the required version.\n"
@@ -1623,13 +1653,13 @@ msgid ""
msgstr ""
#. 79uiz
-#: cui/inc/strings.hrc:303
+#: cui/inc/strings.hrc:308
msgctxt "RID_SVXSTR_JAVA_START_PARAM"
msgid "Edit Parameter"
msgstr "Иҧсахтәуп апрараметр"
#. fsbAN
-#: cui/inc/strings.hrc:305
+#: cui/inc/strings.hrc:310
msgctxt "RID_SVXSTR_OPT_PROXYPORTS"
msgid ""
"Invalid value!\n"
@@ -1638,38 +1668,38 @@ msgid ""
msgstr ""
#. UCFD6
-#: cui/inc/strings.hrc:307
+#: cui/inc/strings.hrc:312
msgctxt "RID_SVXSTR_DESC_GRADIENT"
msgid "Please enter a name for the gradient:"
msgstr "Иҭажәгал аградиент ахьӡ:"
#. UDvKR
-#: cui/inc/strings.hrc:308
+#: cui/inc/strings.hrc:313
msgctxt "RID_SVXSTR_DESC_NEW_BITMAP"
msgid "Please enter a name for the bitmap:"
msgstr "Иҭажәгал арастр ахьӡ:"
#. QXqJD
-#: cui/inc/strings.hrc:309
+#: cui/inc/strings.hrc:314
msgctxt "RID_SVXSTR_DESC_EXT_BITMAP"
msgid "Please enter a name for the external bitmap:"
msgstr "Иҭажәгал адәныҟатәи арастртә сахьа ахьӡ:"
#. SrS6X
-#: cui/inc/strings.hrc:310
+#: cui/inc/strings.hrc:315
#, fuzzy
msgctxt "RID_SVXSTR_DESC_NEW_PATTERN"
msgid "Please enter a name for the pattern:"
msgstr "Иҭажәгал иҿыцу аҧштәы ахьӡ:"
#. yD7AW
-#: cui/inc/strings.hrc:311
+#: cui/inc/strings.hrc:316
msgctxt "RID_SVXSTR_DESC_LINESTYLE"
msgid "Please enter a name for the line style:"
msgstr "Иҭажәгал аҵәаӷәа астиль ахьӡ:"
#. FQDrh
-#: cui/inc/strings.hrc:312
+#: cui/inc/strings.hrc:317
msgctxt "RID_SVXSTR_ASK_CHANGE_LINESTYLE"
msgid ""
"The line style was modified without saving. \n"
@@ -1677,400 +1707,400 @@ msgid ""
msgstr ""
#. Z5Dkg
-#: cui/inc/strings.hrc:313
+#: cui/inc/strings.hrc:318
#, fuzzy
msgctxt "RID_SVXSTR_DESC_HATCH"
msgid "Please enter a name for the hatching:"
msgstr "Иҭажәгал иҿыцу аҧштәы ахьӡ:"
#. rvyBi
-#: cui/inc/strings.hrc:314
+#: cui/inc/strings.hrc:319
msgctxt "RID_SVXSTR_CHANGE"
msgid "Modify"
msgstr "Иҧсахтәуп"
#. ZDhBm
-#: cui/inc/strings.hrc:315
+#: cui/inc/strings.hrc:320
msgctxt "RID_SVXSTR_ADD"
msgid "Add"
msgstr "Иацҵатәуп"
#. QgAFH
-#: cui/inc/strings.hrc:316
+#: cui/inc/strings.hrc:321
msgctxt "RID_SVXSTR_DESC_COLOR"
msgid "Please enter a name for the new color:"
msgstr "Иҭажәгал иҿыцу аҧштәы ахьӡ:"
#. GKnJR
-#: cui/inc/strings.hrc:317
+#: cui/inc/strings.hrc:322
msgctxt "RID_SVXSTR_TABLE"
msgid "Table"
msgstr "Атаблица"
#. J6FBw
-#: cui/inc/strings.hrc:318
+#: cui/inc/strings.hrc:323
#, fuzzy
msgctxt "RID_SVXSTR_DESC_LINEEND"
msgid "Please enter a name for the new arrowhead:"
msgstr "Иҭажәгал иҿыцу аҧштәы ахьӡ:"
#. xD9BU
-#: cui/inc/strings.hrc:319
+#: cui/inc/strings.hrc:324
msgctxt "RID_SVXSTR_CHARNAME_NOSTYLE"
msgid "No %1"
msgstr "%1 акәӡам"
#. GVkFG
-#: cui/inc/strings.hrc:320
+#: cui/inc/strings.hrc:325
msgctxt "RID_SVXSTR_CHARNAME_FAMILY"
msgid "Family:"
msgstr "Аҭаацәара:"
#. 6uDkp
-#: cui/inc/strings.hrc:321
+#: cui/inc/strings.hrc:326
msgctxt "RID_SVXSTR_CHARNAME_FONT"
msgid "Font:"
msgstr "Агарнитура:"
#. KFXAV
-#: cui/inc/strings.hrc:322
+#: cui/inc/strings.hrc:327
msgctxt "RID_SVXSTR_CHARNAME_STYLE"
msgid "Style:"
msgstr "Астиль:"
#. gDu75
-#: cui/inc/strings.hrc:323
+#: cui/inc/strings.hrc:328
msgctxt "RID_SVXSTR_CHARNAME_TYPEFACE"
msgid "Typeface:"
msgstr ""
#. BcWHA
-#: cui/inc/strings.hrc:324
+#: cui/inc/strings.hrc:329
msgctxt "RID_SVXSTR_USE_REPLACE"
msgid "Use replacement table"
msgstr ""
#. L8BEE
-#: cui/inc/strings.hrc:325
+#: cui/inc/strings.hrc:330
msgctxt "RID_SVXSTR_CPTL_STT_WORD"
msgid "Correct TWo INitial CApitals"
msgstr ""
#. p5h3s
-#: cui/inc/strings.hrc:326
+#: cui/inc/strings.hrc:331
msgctxt "RID_SVXSTR_CPTL_STT_SENT"
msgid "Capitalize first letter of every sentence"
msgstr ""
#. prrWd
-#: cui/inc/strings.hrc:327
+#: cui/inc/strings.hrc:332
msgctxt "RID_SVXSTR_BOLD_UNDER"
msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
msgstr ""
#. a89xT
-#: cui/inc/strings.hrc:328
+#: cui/inc/strings.hrc:333
msgctxt "RID_SVXSTR_NO_DBL_SPACES"
msgid "Ignore double spaces"
msgstr ""
#. qEA6h
-#: cui/inc/strings.hrc:329
+#: cui/inc/strings.hrc:334
msgctxt "RID_SVXSTR_DETECT_URL"
msgid "URL Recognition"
msgstr ""
#. JfySE
-#: cui/inc/strings.hrc:330
+#: cui/inc/strings.hrc:335
msgctxt "RID_SVXSTR_DASH"
msgid "Replace dashes"
msgstr ""
#. u2BuA
-#: cui/inc/strings.hrc:331
+#: cui/inc/strings.hrc:336
msgctxt "RID_SVXSTR_CORRECT_ACCIDENTAL_CAPS_LOCK"
msgid "Correct accidental use of cAPS LOCK key"
msgstr "Ириашалатәуп машәырлатәи СAPS LOCK ақәыӷәӷәара "
#. GZqG9
-#: cui/inc/strings.hrc:332
+#: cui/inc/strings.hrc:337
msgctxt "RID_SVXSTR_NON_BREAK_SPACE"
msgid "Add non-breaking space before specific punctuation marks in French text"
msgstr ""
#. NDmW9
-#: cui/inc/strings.hrc:333
+#: cui/inc/strings.hrc:338
msgctxt "RID_SVXSTR_ORDINAL"
msgid "Format ordinal numbers suffixes (1st -> 1^st)"
msgstr ""
#. 6oHuF
-#: cui/inc/strings.hrc:334
+#: cui/inc/strings.hrc:339
msgctxt "RID_SVXSTR_OLD_HUNGARIAN"
msgid "Transliterate to Old Hungarian if the text direction is from right to left"
msgstr ""
#. CNtDd
-#: cui/inc/strings.hrc:335
+#: cui/inc/strings.hrc:340
msgctxt "RID_SVXSTR_ANGLE_QUOTES"
msgid "Replace << and >> with angle quotes"
msgstr ""
#. Rc6Zg
-#: cui/inc/strings.hrc:336
+#: cui/inc/strings.hrc:341
msgctxt "RID_SVXSTR_DEL_EMPTY_PARA"
msgid "Remove blank paragraphs"
msgstr "Ианыхлатәуп иҭацәу абзацқәа"
#. F6HCc
-#: cui/inc/strings.hrc:337
+#: cui/inc/strings.hrc:342
msgctxt "RID_SVXSTR_USER_STYLE"
msgid "Replace Custom Styles"
msgstr ""
#. itDJG
-#: cui/inc/strings.hrc:338
+#: cui/inc/strings.hrc:343
msgctxt "RID_SVXSTR_BULLET"
msgid "Replace bullets with: %1"
msgstr ""
#. BvroE
#. To translators: %1 will be replaced with a percentage, e.g. "10%"
-#: cui/inc/strings.hrc:340
+#: cui/inc/strings.hrc:345
msgctxt "RID_SVXSTR_RIGHT_MARGIN"
msgid "Combine single line paragraphs if length greater than %1"
msgstr ""
#. M9kNQ
-#: cui/inc/strings.hrc:341
+#: cui/inc/strings.hrc:346
msgctxt "RID_SVXSTR_NUM"
msgid "Bulleted and numbered lists. Bullet symbol: %1"
msgstr ""
#. BJVGT
-#: cui/inc/strings.hrc:342
+#: cui/inc/strings.hrc:347
msgctxt "RID_SVXSTR_BORDER"
msgid "Apply border"
msgstr ""
#. bXpcq
-#: cui/inc/strings.hrc:343
+#: cui/inc/strings.hrc:348
msgctxt "RID_SVXSTR_CREATE_TABLE"
msgid "Create table"
msgstr "Иаҧҵатәуп атаблица"
#. RvEBo
-#: cui/inc/strings.hrc:344
+#: cui/inc/strings.hrc:349
msgctxt "RID_SVXSTR_REPLACE_TEMPLATES"
msgid "Apply Styles"
msgstr "Ихархәатәуп астильқәа"
#. 6MGUe
-#: cui/inc/strings.hrc:345
+#: cui/inc/strings.hrc:350
msgctxt "RID_SVXSTR_DEL_SPACES_AT_STT_END"
msgid "Delete spaces and tabs at beginning and end of paragraph"
msgstr ""
#. R9Kke
-#: cui/inc/strings.hrc:346
+#: cui/inc/strings.hrc:351
msgctxt "RID_SVXSTR_DEL_SPACES_BETWEEN_LINES"
msgid "Delete spaces and tabs at end and start of line"
msgstr ""
#. GFpkR
-#: cui/inc/strings.hrc:347
+#: cui/inc/strings.hrc:352
msgctxt "RID_SVXSTR_CONNECTOR"
msgid "Connector"
msgstr "Аиԥшьыгатә ҵәаӷәа"
#. XDp8d
-#: cui/inc/strings.hrc:348
+#: cui/inc/strings.hrc:353
msgctxt "RID_SVXSTR_DIMENSION_LINE"
msgid "Dimension line"
msgstr "Ишәагаатәу аҵәаӷәа"
#. Mxt3D
-#: cui/inc/strings.hrc:349
+#: cui/inc/strings.hrc:354
msgctxt "RID_SVXSTR_STARTQUOTE"
msgid "Start Quote"
msgstr ""
#. o8nY6
-#: cui/inc/strings.hrc:350
+#: cui/inc/strings.hrc:355
msgctxt "RID_SVXSTR_ENDQUOTE"
msgid "End Quote"
msgstr ""
#. cZX7G
-#: cui/inc/strings.hrc:352
+#: cui/inc/strings.hrc:357
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Агага ада"
#. bzAHG
-#: cui/inc/strings.hrc:353
+#: cui/inc/strings.hrc:358
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr ""
#. FjBGC
-#: cui/inc/strings.hrc:354
+#: cui/inc/strings.hrc:359
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr ""
#. 5BkoC
-#: cui/inc/strings.hrc:355
+#: cui/inc/strings.hrc:360
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr ""
#. GYB8M
-#: cui/inc/strings.hrc:356
+#: cui/inc/strings.hrc:361
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr ""
#. xTvak
-#: cui/inc/strings.hrc:357
+#: cui/inc/strings.hrc:362
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
#. Uc7wm
-#: cui/inc/strings.hrc:359
+#: cui/inc/strings.hrc:364
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "Афаилқәа зегьы"
#. 8bnrf
-#: cui/inc/strings.hrc:361
+#: cui/inc/strings.hrc:366
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
#. xySty
-#: cui/inc/strings.hrc:363
+#: cui/inc/strings.hrc:368
msgctxt "RID_SVXSTR_CANNOTCONVERTURL_ERR"
msgid "The URL <%1> cannot be converted to a filesystem path."
msgstr ""
#. WHVhx
-#: cui/inc/strings.hrc:365
+#: cui/inc/strings.hrc:370
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2021 LibreOffice contributors."
msgstr ""
#. GesDU
-#: cui/inc/strings.hrc:366
+#: cui/inc/strings.hrc:371
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
#. WCnhx
-#: cui/inc/strings.hrc:367
+#: cui/inc/strings.hrc:372
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr ""
#. Lz9nx
-#: cui/inc/strings.hrc:368
+#: cui/inc/strings.hrc:373
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice базас иамоуп OpenOffice.org."
#. 9aeNR
-#: cui/inc/strings.hrc:369
+#: cui/inc/strings.hrc:374
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org"
msgstr ""
#. q5Myk
-#: cui/inc/strings.hrc:370
+#: cui/inc/strings.hrc:375
msgctxt "aboutdialog|uilocale"
msgid "UI: $LOCALE"
msgstr ""
#. 3vXzF
-#: cui/inc/strings.hrc:372
+#: cui/inc/strings.hrc:377
msgctxt "optpathspage|editpaths"
msgid "Edit Paths: %1"
msgstr "Иҧсахтәуп амҩақәа: %1"
#. 8ZaCL
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Label"
msgstr ""
#. GceL6
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Command"
msgstr ""
#. dRqYc
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Tooltip"
msgstr ""
#. 3FZFt
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_QRCODEDATALONG"
msgid "The URL or text is too long for the current error correction level. Either shorten the text or decrease the correction level."
msgstr ""
#. AD8QJ
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_DELETEUSERCOLOR1"
msgid "You can only delete user-defined colors"
msgstr ""
#. 4LWGV
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_DELETEUSERCOLOR2"
msgid "Please select the color to delete"
msgstr ""
#. FjQQ5
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLBUTTON"
msgid "Install"
msgstr ""
#. 2GUFq
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLEDBUTTON"
msgid "Installed"
msgstr ""
#. TmK5f
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLING"
msgid "Installing"
msgstr ""
#. izdAK
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:390
msgctxt "RID_SVXSTR_ADDITIONS_SEARCHING"
msgid "Searching..."
msgstr ""
#. HYT6K
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_ADDITIONS_LOADING"
msgid "Loading..."
msgstr ""
#. 88Ect
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:392
msgctxt "RID_SVXSTR_ADDITIONS_DIALOG_TITLE_PREFIX"
msgid "Extensions"
msgstr ""
#. KTtQE
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:394
msgctxt "RID_SVXSTR_UI_APPLYALL"
msgid "Apply to %MODULE"
msgstr ""
@@ -8975,19 +9005,19 @@ msgid "Assigns macros to program events. The assigned macro runs automatically e
msgstr ""
#. BuBeE
-#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+#: cui/uiconfig/ui/fileextcheckdialog.ui:31
msgctxt "FileExtCheck|Checkbox"
msgid "_Perform check on startup"
msgstr ""
#. Bjfzv
-#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+#: cui/uiconfig/ui/fileextcheckdialog.ui:35
msgctxt "FileExtCheck|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
#. mGEv5
-#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+#: cui/uiconfig/ui/fileextcheckdialog.ui:63
msgctxt "FileExtCheckDialog|Ok_Button"
msgid "_OK"
msgstr ""
@@ -11968,50 +11998,26 @@ msgctxt "macroselectordialog|MacroSelectorDialog"
msgid "Macro Selector"
msgstr "Амакрос алхра"
-#. sgKzf
-#: cui/uiconfig/ui/macroselectordialog.ui:42
-msgctxt "macroselectordialog|add"
-msgid "Add"
-msgstr "Иацҵатәуп"
-
#. fpfnw
-#: cui/uiconfig/ui/macroselectordialog.ui:135
+#: cui/uiconfig/ui/macroselectordialog.ui:108
msgctxt "macroselectordialog|helpmacro"
msgid "Select the library that contains the macro you want. Then select the macro under 'Macro name'."
msgstr ""
-#. nVAE3
-#: cui/uiconfig/ui/macroselectordialog.ui:151
-msgctxt "macroselectordialog|helptoolbar"
-msgid "To add a command to a toolbar, select the category and then the command. Then drag the command to the Commands list of the Toolbars tab page in the Customize dialog."
-msgstr ""
-
#. SuCLc
-#: cui/uiconfig/ui/macroselectordialog.ui:230
+#: cui/uiconfig/ui/macroselectordialog.ui:182
msgctxt "macroselectordialog|libraryft"
msgid "Library"
msgstr "Абиблиотека"
-#. ah4q5
-#: cui/uiconfig/ui/macroselectordialog.ui:245
-msgctxt "macroselectordialog|categoryft"
-msgid "Category"
-msgstr "Акатегориа"
-
#. QvKmS
-#: cui/uiconfig/ui/macroselectordialog.ui:318
+#: cui/uiconfig/ui/macroselectordialog.ui:243
msgctxt "macroselectordialog|macronameft"
msgid "Macro Name"
msgstr "Амакрос ахьӡ"
-#. 2pAF6
-#: cui/uiconfig/ui/macroselectordialog.ui:334
-msgctxt "macroselectordialog|commandsft"
-msgid "Commands"
-msgstr "Акомандақәа"
-
#. gsUCh
-#: cui/uiconfig/ui/macroselectordialog.ui:397
+#: cui/uiconfig/ui/macroselectordialog.ui:297
msgctxt "macroselectordialog|label1"
msgid "Description"
msgstr "Ахҳәаа"
@@ -17414,147 +17420,147 @@ msgid "Properties"
msgstr "Аҷыдаҟазшьақәа"
#. FTBKZ
-#: cui/uiconfig/ui/paraindentspacing.ui:73
+#: cui/uiconfig/ui/paraindentspacing.ui:72
msgctxt "paraindentspacing|drawingareaWN_EXAMPLE-atkobject"
msgid "Example"
msgstr "Аҿырҧштәы"
#. saei7
-#: cui/uiconfig/ui/paraindentspacing.ui:115
+#: cui/uiconfig/ui/paraindentspacing.ui:113
msgctxt "paraindentspacing|labelFT_LEFTINDENT"
msgid "_Before text:"
msgstr "Атеқст аԥхьа:"
#. iV7A5
-#: cui/uiconfig/ui/paraindentspacing.ui:129
+#: cui/uiconfig/ui/paraindentspacing.ui:127
msgctxt "paraindentspacing|labelFT_RIGHTINDENT"
msgid "After _text:"
msgstr "Атеқст ашьҭахь:"
#. 396YJ
-#: cui/uiconfig/ui/paraindentspacing.ui:143
+#: cui/uiconfig/ui/paraindentspacing.ui:141
msgctxt "paraindentspacing|labelFT_FLINEINDENT"
msgid "_First line:"
msgstr "_Актәи ацәаҳәа:"
#. jwo9n
-#: cui/uiconfig/ui/paraindentspacing.ui:155
+#: cui/uiconfig/ui/paraindentspacing.ui:153
msgctxt "paraindentspacing|checkCB_AUTO"
msgid "_Automatic"
msgstr "_Автоматикала"
#. NE9g8
-#: cui/uiconfig/ui/paraindentspacing.ui:157
+#: cui/uiconfig/ui/paraindentspacing.ui:155
msgctxt "paraindentspacing|checkCB_AUTO|tooltip_text"
msgid "Indent paragraph automatically according to font size and line spacing."
msgstr ""
#. L9iw7
-#: cui/uiconfig/ui/paraindentspacing.ui:210
+#: cui/uiconfig/ui/paraindentspacing.ui:208
msgctxt "paraindentspacing|labelST_LINEDIST_ABS"
msgid "Fixed"
msgstr ""
#. qwSsb
-#: cui/uiconfig/ui/paraindentspacing.ui:223
+#: cui/uiconfig/ui/paraindentspacing.ui:221
msgctxt "paraindentspacing|label1"
msgid "Indent"
msgstr ""
#. RMdgy
-#: cui/uiconfig/ui/paraindentspacing.ui:260
+#: cui/uiconfig/ui/paraindentspacing.ui:258
msgctxt "paraindentspacing|labelFT_TOPDIST"
msgid "Ab_ove paragraph:"
msgstr "Абзац аҧхьа:"
#. mTi8C
-#: cui/uiconfig/ui/paraindentspacing.ui:274
+#: cui/uiconfig/ui/paraindentspacing.ui:272
msgctxt "paraindentspacing|labelFT_BOTTOMDIST"
msgid "Below _paragraph:"
msgstr "Абзац ашьҭахь:"
#. AdWVr
-#: cui/uiconfig/ui/paraindentspacing.ui:319
+#: cui/uiconfig/ui/paraindentspacing.ui:317
msgctxt "paraindentspacing|checkCB_CONTEXTUALSPACING"
msgid "Do not add space between paragraphs of the same style"
msgstr ""
#. hWQWQ
-#: cui/uiconfig/ui/paraindentspacing.ui:338
+#: cui/uiconfig/ui/paraindentspacing.ui:336
msgctxt "paraindentspacing|labelFL_VERTALIGN"
msgid "Spacing"
msgstr "Аинтервал"
#. vuFhh
-#: cui/uiconfig/ui/paraindentspacing.ui:380
+#: cui/uiconfig/ui/paraindentspacing.ui:378
msgctxt "paraindentspacing|liststoreLB_LINEDIST"
msgid "Single"
msgstr ""
#. 5qPNL
-#: cui/uiconfig/ui/paraindentspacing.ui:381
+#: cui/uiconfig/ui/paraindentspacing.ui:379
msgctxt "paraindentspacing|liststoreLB_LINEDIST"
msgid "1.15 Lines"
msgstr "1,15 ацәаҳәақәа"
#. GxLCB
-#: cui/uiconfig/ui/paraindentspacing.ui:382
+#: cui/uiconfig/ui/paraindentspacing.ui:380
msgctxt "paraindentspacing|liststoreLB_LINEDIST"
msgid "1.5 Lines"
msgstr "1,5 ацәаҳәақәа"
#. cD4RR
-#: cui/uiconfig/ui/paraindentspacing.ui:383
+#: cui/uiconfig/ui/paraindentspacing.ui:381
msgctxt "paraindentspacing|liststoreLB_LINEDIST"
msgid "Double"
msgstr "Ҩынтәтәи"
#. 98csB
-#: cui/uiconfig/ui/paraindentspacing.ui:384
+#: cui/uiconfig/ui/paraindentspacing.ui:382
msgctxt "paraindentspacing|liststoreLB_LINEDIST"
msgid "Proportional"
msgstr ""
#. XN6ri
-#: cui/uiconfig/ui/paraindentspacing.ui:385
+#: cui/uiconfig/ui/paraindentspacing.ui:383
msgctxt "paraindentspacing|liststoreLB_LINEDIST"
msgid "At least"
msgstr "Аминимум"
#. NYeFC
-#: cui/uiconfig/ui/paraindentspacing.ui:386
+#: cui/uiconfig/ui/paraindentspacing.ui:384
#, fuzzy
msgctxt "paraindentspacing|liststoreLB_LINEDIST"
msgid "Leading"
msgstr "Ахқәа"
#. 9fdqy
-#: cui/uiconfig/ui/paraindentspacing.ui:399
+#: cui/uiconfig/ui/paraindentspacing.ui:397
msgctxt "paraindentspacing|labelFT_LINEDIST"
msgid "of"
msgstr "ашәагаа:"
#. Bga6L
-#: cui/uiconfig/ui/paraindentspacing.ui:462
+#: cui/uiconfig/ui/paraindentspacing.ui:460
msgctxt "paraindentspacing|checkCB_REGISTER"
msgid "Activate page li_ne-spacing"
msgstr ""
#. uesRM
#. xdds
-#: cui/uiconfig/ui/paraindentspacing.ui:465
+#: cui/uiconfig/ui/paraindentspacing.ui:463
msgctxt "paraindentspacing|checkCB_REGISTER|tooltip_text"
msgid "Applies page line-spacing (register-true) if set for the Page Style."
msgstr ""
#. MwL9j
-#: cui/uiconfig/ui/paraindentspacing.ui:470
+#: cui/uiconfig/ui/paraindentspacing.ui:469
msgctxt "paraindentspacing|extended_tip|checkCB_REGISTER"
msgid "If page line-spacing is activated and the Page style uses page line-spacing, then this paragraph will align to an invisible vertical page grid, regardless of their font size, so that each line is the same height."
msgstr ""
#. GxJB6
-#: cui/uiconfig/ui/paraindentspacing.ui:486
+#: cui/uiconfig/ui/paraindentspacing.ui:485
msgctxt "paraindentspacing|labelFL_PROPERTIES"
msgid "Line Spacing"
msgstr "Ацәаҳәабжьаратәи аинтервал"
diff --git a/source/ab/dictionaries/mn_MN.po b/source/ab/dictionaries/mn_MN.po
new file mode 100644
index 00000000000..b53104d879a
--- /dev/null
+++ b/source/ab/dictionaries/mn_MN.po
@@ -0,0 +1,23 @@
+#. extracted from dictionaries/mn_MN
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2021-04-27 17:02+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"
+
+#. UsF8V
+#: description.xml
+msgctxt ""
+"description.xml\n"
+"dispname\n"
+"description.text"
+msgid "Mongolian spelling and hyphenation dictionaries"
+msgstr ""
diff --git a/source/ab/extensions/messages.po b/source/ab/extensions/messages.po
index 8fb1a98643a..4abf8c1f17e 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: 2021-02-22 17:16+0100\n"
+"POT-Creation-Date: 2021-04-27 17:02+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"
@@ -3822,7 +3822,7 @@ msgid "User-defined field _3"
msgstr ""
#. x9s9K
-#: extensions/uiconfig/sbibliography/ui/generalpage.ui:880
+#: extensions/uiconfig/sbibliography/ui/generalpage.ui:910
msgctxt "generalpage|extended_tip|GeneralPage"
msgid "Insert, delete, edit, and organize records in the bibliography database."
msgstr ""
diff --git a/source/ab/extras/source/gallery/share.po b/source/ab/extras/source/gallery/share.po
index 1f1e32851dd..ce3b50265a3 100644
--- a/source/ab/extras/source/gallery/share.po
+++ b/source/ab/extras/source/gallery/share.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-06-22 17:23+0200\n"
+"POT-Creation-Date: 2021-04-27 17:02+0200\n"
"PO-Revision-Date: 2018-02-27 14:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -33,6 +33,15 @@ msgctxt ""
msgid "Backgrounds"
msgstr ""
+#. fVCP9
+#: gallery_names.ulf
+msgctxt ""
+"gallery_names.ulf\n"
+"bullets\n"
+"LngText.text"
+msgid "Bullets"
+msgstr ""
+
#. kuNKS
#: gallery_names.ulf
msgctxt ""
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 db5180c1a53..53ec95b6671 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: 2021-04-12 12:06+0200\n"
+"POT-Creation-Date: 2021-04-27 17:03+0200\n"
"PO-Revision-Date: 2021-03-05 18:22+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/ab/>\n"
@@ -22730,6 +22730,16 @@ msgctxt ""
msgid "Protect Track Changes"
msgstr ""
+#. XGBrs
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:ProtectTraceChangeMode\n"
+"PopupLabel\n"
+"value.text"
+msgid "Protect Track Changes"
+msgstr ""
+
#. 7u9EW
#: GenericCommands.xcu
msgctxt ""
@@ -26210,6 +26220,16 @@ msgctxt ""
msgid "For Selection"
msgstr "Алкаараз"
+#. yhJF9
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:SetLanguageSelectionMenu\n"
+"PopupLabel\n"
+"value.text"
+msgid "Language for Selection"
+msgstr ""
+
#. TbazQ
#: GenericCommands.xcu
msgctxt ""
@@ -26220,6 +26240,16 @@ msgctxt ""
msgid "For Paragraph"
msgstr "Абзац азы"
+#. nAUEv
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:SetLanguageParagraphMenu\n"
+"PopupLabel\n"
+"value.text"
+msgid "Language for Paragraph"
+msgstr ""
+
#. MjBaU
#: GenericCommands.xcu
msgctxt ""
@@ -26230,6 +26260,16 @@ msgctxt ""
msgid "For All Text"
msgstr "Атеқст зегьы азы"
+#. KrUgJ
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:SetLanguageAllTextMenu\n"
+"PopupLabel\n"
+"value.text"
+msgid "Language for All Text"
+msgstr ""
+
#. 4cXLB
#: GenericCommands.xcu
msgctxt ""
@@ -29710,6 +29750,16 @@ msgctxt ""
msgid "Indexes and ~Tables"
msgstr ""
+#. eFv2z
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:UpdateAllIndexes\n"
+"PopupLabel\n"
+"value.text"
+msgid "Update Indexes and ~Tables"
+msgstr ""
+
#. XPn5o
#: WriterCommands.xcu
msgctxt ""
@@ -29730,14 +29780,14 @@ msgctxt ""
msgid "Current ~Index"
msgstr ""
-#. K4wN4
+#. 4nqPU
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:UpdateCurIndex\n"
"PopupLabel\n"
"value.text"
-msgid "Update index"
+msgid "Update ~Index"
msgstr ""
#. 3sfQu
@@ -29960,6 +30010,16 @@ msgctxt ""
msgid "~Links"
msgstr "Аимадарақәа"
+#. gA4ED
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:UpdateAllLinks\n"
+"PopupLabel\n"
+"value.text"
+msgid "Update ~Links"
+msgstr ""
+
#. fQQgY
#: WriterCommands.xcu
msgctxt ""
@@ -30210,6 +30270,16 @@ msgctxt ""
msgid "~Charts"
msgstr "Адиаграммақәа"
+#. wJWVm
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:UpdateCharts\n"
+"PopupLabel\n"
+"value.text"
+msgid "Update ~Charts"
+msgstr ""
+
#. 46XYv
#: WriterCommands.xcu
msgctxt ""
@@ -32303,6 +32373,16 @@ msgctxt ""
msgid "~Fields"
msgstr ""
+#. SfG3D
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:UpdateFields\n"
+"PopupLabel\n"
+"value.text"
+msgid "Update ~Fields"
+msgstr ""
+
#. tpc5P
#: WriterCommands.xcu
msgctxt ""
@@ -32963,6 +33043,16 @@ msgctxt ""
msgid "Page Formatting"
msgstr "Адаҟьа аформатркра"
+#. neAhV
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:Repaginate\n"
+"PopupLabel\n"
+"value.text"
+msgid "Update Page Formatting"
+msgstr ""
+
#. yyVam
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/ab/sc/messages.po b/source/ab/sc/messages.po
index 37f182f0efa..117d0f9e5c3 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: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-27 17:03+0200\n"
"PO-Revision-Date: 2021-02-09 16:36+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/ab/>\n"
@@ -24692,231 +24692,231 @@ msgid "No solution was found."
msgstr ""
#. iQSEv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3009
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3002
msgctxt "CalcNotebookbar|FileMenuButton"
msgid "_File"
msgstr ""
#. wh523
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3028
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3021
msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
#. 3iDW7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3083
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3076
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3559
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3846
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3839
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3853
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4792
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4785
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4901
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4894
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5453
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5981
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5974
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6089
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6082
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6500
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6526
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6964
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6493
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6519
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6957
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7189
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7182
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7274
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7267
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8580
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8573
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8631
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8624
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8740
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8733
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9562
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9555
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9648
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9641
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10554
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10547
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10633
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11692
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11775
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11817
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11900
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13036
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13119
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13146
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13229
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13618
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13701
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13918
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14001
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14028
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14111
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14603
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14686
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14711
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14794
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15104
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15187
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15188
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15271
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16023
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16106
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16108
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16191
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16165
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16248
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16239
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16322
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17467
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17550
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17635
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -25121,501 +25121,501 @@ msgid "~Tools"
msgstr ""
#. LL2dj
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3308
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3301
msgctxt "notebookbar_groupedbar_compact|fileb"
msgid "_File"
msgstr "_Афаил"
#. MR7ZB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3419
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3412
msgctxt "notebookbar_groupedbar_compact|editb"
msgid "_Edit"
msgstr "_Ариашара"
#. AXNcR
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3538
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5126
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3531
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5119
msgctxt "notebookbar_groupedbar_compact|paragraphstyleb"
msgid "St_yles"
msgstr "Астильқәа"
#. scY66
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3692
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3685
msgctxt "notebookbar_groupedbar_compact|formatb"
msgid "F_ont"
msgstr "Ашрифт"
#. LFB3L
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3927
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3920
msgctxt "notebookbar_groupedbar_compact|paragraphb"
msgid "_Paragraph"
msgstr ""
#. UnsAB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4341
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4334
msgctxt "notebookbar_groupedbar_compact|numberb"
msgid "_Number"
msgstr "Ахыҧхьаӡара"
#. hBvBa
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4455
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4448
#, fuzzy
msgctxt "notebookbar_groupedbar_compact|datab"
msgid "_Data"
msgstr "Адырқәа"
#. CMGpS
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4569
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4562
msgctxt "notebookbar_groupedbar_compact|insertb"
msgid "_Insert"
msgstr "Ибжьаргылатәуп"
#. 5wZbP
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4683
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4676
msgctxt "notebookbar_groupedbar_compact|reviewb"
msgid "_Review"
msgstr ""
#. Uyv2y
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4797
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4790
#, fuzzy
msgctxt "notebookbar_groupedbar_compact|viewb"
msgid "_View"
msgstr "Ахәаҧшра"
#. bgPuY
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4909
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:11443
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4902
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:11436
msgctxt "notebookbar_groupedbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. 5fAr4
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5002
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4995
msgctxt "notebookbar_groupedbar_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. T2jYU
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5280
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5273
msgctxt "notebookbar_groupedbar_compact|FormatButton"
msgid "F_ont"
msgstr ""
#. jZETF
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5513
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5506
msgctxt "notebookbar_groupedbar_compact|paragraphS"
msgid "_Paragraph"
msgstr "Абзац"
#. 5Wp5j
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5771
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5764
#, fuzzy
msgctxt "notebookbar_groupedbar_compact|viewS"
msgid "_View"
msgstr "Ахәаҧшра"
#. DC7Hv
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5909
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5902
msgctxt "notebookbar_groupedbar_compact|editdrawb"
msgid "D_raw"
msgstr ""
#. ncAKi
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:6347
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7933
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9004
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9625
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:10459
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:6340
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7926
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:8997
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9618
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:10452
msgctxt "notebookbar_groupedbar_compact|ArrangeButton"
msgid "_Arrange"
msgstr ""
#. 8pLR3
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:6631
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:6624
msgctxt "notebookbar_groupedbar_compact|draw"
msgid "_Shape"
msgstr ""
#. NM63T
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:6887
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:10716
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:6880
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:10709
msgctxt "notebookbar_groupedbar_compact|viewDrawb"
msgid "Grou_p"
msgstr "Агәыҧ"
#. cbMTW
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7013
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7006
msgctxt "notebookbar_groupedbar_compact|3Db"
msgid "3_D"
msgstr ""
#. BTzDn
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7248
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7241
msgctxt "notebookbar_groupedbar_compact|GridButton"
msgid "_Fontwork"
msgstr ""
#. PLqyG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7362
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:8438
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9261
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9883
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:10831
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7355
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:8431
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9254
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9876
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:10824
msgctxt "notebookbar_groupedbar_compact|GridButton"
msgid "_Grid"
msgstr ""
#. K6izG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7495
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7488
msgctxt "notebookbar_groupedbar_compact|ImageButton"
msgid "Im_age"
msgstr ""
#. SEFWn
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:8167
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:8160
msgctxt "notebookbar_groupedbar_compact|ColorButton"
msgid "Fi_lter"
msgstr ""
#. 5a4zV
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:8566
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:8559
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "_Object"
msgstr ""
#. Ghwp6
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9390
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9383
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "_Media"
msgstr ""
#. nyHDP
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:10021
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:10014
msgctxt "notebookbar_groupedbar_compact|editdrawb"
msgid "_Edit"
msgstr ""
#. PhCFL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:11310
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:11303
msgctxt "notebookbar_groupedbar_compact|PrintMenuButton"
msgid "_Print"
msgstr ""
#. RC7F3
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:12227
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:12220
msgctxt "notebookbar_groupedbar_compact|MenuButton"
msgid "_Menu"
msgstr ""
#. mBSfG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2615
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2608
msgctxt "notebookbar_groupedbar_full|defaultD"
msgid "Default"
msgstr "Астандарт"
#. Z7t2R
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2629
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2622
msgctxt "notebookbar_groupedbar_full|Accent1"
msgid "Accent 1"
msgstr "Акцент 1"
#. xeEFE
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2637
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2630
msgctxt "notebookbar_groupedbar_full|Accent2"
msgid "Accent 2"
msgstr "Акцент 2"
#. G3TRo
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2645
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2638
msgctxt "notebookbar_groupedbar_full|Accent3"
msgid "Accent 3"
msgstr "Акцент 3"
#. QcUKG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2659
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2652
msgctxt "notebookbar_groupedbar_full|Header1"
msgid "Heading 1"
msgstr ""
#. 6Ej4G
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2667
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2660
msgctxt "notebookbar_groupedbar_full|Header2"
msgid "Heading 2"
msgstr ""
#. sqE94
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2681
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2674
msgctxt "notebookbar_groupedbar_full|bad"
msgid "Bad"
msgstr ""
#. 3ibZN
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2689
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2682
msgctxt "notebookbar_groupedbar_full|good"
msgid "Good"
msgstr ""
#. DGBbw
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2697
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2690
msgctxt "notebookbar_groupedbar_full|neutral"
msgid "Neutral"
msgstr ""
#. keb9M
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2705
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2698
msgctxt "notebookbar_groupedbar_full|error"
msgid "Error"
msgstr "Агха"
#. WtFbH
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2713
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2706
msgctxt "notebookbar_groupedbar_full|warning"
msgid "Warning"
msgstr "Агәаҽанҵара"
#. t9EbD
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2727
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2720
msgctxt "notebookbar_groupedbar_full|footnote"
msgid "Footnote"
msgstr ""
#. FFrSw
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2735
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2728
msgctxt "notebookbar_groupedbar_full|note"
msgid "Note"
msgstr "Азгәаҭа"
#. EsADr
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3226
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3219
msgctxt "notebookbar_groupedbar_full|menub"
msgid "_Menu"
msgstr ""
#. Ch63h
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3280
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3273
msgctxt "notebookbar_groupedbar_full|toolsb"
msgid "_Tools"
msgstr ""
#. kdH4L
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3335
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3328
msgctxt "notebookbar_groupedbar_full|helpb"
msgid "_Help"
msgstr "Аилыркаага"
#. bkg23
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3444
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3437
msgctxt "notebookbar_groupedbar_full|fileb"
msgid "_File"
msgstr "_Афаил"
#. aqbEs
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3682
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3675
msgctxt "notebookbar_groupedbar_full|editb"
msgid "_Edit"
msgstr "_Ариашара"
#. HFC9U
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3879
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3872
msgctxt "notebookbar_groupedbar_full|paragraphstyleb"
msgid "St_yles"
msgstr "Астильқәа"
#. VFtWK
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4152
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4145
msgctxt "notebookbar_groupedbar_full|formatb"
msgid "F_ont"
msgstr "Ашрифт"
#. 9HzEG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4398
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4391
msgctxt "notebookbar_groupedbar_full|numberb"
msgid "_Number"
msgstr "Ахыҧхьаӡара"
#. F7vQ2
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4614
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4607
msgctxt "notebookbar_groupedbar_full|paragraphb"
msgid "_Alignment"
msgstr "Аиҟаратәра"
#. QnhiG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4848
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4841
msgctxt "notebookbar_groupedbar_full|cellb"
msgid "_Cells"
msgstr "Абларҭақәа"
#. rrpkZ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5009
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5002
msgctxt "notebookbar_groupedbar_full|insertb"
msgid "_Insert"
msgstr "Ибжьаргылатәуп"
#. NsDSM
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5192
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5185
#, fuzzy
msgctxt "notebookbar_groupedbar_full|datab"
msgid "_Data"
msgstr "Адырқәа"
#. gQQfL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5364
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5357
msgctxt "notebookbar_groupedbar_full|reviewb"
msgid "_Review"
msgstr ""
#. BHDdD
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5536
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5529
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewb"
msgid "_View"
msgstr "Ахәаҧшра"
#. ZJufp
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5761
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5754
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "Im_age"
msgstr ""
#. punQr
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6113
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6106
msgctxt "notebookbar_groupedbar_full|arrange"
msgid "_Arrange"
msgstr ""
#. DDTxx
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6264
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6257
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "_Аҧштәы"
#. CHosB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6515
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6508
msgctxt "notebookbar_groupedbar_full|GridB"
msgid "_Grid"
msgstr ""
#. xeUxD
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6652
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6645
msgctxt "notebookbar_groupedbar_full|languageb"
msgid "_Language"
msgstr "_Абызшәа"
#. eBoPL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6881
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6874
msgctxt "notebookbar_groupedbar_full|revieb"
msgid "_Review"
msgstr ""
#. y4Sg3
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7094
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7087
msgctxt "notebookbar_groupedbar_full|commentsb"
msgid "_Comments"
msgstr "Акомментариқәа"
#. m9Mxg
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7297
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7290
msgctxt "notebookbar_groupedbar_full|compareb"
msgid "Com_pare"
msgstr ""
#. ewCjP
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7499
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7492
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewa"
msgid "_View"
msgstr "Ахәаҧшра"
#. WfzeY
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7945
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7938
msgctxt "notebookbar_groupedbar_full|drawb"
msgid "D_raw"
msgstr ""
#. QNg9L
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8314
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8307
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "_Edit"
msgstr "_Ариашара"
#. MECyG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8655
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8648
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr ""
#. 9Z4JQ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8822
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8815
#, fuzzy
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_View"
msgstr "Ахәаҧшра"
#. 3i55T
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9024
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9017
msgctxt "notebookbar_groupedbar_full|viewDrawb"
msgid "Grou_p"
msgstr "Агәыҧ"
#. fNGFB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9174
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9167
msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
#. stsit
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9483
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9476
msgctxt "notebookbar_groupedbar_full|formatd"
msgid "F_ont"
msgstr "Ашрифт"
#. ZDEax
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9748
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9741
msgctxt "notebookbar_groupedbar_full|paragraphTextb"
msgid "_Alignment"
msgstr "Аиҟаратәра"
#. CVAyh
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9950
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9943
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewd"
msgid "_View"
msgstr "Ахәаҧшра"
#. h6EHi
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10104
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10097
msgctxt "notebookbar_groupedbar_full|insertTextb"
msgid "_Insert"
msgstr "Ибжьаргылатәуп"
#. eLnnF
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10249
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10242
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "Амедиа"
#. dzADL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10486
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10479
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "F_rame"
msgstr "Афреим"
#. GjFnB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10917
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10910
msgctxt "notebookbar_groupedbar_full|arrageOLE"
msgid "_Arrange"
msgstr ""
#. DF4U7
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11083
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11076
msgctxt "notebookbar_groupedbar_full|OleGridB"
msgid "_Grid"
msgstr ""
#. UZ2JJ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11285
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11278
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewf"
msgid "_View"
diff --git a/source/ab/sd/messages.po b/source/ab/sd/messages.po
index cbc2b5202b4..e9dc53284bc 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: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-27 17:03+0200\n"
"PO-Revision-Date: 2021-02-08 11:26+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/ab/>\n"
@@ -3803,225 +3803,225 @@ msgid "Name HTML Design"
msgstr ""
#. V3FWt
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3175
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3167
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr "_Афаил"
#. exwEC
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3194
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3186
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
#. qrXDY
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3250
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3242
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr "~Афаил"
#. EQ6HL
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4572
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4564
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. jtFqm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4673
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4665
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. zoUaS
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5420
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5412
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. S5FkE
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5606
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5598
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. Z3UCg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5713
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5705
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. TVDXM
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6429
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6421
msgctxt "drawnotebookbar|PageMenuButton"
msgid "_Layout"
msgstr ""
#. Rv7x4
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6515
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6507
msgctxt "drawnotebookbar|PageLabel"
msgid "~Layout"
msgstr ""
#. BQcfo
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7065
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:7057
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. prpcY
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7149
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:7141
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. EiuB6
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8199
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. EF3TH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8293
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8285
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. 94L75
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9680
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9672
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
#. PQtWE
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9777
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9769
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
#. tNq7H
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10707
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10699
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. 9pJGh
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10792
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10784
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. ECD4J
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12536
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14390
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11328
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12618
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14472
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11931
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12013
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12043
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12125
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13788
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13870
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13897
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13979
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14756
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14838
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14866
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14948
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15382
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15464
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15489
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15571
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16324
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16406
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16409
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16491
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17223
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17305
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17333
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17415
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17868
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17950
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17953
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18035
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18010
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18092
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18084
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18166
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19028
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19110
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19113
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19195
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -4237,190 +4237,190 @@ msgid "~Tools"
msgstr ""
#. BN8VW
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2302
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2295
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
msgstr ""
#. gf8PA
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2434
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2427
msgctxt "draw_notebookbar_groupedbar_compact|MenubarView"
msgid "Menubar"
msgstr ""
#. ELBq3
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:3037
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:3030
msgctxt "draw_notebookbar_groupedbar_compact|fileb"
msgid "_File"
msgstr "_Афаил"
#. DRGus
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:3148
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:3141
msgctxt "draw_notebookbar_groupedbar_compact|editb"
msgid "_Edit"
msgstr ""
#. vbFke
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:3278
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:6774
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:13069
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:3271
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:6767
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:13062
msgctxt "draw_notebookbar_groupedbar_compact|insertText"
msgid "_Insert"
msgstr ""
#. 4p9DA
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:3439
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:12668
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:3432
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:12661
msgctxt "draw_notebookbar_groupedbar_compact|draw"
msgid "D_raw"
msgstr ""
#. DsE2d
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:3882
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:7639
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:9558
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:10681
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:11360
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:12251
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:13205
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:3875
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:7632
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:9551
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:10674
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:11353
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:12244
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:13198
msgctxt "draw_notebookbar_groupedbar_compact|insertText"
msgid "_Snap"
msgstr ""
#. Dsr5A
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:4022
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:13345
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:4015
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:13338
msgctxt "draw_notebookbar_groupedbar_compact|reviewb"
msgid "_Review"
msgstr ""
#. Pxoj8
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:4136
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:5289
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:13459
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:4129
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:5282
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:13452
msgctxt "draw_notebookbar_groupedbar_compact|viewT"
msgid "_View"
msgstr ""
#. cjxQa
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:4248
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:13595
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:4241
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:13588
msgctxt "draw_notebookbar_groupedbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. eAioD
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:4341
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:4334
msgctxt "draw_notebookbar_groupedbar_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. c3M8j
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:4503
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:5458
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:4496
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:5451
msgctxt "draw_notebookbar_groupedbar_compact|formatt"
msgid "F_ont"
msgstr ""
#. pUqDJ
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:4740
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:5695
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:4733
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:5688
msgctxt "draw_notebookbar_groupedbar_compact|paragrapht"
msgid "_Paragraph"
msgstr ""
#. MRg9E
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:5962
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:5955
msgctxt "draw_notebookbar_groupedbar_compact|rowscolumnst"
msgid "_Table"
msgstr ""
#. QzCG4
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:6649
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:6642
msgctxt "draw_notebookbar_groupedbar_compact|calculatet"
msgid "_Calc"
msgstr ""
#. 5GKtj
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:6923
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:11535
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:6916
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:11528
msgctxt "draw_notebookbar_groupedbar_compact|editdrawb"
msgid "D_raw"
msgstr ""
#. dc5qG
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:7361
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:9280
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:10403
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:11081
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:11973
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:7354
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:9273
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:10396
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:11074
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:11966
msgctxt "draw_notebookbar_groupedbar_compact|ArrangeButton"
msgid "_Arrange"
msgstr ""
#. ApB4j
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:7829
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:7822
msgctxt "draw_notebookbar_groupedbar_compact|draw"
msgid "_Shape"
msgstr ""
#. R5YZh
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8106
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:12391
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8099
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:12384
msgctxt "draw_notebookbar_groupedbar_compact|viewDrawb"
msgid "Grou_p"
msgstr ""
#. TCPHC
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8351
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8344
msgctxt "draw_notebookbar_groupedbar_compact|3Db"
msgid "3_D"
msgstr ""
#. hgFay
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8585
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8578
msgctxt "draw_notebookbar_groupedbar_compact|GridButton"
msgid "_Fontwork"
msgstr ""
#. Q6ELJ
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8699
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8692
msgctxt "draw_notebookbar_groupedbar_compact|GridButton"
msgid "_Grid"
msgstr ""
#. fQJRZ
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8839
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8832
msgctxt "draw_notebookbar_groupedbar_compact|graphicB"
msgid "_Image"
msgstr ""
#. xudwE
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:9676
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:9669
msgctxt "draw_notebookbar_groupedbar_compact|GridB"
msgid "Fi_lter"
msgstr ""
#. 8qSXf
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:9965
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:9958
msgctxt "draw_notebookbar_groupedbar_compact|graphicB"
msgid "_Object"
msgstr ""
#. QdUM9
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:10846
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:10839
msgctxt "draw_notebookbar_groupedbar_compact|graphicB"
msgid "_Media"
msgstr ""
#. kwxYr
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:12529
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:12522
msgctxt "draw_notebookbar_groupedbar_compact|oleB"
msgid "_Master"
msgstr ""
#. bBpXr
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:14357
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:14350
msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr ""
@@ -6606,237 +6606,237 @@ msgid "All shapes"
msgstr ""
#. qGFEo
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3208
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3201
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr "_Афаил"
#. PyC4c
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3227
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3220
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
#. VoxXb
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3283
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3276
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr "~Афаил"
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4853
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4846
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4955
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4948
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5570
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5563
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6129
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6122
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6235
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6228
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7028
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7021
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr ""
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7114
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7107
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7588
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7581
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7673
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7666
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8221
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8214
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8305
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8298
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9556
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9549
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9642
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9635
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10557
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10642
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11191
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12391
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14263
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11184
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12474
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14346
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11788
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11871
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11900
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11983
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13659
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13769
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13852
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14629
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14712
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14739
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14822
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15255
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15338
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15362
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15445
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16280
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16282
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16365
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17094
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17177
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17179
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17262
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18007
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18090
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr ""
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18092
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18175
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr ""
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18906
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18989
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19016
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19099
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19073
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19156
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19147
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19230
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20143
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20226
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20228
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20311
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7052,196 +7052,196 @@ msgid "~Tools"
msgstr ""
#. JC7Dd
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:2308
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:2301
msgctxt "impress_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
msgstr ""
#. aEHCg
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:2481
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:2474
msgctxt "impress_notebookbar_groupedbar_compact|MenubarView"
msgid "Menubar"
msgstr ""
#. LL2dj
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:3097
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:3090
msgctxt "notebookbar_groupedbar_compact|fileb"
msgid "_File"
msgstr "_Афаил"
#. MR7ZB
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:3208
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:3201
msgctxt "notebookbar_groupedbar_compact|editb"
msgid "_Edit"
msgstr "_Ариашара"
#. 26rGJ
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:3338
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4557
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:3331
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4550
msgctxt "notebookbar_groupedbar_compact|reviewb"
msgid "S_lide"
msgstr ""
#. WZ5Fe
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:3500
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:12758
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:3493
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:12751
msgctxt "notebookbar_groupedbar_compact|draw"
msgid "D_raw"
msgstr ""
#. GYqWX
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:3943
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:7709
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:9626
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:10749
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:11428
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:12319
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:13284
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:3936
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:7702
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:9619
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:10742
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:11421
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:12312
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:13277
msgctxt "notebookbar_groupedbar_compact|insertText"
msgid "_Snap"
msgstr ""
#. LFnQL
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4083
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:6844
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:13148
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4076
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:6837
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:13141
msgctxt "notebookbar_groupedbar_compact|insertText"
msgid "_Insert"
msgstr "Ибжьаргылатәуп"
#. 5wZbP
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4197
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:13424
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4190
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:13417
msgctxt "notebookbar_groupedbar_compact|reviewb"
msgid "_Review"
msgstr ""
#. BxXfn
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4322
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:5388
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:13549
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4315
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:5381
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:13542
msgctxt "notebookbar_groupedbar_compact|viewT"
msgid "_View"
msgstr "Аԥшра"
#. 5fAr4
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4421
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4414
msgctxt "notebookbar_groupedbar_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. fED72
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4712
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:5556
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4705
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:5549
msgctxt "notebookbar_groupedbar_compact|formatt"
msgid "F_ont"
msgstr ""
#. YgxCs
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4947
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:5767
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4940
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:5760
msgctxt "notebookbar_groupedbar_compact|paragrapht"
msgid "_Paragraph"
msgstr "Абзац"
#. Tgwxy
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:6045
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:6038
msgctxt "notebookbar_groupedbar_compact|rowscolumnst"
msgid "_Table"
msgstr ""
#. PRamE
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:6719
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:6712
msgctxt "notebookbar_groupedbar_compact|calculatet"
msgid "_Calc"
msgstr ""
#. DC7Hv
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:6993
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:11603
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:6986
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:11596
msgctxt "notebookbar_groupedbar_compact|editdrawb"
msgid "D_raw"
msgstr ""
#. ncAKi
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:7431
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:9348
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:10471
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:11149
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:12041
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:7424
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:9341
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:10464
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:11142
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:12034
msgctxt "notebookbar_groupedbar_compact|ArrangeButton"
msgid "_Arrange"
msgstr ""
#. 8pLR3
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:7899
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:7892
msgctxt "notebookbar_groupedbar_compact|draw"
msgid "_Shape"
msgstr ""
#. NM63T
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8174
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:12459
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8167
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:12452
msgctxt "notebookbar_groupedbar_compact|viewDrawb"
msgid "Grou_p"
msgstr "Агәыԥ"
#. cbMTW
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8419
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8412
msgctxt "notebookbar_groupedbar_compact|3Db"
msgid "3_D"
msgstr ""
#. BTzDn
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8653
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8646
msgctxt "notebookbar_groupedbar_compact|GridButton"
msgid "_Fontwork"
msgstr ""
#. PLqyG
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8767
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8760
msgctxt "notebookbar_groupedbar_compact|GridButton"
msgid "_Grid"
msgstr ""
#. XL8kc
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8907
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8900
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "_Image"
msgstr ""
#. snvvw
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:9744
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:9737
msgctxt "notebookbar_groupedbar_compact|GridB"
msgid "Fi_lter"
msgstr ""
#. 5a4zV
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:10033
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:10026
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "_Object"
msgstr ""
#. Ghwp6
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:10914
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:10907
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "_Media"
msgstr ""
#. w6MPS
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:12597
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:12590
msgctxt "notebookbar_groupedbar_compact|oleB"
msgid "_Master"
msgstr ""
#. MGQxe
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:13687
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:13680
msgctxt "impress_notebookbar_groupedbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. xBYsC
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:14449
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:14442
msgctxt "notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr ""
diff --git a/source/ab/sfx2/messages.po b/source/ab/sfx2/messages.po
index e5a87c086aa..5a7336039a9 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: 2021-04-12 12:06+0200\n"
+"POT-Creation-Date: 2021-04-27 17:03+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"
@@ -314,38 +314,44 @@ msgid ""
"$1"
msgstr ""
-#. JiTrQ
+#. buPTz
#: include/sfx2/strings.hrc:73
+msgctxt "STR_TOOLTIP_ERROR_RENAME_TEMPLATE"
+msgid "There is another template with the name $1 in $2."
+msgstr ""
+
+#. JiTrQ
+#: include/sfx2/strings.hrc:74
msgctxt "STR_QMSG_SEL_FOLDER_DELETE"
msgid "Do you want to delete the selected category?"
msgstr ""
#. C9pLF
-#: include/sfx2/strings.hrc:74
+#: include/sfx2/strings.hrc:75
msgctxt "STR_QMSG_TEMPLATE_OVERWRITE"
msgid "A template named $1 already exists in $2. Do you want to overwrite it?"
msgstr ""
#. 6MoGu
-#: include/sfx2/strings.hrc:75
+#: include/sfx2/strings.hrc:76
msgctxt "STR_QMSG_SEL_TEMPLATE_DELETE"
msgid "Do you want to delete the selected templates?"
msgstr "Ианыхтәума иалху ашаблонқәа?"
#. WR2LD
-#: include/sfx2/strings.hrc:76
+#: include/sfx2/strings.hrc:77
msgctxt "STR_QMSG_ERROR_OPENING_FILE"
msgid "An error occurred during opening the file. This may be caused by incorrect file contents.\n"
msgstr ""
#. AsUee
-#: include/sfx2/strings.hrc:77
+#: include/sfx2/strings.hrc:78
msgctxt "STR_QMSG_ERROR_OPENING_FILE_DETAILS"
msgid "The error details are:\n"
msgstr ""
#. D2XDV
-#: include/sfx2/strings.hrc:78
+#: include/sfx2/strings.hrc:79
msgctxt "STR_QMSG_ERROR_OPENING_FILE_CONTINUE"
msgid ""
"\n"
@@ -355,139 +361,139 @@ msgid ""
msgstr ""
#. g63UH
-#: include/sfx2/strings.hrc:80
+#: include/sfx2/strings.hrc:81
msgctxt "STR_HELP_WINDOW_TITLE"
msgid "%PRODUCTNAME Help"
msgstr "%PRODUCTNAME Аилыркаага"
#. Veb3m
-#: include/sfx2/strings.hrc:81
+#: include/sfx2/strings.hrc:82
msgctxt "STR_HELP_BUTTON_INDEX_ON"
msgid "Show Navigation Pane"
msgstr ""
#. 3LGpr
-#: include/sfx2/strings.hrc:82
+#: include/sfx2/strings.hrc:83
msgctxt "STR_HELP_BUTTON_INDEX_OFF"
msgid "Hide Navigation Pane"
msgstr ""
#. g8Vns
-#: include/sfx2/strings.hrc:83
+#: include/sfx2/strings.hrc:84
msgctxt "STR_HELP_BUTTON_START"
msgid "First Page"
msgstr "Актәи адаҟьа"
#. YMoQp
-#: include/sfx2/strings.hrc:84
+#: include/sfx2/strings.hrc:85
msgctxt "STR_HELP_BUTTON_PREV"
msgid "Previous Page"
msgstr "Аҧхьатәи адаҟьа"
#. mGB7r
-#: include/sfx2/strings.hrc:85
+#: include/sfx2/strings.hrc:86
msgctxt "STR_HELP_BUTTON_NEXT"
msgid "Next Page"
msgstr "Анаҩстәи адаҟьа"
#. dys7x
-#: include/sfx2/strings.hrc:86
+#: include/sfx2/strings.hrc:87
msgctxt "STR_HELP_BUTTON_PRINT"
msgid "Print..."
msgstr "Акьыҧхьра..."
#. bmCzY
-#: include/sfx2/strings.hrc:87
+#: include/sfx2/strings.hrc:88
msgctxt "STR_HELP_BUTTON_ADDBOOKMARK"
msgid "Add to Bookmarks..."
msgstr ""
#. SGFus
-#: include/sfx2/strings.hrc:88
+#: include/sfx2/strings.hrc:89
msgctxt "STR_HELP_BUTTON_SEARCHDIALOG"
msgid "Find on this Page..."
msgstr "Иҧшаатәуп абри адаҟьаҟны..."
#. qvTDZ
-#: include/sfx2/strings.hrc:89
+#: include/sfx2/strings.hrc:90
msgctxt "STR_HELP_BUTTON_SOURCEVIEW"
msgid "HTML Source"
msgstr ""
#. pHyBm
-#: include/sfx2/strings.hrc:90
+#: include/sfx2/strings.hrc:91
msgctxt "STR_HELP_MENU_TEXT_SELECTION_MODE"
msgid "Select Text"
msgstr "Иалкаатәуп атеқст"
#. 5FCCv
-#: include/sfx2/strings.hrc:91
+#: include/sfx2/strings.hrc:92
msgctxt "STR_HELP_MENU_TEXT_COPY"
msgid "~Copy"
msgstr "Акопиа ахыхтәуп"
#. TQd3C
-#: include/sfx2/strings.hrc:92
+#: include/sfx2/strings.hrc:93
msgctxt "STR_INFO_NOSEARCHRESULTS"
msgid "No topics found."
msgstr ""
#. 9D6Ze
-#: include/sfx2/strings.hrc:93
+#: include/sfx2/strings.hrc:94
msgctxt "STR_INFO_NOSEARCHTEXTFOUND"
msgid "The text you entered was not found."
msgstr "Иҭагалоу атеқст ԥшаам."
#. qLPDs
-#: include/sfx2/strings.hrc:94
+#: include/sfx2/strings.hrc:95
msgctxt "RID_HELP_ONSTARTUP_TEXT"
msgid "~Display %PRODUCTNAME %MODULENAME Help at Startup"
msgstr ""
#. TEgzB
-#: include/sfx2/strings.hrc:96
+#: include/sfx2/strings.hrc:97
msgctxt "STR_NONAME"
msgid "Untitled"
msgstr "Хьӡыда"
#. fs5SN
-#: include/sfx2/strings.hrc:97
+#: include/sfx2/strings.hrc:98
msgctxt "STR_STANDARD_SHORTCUT"
msgid "Standard"
msgstr "Истандарту"
#. 6sRBN
-#: include/sfx2/strings.hrc:98
+#: include/sfx2/strings.hrc:99
msgctxt "STR_BYTES"
msgid "Bytes"
msgstr ""
#. 6iirE
-#: include/sfx2/strings.hrc:99
+#: include/sfx2/strings.hrc:100
msgctxt "STR_KB"
msgid "KB"
msgstr ""
#. VrFxn
-#: include/sfx2/strings.hrc:100
+#: include/sfx2/strings.hrc:101
msgctxt "STR_MB"
msgid "MB"
msgstr ""
#. 9rBAW
-#: include/sfx2/strings.hrc:101
+#: include/sfx2/strings.hrc:102
msgctxt "STR_GB"
msgid "GB"
msgstr ""
#. DqwaN
-#: include/sfx2/strings.hrc:102
+#: include/sfx2/strings.hrc:103
msgctxt "STR_QUERY_LASTVERSION"
msgid "Cancel all changes?"
msgstr ""
#. cCrDG
-#: include/sfx2/strings.hrc:103
+#: include/sfx2/strings.hrc:104
msgctxt "STR_NO_WEBBROWSER_FOUND"
msgid ""
"Opening \"$(ARG1)\" failed with error code $(ARG2) and message: \"$(ARG3)\"\n"
@@ -495,244 +501,244 @@ msgid ""
msgstr ""
#. ADqLM
-#: include/sfx2/strings.hrc:104
+#: include/sfx2/strings.hrc:105
msgctxt "STR_NO_ABS_URI_REF"
msgid "\"$(ARG1)\" cannot be passed to an external application to open it (e.g., it might not be an absolute URL, or might denote no existing file)."
msgstr ""
#. XDUCY
-#: include/sfx2/strings.hrc:105
+#: include/sfx2/strings.hrc:106
#, fuzzy
msgctxt "STR_GID_INTERN"
msgid "Internal"
msgstr "Аинтервал"
#. 4g9hU
-#: include/sfx2/strings.hrc:106
+#: include/sfx2/strings.hrc:107
msgctxt "STR_GID_APPLICATION"
msgid "Application"
msgstr ""
#. rBzxu
-#: include/sfx2/strings.hrc:107
+#: include/sfx2/strings.hrc:108
msgctxt "STR_GID_VIEW"
msgid "View"
msgstr "Ахәаҧшра"
#. NQnym
-#: include/sfx2/strings.hrc:108
+#: include/sfx2/strings.hrc:109
msgctxt "STR_GID_DOCUMENT"
msgid "Documents"
msgstr "Адокументқәа"
#. DbzDd
-#: include/sfx2/strings.hrc:109
+#: include/sfx2/strings.hrc:110
msgctxt "STR_GID_EDIT"
msgid "Edit"
msgstr "Иҧсахтәуп"
#. HqK5g
-#: include/sfx2/strings.hrc:110
+#: include/sfx2/strings.hrc:111
msgctxt "STR_GID_MACRO"
msgid "BASIC"
msgstr "BASIC"
#. 3QkTL
-#: include/sfx2/strings.hrc:111
+#: include/sfx2/strings.hrc:112
msgctxt "STR_GID_OPTIONS"
msgid "Options"
msgstr "Апараметрқәа"
#. GFEQ3
-#: include/sfx2/strings.hrc:112
+#: include/sfx2/strings.hrc:113
msgctxt "STR_GID_MATH"
msgid "Math"
msgstr ""
#. rFALW
-#: include/sfx2/strings.hrc:113
+#: include/sfx2/strings.hrc:114
msgctxt "STR_GID_NAVIGATOR"
msgid "Navigate"
msgstr ""
#. w7dmG
-#: include/sfx2/strings.hrc:114
+#: include/sfx2/strings.hrc:115
msgctxt "STR_GID_INSERT"
msgid "Insert"
msgstr "Ибжьаргылатәуп"
#. fokQp
-#: include/sfx2/strings.hrc:115
+#: include/sfx2/strings.hrc:116
msgctxt "STR_GID_FORMAT"
msgid "Format"
msgstr "Аформат"
#. fLTV6
-#: include/sfx2/strings.hrc:116
+#: include/sfx2/strings.hrc:117
msgctxt "STR_GID_TEMPLATE"
msgid "Templates"
msgstr "Ашаблонқәа"
#. JAdCZ
-#: include/sfx2/strings.hrc:117
+#: include/sfx2/strings.hrc:118
msgctxt "STR_GID_TEXT"
msgid "Text"
msgstr "Атеқст"
#. PSfaP
-#: include/sfx2/strings.hrc:118
+#: include/sfx2/strings.hrc:119
msgctxt "STR_GID_FRAME"
msgid "Frame"
msgstr "Афреим"
#. 5V4iR
-#: include/sfx2/strings.hrc:119
+#: include/sfx2/strings.hrc:120
msgctxt "STR_GID_GRAPHIC"
msgid "Image"
msgstr "Асахьа"
#. DzBoB
-#: include/sfx2/strings.hrc:120
+#: include/sfx2/strings.hrc:121
msgctxt "STR_GID_TABLE"
msgid "Table"
msgstr "Атаблица"
#. Cmsi4
-#: include/sfx2/strings.hrc:121
+#: include/sfx2/strings.hrc:122
msgctxt "STR_GID_ENUMERATION"
msgid "Numbering"
msgstr "Аномерркра"
#. CDFSE
-#: include/sfx2/strings.hrc:122
+#: include/sfx2/strings.hrc:123
msgctxt "STR_GID_DATA"
msgid "Data"
msgstr "Адырқәа"
#. CV9Pq
-#: include/sfx2/strings.hrc:123
+#: include/sfx2/strings.hrc:124
msgctxt "STR_GID_SPECIAL"
msgid "Special Functions"
msgstr ""
#. 5CfQs
-#: include/sfx2/strings.hrc:124
+#: include/sfx2/strings.hrc:125
msgctxt "STR_GID_IMAGE"
msgid "Image"
msgstr "Асахьа"
#. 5wvK9
-#: include/sfx2/strings.hrc:125
+#: include/sfx2/strings.hrc:126
msgctxt "STR_GID_CHART"
msgid "Chart"
msgstr "Адиаграмма"
#. pNE8F
-#: include/sfx2/strings.hrc:126
+#: include/sfx2/strings.hrc:127
msgctxt "STR_GID_EXPLORER"
msgid "Explorer"
msgstr ""
#. yBawD
-#: include/sfx2/strings.hrc:127
+#: include/sfx2/strings.hrc:128
msgctxt "STR_GID_CONNECTOR"
msgid "Connector"
msgstr "Аиԥшьыгақәа"
#. 3rGea
-#: include/sfx2/strings.hrc:128
+#: include/sfx2/strings.hrc:129
msgctxt "STR_GID_MODIFY"
msgid "Modify"
msgstr "Иҧсахтәуп"
#. WcwGs
-#: include/sfx2/strings.hrc:129
+#: include/sfx2/strings.hrc:130
msgctxt "STR_GID_DRAWING"
msgid "Drawing"
msgstr "Асахьаҭыхра"
#. Ajo4w
-#: include/sfx2/strings.hrc:130
+#: include/sfx2/strings.hrc:131
msgctxt "STR_GID_CONTROLS"
msgid "Controls"
msgstr ""
#. L5coQ
-#: include/sfx2/strings.hrc:131
+#: include/sfx2/strings.hrc:132
msgctxt "STR_QUITAPP"
msgid "E~xit %PRODUCTNAME"
msgstr ""
#. k2PBJ
-#: include/sfx2/strings.hrc:132
+#: include/sfx2/strings.hrc:133
msgctxt "RID_STR_HELP"
msgid "Help"
msgstr "Аилыркаага"
#. roDzu
-#: include/sfx2/strings.hrc:133
+#: include/sfx2/strings.hrc:134
msgctxt "RID_STR_HLPFILENOTEXIST"
msgid "The help file for this topic is not installed."
msgstr ""
#. zjPS7
-#: include/sfx2/strings.hrc:134
+#: include/sfx2/strings.hrc:135
msgctxt "STR_QUICKSTART_EXIT"
msgid "Exit Quickstarter"
msgstr ""
#. ecxqC
-#: include/sfx2/strings.hrc:135
+#: include/sfx2/strings.hrc:136
#, fuzzy
msgctxt "STR_QUICKSTART_TIP"
msgid "%PRODUCTNAME %PRODUCTVERSION Quickstarter"
msgstr "%PRODUCTNAME %PRODUCTVERSION адиаграмма"
#. G9Gqk
-#: include/sfx2/strings.hrc:136
+#: include/sfx2/strings.hrc:137
msgctxt "STR_QUICKSTART_FILEOPEN"
msgid "Open Document..."
msgstr "Иаарттәуп адокумент..."
#. wecTF
-#: include/sfx2/strings.hrc:137
+#: include/sfx2/strings.hrc:138
#, fuzzy
msgctxt "STR_QUICKSTART_FROMTEMPLATE"
msgid "From Template..."
msgstr "Ашаблон аҟынтәи..."
#. FzJCj
-#: include/sfx2/strings.hrc:138
+#: include/sfx2/strings.hrc:139
msgctxt "STR_QUICKSTART_PRELAUNCH"
msgid "Load %PRODUCTNAME During System Start-Up"
msgstr ""
#. hMejq
-#: include/sfx2/strings.hrc:139
+#: include/sfx2/strings.hrc:140
msgctxt "STR_QUICKSTART_LNKNAME"
msgid "%PRODUCTNAME %PRODUCTVERSION"
msgstr "%PRODUCTNAME %PRODUCTVERSION"
#. CBB6Z
-#: include/sfx2/strings.hrc:140
+#: include/sfx2/strings.hrc:141
msgctxt "STR_QUICKSTART_FILE"
msgid "File"
msgstr "Афаил"
#. c6wAB
-#: include/sfx2/strings.hrc:141
+#: include/sfx2/strings.hrc:142
msgctxt "STR_QUICKSTART_STARTCENTER"
msgid "Startcenter"
msgstr ""
#. Uhn54
-#: include/sfx2/strings.hrc:142
+#: include/sfx2/strings.hrc:143
msgctxt "STR_QUICKSTART_RECENTDOC"
msgid "Recent Documents"
msgstr "Ааигәатәи адокументқәа"
#. DirQf
-#: include/sfx2/strings.hrc:143
+#: include/sfx2/strings.hrc:144
msgctxt "STR_QUERY_UPDATE_LINKS"
msgid ""
"The document %{filename} contains one or more links to external data.\n"
@@ -742,13 +748,13 @@ msgid ""
msgstr ""
#. zJGEM
-#: include/sfx2/strings.hrc:144
+#: include/sfx2/strings.hrc:145
msgctxt "STR_DDE_ERROR"
msgid "DDE link to %1 for %2 area %3 are not available."
msgstr ""
#. zECGD
-#: include/sfx2/strings.hrc:145
+#: include/sfx2/strings.hrc:146
msgctxt "STR_SECURITY_WARNING_NO_HYPERLINKS"
msgid ""
"For security reasons, the hyperlink cannot be executed.\n"
@@ -756,13 +762,13 @@ msgid ""
msgstr ""
#. vcMzA
-#: include/sfx2/strings.hrc:146
+#: include/sfx2/strings.hrc:147
msgctxt "RID_SECURITY_WARNING_TITLE"
msgid "Security Warning"
msgstr ""
#. vVCon
-#: include/sfx2/strings.hrc:147
+#: include/sfx2/strings.hrc:148
msgctxt "RID_SVXSTR_XMLSEC_QUERY_LOSINGSIGNATURE"
msgid ""
"Saving will remove all existing signatures.\n"
@@ -770,7 +776,7 @@ msgid ""
msgstr ""
#. cGnF9
-#: include/sfx2/strings.hrc:148
+#: include/sfx2/strings.hrc:149
msgctxt "RID_SVXSTR_XMLSEC_QUERY_SAVEBEFORESIGN"
msgid ""
"The document has to be saved before it can be signed.\n"
@@ -778,7 +784,7 @@ msgid ""
msgstr ""
#. zNVEd
-#: include/sfx2/strings.hrc:149
+#: include/sfx2/strings.hrc:150
msgctxt "STR_QUERY_CANCELCHECKOUT"
msgid ""
"This will discard all changes on the server since check-out.\n"
@@ -786,74 +792,74 @@ msgid ""
msgstr ""
#. jufLD
-#: include/sfx2/strings.hrc:150
+#: include/sfx2/strings.hrc:151
msgctxt "STR_INFO_WRONGDOCFORMAT"
msgid "This document must be saved in OpenDocument file format before it can be digitally signed."
msgstr ""
#. ori9u
-#: include/sfx2/strings.hrc:151
+#: include/sfx2/strings.hrc:152
msgctxt "RID_XMLSEC_DOCUMENTSIGNED"
msgid " (Signed)"
msgstr "(Анапаҵаҩуп)"
#. kgWZS
-#: include/sfx2/strings.hrc:152
+#: include/sfx2/strings.hrc:153
msgctxt "STR_EMBEDDED_TITLE"
msgid " (Embedded document)"
msgstr ""
#. 3nT9T
-#: include/sfx2/strings.hrc:153
+#: include/sfx2/strings.hrc:154
msgctxt "STR_STANDARD"
msgid "Standard"
msgstr "Истандарту"
#. FjCuJ
-#: include/sfx2/strings.hrc:154
+#: include/sfx2/strings.hrc:155
msgctxt "RID_SVXSTR_FILELINK"
msgid "Document"
msgstr "Адокумент"
#. BfMd3
-#: include/sfx2/strings.hrc:155
+#: include/sfx2/strings.hrc:156
msgctxt "STR_NONE"
msgid "- None -"
msgstr "- Мап -"
#. XBXvE
-#: include/sfx2/strings.hrc:156
+#: include/sfx2/strings.hrc:157
msgctxt "saveastemplatedlg|categorylist"
msgid "None"
msgstr "Мап"
#. 5kUsi
-#: include/sfx2/strings.hrc:157
+#: include/sfx2/strings.hrc:158
msgctxt "RID_SVXSTR_GRAPHICLINK"
msgid "Image"
msgstr ""
#. dUK2G
-#: include/sfx2/strings.hrc:158
+#: include/sfx2/strings.hrc:159
msgctxt "STR_SFX_FILTERNAME_ALL"
msgid "All files"
msgstr "Афаилқәа зегьы"
#. E39E2
-#: include/sfx2/strings.hrc:159
+#: include/sfx2/strings.hrc:160
msgctxt "STR_SFX_FILTERNAME_PDF"
msgid "PDF files"
msgstr "PDF афаилқәа"
#. gCHbP
-#: include/sfx2/strings.hrc:160
+#: include/sfx2/strings.hrc:161
msgctxt "RID_SVXSTR_EDITGRFLINK"
msgid "Link Image"
msgstr "Асахьахь азхьарҧш"
#. u9H7a
#. i66948 used in project scripting
-#: include/sfx2/strings.hrc:162
+#: include/sfx2/strings.hrc:163
msgctxt "STR_ERRUNOEVENTBINDUNG"
msgid ""
"An appropriate component method %1\n"
@@ -863,43 +869,43 @@ msgid ""
msgstr ""
#. 2FLYB
-#: include/sfx2/strings.hrc:163
+#: include/sfx2/strings.hrc:164
msgctxt "RID_SVXSTR_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "Асахьа аартра ауам"
#. 6eLsb
-#: include/sfx2/strings.hrc:164
+#: include/sfx2/strings.hrc:165
msgctxt "RID_SVXSTR_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr "Асахьа аҧхьара ауам"
#. HGRsV
-#: include/sfx2/strings.hrc:165
+#: include/sfx2/strings.hrc:166
msgctxt "RID_SVXSTR_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr ""
#. YJhGK
-#: include/sfx2/strings.hrc:166
+#: include/sfx2/strings.hrc:167
msgctxt "RID_SVXSTR_GRFILTER_VERSIONERROR"
msgid "This version of the image file is not supported"
msgstr ""
#. Sn8KQ
-#: include/sfx2/strings.hrc:167
+#: include/sfx2/strings.hrc:168
msgctxt "RID_SVXSTR_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr ""
#. huEFV
-#: include/sfx2/strings.hrc:168
+#: include/sfx2/strings.hrc:169
msgctxt "RID_SVXSTR_TXTFILTER_FILTERERROR"
msgid "This is not a text document"
msgstr ""
#. ejBgZ
-#: include/sfx2/strings.hrc:169
+#: include/sfx2/strings.hrc:170
msgctxt "RID_SVXSTR_END_REDLINING_WARNING"
msgid ""
"This action will exit the change recording mode.\n"
@@ -910,43 +916,43 @@ msgid ""
msgstr ""
#. E2CcY
-#: include/sfx2/strings.hrc:170
+#: include/sfx2/strings.hrc:171
msgctxt "RID_SVXSTR_INCORRECT_PASSWORD"
msgid "Incorrect password"
msgstr "Ииашам ажәамаӡа"
#. 7Ezso
-#: include/sfx2/strings.hrc:171
+#: include/sfx2/strings.hrc:172
msgctxt "RID_SVXSTR_GPG_ENCRYPT_FAILURE"
msgid "OpenPGP key not trusted, damaged, or encryption failure. Please try again."
msgstr ""
#. DQCUm
-#: include/sfx2/strings.hrc:173
+#: include/sfx2/strings.hrc:174
msgctxt "STR_PASSWD_MIN_LEN"
msgid "(Minimum $(MINLEN) characters)"
msgstr "(Асимволқәа рминимум: $(MINLEN))"
#. ZKZnh
-#: include/sfx2/strings.hrc:174
+#: include/sfx2/strings.hrc:175
msgctxt "STR_PASSWD_MIN_LEN1"
msgid "(Minimum 1 character)"
msgstr "(Минимум 1 символк)"
#. B3WoF
-#: include/sfx2/strings.hrc:175
+#: include/sfx2/strings.hrc:176
msgctxt "STR_PASSWD_EMPTY"
msgid "(The password can be empty)"
msgstr ""
#. iBD9D
-#: include/sfx2/strings.hrc:176
+#: include/sfx2/strings.hrc:177
msgctxt "STR_MODULENOTINSTALLED"
msgid "The action could not be executed. The %PRODUCTNAME program module needed for this action is currently not installed."
msgstr ""
#. TXAV5
-#: include/sfx2/strings.hrc:178
+#: include/sfx2/strings.hrc:179
msgctxt "STR_FILTER_NOT_INSTALLED"
msgid ""
"The selected filter $(FILTER) has not been installed.\n"
@@ -954,7 +960,7 @@ msgid ""
msgstr ""
#. gQhYY
-#: include/sfx2/strings.hrc:179
+#: include/sfx2/strings.hrc:180
msgctxt "STR_FILTER_CONSULT_SERVICE"
msgid ""
"The selected filter $(FILTER) is not included in your edition.\n"
@@ -962,216 +968,216 @@ msgid ""
msgstr ""
#. Y9yeS
-#: include/sfx2/strings.hrc:181
+#: include/sfx2/strings.hrc:182
msgctxt "STR_WELCOME_LINE1"
msgid "Welcome to %PRODUCTNAME."
msgstr ""
#. hyKnu
-#: include/sfx2/strings.hrc:182
+#: include/sfx2/strings.hrc:183
msgctxt "STR_WELCOME_LINE2"
msgid "Drop a document here or pick an app from the left side to create one."
msgstr ""
#. oTVdA
#. Translators: Target types in Auto-redaction dialog
-#: include/sfx2/strings.hrc:185
+#: include/sfx2/strings.hrc:186
msgctxt "STR_REDACTION_TARGET_TYPE_TEXT"
msgid "Text"
msgstr ""
#. eG5qc
-#: include/sfx2/strings.hrc:186
+#: include/sfx2/strings.hrc:187
msgctxt "STR_REDACTION_TARGET_TYPE_REGEX"
msgid "Regular expression"
msgstr ""
#. TaDCG
-#: include/sfx2/strings.hrc:187
+#: include/sfx2/strings.hrc:188
msgctxt "STR_REDACTION_TARGET_TYPE_PREDEF"
msgid "Predefined"
msgstr ""
#. bDjwW
-#: include/sfx2/strings.hrc:188
+#: include/sfx2/strings.hrc:189
msgctxt "STR_REDACTION_TARGET_TYPE_UNKNOWN"
msgid "Unknown"
msgstr ""
#. Ao6kC
#. Translators: Column headers in Auto-redaction dialog's targets list
-#: include/sfx2/strings.hrc:191
+#: include/sfx2/strings.hrc:192
msgctxt "STR_REDACTION_TARGET_NAME"
msgid "Target Name"
msgstr ""
#. mGjsx
-#: include/sfx2/strings.hrc:192
+#: include/sfx2/strings.hrc:193
msgctxt "STR_REDACTION_TYPE"
msgid "Type"
msgstr ""
#. gFKC4
-#: include/sfx2/strings.hrc:193
+#: include/sfx2/strings.hrc:194
msgctxt "STR_REDACTION_CONTENT"
msgid "Content"
msgstr ""
#. oSNPd
-#: include/sfx2/strings.hrc:194
+#: include/sfx2/strings.hrc:195
msgctxt "STR_REDACTION_CASE_SENSITIVE"
msgid "Case Sensitive"
msgstr ""
#. FLcSM
-#: include/sfx2/strings.hrc:195
+#: include/sfx2/strings.hrc:196
msgctxt "STR_REDACTION_WHOLE_WORDS"
msgid "Whole Words"
msgstr ""
#. YgzCk
#. Translators: Values for the Case Sensitive and the Whole Words columns in Auto-redaction dialog
-#: include/sfx2/strings.hrc:198
+#: include/sfx2/strings.hrc:199
msgctxt "STR_REDACTION_YES"
msgid "Yes"
msgstr ""
#. oZNaM
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:200
msgctxt "STR_REDACTION_NO"
msgid "No"
msgstr ""
#. FM3Gf
#. Translators: Misc strings of the Auto Redaction dialog
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:203
msgctxt "STR_REDACTION_TARGET"
msgid "Target"
msgstr ""
#. m2i7V
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:204
msgctxt "STR_REDACTION_LOAD_TARGETS"
msgid "Load Targets"
msgstr ""
#. HgrwX
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:205
msgctxt "STR_REDACTION_SAVE_TARGETS"
msgid "Save Targets"
msgstr ""
#. MYMTF
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:206
msgctxt "STR_REDACTION_FIELDS_REQUIRED"
msgid "All fields are required"
msgstr ""
#. rQS6M
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:207
msgctxt "STR_REDACTION_TARGET_NAME_CLASH"
msgid "There is already a target with this name"
msgstr ""
#. s248s
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:208
msgctxt "STR_REDACTION_MULTI_EDIT"
msgid "You have selected multiple targets, but only one target can be edited at once."
msgstr ""
#. BTayC
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:209
msgctxt "STR_REDACTION_MULTI_DELETE"
msgid "Are you sure you would like to delete $(TARGETSCOUNT) targets at once?"
msgstr ""
#. qFqDC
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:210
msgctxt "STR_REDACTION_JSON_FILE_FILTER"
msgid "Target Set (*.json)"
msgstr ""
#. EGCo6
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:211
msgctxt "STR_REDACTION_EDIT_TARGET"
msgid "Edit Target"
msgstr ""
#. ACY9D
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:212
msgctxt "STR_REDACTION_TARGET_ADD_ERROR"
msgid "An error occurred while adding new target. Please report this incident."
msgstr ""
#. znVBU
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:213
msgctxt "STR_REDACTION_NO_DRAW_WARNING"
msgid "Draw module is needed for redaction. Please make sure you have LibreOffice Draw installed and working correctly."
msgstr ""
#. FQ9kN
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:215
msgctxt "STR_SFX_FILEDLG_ACTUALVERSION"
msgid "Current version"
msgstr ""
#. GFAEM
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:216
msgctxt "STR_SFX_EXPLORERFILE_EXPORT"
msgid "Export"
msgstr "Аекспорт"
#. 2DBBC
-#: include/sfx2/strings.hrc:216
+#: include/sfx2/strings.hrc:217
msgctxt "STR_SFX_EXPLORERFILE_INSERT"
msgid "Insert"
msgstr "Ибжьаргылатәуп"
#. VBKtt
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:218
#, fuzzy
msgctxt "STR_SFX_EXPLORERFILE_BUTTONINSERT"
msgid "~Insert"
msgstr "Ибжьаргылатәуп"
#. DcLFD
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:219
msgctxt "STR_SFX_IMPORT_ALL_IMAGES"
msgid "<All images>"
msgstr ""
#. tPDwc
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:220
msgctxt "STR_PB_SAVEACOPY"
msgid "Save a Copy"
msgstr "Еиқәырхатәуп акопиа..."
#. T9mMd
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:221
msgctxt "STR_PB_COMPAREDOC"
msgid "Compare to"
msgstr ""
#. 4qMCh
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:222
msgctxt "STR_PB_MERGEDOC"
msgid "Merge with"
msgstr ""
#. cDMBG
-#: include/sfx2/strings.hrc:223
+#: include/sfx2/strings.hrc:224
msgctxt "STR_SFX_NEWOFFICEDOC"
msgid "%PRODUCTNAME document"
msgstr "%PRODUCTNAME адокумент"
#. 43QYo
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:225
msgctxt "SFX_ST_DURATION_FORMAT"
msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr ""
#. jQX7C
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:226
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -1179,31 +1185,31 @@ msgid ""
msgstr ""
#. cinmA
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:228
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Ари астиль ыҟоуп. Ихҩылаатәума?"
#. f627N
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:230
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~Еиҭашьақәыргылатәуп"
#. EXGDb
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:231
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr ""
#. N5aeR
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:232
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr ""
#. CYQwN
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:233
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -1211,7 +1217,7 @@ msgid ""
msgstr ""
#. ECPSd
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:234
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -1219,7 +1225,7 @@ msgid ""
msgstr ""
#. NWDmA
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:235
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -1228,73 +1234,73 @@ msgid ""
msgstr ""
#. kuD77
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:236
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Ахархәара змоу астильқәа:"
#. 4JhEW
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:237
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Анавигатор"
#. Acahp
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr ""
#. 6uv4b
-#: include/sfx2/strings.hrc:238
+#: include/sfx2/strings.hrc:239
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Идәықәҵатәуп"
#. 9HHQw
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:240
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Ашрифт"
#. 7baC6
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:242
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr ""
#. LGiF8
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:243
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
#. rZ4Ao
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:245
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr ""
#. 4VXDe
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:247
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr ""
#. 9MnrK
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:248
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Иаҟәыхтәуп аҭаҩра"
#. m9FCm
-#: include/sfx2/strings.hrc:249
+#: include/sfx2/strings.hrc:250
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr ""
#. F3ym2
-#: include/sfx2/strings.hrc:251
+#: include/sfx2/strings.hrc:252
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1302,7 +1308,7 @@ msgid ""
msgstr ""
#. a3NTu
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1310,19 +1316,19 @@ msgid ""
msgstr ""
#. acKHX
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Апринтер ҭацәым"
#. hDEUj
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (аҧхьара мацараз)"
#. uL87C
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1331,7 +1337,7 @@ msgid ""
msgstr ""
#. cxuAH
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1340,7 +1346,7 @@ msgid ""
msgstr ""
#. 4QJxB
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1349,7 +1355,7 @@ msgid ""
msgstr ""
#. RXbfs
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1357,7 +1363,7 @@ msgid ""
msgstr ""
#. YGyQP
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
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"
@@ -1366,7 +1372,7 @@ msgstr ""
#. 3nzi6
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
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"
@@ -1375,19 +1381,19 @@ msgid ""
msgstr ""
#. ZWTDr
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
#. QVS2D
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
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 ""
#. ZdGNX
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_QUERY_OPENASTEMPLATE_LOCKED"
msgid ""
"This document cannot be edited, because it is locked in another session.%LOCKINFO\n"
@@ -1395,472 +1401,472 @@ msgid ""
msgstr ""
#. n3sMB
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid "You can also try to ignore the lock and open the file for editing."
msgstr ""
#. yaKxR
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
#. UYkFP
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
#. GcSXH
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr ""
#. HPqkX
-#: include/sfx2/strings.hrc:269
+#: include/sfx2/strings.hrc:270
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr ""
#. uPc29
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
#. PboiP
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
#. GuLGH
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
#. KzgoD
-#: include/sfx2/strings.hrc:273
+#: include/sfx2/strings.hrc:274
msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
#. G8bbK
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "STR_WHATSNEW"
msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
msgstr ""
#. J5UkB
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "STR_WHATSNEW_BUTTON"
msgid "Release Notes"
msgstr ""
#. c7NPT
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Ари адокумент аартуп аҧхьара мацаразы."
#. KyyFk
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
#. MENvD
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
#. 3B3ij
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
#. BYcYH
-#: include/sfx2/strings.hrc:280
+#: include/sfx2/strings.hrc:281
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
#. EJPzh
-#: include/sfx2/strings.hrc:281
+#: include/sfx2/strings.hrc:282
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
#. itVew
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
#. ZBXbG
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr ""
#. QAnvx
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr ""
#. PwPNw
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Адокумент акьыҧхьра"
#. FCeC5
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Анапаҵаҩтәуп адокумент"
#. MEfTq
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_READONLY_FINISH_SIGN"
msgid "Finish Signing"
msgstr ""
#. pkWmU
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
#. Vd3CU
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
#. 2HNfx
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "At least one signature has problems: the certificate could not be validated."
msgstr ""
#. tjCmr
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "At least one signature has problems: the document is only partially signed."
msgstr ""
#. mU6ot
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
#. FKDbE
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
#. rMGka
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
#. fkzJb
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TRACK_CHANGES_BUTTON"
msgid "Show Toolbar"
msgstr ""
#. 68ZqS
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TRACK_CHANGES_BUTTON_HIDE"
msgid "Hide Toolbar"
msgstr ""
#. Wkvpi
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Иқәгатәуп"
#. JReRY
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:340
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 ""
#. jBQFN
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:344
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:352
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
@@ -3627,25 +3633,25 @@ msgid "No"
msgstr ""
#. muk9B
-#: sfx2/uiconfig/ui/linkeditdialog.ui:13
+#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
msgstr ""
#. CZn3G
-#: sfx2/uiconfig/ui/linkeditdialog.ui:107
+#: sfx2/uiconfig/ui/linkeditdialog.ui:102
msgctxt "linkeditdialog|label2"
msgid "_Application:"
msgstr ""
#. GZsEX
-#: sfx2/uiconfig/ui/linkeditdialog.ui:121
+#: sfx2/uiconfig/ui/linkeditdialog.ui:116
msgctxt "linkeditdialog|label3"
msgid "_File:"
msgstr "Афаил:"
#. 6Fx6h
-#: sfx2/uiconfig/ui/linkeditdialog.ui:135
+#: sfx2/uiconfig/ui/linkeditdialog.ui:130
msgctxt "linkeditdialog|label4"
msgid "_Category:"
msgstr "Акатегориа:"
@@ -3669,7 +3675,7 @@ msgid "Lists the section or object that the link refers to in the source file. I
msgstr ""
#. hiapi
-#: sfx2/uiconfig/ui/linkeditdialog.ui:204
+#: sfx2/uiconfig/ui/linkeditdialog.ui:199
msgctxt "linkeditdialog|label1"
msgid "Modify Link"
msgstr "Иҧсахтәуп азхьарҧш"
diff --git a/source/ab/svtools/messages.po b/source/ab/svtools/messages.po
index ed9e5d1da18..65322ef792e 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: 2021-02-17 15:59+0100\n"
+"POT-Creation-Date: 2021-04-27 17:03+0200\n"
"PO-Revision-Date: 2021-02-07 23:36+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/ab/>\n"
@@ -5046,350 +5046,362 @@ msgctxt "graphicexport|GraphicExportDialog"
msgid "%1 Options"
msgstr "%1 апараметрқәа"
+#. C3C7t
+#: svtools/uiconfig/ui/graphicexport.ui:127
+msgctxt "graphicexport|modifydimensionscb"
+msgid "Modify dimensions"
+msgstr ""
+
#. pyd6J
-#: svtools/uiconfig/ui/graphicexport.ui:129
+#: svtools/uiconfig/ui/graphicexport.ui:146
msgctxt "graphicexport|label5"
msgid "Width:"
msgstr "Аҭбаара:"
#. drQDY
-#: svtools/uiconfig/ui/graphicexport.ui:143
+#: svtools/uiconfig/ui/graphicexport.ui:160
msgctxt "graphicexport|label6"
msgid "Height:"
msgstr "Аҳаракыра:"
+#. exCyd
+#: svtools/uiconfig/ui/graphicexport.ui:171
+msgctxt "graphicexport|modifyresolutioncb"
+msgid "Modify resolution"
+msgstr ""
+
#. ZWxGB
-#: svtools/uiconfig/ui/graphicexport.ui:157
+#: svtools/uiconfig/ui/graphicexport.ui:189
msgctxt "graphicexport|resolutionft"
msgid "Resolution:"
msgstr ""
#. 2rwEJ
-#: svtools/uiconfig/ui/graphicexport.ui:178
+#: svtools/uiconfig/ui/graphicexport.ui:209
msgctxt "graphicexport|extended_tip|widthmf"
msgid "Specifies the measurement units."
msgstr ""
#. BPaB3
-#: svtools/uiconfig/ui/graphicexport.ui:198
+#: svtools/uiconfig/ui/graphicexport.ui:229
msgctxt "graphicexport|extended_tip|heightmf"
msgid "Specifies the height."
msgstr ""
#. Da3fv
-#: svtools/uiconfig/ui/graphicexport.ui:217
+#: svtools/uiconfig/ui/graphicexport.ui:249
msgctxt "graphicexport|extended_tip|resolutionmf"
msgid "Enter the image resolution. Select the measurement units from the list box."
msgstr ""
#. S9aHs
-#: svtools/uiconfig/ui/graphicexport.ui:231
+#: svtools/uiconfig/ui/graphicexport.ui:263
msgctxt "graphicexport|liststore2"
msgid "inches"
msgstr ""
#. dCstP
-#: svtools/uiconfig/ui/graphicexport.ui:232
+#: svtools/uiconfig/ui/graphicexport.ui:264
msgctxt "graphicexport|liststore2"
msgid "cm"
msgstr "см"
#. X5dLV
-#: svtools/uiconfig/ui/graphicexport.ui:233
+#: svtools/uiconfig/ui/graphicexport.ui:265
msgctxt "graphicexport|liststore2"
msgid "mm"
msgstr "мм"
#. 6vWVJ
-#: svtools/uiconfig/ui/graphicexport.ui:234
+#: svtools/uiconfig/ui/graphicexport.ui:266
msgctxt "graphicexport|liststore2"
msgid "points"
msgstr "акәаҧқәа"
#. ZqyAj
-#: svtools/uiconfig/ui/graphicexport.ui:235
+#: svtools/uiconfig/ui/graphicexport.ui:267
msgctxt "graphicexport|liststore2"
msgid "pixels"
msgstr "пикс."
#. QL8mE
-#: svtools/uiconfig/ui/graphicexport.ui:239
+#: svtools/uiconfig/ui/graphicexport.ui:271
msgctxt "graphicexport|extended_tip|widthlb"
msgid "Specifies the width."
msgstr ""
#. kYLvv
-#: svtools/uiconfig/ui/graphicexport.ui:253
+#: svtools/uiconfig/ui/graphicexport.ui:285
msgctxt "graphicexport|liststore1"
msgid "pixels/cm"
msgstr ""
#. zjmFd
-#: svtools/uiconfig/ui/graphicexport.ui:254
+#: svtools/uiconfig/ui/graphicexport.ui:286
msgctxt "graphicexport|liststore1"
msgid "pixels/inch"
msgstr ""
#. iMZW3
-#: svtools/uiconfig/ui/graphicexport.ui:255
+#: svtools/uiconfig/ui/graphicexport.ui:287
msgctxt "graphicexport|liststore1"
msgid "pixels/meter"
msgstr ""
#. ND5ki
-#: svtools/uiconfig/ui/graphicexport.ui:259
+#: svtools/uiconfig/ui/graphicexport.ui:291
msgctxt "graphicexport|extended_tip|resolutionlb"
msgid "Enter the image resolution. Select the measurement units from the list box."
msgstr ""
#. ENaqm
-#: svtools/uiconfig/ui/graphicexport.ui:277
+#: svtools/uiconfig/ui/graphicexport.ui:309
msgctxt "graphicexport|label1"
msgid "Size"
msgstr "Ашәагаа"
#. Dc5fy
-#: svtools/uiconfig/ui/graphicexport.ui:303
+#: svtools/uiconfig/ui/graphicexport.ui:335
msgctxt "graphicexport|extended_tip|colordepthlb"
msgid "Select the color depth from 8 bit grayscale or 24 bit true color."
msgstr ""
#. hFaPC
-#: svtools/uiconfig/ui/graphicexport.ui:312
+#: svtools/uiconfig/ui/graphicexport.ui:344
msgctxt "graphicexport|label2"
msgid "Color Depth"
msgstr ""
#. EFn8k
-#: svtools/uiconfig/ui/graphicexport.ui:348
+#: svtools/uiconfig/ui/graphicexport.ui:380
msgctxt "graphicexport|extended_tip|compressionjpgnf"
msgid "Sets the quality for the export. Choose from a low quality with minimal file size, up to a high quality and big file size"
msgstr ""
#. Tk5y2
-#: svtools/uiconfig/ui/graphicexport.ui:377
+#: svtools/uiconfig/ui/graphicexport.ui:409
msgctxt "graphicexport|label9"
msgid "Quality"
msgstr ""
#. AHkNV
-#: svtools/uiconfig/ui/graphicexport.ui:413
+#: svtools/uiconfig/ui/graphicexport.ui:445
msgctxt "graphicexport|extended_tip|compressionpngnf"
msgid "Sets the compression for the export. A high compression means a smaller, but slower to load image."
msgstr ""
#. f4LYz
-#: svtools/uiconfig/ui/graphicexport.ui:442
+#: svtools/uiconfig/ui/graphicexport.ui:474
msgctxt "graphicexport|label"
msgid "Compression"
msgstr ""
#. hQadL
-#: svtools/uiconfig/ui/graphicexport.ui:462
+#: svtools/uiconfig/ui/graphicexport.ui:494
msgctxt "graphicexport|rlecb"
msgid "RLE encoding"
msgstr ""
#. DqpKW
-#: svtools/uiconfig/ui/graphicexport.ui:473
+#: svtools/uiconfig/ui/graphicexport.ui:505
msgctxt "graphicexport|extended_tip|rlecb"
msgid "Applies RLE (Run Length Encoding) to the BMP graphics."
msgstr ""
#. EA7BF
-#: svtools/uiconfig/ui/graphicexport.ui:482
+#: svtools/uiconfig/ui/graphicexport.ui:514
msgctxt "graphicexport|label3"
msgid "Compression"
msgstr ""
#. qiLZK
-#: svtools/uiconfig/ui/graphicexport.ui:502
+#: svtools/uiconfig/ui/graphicexport.ui:534
msgctxt "graphicexport|interlacedcb"
msgid "Interlaced"
msgstr ""
#. cLvu6
-#: svtools/uiconfig/ui/graphicexport.ui:513
+#: svtools/uiconfig/ui/graphicexport.ui:545
msgctxt "graphicexport|extended_tip|interlacedcb"
msgid "Specifies whether the graphic is to be saved in interlaced mode."
msgstr ""
#. BkbD3
-#: svtools/uiconfig/ui/graphicexport.ui:522
+#: svtools/uiconfig/ui/graphicexport.ui:554
msgctxt "graphicexport|label12"
msgid "Mode"
msgstr "Арежим"
#. Nhj88
-#: svtools/uiconfig/ui/graphicexport.ui:542
+#: svtools/uiconfig/ui/graphicexport.ui:574
msgctxt "graphicexport|savetransparencycb"
msgid "Save transparency"
msgstr ""
#. kZ3uW
-#: svtools/uiconfig/ui/graphicexport.ui:553
+#: svtools/uiconfig/ui/graphicexport.ui:585
msgctxt "graphicexport|extended_tip|savetransparencycb"
msgid "Specifies whether to save the background of the picture as transparent. Only objects will be visible in the GIF image. Use the Color Replacer to set the transparent color in the picture."
msgstr ""
#. ZPmXf
-#: svtools/uiconfig/ui/graphicexport.ui:562
+#: svtools/uiconfig/ui/graphicexport.ui:594
msgctxt "graphicexport|labe"
msgid "Drawing Objects"
msgstr "Асахьақәа"
#. KMCxb
-#: svtools/uiconfig/ui/graphicexport.ui:589
+#: svtools/uiconfig/ui/graphicexport.ui:621
msgctxt "graphicexport|binarycb"
msgid "Binary"
msgstr ""
#. qFTuj
-#: svtools/uiconfig/ui/graphicexport.ui:598
+#: svtools/uiconfig/ui/graphicexport.ui:630
msgctxt "graphicexport|extended_tip|binarycb"
msgid "Exports the file in binary format. The resulting file is smaller than a text file."
msgstr ""
#. 8cZsH
-#: svtools/uiconfig/ui/graphicexport.ui:609
+#: svtools/uiconfig/ui/graphicexport.ui:641
msgctxt "graphicexport|textcb"
msgid "Text"
msgstr "Атеқст"
#. GFbg2
-#: svtools/uiconfig/ui/graphicexport.ui:618
+#: svtools/uiconfig/ui/graphicexport.ui:650
msgctxt "graphicexport|extended_tip|textcb"
msgid "Exports the file in ASCII text format. The resulting file is larger than a binary file."
msgstr ""
#. ECUb9
-#: svtools/uiconfig/ui/graphicexport.ui:633
+#: svtools/uiconfig/ui/graphicexport.ui:665
msgctxt "graphicexport|label16"
msgid "Encoding"
msgstr ""
#. aeV52
-#: svtools/uiconfig/ui/graphicexport.ui:665
+#: svtools/uiconfig/ui/graphicexport.ui:697
msgctxt "graphicexport|tiffpreviewcb"
msgid "Image preview (TIFF)"
msgstr ""
#. H8vtD
-#: svtools/uiconfig/ui/graphicexport.ui:674
+#: svtools/uiconfig/ui/graphicexport.ui:706
msgctxt "graphicexport|extended_tip|tiffpreviewcb"
msgid "Specifies whether a preview image is exported in the TIFF format together with the actual PostScript file."
msgstr ""
#. AeEJu
-#: svtools/uiconfig/ui/graphicexport.ui:685
+#: svtools/uiconfig/ui/graphicexport.ui:717
msgctxt "graphicexport|epsipreviewcb"
msgid "Interchange (EPSI)"
msgstr ""
#. gLbUQ
-#: svtools/uiconfig/ui/graphicexport.ui:693
+#: svtools/uiconfig/ui/graphicexport.ui:725
msgctxt "graphicexport|extended_tip|epsipreviewcb"
msgid "Specifies whether a monochrome preview graphic in EPSI format is exported together with the PostScript file. This format only contains printable characters from the 7-bit ASCII code."
msgstr ""
#. sRbZb
-#: svtools/uiconfig/ui/graphicexport.ui:708
+#: svtools/uiconfig/ui/graphicexport.ui:740
msgctxt "graphicexport|label17"
msgid "Preview"
msgstr "Ахәаҧшра"
#. Jfbgx
-#: svtools/uiconfig/ui/graphicexport.ui:735
+#: svtools/uiconfig/ui/graphicexport.ui:767
msgctxt "graphicexport|color1rb"
msgid "Color"
msgstr "Аҧштәы"
#. LNHEi
-#: svtools/uiconfig/ui/graphicexport.ui:744
+#: svtools/uiconfig/ui/graphicexport.ui:776
msgctxt "graphicexport|extended_tip|color1rb"
msgid "Exports the file in color."
msgstr ""
#. VeZFK
-#: svtools/uiconfig/ui/graphicexport.ui:755
+#: svtools/uiconfig/ui/graphicexport.ui:787
msgctxt "graphicexport|color2rb"
msgid "Grayscale"
msgstr ""
#. TWEx8
-#: svtools/uiconfig/ui/graphicexport.ui:764
+#: svtools/uiconfig/ui/graphicexport.ui:796
msgctxt "graphicexport|extended_tip|color2rb"
msgid "Exports the file in grayscale tones."
msgstr ""
#. BbSGF
-#: svtools/uiconfig/ui/graphicexport.ui:779
+#: svtools/uiconfig/ui/graphicexport.ui:811
msgctxt "graphicexport|label18"
msgid "Color Format"
msgstr "Аҧштәы аформат"
#. b6J7X
-#: svtools/uiconfig/ui/graphicexport.ui:806
+#: svtools/uiconfig/ui/graphicexport.ui:838
msgctxt "graphicexport|level1rb"
msgid "Level 1"
msgstr ""
#. pEcBC
-#: svtools/uiconfig/ui/graphicexport.ui:815
+#: svtools/uiconfig/ui/graphicexport.ui:847
msgctxt "graphicexport|extended_tip|level1rb"
msgid "Compression is not available at this level. Select the Level 1 option if your PostScript printer does not offer the capabilities of Level 2."
msgstr ""
#. kuCNX
-#: svtools/uiconfig/ui/graphicexport.ui:826
+#: svtools/uiconfig/ui/graphicexport.ui:858
msgctxt "graphicexport|level2rb"
msgid "Level 2"
msgstr ""
#. wiWrE
-#: svtools/uiconfig/ui/graphicexport.ui:835
+#: svtools/uiconfig/ui/graphicexport.ui:867
msgctxt "graphicexport|extended_tip|level2rb"
msgid "Select the Level 2 option if your output device supports colored bitmaps, palette graphics and compressed graphics."
msgstr ""
#. JUuBZ
-#: svtools/uiconfig/ui/graphicexport.ui:850
+#: svtools/uiconfig/ui/graphicexport.ui:882
msgctxt "graphicexport|label19"
msgid "Version"
msgstr "Аверсиа"
#. FjkbL
-#: svtools/uiconfig/ui/graphicexport.ui:877
+#: svtools/uiconfig/ui/graphicexport.ui:909
msgctxt "graphicexport|compresslzw"
msgid "LZW encoding"
msgstr ""
#. 5cYFM
-#: svtools/uiconfig/ui/graphicexport.ui:886
+#: svtools/uiconfig/ui/graphicexport.ui:918
msgctxt "graphicexport|extended_tip|compresslzw"
msgid "LZW compression is the compression of a file into a smaller file using a table-based lookup algorithm."
msgstr ""
#. vXGXe
-#: svtools/uiconfig/ui/graphicexport.ui:897
+#: svtools/uiconfig/ui/graphicexport.ui:929
msgctxt "graphicexport|compressnone"
msgid "None"
msgstr "Мап"
#. kW3QD
-#: svtools/uiconfig/ui/graphicexport.ui:906
+#: svtools/uiconfig/ui/graphicexport.ui:938
msgctxt "graphicexport|extended_tip|compressnone"
msgid "Specifies that you do not wish to use compression."
msgstr ""
#. ghAqZ
-#: svtools/uiconfig/ui/graphicexport.ui:921
+#: svtools/uiconfig/ui/graphicexport.ui:953
msgctxt "graphicexport|label20"
msgid "Compression"
msgstr ""
#. LmAeC
-#: svtools/uiconfig/ui/graphicexport.ui:960
+#: svtools/uiconfig/ui/graphicexport.ui:992
msgctxt "graphicexport|label4"
msgid "Information"
msgstr "Аинформациа"
diff --git a/source/ab/svx/messages.po b/source/ab/svx/messages.po
index 3bbaaead5e9..54785323967 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: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-27 17:03+0200\n"
"PO-Revision-Date: 2021-02-04 19:36+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/ab/>\n"
@@ -14247,883 +14247,883 @@ msgid "P_arallel"
msgstr ""
#. nEw4G
-#: svx/uiconfig/ui/docking3deffects.ui:291
+#: svx/uiconfig/ui/docking3deffects.ui:286
msgctxt "docking3deffects|diagonalft"
msgid "R_ounded edges"
msgstr ""
#. MozLP
-#: svx/uiconfig/ui/docking3deffects.ui:305
+#: svx/uiconfig/ui/docking3deffects.ui:300
msgctxt "docking3deffects|scaleddepthft"
msgid "_Scaled depth"
msgstr ""
#. uK3Fv
-#: svx/uiconfig/ui/docking3deffects.ui:319
+#: svx/uiconfig/ui/docking3deffects.ui:314
msgctxt "docking3deffects|angleft"
msgid "_Rotation angle"
msgstr ""
#. 2YAH9
-#: svx/uiconfig/ui/docking3deffects.ui:333
+#: svx/uiconfig/ui/docking3deffects.ui:328
msgctxt "docking3deffects|depthft"
msgid "_Depth"
msgstr ""
#. Mk8WM
-#: svx/uiconfig/ui/docking3deffects.ui:351
+#: svx/uiconfig/ui/docking3deffects.ui:346
msgctxt "docking3deffects|extended_tip|diagonal"
msgid "Enter the amount by which you want to round the corners of the selected 3D object."
msgstr ""
#. W4Agm
-#: svx/uiconfig/ui/docking3deffects.ui:369
+#: svx/uiconfig/ui/docking3deffects.ui:364
msgctxt "docking3deffects|extended_tip|scaleddepth"
msgid "Enter the amount by which to increase or decrease the area of the front side of the selected 3D object."
msgstr ""
#. zHDZb
-#: svx/uiconfig/ui/docking3deffects.ui:388
+#: svx/uiconfig/ui/docking3deffects.ui:383
msgctxt "docking3deffects|extended_tip|angle"
msgid "Enter the angle in degrees to rotate the selected 3D rotation object."
msgstr ""
#. 8x6QY
-#: svx/uiconfig/ui/docking3deffects.ui:407
+#: svx/uiconfig/ui/docking3deffects.ui:402
msgctxt "docking3deffects|extended_tip|depth"
msgid "Enter the extrusion depth for the selected 3D object. This option is not valid for 3D rotation objects."
msgstr ""
#. LKo3e
-#: svx/uiconfig/ui/docking3deffects.ui:422
+#: svx/uiconfig/ui/docking3deffects.ui:417
msgctxt "docking3deffects|label1"
msgid "Geometry"
msgstr ""
#. b7NAE
-#: svx/uiconfig/ui/docking3deffects.ui:453
+#: svx/uiconfig/ui/docking3deffects.ui:448
msgctxt "docking3deffects|label6"
msgid "_Horizontal"
msgstr "Горизонталла"
#. 9HFzC
-#: svx/uiconfig/ui/docking3deffects.ui:467
+#: svx/uiconfig/ui/docking3deffects.ui:462
msgctxt "docking3deffects|label7"
msgid "_Vertical"
msgstr ""
#. eECGL
-#: svx/uiconfig/ui/docking3deffects.ui:486
+#: svx/uiconfig/ui/docking3deffects.ui:481
msgctxt "docking3deffects|extended_tip|veri"
msgid "Enter the number of vertical segments to use in the selected 3D rotation object"
msgstr ""
#. zDoUt
-#: svx/uiconfig/ui/docking3deffects.ui:504
+#: svx/uiconfig/ui/docking3deffects.ui:499
msgctxt "docking3deffects|extended_tip|hori"
msgid "Enter the number of horizontal segments to use in the selected 3D rotation object."
msgstr ""
#. G67Pd
-#: svx/uiconfig/ui/docking3deffects.ui:519
+#: svx/uiconfig/ui/docking3deffects.ui:514
msgctxt "docking3deffects|label10"
msgid "Segments"
msgstr ""
#. uGbYJ
-#: svx/uiconfig/ui/docking3deffects.ui:570
+#: svx/uiconfig/ui/docking3deffects.ui:565
msgctxt "docking3deffects|objspecific|tooltip_text"
msgid "Object-Specific"
msgstr ""
#. 6Eqby
-#: svx/uiconfig/ui/docking3deffects.ui:575
+#: svx/uiconfig/ui/docking3deffects.ui:570
msgctxt "docking3deffects|extended_tip|objspecific"
msgid "Renders the 3D surface according to the shape of the object. For example, a circular shape is rendered with a spherical surface."
msgstr ""
#. Fc9DB
-#: svx/uiconfig/ui/docking3deffects.ui:589
+#: svx/uiconfig/ui/docking3deffects.ui:584
msgctxt "docking3deffects|flat|tooltip_text"
msgid "Flat"
msgstr ""
#. MgFbn
-#: svx/uiconfig/ui/docking3deffects.ui:594
+#: svx/uiconfig/ui/docking3deffects.ui:589
msgctxt "docking3deffects|extended_tip|flat"
msgid "Renders the 3D surface as polygons."
msgstr ""
#. aLmTz
-#: svx/uiconfig/ui/docking3deffects.ui:608
+#: svx/uiconfig/ui/docking3deffects.ui:603
msgctxt "docking3deffects|spherical|tooltip_text"
msgid "Spherical"
msgstr ""
#. Ant38
-#: svx/uiconfig/ui/docking3deffects.ui:613
+#: svx/uiconfig/ui/docking3deffects.ui:608
msgctxt "docking3deffects|extended_tip|spherical"
msgid "Renders a smooth 3D surface."
msgstr ""
#. a9hYr
-#: svx/uiconfig/ui/docking3deffects.ui:627
+#: svx/uiconfig/ui/docking3deffects.ui:622
msgctxt "docking3deffects|invertnormals|tooltip_text"
msgid "Invert Normals"
msgstr ""
#. mbsm2
-#: svx/uiconfig/ui/docking3deffects.ui:632
+#: svx/uiconfig/ui/docking3deffects.ui:627
msgctxt "docking3deffects|extended_tip|invertnormals"
msgid "Inverts the light source."
msgstr ""
#. kBScz
-#: svx/uiconfig/ui/docking3deffects.ui:646
+#: svx/uiconfig/ui/docking3deffects.ui:641
msgctxt "docking3deffects|doublesidedillum|tooltip_text"
msgid "Double-Sided Illumination"
msgstr ""
#. Du7J2
-#: svx/uiconfig/ui/docking3deffects.ui:651
+#: svx/uiconfig/ui/docking3deffects.ui:646
msgctxt "docking3deffects|extended_tip|doublesidedillum"
msgid "Lights the object from the outside and the inside. To use an ambient light source, click this button, and then click the Invert Normals button."
msgstr ""
#. Jq33F
-#: svx/uiconfig/ui/docking3deffects.ui:665
+#: svx/uiconfig/ui/docking3deffects.ui:660
msgctxt "docking3deffects|doublesided|tooltip_text"
msgid "Double-Sided"
msgstr ""
#. KhQUE
-#: svx/uiconfig/ui/docking3deffects.ui:670
+#: svx/uiconfig/ui/docking3deffects.ui:665
msgctxt "docking3deffects|extended_tip|doublesided"
msgid "Closes the shape of a 3D object that was created by extruding a freeform line (Convert - To 3D)."
msgstr ""
#. 2xzfy
-#: svx/uiconfig/ui/docking3deffects.ui:694
+#: svx/uiconfig/ui/docking3deffects.ui:689
msgctxt "docking3deffects|label11"
msgid "Normals"
msgstr "Анормалқәа"
#. XjqvC
-#: svx/uiconfig/ui/docking3deffects.ui:723
+#: svx/uiconfig/ui/docking3deffects.ui:718
msgctxt "docking3deffects|to3d|tooltip_text"
msgid "Convert to 3D"
msgstr ""
#. jGHSC
-#: svx/uiconfig/ui/docking3deffects.ui:727
+#: svx/uiconfig/ui/docking3deffects.ui:722
msgctxt "docking3deffects|extended_tip|to3d"
msgid "Use this icon to convert a selected 2D object to a 3D object."
msgstr ""
#. v5fdY
-#: svx/uiconfig/ui/docking3deffects.ui:741
+#: svx/uiconfig/ui/docking3deffects.ui:736
msgctxt "docking3deffects|tolathe|tooltip_text"
msgid "Convert to Rotation Object"
msgstr ""
#. 3tj7D
-#: svx/uiconfig/ui/docking3deffects.ui:745
+#: svx/uiconfig/ui/docking3deffects.ui:740
msgctxt "docking3deffects|extended_tip|tolathe"
msgid "Click here to convert a selected 2D object to a 3D rotation object."
msgstr ""
#. Tk7Vb
-#: svx/uiconfig/ui/docking3deffects.ui:759
+#: svx/uiconfig/ui/docking3deffects.ui:754
msgctxt "docking3deffects|perspective|tooltip_text"
msgid "Perspective On/Off"
msgstr ""
#. S27FV
-#: svx/uiconfig/ui/docking3deffects.ui:797
+#: svx/uiconfig/ui/docking3deffects.ui:792
msgctxt "docking3deffects|preview-atkobject"
msgid "3D Preview"
msgstr ""
#. snUGf
-#: svx/uiconfig/ui/docking3deffects.ui:830
+#: svx/uiconfig/ui/docking3deffects.ui:825
msgctxt "tp_3D_SceneIllumination|CTL_LIGHT_PREVIEW|tooltip_text"
msgid "Light Preview"
msgstr ""
#. c86Xg
-#: svx/uiconfig/ui/docking3deffects.ui:835
+#: svx/uiconfig/ui/docking3deffects.ui:830
msgctxt "docking3deffects|lightpreview-atkobject"
msgid "Color Light Preview"
msgstr ""
#. ysdwL
-#: svx/uiconfig/ui/docking3deffects.ui:922
+#: svx/uiconfig/ui/docking3deffects.ui:917
msgctxt "docking3deffects|label8"
msgid "_Mode"
msgstr ""
#. BW2hR
-#: svx/uiconfig/ui/docking3deffects.ui:937
+#: svx/uiconfig/ui/docking3deffects.ui:932
msgctxt "docking3deffects|mode"
msgid "Flat"
msgstr ""
#. 6Esbf
-#: svx/uiconfig/ui/docking3deffects.ui:938
+#: svx/uiconfig/ui/docking3deffects.ui:933
msgctxt "docking3deffects|mode"
msgid "Phong"
msgstr ""
#. D6L7i
-#: svx/uiconfig/ui/docking3deffects.ui:939
+#: svx/uiconfig/ui/docking3deffects.ui:934
msgctxt "docking3deffects|mode"
msgid "Gouraud"
msgstr ""
#. oq9Aj
-#: svx/uiconfig/ui/docking3deffects.ui:943
+#: svx/uiconfig/ui/docking3deffects.ui:938
msgctxt "docking3deffects|extended_tip|mode"
msgid "Select the shading method that you want to use. Flat shading assigns a single color to a single polygon on the surface of the object. Gouraud shading blends colors across the polygons. Phong shading averages the color of each pixel based on the pixels that surround it, and requires the most processing power."
msgstr ""
#. fEdS2
-#: svx/uiconfig/ui/docking3deffects.ui:958
+#: svx/uiconfig/ui/docking3deffects.ui:953
msgctxt "docking3deffects|label12"
msgid "Shading"
msgstr ""
#. QiGD2
-#: svx/uiconfig/ui/docking3deffects.ui:994
+#: svx/uiconfig/ui/docking3deffects.ui:989
msgctxt "docking3deffects|extended_tip|slant"
msgid "Enter an angle from 0 to 90 degrees for casting the shadow."
msgstr ""
#. 4yMr6
-#: svx/uiconfig/ui/docking3deffects.ui:1013
+#: svx/uiconfig/ui/docking3deffects.ui:1008
msgctxt "docking3deffects|shadow|tooltip_text"
msgid "3D Shadowing On/Off"
msgstr ""
#. uPZTo
-#: svx/uiconfig/ui/docking3deffects.ui:1017
+#: svx/uiconfig/ui/docking3deffects.ui:1012
msgctxt "docking3deffects|extended_tip|shadow"
msgid "Adds or removes a shadow from the selected 3D object."
msgstr ""
#. sT4FD
-#: svx/uiconfig/ui/docking3deffects.ui:1032
+#: svx/uiconfig/ui/docking3deffects.ui:1027
msgctxt "docking3deffects|slantft"
msgid "S_urface angle"
msgstr ""
#. kczsC
-#: svx/uiconfig/ui/docking3deffects.ui:1055
+#: svx/uiconfig/ui/docking3deffects.ui:1050
msgctxt "docking3deffects|label13"
msgid "Shadow"
msgstr ""
#. 84Xfy
-#: svx/uiconfig/ui/docking3deffects.ui:1092
+#: svx/uiconfig/ui/docking3deffects.ui:1087
msgctxt "docking3deffects|extended_tip|focal"
msgid "Enter the focal length of the camera, where a small value corresponds to a \"fisheye\" lens, and a large value to a telephoto lens."
msgstr ""
#. QDWn9
-#: svx/uiconfig/ui/docking3deffects.ui:1110
+#: svx/uiconfig/ui/docking3deffects.ui:1105
msgctxt "docking3deffects|extended_tip|distance"
msgid "Enter the distance to leave between the camera and the center of the selected object."
msgstr ""
#. MHwmD
-#: svx/uiconfig/ui/docking3deffects.ui:1123
+#: svx/uiconfig/ui/docking3deffects.ui:1118
msgctxt "docking3deffects|label15"
msgid "_Focal length"
msgstr ""
#. sqNyn
-#: svx/uiconfig/ui/docking3deffects.ui:1137
+#: svx/uiconfig/ui/docking3deffects.ui:1132
msgctxt "docking3deffects|label14"
msgid "_Distance"
msgstr ""
#. xVYME
-#: svx/uiconfig/ui/docking3deffects.ui:1153
+#: svx/uiconfig/ui/docking3deffects.ui:1148
msgctxt "docking3deffects|label16"
msgid "Camera"
msgstr ""
#. GDAcC
-#: svx/uiconfig/ui/docking3deffects.ui:1185
+#: svx/uiconfig/ui/docking3deffects.ui:1180
msgctxt "docking3deffects|label17"
msgid "_Light source"
msgstr ""
#. DNnED
-#: svx/uiconfig/ui/docking3deffects.ui:1209
+#: svx/uiconfig/ui/docking3deffects.ui:1204
msgctxt "docking3deffects|colorbutton1|tooltip_text"
msgid "Colors Dialog"
msgstr ""
#. fbmBv
-#: svx/uiconfig/ui/docking3deffects.ui:1214
+#: svx/uiconfig/ui/docking3deffects.ui:1209
msgctxt "docking3deffects|extended_tip|colorbutton1"
msgid "Select a color for the ambient light."
msgstr ""
#. yWUfc
-#: svx/uiconfig/ui/docking3deffects.ui:1237
+#: svx/uiconfig/ui/docking3deffects.ui:1232
msgctxt "docking3deffects|extended_tip|ambientcolor"
msgid "Select a color for the ambient light."
msgstr ""
#. nSELF
-#: svx/uiconfig/ui/docking3deffects.ui:1251
+#: svx/uiconfig/ui/docking3deffects.ui:1246
msgctxt "docking3deffects|colorbutton2|tooltip_text"
msgid "Colors Dialog"
msgstr ""
#. m2KFe
-#: svx/uiconfig/ui/docking3deffects.ui:1264
+#: svx/uiconfig/ui/docking3deffects.ui:1259
msgctxt "docking3deffects|label18"
msgid "_Ambient light"
msgstr ""
#. m9fpD
-#: svx/uiconfig/ui/docking3deffects.ui:1286
+#: svx/uiconfig/ui/docking3deffects.ui:1281
msgctxt "docking3deffects|light1|tooltip_text"
msgid "Light Source 1"
msgstr ""
#. 9QFz2
-#: svx/uiconfig/ui/docking3deffects.ui:1293
+#: svx/uiconfig/ui/docking3deffects.ui:1288
msgctxt "docking3deffects|extended_tip|light1"
msgid "Click twice to turn the light source on, and then select a color for the light from the list. If you want, you can also set the color of the surrounding light, by selecting a color from the Ambient light box."
msgstr ""
#. 6VQpA
-#: svx/uiconfig/ui/docking3deffects.ui:1307
+#: svx/uiconfig/ui/docking3deffects.ui:1302
msgctxt "docking3deffects|light2|tooltip_text"
msgid "Light Source 2"
msgstr ""
#. jwgPB
-#: svx/uiconfig/ui/docking3deffects.ui:1314
+#: svx/uiconfig/ui/docking3deffects.ui:1309
msgctxt "docking3deffects|extended_tip|light2"
msgid "Click twice to turn the light source on, and then select a color for the light from the list. If you want, you can also set the color of the surrounding light, by selecting a color from the Ambient light box."
msgstr ""
#. H6ApW
-#: svx/uiconfig/ui/docking3deffects.ui:1328
+#: svx/uiconfig/ui/docking3deffects.ui:1323
msgctxt "docking3deffects|light3|tooltip_text"
msgid "Light Source 3"
msgstr ""
#. sCqw6
-#: svx/uiconfig/ui/docking3deffects.ui:1335
+#: svx/uiconfig/ui/docking3deffects.ui:1330
msgctxt "docking3deffects|extended_tip|light3"
msgid "Click twice to turn the light source on, and then select a color for the light from the list. If you want, you can also set the color of the surrounding light, by selecting a color from the Ambient light box."
msgstr ""
#. bFsp9
-#: svx/uiconfig/ui/docking3deffects.ui:1349
+#: svx/uiconfig/ui/docking3deffects.ui:1344
msgctxt "docking3deffects|light4|tooltip_text"
msgid "Light Source 4"
msgstr ""
#. Vus8w
-#: svx/uiconfig/ui/docking3deffects.ui:1356
+#: svx/uiconfig/ui/docking3deffects.ui:1351
msgctxt "docking3deffects|extended_tip|light4"
msgid "Click twice to turn the light source on, and then select a color for the light from the list. If you want, you can also set the color of the surrounding light, by selecting a color from the Ambient light box."
msgstr ""
#. umqpv
-#: svx/uiconfig/ui/docking3deffects.ui:1370
+#: svx/uiconfig/ui/docking3deffects.ui:1365
msgctxt "docking3deffects|light5|tooltip_text"
msgid "Light Source 5"
msgstr ""
#. dESZk
-#: svx/uiconfig/ui/docking3deffects.ui:1377
+#: svx/uiconfig/ui/docking3deffects.ui:1372
msgctxt "docking3deffects|extended_tip|light5"
msgid "Click twice to turn the light source on, and then select a color for the light from the list. If you want, you can also set the color of the surrounding light, by selecting a color from the Ambient light box."
msgstr ""
#. EJ5pS
-#: svx/uiconfig/ui/docking3deffects.ui:1391
+#: svx/uiconfig/ui/docking3deffects.ui:1386
msgctxt "docking3deffects|light6|tooltip_text"
msgid "Light Source 6"
msgstr ""
#. CgMts
-#: svx/uiconfig/ui/docking3deffects.ui:1398
+#: svx/uiconfig/ui/docking3deffects.ui:1393
msgctxt "docking3deffects|extended_tip|light6"
msgid "Click twice to turn the light source on, and then select a color for the light from the list. If you want, you can also set the color of the surrounding light, by selecting a color from the Ambient light box."
msgstr ""
#. RxBpE
-#: svx/uiconfig/ui/docking3deffects.ui:1412
+#: svx/uiconfig/ui/docking3deffects.ui:1407
msgctxt "docking3deffects|light7|tooltip_text"
msgid "Light Source 7"
msgstr ""
#. LJ3Lp
-#: svx/uiconfig/ui/docking3deffects.ui:1419
+#: svx/uiconfig/ui/docking3deffects.ui:1414
msgctxt "docking3deffects|extended_tip|light7"
msgid "Click twice to turn the light source on, and then select a color for the light from the list. If you want, you can also set the color of the surrounding light, by selecting a color from the Ambient light box."
msgstr ""
#. BrqqJ
-#: svx/uiconfig/ui/docking3deffects.ui:1433
+#: svx/uiconfig/ui/docking3deffects.ui:1428
msgctxt "docking3deffects|light8|tooltip_text"
msgid "Light Source 8"
msgstr ""
#. 7GZgb
-#: svx/uiconfig/ui/docking3deffects.ui:1440
+#: svx/uiconfig/ui/docking3deffects.ui:1435
msgctxt "docking3deffects|extended_tip|light8"
msgid "Click twice to turn the light source on, and then select a color for the light from the list. If you want, you can also set the color of the surrounding light, by selecting a color from the Ambient light box."
msgstr ""
#. FN3e6
-#: svx/uiconfig/ui/docking3deffects.ui:1465
+#: svx/uiconfig/ui/docking3deffects.ui:1460
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 1 color"
msgstr ""
#. djVxQ
-#: svx/uiconfig/ui/docking3deffects.ui:1475
+#: svx/uiconfig/ui/docking3deffects.ui:1470
msgctxt "docking3deffects|extended_tip|lightcolor1"
msgid "Select a color for the current light source."
msgstr ""
#. EBVTG
-#: svx/uiconfig/ui/docking3deffects.ui:1489
+#: svx/uiconfig/ui/docking3deffects.ui:1484
msgctxt "docking3deffects|lightcolor2|tooltip_text"
msgid "Light 2 color"
msgstr ""
#. wiDjj
-#: svx/uiconfig/ui/docking3deffects.ui:1508
+#: svx/uiconfig/ui/docking3deffects.ui:1503
msgctxt "docking3deffects|lightcolor3|tooltip_text"
msgid "Light 3 color"
msgstr ""
#. zZSLi
-#: svx/uiconfig/ui/docking3deffects.ui:1527
+#: svx/uiconfig/ui/docking3deffects.ui:1522
msgctxt "docking3deffects|lightcolor4|tooltip_text"
msgid "Light 4 color"
msgstr ""
#. bPGBH
-#: svx/uiconfig/ui/docking3deffects.ui:1546
+#: svx/uiconfig/ui/docking3deffects.ui:1541
msgctxt "docking3deffects|lightcolor5|tooltip_text"
msgid "Light 5 color"
msgstr ""
#. mCg85
-#: svx/uiconfig/ui/docking3deffects.ui:1565
+#: svx/uiconfig/ui/docking3deffects.ui:1560
msgctxt "docking3deffects|lightcolor6|tooltip_text"
msgid "Light 6 color"
msgstr ""
#. Lj2HV
-#: svx/uiconfig/ui/docking3deffects.ui:1584
+#: svx/uiconfig/ui/docking3deffects.ui:1579
msgctxt "docking3deffects|lightcolor7|tooltip_text"
msgid "Light 7 color"
msgstr ""
#. aNZDv
-#: svx/uiconfig/ui/docking3deffects.ui:1603
+#: svx/uiconfig/ui/docking3deffects.ui:1598
msgctxt "docking3deffects|lightcolor8|tooltip_text"
msgid "Light 8 color"
msgstr ""
#. HqaQ2
-#: svx/uiconfig/ui/docking3deffects.ui:1636
+#: svx/uiconfig/ui/docking3deffects.ui:1631
msgctxt "docking3deffects|label19"
msgid "Illumination"
msgstr "Арлашара"
#. BrBDG
-#: svx/uiconfig/ui/docking3deffects.ui:1667
+#: svx/uiconfig/ui/docking3deffects.ui:1662
msgctxt "docking3deffects|label20"
msgid "_Type"
msgstr "Атип"
#. txLj4
-#: svx/uiconfig/ui/docking3deffects.ui:1684
+#: svx/uiconfig/ui/docking3deffects.ui:1679
msgctxt "docking3deffects|label22"
msgid "_Mode"
msgstr ""
#. pPQLp
-#: svx/uiconfig/ui/docking3deffects.ui:1701
+#: svx/uiconfig/ui/docking3deffects.ui:1696
msgctxt "docking3deffects|label23"
msgid "_Projection X"
msgstr ""
#. xcs3h
-#: svx/uiconfig/ui/docking3deffects.ui:1719
+#: svx/uiconfig/ui/docking3deffects.ui:1714
msgctxt "docking3deffects|label24"
msgid "P_rojection Y"
msgstr ""
#. bxSBA
-#: svx/uiconfig/ui/docking3deffects.ui:1737
+#: svx/uiconfig/ui/docking3deffects.ui:1732
msgctxt "docking3deffects|label25"
msgid "_Filtering"
msgstr ""
#. Gq2zg
-#: svx/uiconfig/ui/docking3deffects.ui:1754
+#: svx/uiconfig/ui/docking3deffects.ui:1749
msgctxt "docking3deffects|textype|tooltip_text"
msgid "Black & White"
msgstr "Аиқәаҵәа-ашкәакәа"
#. S5ACF
-#: svx/uiconfig/ui/docking3deffects.ui:1762
+#: svx/uiconfig/ui/docking3deffects.ui:1757
msgctxt "docking3deffects|extended_tip|textype"
msgid "Converts the texture to black and white."
msgstr ""
#. rfdVf
-#: svx/uiconfig/ui/docking3deffects.ui:1776
+#: svx/uiconfig/ui/docking3deffects.ui:1771
msgctxt "docking3deffects|texcolor|tooltip_text"
msgid "Color"
msgstr "Аҧштәы"
#. dkTiY
-#: svx/uiconfig/ui/docking3deffects.ui:1784
+#: svx/uiconfig/ui/docking3deffects.ui:1779
msgctxt "docking3deffects|extended_tip|texcolor"
msgid "Converts the texture to color."
msgstr ""
#. aqP2z
-#: svx/uiconfig/ui/docking3deffects.ui:1798
+#: svx/uiconfig/ui/docking3deffects.ui:1793
msgctxt "docking3deffects|texreplace|tooltip_text"
msgid "Only Texture"
msgstr "Атеқстура мацара"
#. hMAv6
-#: svx/uiconfig/ui/docking3deffects.ui:1806
+#: svx/uiconfig/ui/docking3deffects.ui:1801
msgctxt "docking3deffects|extended_tip|texreplace"
msgid "Applies the texture without shading."
msgstr ""
#. HCKdG
-#: svx/uiconfig/ui/docking3deffects.ui:1820
+#: svx/uiconfig/ui/docking3deffects.ui:1815
msgctxt "docking3deffects|texmodulate|tooltip_text"
msgid "Texture and Shading"
msgstr "Атеқстуреи агагеи"
#. 3g4zG
-#: svx/uiconfig/ui/docking3deffects.ui:1828
+#: svx/uiconfig/ui/docking3deffects.ui:1823
msgctxt "docking3deffects|extended_tip|texmodulate"
msgid "Applies the texture with shading. To define the shading options for the texture, click the Shading button in this dialog."
msgstr ""
#. 65J8K
-#: svx/uiconfig/ui/docking3deffects.ui:1842
+#: svx/uiconfig/ui/docking3deffects.ui:1837
msgctxt "docking3deffects|texobjx|tooltip_text"
msgid "Object-Specific"
msgstr ""
#. y9Kai
-#: svx/uiconfig/ui/docking3deffects.ui:1850
+#: svx/uiconfig/ui/docking3deffects.ui:1845
msgctxt "docking3deffects|extended_tip|texobjx"
msgid "Automatically adjusts the texture based on the shape and size of the object."
msgstr ""
#. iTKyD
-#: svx/uiconfig/ui/docking3deffects.ui:1864
+#: svx/uiconfig/ui/docking3deffects.ui:1859
msgctxt "docking3deffects|texparallelx|tooltip_text"
msgid "Parallel"
msgstr ""
#. SjaUF
-#: svx/uiconfig/ui/docking3deffects.ui:1872
+#: svx/uiconfig/ui/docking3deffects.ui:1867
msgctxt "docking3deffects|extended_tip|texparallelx"
msgid "Applies the texture parallel to the horizontal axis."
msgstr ""
#. MhgUE
-#: svx/uiconfig/ui/docking3deffects.ui:1886
+#: svx/uiconfig/ui/docking3deffects.ui:1881
msgctxt "docking3deffects|texcirclex|tooltip_text"
msgid "Circular"
msgstr ""
#. pfLqS
-#: svx/uiconfig/ui/docking3deffects.ui:1895
+#: svx/uiconfig/ui/docking3deffects.ui:1890
msgctxt "docking3deffects|extended_tip|texcirclex"
msgid "Wraps the horizontal axis of the texture pattern around a sphere."
msgstr ""
#. E9Gy6
-#: svx/uiconfig/ui/docking3deffects.ui:1909
+#: svx/uiconfig/ui/docking3deffects.ui:1904
msgctxt "docking3deffects|texobjy|tooltip_text"
msgid "Object-Specific"
msgstr ""
#. Li9zf
-#: svx/uiconfig/ui/docking3deffects.ui:1917
+#: svx/uiconfig/ui/docking3deffects.ui:1912
msgctxt "docking3deffects|extended_tip|texobjy"
msgid "Automatically adjusts the texture based on the shape and size of the object."
msgstr ""
#. 5B84a
-#: svx/uiconfig/ui/docking3deffects.ui:1931
+#: svx/uiconfig/ui/docking3deffects.ui:1926
msgctxt "docking3deffects|texparallely|tooltip_text"
msgid "Parallel"
msgstr ""
#. UuRg4
-#: svx/uiconfig/ui/docking3deffects.ui:1939
+#: svx/uiconfig/ui/docking3deffects.ui:1934
msgctxt "docking3deffects|extended_tip|texparallely"
msgid "Applies the texture parallel to the vertical axis."
msgstr ""
#. h5iQh
-#: svx/uiconfig/ui/docking3deffects.ui:1953
+#: svx/uiconfig/ui/docking3deffects.ui:1948
msgctxt "docking3deffects|texcircley|tooltip_text"
msgid "Circular"
msgstr ""
#. FyRf5
-#: svx/uiconfig/ui/docking3deffects.ui:1961
+#: svx/uiconfig/ui/docking3deffects.ui:1956
msgctxt "docking3deffects|extended_tip|texcircley"
msgid "Wraps the vertical axis of the texture pattern around a sphere."
msgstr ""
#. cKvPt
-#: svx/uiconfig/ui/docking3deffects.ui:1975
+#: svx/uiconfig/ui/docking3deffects.ui:1970
msgctxt "docking3deffects|texfilter|tooltip_text"
msgid "Filtering On/Off"
msgstr ""
#. mMhpy
-#: svx/uiconfig/ui/docking3deffects.ui:1983
+#: svx/uiconfig/ui/docking3deffects.ui:1978
msgctxt "docking3deffects|extended_tip|texfilter"
msgid "Blurs the texture slightly to remove unwanted speckles."
msgstr ""
#. GKiZx
-#: svx/uiconfig/ui/docking3deffects.ui:2007
+#: svx/uiconfig/ui/docking3deffects.ui:2002
msgctxt "docking3deffects|label21"
msgid "Textures"
msgstr "Атеқстурақәа"
#. fYX37
-#: svx/uiconfig/ui/docking3deffects.ui:2038
+#: svx/uiconfig/ui/docking3deffects.ui:2033
msgctxt "docking3deffects|label26"
msgid "_Favorites"
msgstr "Иалкаақәоу"
#. mNa7V
-#: svx/uiconfig/ui/docking3deffects.ui:2054
+#: svx/uiconfig/ui/docking3deffects.ui:2049
msgctxt "docking3deffects|label27"
msgid "_Object color"
msgstr ""
#. rGGJC
-#: svx/uiconfig/ui/docking3deffects.ui:2068
+#: svx/uiconfig/ui/docking3deffects.ui:2063
msgctxt "docking3deffects|label29"
msgid "_Illumination color"
msgstr ""
#. UmpFS
-#: svx/uiconfig/ui/docking3deffects.ui:2093
+#: svx/uiconfig/ui/docking3deffects.ui:2088
msgctxt "docking3deffects|extended_tip|objcolor"
msgid "Select the color that you want to apply to the object."
msgstr ""
#. 8ufuo
-#: svx/uiconfig/ui/docking3deffects.ui:2117
+#: svx/uiconfig/ui/docking3deffects.ui:2112
msgctxt "docking3deffects|extended_tip|illumcolor"
msgid "Select the color to illuminate the object."
msgstr ""
#. EeS7C
-#: svx/uiconfig/ui/docking3deffects.ui:2131
+#: svx/uiconfig/ui/docking3deffects.ui:2126
msgctxt "docking3deffects|favorites"
msgid "User-defined"
msgstr "Иҷыдоу"
#. RcCQG
-#: svx/uiconfig/ui/docking3deffects.ui:2132
+#: svx/uiconfig/ui/docking3deffects.ui:2127
msgctxt "docking3deffects|favorites"
msgid "Metal"
msgstr ""
#. JxUiT
-#: svx/uiconfig/ui/docking3deffects.ui:2133
+#: svx/uiconfig/ui/docking3deffects.ui:2128
msgctxt "docking3deffects|favorites"
msgid "Gold"
msgstr "Ахьы"
#. Mnmop
-#: svx/uiconfig/ui/docking3deffects.ui:2134
+#: svx/uiconfig/ui/docking3deffects.ui:2129
msgctxt "docking3deffects|favorites"
msgid "Chrome"
msgstr ""
#. fa9bg
-#: svx/uiconfig/ui/docking3deffects.ui:2135
+#: svx/uiconfig/ui/docking3deffects.ui:2130
msgctxt "docking3deffects|favorites"
msgid "Plastic"
msgstr ""
#. WGUwt
-#: svx/uiconfig/ui/docking3deffects.ui:2136
+#: svx/uiconfig/ui/docking3deffects.ui:2131
msgctxt "docking3deffects|favorites"
msgid "Wood"
msgstr ""
#. KDxBg
-#: svx/uiconfig/ui/docking3deffects.ui:2143
+#: svx/uiconfig/ui/docking3deffects.ui:2138
msgctxt "docking3deffects|extended_tip|favorites"
msgid "Select a predefined color scheme, or select User-defined to define a custom color scheme."
msgstr ""
#. AndqG
-#: svx/uiconfig/ui/docking3deffects.ui:2158
+#: svx/uiconfig/ui/docking3deffects.ui:2153
msgctxt "docking3deffects|colorbutton3|tooltip_text"
msgid "Colors Dialog"
msgstr ""
#. BT3GD
-#: svx/uiconfig/ui/docking3deffects.ui:2162
+#: svx/uiconfig/ui/docking3deffects.ui:2157
msgctxt "docking3deffects|extended_tip|colorbutton3"
msgid "Select the color to illuminate the object."
msgstr ""
#. tsEoC
-#: svx/uiconfig/ui/docking3deffects.ui:2176
+#: svx/uiconfig/ui/docking3deffects.ui:2171
msgctxt "docking3deffects|colorbutton4|tooltip_text"
msgid "Colors Dialog"
msgstr ""
#. RWxeM
-#: svx/uiconfig/ui/docking3deffects.ui:2190
+#: svx/uiconfig/ui/docking3deffects.ui:2185
msgctxt "docking3deffects|label28"
msgid "Material"
msgstr ""
#. wY3tE
-#: svx/uiconfig/ui/docking3deffects.ui:2221
+#: svx/uiconfig/ui/docking3deffects.ui:2216
msgctxt "docking3deffects|label30"
msgid "_Color"
msgstr "Аҧштәы"
#. ngqfq
-#: svx/uiconfig/ui/docking3deffects.ui:2235
+#: svx/uiconfig/ui/docking3deffects.ui:2230
msgctxt "docking3deffects|label31"
msgid "I_ntensity"
msgstr ""
#. TAoRf
-#: svx/uiconfig/ui/docking3deffects.ui:2260
+#: svx/uiconfig/ui/docking3deffects.ui:2255
msgctxt "docking3deffects|extended_tip|speccolor"
msgid "Select the color that you want the object to reflect."
msgstr ""
#. 8fdJB
-#: svx/uiconfig/ui/docking3deffects.ui:2274
+#: svx/uiconfig/ui/docking3deffects.ui:2269
msgctxt "docking3deffects|colorbutton5|tooltip_text"
msgid "Colors Dialog"
msgstr ""
#. GjQ2i
-#: svx/uiconfig/ui/docking3deffects.ui:2278
+#: svx/uiconfig/ui/docking3deffects.ui:2273
msgctxt "docking3deffects|extended_tip|colorbutton5"
msgid "Enter the intensity of the specular effect."
msgstr ""
#. tcm3D
-#: svx/uiconfig/ui/docking3deffects.ui:2295
+#: svx/uiconfig/ui/docking3deffects.ui:2290
msgctxt "docking3deffects|extended_tip|intensity"
msgid "Enter the intensity of the specular effect."
msgstr ""
#. L8GqV
-#: svx/uiconfig/ui/docking3deffects.ui:2311
+#: svx/uiconfig/ui/docking3deffects.ui:2306
msgctxt "docking3deffects|label32"
msgid "Specular"
msgstr ""
#. Qkzsq
-#: svx/uiconfig/ui/docking3deffects.ui:2334
+#: svx/uiconfig/ui/docking3deffects.ui:2329
msgctxt "docking3deffects|assign|tooltip_text"
msgid "Assign"
msgstr ""
#. cjrJ9
-#: svx/uiconfig/ui/docking3deffects.ui:2347
+#: svx/uiconfig/ui/docking3deffects.ui:2342
msgctxt "docking3deffects|update|tooltip_text"
msgid "Update"
msgstr "Ирҿыцтәуп"
#. AgKU4
-#: svx/uiconfig/ui/docking3deffects.ui:2362
+#: svx/uiconfig/ui/docking3deffects.ui:2357
msgctxt "docking3deffects|material|tooltip_text"
msgid "Material"
msgstr ""
#. xN7Sr
-#: svx/uiconfig/ui/docking3deffects.ui:2366
+#: svx/uiconfig/ui/docking3deffects.ui:2361
msgctxt "docking3deffects|extended_tip|material"
msgid "Changes the coloring of the selected 3D object."
msgstr ""
#. 3Av3h
-#: svx/uiconfig/ui/docking3deffects.ui:2380
+#: svx/uiconfig/ui/docking3deffects.ui:2375
msgctxt "docking3deffects|texture|tooltip_text"
msgid "Textures"
msgstr "Атеқстурақәа"
#. DVwWG
-#: svx/uiconfig/ui/docking3deffects.ui:2384
+#: svx/uiconfig/ui/docking3deffects.ui:2379
msgctxt "docking3deffects|extended_tip|texture"
msgid "Sets the properties of the surface texture for the selected 3D object. This feature is only available after you apply a surface texture to the selected object. To quickly apply a surface texture, open the Gallery, hold down Shift+Ctrl, and then drag an image onto the selected 3D object."
msgstr ""
#. J4WKj
-#: svx/uiconfig/ui/docking3deffects.ui:2398
+#: svx/uiconfig/ui/docking3deffects.ui:2393
msgctxt "docking3deffects|light|tooltip_text"
msgid "Illumination"
msgstr "Арлашара"
#. 9WEJD
-#: svx/uiconfig/ui/docking3deffects.ui:2402
+#: svx/uiconfig/ui/docking3deffects.ui:2397
msgctxt "docking3deffects|extended_tip|light"
msgid "Define the light source for the selected 3D object."
msgstr ""
#. ctHgb
-#: svx/uiconfig/ui/docking3deffects.ui:2416
+#: svx/uiconfig/ui/docking3deffects.ui:2411
msgctxt "docking3deffects|representation|tooltip_text"
msgid "Shading"
msgstr ""
#. HF3KP
-#: svx/uiconfig/ui/docking3deffects.ui:2420
+#: svx/uiconfig/ui/docking3deffects.ui:2415
msgctxt "docking3deffects|extended_tip|representation"
msgid "Sets the shading and shadow options for the selected 3D object."
msgstr ""
#. HxxSF
-#: svx/uiconfig/ui/docking3deffects.ui:2434
+#: svx/uiconfig/ui/docking3deffects.ui:2429
msgctxt "docking3deffects|geometry|tooltip_text"
msgid "Geometry"
msgstr ""
#. h4c39
-#: svx/uiconfig/ui/docking3deffects.ui:2438
+#: svx/uiconfig/ui/docking3deffects.ui:2433
msgctxt "docking3deffects|extended_tip|geometry"
msgid "Adjusts the shape of the selected 3D object. You can only modify the shape of a 3D object that was created by converting a 2D object. To convert a 2D object to 3D, select the object, right-click, and then choose Convert - To 3D, or Convert - To 3D Rotation Object."
msgstr ""
#. 4D9WF
-#: svx/uiconfig/ui/docking3deffects.ui:2455
+#: svx/uiconfig/ui/docking3deffects.ui:2450
msgctxt "docking3deffects|extended_tip|Docking3DEffects"
msgid "Specifies the properties of 3D object(s) in the current document or converts a 2D object to 3D."
msgstr ""
diff --git a/source/ab/sw/messages.po b/source/ab/sw/messages.po
index 9ed0e54ac75..f0f90ea8f89 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: 2021-04-12 12:07+0200\n"
+"POT-Creation-Date: 2021-04-27 17:03+0200\n"
"PO-Revision-Date: 2020-10-31 11:36+0000\n"
"Last-Translator: Christian Lohmaier <cloph@documentfoundation.org>\n"
"Language-Team: Abkhazian <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/ab/>\n"
@@ -2338,11 +2338,11 @@ msgctxt "STR_APPLY_EXTENDEDTIP"
msgid "Applies all modifications without closing dialog. Values are saved and cannot be reverted with Reset."
msgstr ""
-#. MvGmf
+#. FezFo
#. Format names
#: sw/inc/strings.hrc:38
msgctxt "STR_POOLCHR_STANDARD"
-msgid "Default Character Style"
+msgid "No Character Style"
msgstr ""
#. iVg2a
@@ -11015,6 +11015,18 @@ msgctxt "autotext|extended_tip|AutoTextDialog"
msgid "Creates, edits, or inserts AutoText. You can store formatted text, text with graphics, tables, and fields as AutoText. To quickly insert AutoText, type the shortcut for the AutoText in your document, and then press F3."
msgstr ""
+#. XKQvW
+#: sw/uiconfig/swriter/ui/bibliofragment.ui:45
+msgctxt "bibliofragment|browse"
+msgid "Browse..."
+msgstr ""
+
+#. ni4Mj
+#: sw/uiconfig/swriter/ui/bibliofragment.ui:68
+msgctxt "bibliofragment|pagecb"
+msgid "Page"
+msgstr ""
+
#. bBcSd
#: sw/uiconfig/swriter/ui/bibliographyentry.ui:8
#, fuzzy
@@ -14950,155 +14962,155 @@ msgid "Endnotes"
msgstr ""
#. FHaCH
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:61
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:59
msgctxt "footnoteareapage|maxheightpage"
msgid "_Not larger than page area"
msgstr "Адаҟьа аҳаракыра еиҳамкәа"
#. GSJFc
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:72
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:69
msgctxt "footnoteareapage|extended_tip|maxheightpage"
msgid "Automatically adjusts the height of the footnote area depending on the number of footnotes."
msgstr ""
#. FA6CC
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:84
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:81
msgctxt "footnoteareapage|maxheight"
msgid "Maximum footnote _height"
msgstr ""
#. bC7yH
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:97
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:93
msgctxt "footnoteareapage|extended_tip|maxheight"
msgid "Sets a maximum height for the footnote area. Enable this option, then enter the height."
msgstr ""
#. YKAGh
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:111
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:106
msgctxt "footnoteareapage|label3"
msgid "Space to text"
msgstr "Атеқст аҟынӡа ибжьоу"
#. 3gM96
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:133
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:127
msgctxt "footnoteareapage|extended_tip|spacetotext"
msgid "Enter the amount of space to leave between the bottom page margin and the first line of text in the footnote area."
msgstr ""
#. BEuKg
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:157
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:150
msgctxt "footnoteareapage|extended_tip|maxheightsb"
msgid "Enter the maximum height for the footnote area."
msgstr ""
#. G6Dar
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:172
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:165
msgctxt "footnoteareapage|label1"
msgid "Footnote Area"
msgstr ""
#. nD6YA
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:207
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:197
#, fuzzy
msgctxt "footnoteareapage|label4"
msgid "_Position"
msgstr "Аҭыҧ"
#. fzkPB
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:222
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:211
#, fuzzy
msgctxt "footnoteareapage|label5"
msgid "_Style"
msgstr "Астильқәа"
#. 7X5cr
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:237
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:225
msgctxt "footnoteareapage|label6"
msgid "_Thickness"
msgstr ""
#. myPFY
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:252
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:239
#, fuzzy
msgctxt "footnoteareapage|label7"
msgid "_Color"
msgstr "Аҧштәы"
#. xdT9F
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:267
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:253
#, fuzzy
msgctxt "footnoteareapage|label8"
msgid "_Length"
msgstr "Аура"
#. F3nWG
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:282
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:267
msgctxt "footnoteareapage|label9"
msgid "_Spacing to footnote contents"
msgstr ""
#. uZuEN
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:299
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:283
msgctxt "footnoteareapage|position"
msgid "Left"
msgstr "Арымарахь"
#. dqnpa
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:300
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:284
msgctxt "footnoteareapage|position"
msgid "Centered"
msgstr "Ацентр ала"
#. eMfVA
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:301
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:285
msgctxt "footnoteareapage|position"
msgid "Right"
msgstr "Арыӷьарахь"
#. WGvV6
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:305
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:289
msgctxt "footnoteareapage|extended_tip|position"
msgid "Select the horizontal alignment for the line that separates the main text from the footnote area."
msgstr ""
#. sD8YC
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:329
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:312
msgctxt "footnoteareapage|extended_tip|style"
msgid "Select the formatting style for the separator line. If you do not want a separator line, choose \"None\"."
msgstr ""
#. aHwK5
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:353
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:335
msgctxt "footnoteareapage|extended_tip|color"
msgid "Select the color of the separator line."
msgstr ""
#. vJxuj
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:373
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:354
msgctxt "footnoteareapage|extended_tip|length"
msgid "Enter the length of the separator line as a percentage of the page width area."
msgstr ""
#. FBKJE
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:394
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:374
msgctxt "footnoteareapage|extended_tip|spacingtocontents"
msgid "Enter the amount of space to leave between the separator line and the first line of the footnote area."
msgstr ""
#. Fnt7q
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:415
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:394
msgctxt "footnoteareapage|extended_tip|thickness"
msgid "Select the thickness of the separator line."
msgstr ""
#. bUbrX
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:430
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:409
msgctxt "footnoteareapage|label2"
msgid "Separator Line"
msgstr ""
#. vxKGo
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:445
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:424
msgctxt "footnoteareapage|extended_tip|FootnoteAreaPage"
msgid "Specifies the layout options for footnotes, including the line that separates the footnote from the main body of document."
msgstr ""
@@ -16008,280 +16020,280 @@ msgid "Relat_ive to"
msgstr ""
#. H3kKU
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:110
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:109
msgctxt "frmtypepage|extended_tip|relwidth"
msgid "Calculates the width of the selected object as a percentage of the width of the page text area."
msgstr ""
#. CDRCF
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:126
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:125
msgctxt "frmtypepage|extended_tip|relwidthrelation"
msgid "Decides what 100% width means: either text area (excluding margins) or the entire page (including margins)."
msgstr ""
#. LVvrB
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:137
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:136
msgctxt "frmtypepage|autowidth"
msgid "AutoSize"
msgstr "Авто-зыҧшаара"
#. br57s
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:147
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:145
msgctxt "frmtypepage|extended_tip|autowidth"
msgid "Automatically adjusts the width or height of a frame to match the contents of the frame. If you want, you can specify a minimum width or minimum height for the frame."
msgstr ""
#. TNaFa
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:167
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:165
#, fuzzy
msgctxt "frmtypepage|heightft"
msgid "H_eight"
msgstr "Аҳаракыра"
#. Rvr7b
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:181
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:179
msgctxt "frmtypepage|autoheightft"
msgid "H_eight (at least)"
msgstr ""
#. nAbJb
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:207
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:205
msgctxt "frmtypepage|extended_tip|height"
msgid "Enter the height that you want for the selected object."
msgstr ""
#. uN2DT
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:218
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:216
msgctxt "frmtypepage|relheight"
msgid "Re_lative to"
msgstr ""
#. 6BmoJ
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:228
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:225
msgctxt "frmtypepage|extended_tip|relheight"
msgid "Calculates the height of the selected object as a percentage of the height of the page text area."
msgstr ""
#. rgwPm
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:244
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:241
msgctxt "frmtypepage|extended_tip|relheightrelation"
msgid "Decides what 100% height means: either text area (excluding margins) or the entire page (including margins)."
msgstr ""
#. U2yc9
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:255
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:252
msgctxt "frmtypepage|autoheight"
msgid "AutoSize"
msgstr "Авто-зыҧшаара"
#. X7XFK
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:265
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:261
msgctxt "frmtypepage|extended_tip|autoheight"
msgid "Automatically adjusts the width or height of a frame to match the contents of the frame. If you want, you can specify a minimum width or minimum height for the frame."
msgstr ""
#. htCBL
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:277
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:273
msgctxt "frmtypepage|ratio"
msgid "_Keep ratio"
msgstr ""
#. RGWEJ
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:286
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:281
msgctxt "frmtypepage|extended_tip|ratio"
msgid "Maintains the height and width ratio when you change the width or the height setting."
msgstr ""
#. rMhep
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:298
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:293
msgctxt "frmtypepage|origsize"
msgid "_Original Size"
msgstr "Ахалагаратә шәагаа:"
#. 4ZHrz
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:306
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:301
msgctxt "frmtypepage|extended_tip|origsize"
msgid "Resets the size settings of the selected object to the original values."
msgstr ""
#. Z2CJB
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:322
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:317
msgctxt "frmtypepage|label2"
msgid "Size"
msgstr "Ашәагаа"
#. EwYPL
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:353
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:348
msgctxt "frmtypepage|topage"
msgid "To _page"
msgstr "Адаҟьахь"
#. bnxYw
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:363
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:357
msgctxt "frmtypepage|extended_tip|topage"
msgid "Anchors the selection to the current page."
msgstr ""
#. MMqAf
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:374
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:368
msgctxt "frmtypepage|topara"
msgid "To paragrap_h"
msgstr "Абзац ахь"
#. zuY6M
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:384
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:377
msgctxt "frmtypepage|extended_tip|topara"
msgid "Anchors the selection to the current paragraph."
msgstr ""
#. yX6rK
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:395
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:388
#, fuzzy
msgctxt "frmtypepage|tochar"
msgid "To cha_racter"
msgstr "Асимвол ахь"
#. CKgCn
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:405
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:397
msgctxt "frmtypepage|extended_tip|tochar"
msgid "Anchors the selection to a character."
msgstr ""
#. C9xQY
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:416
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:408
msgctxt "frmtypepage|aschar"
msgid "_As character"
msgstr "Асимвол еиҧш"
#. idwGi
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:426
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:417
msgctxt "frmtypepage|extended_tip|aschar"
msgid "Anchors the selection as character. The height of the current line is resized to match the height of the selection."
msgstr ""
#. TGg8f
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:437
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:428
msgctxt "frmtypepage|toframe"
msgid "To _frame"
msgstr ""
#. 3DgCP
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:457
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:447
msgctxt "frmtypepage|label1"
msgid "Anchor"
msgstr ""
#. d4jxE
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:486
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:476
msgctxt "frmtypepage|lbPreview"
msgid "Preview"
msgstr ""
#. 7RCJH
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:523
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:513
#, fuzzy
msgctxt "frmtypepage|horiposft"
msgid "Hori_zontal"
msgstr "Горизонталла"
#. ytvmN
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:537
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:527
msgctxt "frmtypepage|horibyft"
msgid "b_y"
msgstr ""
#. EEXr7
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:551
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:541
msgctxt "frmtypepage|vertbyft"
msgid "by"
msgstr ""
#. NW7Se
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:565
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:555
msgctxt "frmtypepage|horitoft"
msgid "_to"
msgstr ""
#. jg9kn
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:584
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:574
msgctxt "frmtypepage|extended_tip|byhori"
msgid "Enter the amount of space to leave between the left edge of the selected object and the reference point that you select in the To box."
msgstr ""
#. ATVDy
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:599
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:589
msgctxt "frmtypepage|extended_tip|horianchor"
msgid "Select the reference point for the selected horizontal alignment option."
msgstr ""
#. Mzkkm
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:614
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:604
msgctxt "frmtypepage|extended_tip|horipos"
msgid "Select the horizontal alignment option for the object."
msgstr ""
#. jATQG
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:627
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:617
msgctxt "frmtypepage|vertposft"
msgid "_Vertical"
msgstr ""
#. mcsH8
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:643
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:633
msgctxt "frmtypepage|extended_tip|vertpos"
msgid "Select the vertical alignment option for the object."
msgstr ""
#. BcA3U
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:661
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:651
msgctxt "frmtypepage|extended_tip|byvert"
msgid "Enter the amount of space to leave between the top edge of the selected object and the reference point that you select in the To box."
msgstr ""
#. nJyJE
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:674
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:664
msgctxt "frmtypepage|verttoft"
msgid "t_o"
msgstr ""
#. Aw5J8
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:690
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:680
msgctxt "frmtypepage|extended_tip|vertanchor"
msgid "Select the reference point for the selected vertical alignment option."
msgstr ""
#. WwDCp
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:701
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:691
msgctxt "frmtypepage|mirror"
msgid "_Mirror on even pages"
msgstr ""
#. Nftff
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:710
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:700
msgctxt "frmtypepage|extended_tip|mirror"
msgid "Reverses the current horizontal alignment settings on even pages."
msgstr ""
#. PFJMP
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:722
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:712
msgctxt "frmtypepage|followtextflow"
msgid "Keep inside text boundaries"
msgstr ""
#. 55hUf
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:731
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:721
msgctxt "frmtypepage|extended_tip|followtextflow"
msgid "Keeps the selected object within the layout boundaries of the text that the object is anchored to. To place the selected object anywhere in your document, do not select this option."
msgstr ""
#. cAiUp
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:747
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:737
msgctxt "frmtypepage|label11"
msgid "Position"
msgstr "Аҭыҧ"
#. DHEeZ
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:761
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:751
msgctxt "frmtypepage|extended_tip|FrameTypePage"
msgid "Specifies the size and the position of the selected object or frame on a page."
msgstr ""
@@ -20294,20 +20306,26 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
-#. PVPDB
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+#. qieQK
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
msgctxt "mmselectpage|extended_tip|datasourcewarning"
-msgid "Data source of the current document is not registered."
+msgid "Data source of the current document is not registered. Please exchange database."
+msgstr ""
+
+#. QcsgV
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:202
+msgctxt "mmselectpage|extended_tip|exchangedatabase"
+msgid "Exchange Database..."
msgstr ""
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr ""
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:235
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
@@ -20870,391 +20888,391 @@ msgid "New User Index"
msgstr ""
#. pyNZP
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3145
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3173
msgctxt "WriterNotebookbar|FileMenuButton"
msgid "_File"
msgstr ""
#. uFrkV
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3164
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3192
msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
#. QC5EA
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3219
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3247
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4526
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4554
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4642
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5794
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5822
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5902
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5930
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6996
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7024
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7082
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7110
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7813
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7841
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7898
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7926
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8835
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8863
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8921
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8949
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9791
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9819
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9877
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9905
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11085
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11142
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11170
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12317
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12435
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12416
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12534
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13780
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13898
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13890
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14008
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14785
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14903
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14871
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14989
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15677
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15795
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15784
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15902
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16229
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16347
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16312
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16430
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17265
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17232
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17350
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17289
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17407
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17481
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18343
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18461
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18428
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18546
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
#. guA3a
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3112
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3140
msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
#. PU9ct
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3161
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3189
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
#. McDEQ
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4705
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4733
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
#. MSVBh
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4757
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4785
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
#. zveKA
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5851
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5879
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. CDXv3
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5906
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5934
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
#. a5p4d
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6704
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6732
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
#. TbQMa
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6756
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6784
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
#. R5zY7
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7521
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7549
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
#. iEmZn
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7572
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7600
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
#. jYD7j
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8412
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8440
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. Lbj5B
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8464
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8492
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
#. 35kA2
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9146
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9174
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
#. ZGh8C
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9198
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9226
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
#. W5JNf
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10546
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10574
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
#. UBApt
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10598
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10626
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
#. fDEwj
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11979
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12007
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Im_age"
msgstr ""
#. ekWoX
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12032
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12060
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 8eQN8
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13460
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13488
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. FBf68
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13515
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13543
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. DoVwy
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14581
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14609
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
#. JXKiY
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14637
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14665
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
#. q8wnS
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15402
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15430
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
#. 7HDt3
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15458
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15486
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. vSDok
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16135
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
#. goiqQ
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16190
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
#. EBGs5
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:17619
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:17647
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. EKA8X
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:17674
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:17702
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. 8SvE5
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:17754
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:17782
msgctxt "notebookbar_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. WH5NR
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:17812
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:17840
msgctxt "notebookbar_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 8fhwb
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:18845
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:18873
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. kpc43
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:18897
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:18925
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/ab/vcl/messages.po b/source/ab/vcl/messages.po
index 5973432266c..65fe7067715 100644
--- a/source/ab/vcl/messages.po
+++ b/source/ab/vcl/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-04-06 14:47+0200\n"
+"POT-Creation-Date: 2021-04-27 17:04+0200\n"
"PO-Revision-Date: 2021-02-07 23:36+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/ab/>\n"
@@ -2066,374 +2066,374 @@ msgid "Prints the entire document."
msgstr "Иакьыԥхьуеит адокумент зегьы"
#. pYtbq
-#: vcl/uiconfig/ui/printdialog.ui:532
+#: vcl/uiconfig/ui/printdialog.ui:531
msgctxt "printdialog|rbPageRange"
msgid "_Pages:"
msgstr "Адаҟьақәа:"
#. azXfE
-#: vcl/uiconfig/ui/printdialog.ui:544
+#: vcl/uiconfig/ui/printdialog.ui:543
msgctxt "printdialog|extended_tip|rbRangePages"
msgid "Prints only the pages or slides that you specify in the Pages box."
msgstr ""
#. 786QC
-#: vcl/uiconfig/ui/printdialog.ui:559
+#: vcl/uiconfig/ui/printdialog.ui:558
msgctxt "printdialog|pagerange"
msgid "e.g.: 1, 3-5, 7, 9"
msgstr "аҿырԥштәы: 1, 3-5, 7, 9"
#. FTtLK
-#: vcl/uiconfig/ui/printdialog.ui:563
+#: vcl/uiconfig/ui/printdialog.ui:562
msgctxt "printdialog|extended_tip|pagerange"
msgid "To print a range of pages, use a format like 3-6. To print single pages, use a format like 7;9;11. You can print a combination of page ranges and single pages, by using a format like 3-6;8;10;12."
msgstr ""
#. Z5kiB
-#: vcl/uiconfig/ui/printdialog.ui:574
+#: vcl/uiconfig/ui/printdialog.ui:573
msgctxt "printdialog|rbRangeSelection"
msgid "_Selection"
msgstr "Иалкаау"
#. UKYwM
-#: vcl/uiconfig/ui/printdialog.ui:594
+#: vcl/uiconfig/ui/printdialog.ui:592
msgctxt "printdialog|includeevenodd"
msgid "Include:"
msgstr ""
#. XmeFL
-#: vcl/uiconfig/ui/printdialog.ui:611
+#: vcl/uiconfig/ui/printdialog.ui:609
msgctxt "printdialog|liststore3"
msgid "Odd and Even Pages"
msgstr "Адаҟьақәа зегьы"
#. 49y67
-#: vcl/uiconfig/ui/printdialog.ui:612
+#: vcl/uiconfig/ui/printdialog.ui:610
msgctxt "printdialog|liststore3"
msgid "Odd Pages"
msgstr "Еиҩымшо адаҟьақәа"
#. 6CkPE
-#: vcl/uiconfig/ui/printdialog.ui:613
+#: vcl/uiconfig/ui/printdialog.ui:611
msgctxt "printdialog|liststore3"
msgid "Even Pages"
msgstr "Еиҩшо адаҟьақәа"
#. wn2kB
-#: vcl/uiconfig/ui/printdialog.ui:643
+#: vcl/uiconfig/ui/printdialog.ui:641
msgctxt "printdialog|fromwhich"
msgid "_From which print:"
msgstr ""
#. Cuc2u
-#: vcl/uiconfig/ui/printdialog.ui:668
+#: vcl/uiconfig/ui/printdialog.ui:666
msgctxt "printdialog|labelpapersides"
msgid "Paper _sides:"
msgstr "Ақьаад аганқәа:"
#. SYxRJ
-#: vcl/uiconfig/ui/printdialog.ui:684
+#: vcl/uiconfig/ui/printdialog.ui:682
msgctxt "printdialog|liststore4"
msgid "Print on one side (simplex)"
msgstr ""
#. hCZPg
-#: vcl/uiconfig/ui/printdialog.ui:685
+#: vcl/uiconfig/ui/printdialog.ui:683
msgctxt "printdialog|liststore4"
msgid "Print on both sides (duplex long edge)"
msgstr ""
#. iqr9C
-#: vcl/uiconfig/ui/printdialog.ui:686
+#: vcl/uiconfig/ui/printdialog.ui:684
msgctxt "printdialog|liststore4"
msgid "Print on both sides (duplex short edge)"
msgstr ""
#. CKpgL
-#: vcl/uiconfig/ui/printdialog.ui:690
+#: vcl/uiconfig/ui/printdialog.ui:688
msgctxt "printdialog|extended_tip|sidesbox"
msgid "If the printer is capable of duplex printing it's possible to choose between using only one side of the paper or both."
msgstr ""
#. AVv6D
-#: vcl/uiconfig/ui/printdialog.ui:704
+#: vcl/uiconfig/ui/printdialog.ui:702
msgctxt "printdialog|labelcopies"
msgid "_Number of copies:"
msgstr "_Акопиақәа рыԥхьаӡа:"
#. NwD7S
-#: vcl/uiconfig/ui/printdialog.ui:727
+#: vcl/uiconfig/ui/printdialog.ui:725
msgctxt "printdialog|extended_tip|copycount"
msgid "Enter the number of copies that you want to print."
msgstr ""
#. BT4nY
-#: vcl/uiconfig/ui/printdialog.ui:741
+#: vcl/uiconfig/ui/printdialog.ui:739
msgctxt "printdialog|cbPrintOrder"
msgid "Order:"
msgstr ""
#. vwjVt
-#: vcl/uiconfig/ui/printdialog.ui:754
+#: vcl/uiconfig/ui/printdialog.ui:752
msgctxt "printdialog|reverseorder"
msgid "Print in _reverse order"
msgstr ""
#. svd2Q
-#: vcl/uiconfig/ui/printdialog.ui:763
+#: vcl/uiconfig/ui/printdialog.ui:761
msgctxt "printdialog|extended_tip|reverseorder"
msgid "Check to print pages in reverse order."
msgstr ""
#. G6QEr
-#: vcl/uiconfig/ui/printdialog.ui:780
+#: vcl/uiconfig/ui/printdialog.ui:778
msgctxt "printdialog|collate"
msgid "_Collate"
msgstr ""
#. kR6bA
-#: vcl/uiconfig/ui/printdialog.ui:788
+#: vcl/uiconfig/ui/printdialog.ui:786
msgctxt "printdialog|extended_tip|collate"
msgid "Preserves the page order of the original document."
msgstr ""
#. GZrpG
-#: vcl/uiconfig/ui/printdialog.ui:818
+#: vcl/uiconfig/ui/printdialog.ui:816
msgctxt "printdialog|singlejobs"
msgid "Create separate print jobs for collated output"
msgstr ""
#. X4Am9
-#: vcl/uiconfig/ui/printdialog.ui:826
+#: vcl/uiconfig/ui/printdialog.ui:824
msgctxt "printdialog|extended_tip|collate"
msgid "Check to not rely on the printer to create collated copies but create a print job for each copy instead."
msgstr ""
#. 2MdHu
-#: vcl/uiconfig/ui/printdialog.ui:847
+#: vcl/uiconfig/ui/printdialog.ui:845
msgctxt "printdialog|rangeexpander"
msgid "_More"
msgstr ""
#. ehfCG
-#: vcl/uiconfig/ui/printdialog.ui:863
+#: vcl/uiconfig/ui/printdialog.ui:861
msgctxt "printdialog|label2"
msgid "Range and Copies"
msgstr ""
#. CBLet
-#: vcl/uiconfig/ui/printdialog.ui:902
+#: vcl/uiconfig/ui/printdialog.ui:900
msgctxt "printdialog|labelorientation"
msgid "Orientation:"
msgstr ""
#. U4byk
-#: vcl/uiconfig/ui/printdialog.ui:917
+#: vcl/uiconfig/ui/printdialog.ui:915
msgctxt "printdialog|labelsize"
msgid "Paper size:"
msgstr ""
#. X9iBj
-#: vcl/uiconfig/ui/printdialog.ui:934
+#: vcl/uiconfig/ui/printdialog.ui:932
msgctxt "printdialog|liststore3"
msgid "Automatic"
msgstr "Автоматикала"
#. vaWZE
-#: vcl/uiconfig/ui/printdialog.ui:935
+#: vcl/uiconfig/ui/printdialog.ui:933
msgctxt "printdialog|liststore3"
msgid "Portrait"
msgstr "Ашәҟәытә"
#. Qnpje
-#: vcl/uiconfig/ui/printdialog.ui:936
+#: vcl/uiconfig/ui/printdialog.ui:934
msgctxt "printdialog|liststore3"
msgid "Landscape"
msgstr "Альбомтә"
#. PkAo9
-#: vcl/uiconfig/ui/printdialog.ui:940
+#: vcl/uiconfig/ui/printdialog.ui:938
msgctxt "printdialog|extended_tip|pageorientationbox"
msgid "Select the orientation of the paper."
msgstr ""
#. DSFv2
-#: vcl/uiconfig/ui/printdialog.ui:956
+#: vcl/uiconfig/ui/printdialog.ui:954
msgctxt "printdialog|extended_tip|papersizebox"
msgid "Set the paper size you would like to use. The preview will show how the document would look on a paper of the given size."
msgstr ""
#. EZdsx
-#: vcl/uiconfig/ui/printdialog.ui:991
+#: vcl/uiconfig/ui/printdialog.ui:989
msgctxt "printdialog|pagespersheetbtn"
msgid "Pages per sheet:"
msgstr ""
#. ok8Lw
-#: vcl/uiconfig/ui/printdialog.ui:1005
+#: vcl/uiconfig/ui/printdialog.ui:1003
msgctxt "printdialog|extended_tip|pagespersheetbtn"
msgid "Print multiple pages per sheet of paper."
msgstr ""
#. DKP5g
-#: vcl/uiconfig/ui/printdialog.ui:1046
+#: vcl/uiconfig/ui/printdialog.ui:1044
#, fuzzy
msgctxt "printdialog|liststore1"
msgid "Custom"
msgstr "Даҽакы:"
#. duVEo
-#: vcl/uiconfig/ui/printdialog.ui:1053
+#: vcl/uiconfig/ui/printdialog.ui:1051
msgctxt "printdialog|extended_tip|pagespersheetbox"
msgid "Select how many pages to print per sheet of paper."
msgstr ""
#. 65WWt
-#: vcl/uiconfig/ui/printdialog.ui:1066
+#: vcl/uiconfig/ui/printdialog.ui:1064
msgctxt "printdialog|pagespersheettxt"
msgid "Pages:"
msgstr ""
#. X8bjE
-#: vcl/uiconfig/ui/printdialog.ui:1086
+#: vcl/uiconfig/ui/printdialog.ui:1084
msgctxt "printdialog|extended_tip|pagerows"
msgid "Select number of rows."
msgstr ""
#. DM5aX
-#: vcl/uiconfig/ui/printdialog.ui:1098
+#: vcl/uiconfig/ui/printdialog.ui:1096
msgctxt "printdialog|by"
msgid "by"
msgstr ""
#. Z2EDz
-#: vcl/uiconfig/ui/printdialog.ui:1117
+#: vcl/uiconfig/ui/printdialog.ui:1115
msgctxt "printdialog|extended_tip|pagecols"
msgid "Select number of columns."
msgstr ""
#. szcD7
-#: vcl/uiconfig/ui/printdialog.ui:1129
+#: vcl/uiconfig/ui/printdialog.ui:1127
msgctxt "printdialog|pagemargintxt1"
msgid "Margin:"
msgstr ""
#. QxE58
-#: vcl/uiconfig/ui/printdialog.ui:1148
+#: vcl/uiconfig/ui/printdialog.ui:1146
msgctxt "printdialog|extended_tip|pagemarginsb"
msgid "Select margin between individual pages on each sheet of paper."
msgstr ""
#. iGg2m
-#: vcl/uiconfig/ui/printdialog.ui:1161
+#: vcl/uiconfig/ui/printdialog.ui:1159
msgctxt "printdialog|pagemargintxt2"
msgid "between pages"
msgstr "адаҟьақәа рыбжьара"
#. oryuw
-#: vcl/uiconfig/ui/printdialog.ui:1172
+#: vcl/uiconfig/ui/printdialog.ui:1170
msgctxt "printdialog|sheetmargintxt1"
msgid "Distance:"
msgstr ""
#. EDFnW
-#: vcl/uiconfig/ui/printdialog.ui:1191
+#: vcl/uiconfig/ui/printdialog.ui:1189
msgctxt "printdialog|extended_tip|sheetmarginsb"
msgid "Select margin between the printed pages and paper edge."
msgstr ""
#. XhfvB
-#: vcl/uiconfig/ui/printdialog.ui:1204
+#: vcl/uiconfig/ui/printdialog.ui:1202
msgctxt "printdialog|sheetmargintxt2"
msgid "to sheet border"
msgstr ""
#. AGWe3
-#: vcl/uiconfig/ui/printdialog.ui:1217
+#: vcl/uiconfig/ui/printdialog.ui:1215
msgctxt "printdialog|labelorder"
msgid "Order:"
msgstr ""
#. psAku
-#: vcl/uiconfig/ui/printdialog.ui:1234
+#: vcl/uiconfig/ui/printdialog.ui:1232
msgctxt "printdialog|liststore2"
msgid "Left to right, then down"
msgstr ""
#. fnfLt
-#: vcl/uiconfig/ui/printdialog.ui:1235
+#: vcl/uiconfig/ui/printdialog.ui:1233
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then right"
msgstr ""
#. y6nZE
-#: vcl/uiconfig/ui/printdialog.ui:1236
+#: vcl/uiconfig/ui/printdialog.ui:1234
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then left"
msgstr ""
#. PteTg
-#: vcl/uiconfig/ui/printdialog.ui:1237
+#: vcl/uiconfig/ui/printdialog.ui:1235
msgctxt "printdialog|liststore2"
msgid "Right to left, then down"
msgstr ""
#. DvF8r
-#: vcl/uiconfig/ui/printdialog.ui:1241
+#: vcl/uiconfig/ui/printdialog.ui:1239
msgctxt "printdialog|extended_tip|orderbox"
msgid "Select order in which pages are to be printed."
msgstr ""
#. QG59F
-#: vcl/uiconfig/ui/printdialog.ui:1253
+#: vcl/uiconfig/ui/printdialog.ui:1251
msgctxt "printdialog|bordercb"
msgid "Draw a border around each page"
msgstr ""
#. 8aAGu
-#: vcl/uiconfig/ui/printdialog.ui:1262
+#: vcl/uiconfig/ui/printdialog.ui:1260
msgctxt "printdialog|extended_tip|bordercb"
msgid "Check to draw a border around each page."
msgstr ""
#. Yo4xV
-#: vcl/uiconfig/ui/printdialog.ui:1274
+#: vcl/uiconfig/ui/printdialog.ui:1272
msgctxt "printdialog|brochure"
msgid "Brochure"
msgstr "Аброшиура"
#. JMA7A
-#: vcl/uiconfig/ui/printdialog.ui:1302
+#: vcl/uiconfig/ui/printdialog.ui:1300
msgctxt "printdialog|collationpreview"
msgid "Collation preview"
msgstr ""
#. dePkB
-#: vcl/uiconfig/ui/printdialog.ui:1307
+#: vcl/uiconfig/ui/printdialog.ui:1305
msgctxt "printdialog|extended_tip|orderpreview"
msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look."
msgstr ""
#. fCjdq
-#: vcl/uiconfig/ui/printdialog.ui:1329
+#: vcl/uiconfig/ui/printdialog.ui:1327
msgctxt "printdialog|layoutexpander"
msgid "M_ore"
msgstr ""
#. rCBA5
-#: vcl/uiconfig/ui/printdialog.ui:1345
+#: vcl/uiconfig/ui/printdialog.ui:1343
msgctxt "printdialog|label3"
msgid "Page Layout"
msgstr ""
#. A2iC5
-#: vcl/uiconfig/ui/printdialog.ui:1368
+#: vcl/uiconfig/ui/printdialog.ui:1366
msgctxt "printdialog|generallabel"
msgid "General"
msgstr ""
#. CzGM4
-#: vcl/uiconfig/ui/printdialog.ui:1420
+#: vcl/uiconfig/ui/printdialog.ui:1418
msgctxt "printdialog|extended_tip|PrintDialog"
msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document."
msgstr ""
diff --git a/source/af/chart2/messages.po b/source/af/chart2/messages.po
index c5f1f34bd91..2aaeb37ac5a 100644
--- a/source/af/chart2/messages.po
+++ b/source/af/chart2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:01+0200\n"
+"POT-Creation-Date: 2021-04-27 17:02+0200\n"
"PO-Revision-Date: 2021-02-24 20:36+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/chart2messages/af/>\n"
@@ -1388,217 +1388,217 @@ msgid "_Series name"
msgstr "_Reeksnaam"
#. 8bEui
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:268
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:267
msgctxt "dlg_DataLabel|extended_tip|CB_DATA_SERIES_NAME"
msgid "Shows the data series name in the label."
msgstr "Vertoon _datareeks naam"
#. mFeMA
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:289
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:288
msgctxt "dlg_DataLabel|label1"
msgid "Text Attributes"
msgstr "Teksattribute"
#. FDBQW
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:323
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:322
msgctxt "dlg_DataLabel|FT_LABEL_PLACEMENT"
msgid "Place_ment"
msgstr "_Plasing"
#. RBvRC
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:339
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:338
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Best fit"
msgstr "Beste passing"
#. CFGTS
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:340
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:339
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Center"
msgstr "Sentreer"
#. kxNDG
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:341
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:340
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Above"
msgstr "Bo"
#. dnhiD
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:342
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:341
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Top left"
msgstr "Bo links"
#. TGuEk
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:343
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:342
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Left"
msgstr "Links"
#. eUxTR
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:344
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:343
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Bottom left"
msgstr "Onder links"
#. CGQj7
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:345
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:344
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Below"
msgstr "Onder"
#. UJ7uQ
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:346
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:345
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Bottom right"
msgstr "Onder regs"
#. nEFuG
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:347
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:346
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Right"
msgstr "Regs"
#. NQCGE
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:348
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:347
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Top right"
msgstr "Bo regs"
#. UagUt
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:349
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:348
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Inside"
msgstr "Binne"
#. y25DL
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:350
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:349
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Outside"
msgstr "Buite"
#. 3HjyB
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:351
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:350
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Near origin"
msgstr "Naby oorsprong"
#. TMEug
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:355
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:354
msgctxt "dlg_DataLabel|extended_tip|LB_LABEL_PLACEMENT"
msgid "Selects the placement of data labels relative to the objects."
msgstr "Kies die plasing van die dataetikette relatief tot die voorwerpe."
#. NvbuM
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:368
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:367
msgctxt "dlg_DataLabel|FT_TEXT_SEPARATOR"
msgid "_Separator"
msgstr "_Skeier"
#. m8qsr
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:384
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:383
msgctxt "dlg_DataLabel|liststoreSEPARATOR"
msgid "Space"
msgstr "Spasie"
#. d6M3S
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:385
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:384
msgctxt "dlg_DataLabel|liststoreSEPARATOR"
msgid "Comma"
msgstr "Komma"
#. HUBkD
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:386
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:385
msgctxt "dlg_DataLabel|liststoreSEPARATOR"
msgid "Semicolon"
msgstr "Kommapunt"
#. 3CaCX
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:387
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:386
msgctxt "dlg_DataLabel|liststoreSEPARATOR"
msgid "New line"
msgstr "Nuwe reël"
#. CAtwB
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:388
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:387
msgctxt "dlg_DataLabel|liststoreSEPARATOR"
msgid "Period"
msgstr "Punt"
#. 8Z3DJ
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:392
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:391
msgctxt "dlg_DataLabel|extended_tip|LB_TEXT_SEPARATOR"
msgid "Selects the separator between multiple text strings for the same object."
msgstr "Kies die skeidingssimbool tussen verskeie teksstringe vir dieselfde objek."
#. oEFpN
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:407
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:406
msgctxt "dlg_DataLabel|label1"
msgid "Attribute Options"
msgstr "Attribuut Opsies"
#. gE7CA
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:459
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:458
msgctxt "dlg_DataLabel|extended_tip|CT_DIAL"
msgid "Click in the dial to set the text orientation for the data labels."
msgstr "Klik op die wiel om die teksbelyning van die dataetikette in te stel."
#. MjCoG
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:480
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:479
msgctxt "dlg_DataLabel|extended_tip|NF_LABEL_DEGREES"
msgid "Enter the counterclockwise rotation angle for the data labels."
msgstr "Voer in die antikloksgewyse draaihoek vir data-etikette."
#. Jhjwb
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:494
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:493
msgctxt "dlg_DataLabel|FT_LABEL_DEGREES"
msgid "_Degrees"
msgstr "Gra_de"
#. vtVy2
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:519
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:518
msgctxt "dlg_DataLabel|FT_LABEL_TEXTDIR"
msgid "Te_xt direction"
msgstr "Teks_rigting"
#. tjcHp
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:536
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:535
msgctxt "dlg_DataLabel|extended_tip|LB_LABEL_TEXTDIR"
msgid "Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled."
msgstr "Spesifiseer die teksvloei vir paragrawe wat die komplekse teksuitleg (CTL) gebruik. Hierdie funksie is slegs beskikbaar as CTL-ondersteuning geaktiveer is."
#. xpAEz
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:559
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:558
msgctxt "dlg_DataLabel|label2"
msgid "Rotate Text"
msgstr "Draai teks"
#. NpD8D
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:588
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:587
msgctxt "dlg_DataLabel|CB_CUSTOM_LEADER_LINES"
msgid "_Connect displaced data labels to data points"
msgstr "Verbind verplaasde data-etikette met data-punte"
#. MJdmK
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:596
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:595
msgctxt "dlg_DataLabel|extended_tip|CB_CUSTOM_LEADER_LINES"
msgid "Draws a line connecting the data labels to the data points"
msgstr "Teken 'n lyn wat die data etikette verbind met die data punte"
#. UKVF9
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:612
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:611
msgctxt "dlg_DataLabel|label3"
msgid "Leader Lines"
msgstr "Riglyne"
#. 2cE35
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:642
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:641
msgctxt "dlg_DataLabel|extended_tip|dlg_DataLabel"
msgid "Opens the Data Labels dialog, which enables you to set the data labels."
msgstr "Open die Data-etikette dialoog, waarmee u die data-etikette kan instel."
#. bt7D7
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:661
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:660
msgctxt "dlg_DataLabel|extended_tip|dlg_DataLabels"
msgid "Opens the Data Labels dialog, which enables you to set the data labels."
msgstr "Open die dialoog vir die etikettering van data waarin u die voorkoms van die data-etiket kan definieer."
@@ -3704,211 +3704,211 @@ msgid "_Series name"
msgstr "_Reeksnaam"
#. 3tWYv
-#: chart2/uiconfig/ui/tp_DataLabel.ui:200
+#: chart2/uiconfig/ui/tp_DataLabel.ui:199
msgctxt "tp_DataLabel|extended_tip|CB_DATA_SERIES_NAME"
msgid "Shows the data series name in the label."
msgstr "Vertoon datareeks naam in die etiket"
#. 3BZrx
-#: chart2/uiconfig/ui/tp_DataLabel.ui:221
+#: chart2/uiconfig/ui/tp_DataLabel.ui:220
msgctxt "tp_DataLabel|label1"
msgid "Text Attributes"
msgstr "Teksattribute"
#. 2MNGz
-#: chart2/uiconfig/ui/tp_DataLabel.ui:255
+#: chart2/uiconfig/ui/tp_DataLabel.ui:254
msgctxt "tp_DataLabel|FT_LABEL_PLACEMENT"
msgid "Place_ment"
msgstr "_Plasing"
#. L2MYb
-#: chart2/uiconfig/ui/tp_DataLabel.ui:271
+#: chart2/uiconfig/ui/tp_DataLabel.ui:270
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Best fit"
msgstr "Beste passing"
#. ba7eW
-#: chart2/uiconfig/ui/tp_DataLabel.ui:272
+#: chart2/uiconfig/ui/tp_DataLabel.ui:271
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Center"
msgstr "Middel"
#. nW5vs
-#: chart2/uiconfig/ui/tp_DataLabel.ui:273
+#: chart2/uiconfig/ui/tp_DataLabel.ui:272
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Above"
msgstr "Bo"
#. gW9Aa
-#: chart2/uiconfig/ui/tp_DataLabel.ui:274
+#: chart2/uiconfig/ui/tp_DataLabel.ui:273
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Top left"
msgstr "Bo links"
#. UQBcJ
-#: chart2/uiconfig/ui/tp_DataLabel.ui:275
+#: chart2/uiconfig/ui/tp_DataLabel.ui:274
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Left"
msgstr "Links"
#. CVw6x
-#: chart2/uiconfig/ui/tp_DataLabel.ui:276
+#: chart2/uiconfig/ui/tp_DataLabel.ui:275
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Bottom left"
msgstr "Onder links"
#. EF7Qb
-#: chart2/uiconfig/ui/tp_DataLabel.ui:277
+#: chart2/uiconfig/ui/tp_DataLabel.ui:276
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Below"
msgstr "Onder"
#. bdAYf
-#: chart2/uiconfig/ui/tp_DataLabel.ui:278
+#: chart2/uiconfig/ui/tp_DataLabel.ui:277
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Bottom right"
msgstr "Onder regs"
#. kHGEs
-#: chart2/uiconfig/ui/tp_DataLabel.ui:279
+#: chart2/uiconfig/ui/tp_DataLabel.ui:278
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Right"
msgstr "Regs"
#. GFkmP
-#: chart2/uiconfig/ui/tp_DataLabel.ui:280
+#: chart2/uiconfig/ui/tp_DataLabel.ui:279
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Top right"
msgstr "Bo regs"
#. KFZhx
-#: chart2/uiconfig/ui/tp_DataLabel.ui:281
+#: chart2/uiconfig/ui/tp_DataLabel.ui:280
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Inside"
msgstr "Binne"
#. BJm6w
-#: chart2/uiconfig/ui/tp_DataLabel.ui:282
+#: chart2/uiconfig/ui/tp_DataLabel.ui:281
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Outside"
msgstr "Buite"
#. XGkMi
-#: chart2/uiconfig/ui/tp_DataLabel.ui:283
+#: chart2/uiconfig/ui/tp_DataLabel.ui:282
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Near origin"
msgstr "Naby oorsprong"
#. vq2Bf
-#: chart2/uiconfig/ui/tp_DataLabel.ui:287
+#: chart2/uiconfig/ui/tp_DataLabel.ui:286
msgctxt "tp_DataLabel|extended_tip|LB_LABEL_PLACEMENT"
msgid "Selects the placement of data labels relative to the objects."
msgstr "Kies die plasing van die datatikette relatief tot die voorwerpe."
#. GqA8C
-#: chart2/uiconfig/ui/tp_DataLabel.ui:300
+#: chart2/uiconfig/ui/tp_DataLabel.ui:299
msgctxt "tp_DataLabel|FT_TEXT_SEPARATOR"
msgid "_Separator"
msgstr "_Skeier"
#. oPhGH
-#: chart2/uiconfig/ui/tp_DataLabel.ui:316
+#: chart2/uiconfig/ui/tp_DataLabel.ui:315
msgctxt "tp_DataLabel|liststoreSEPARATOR"
msgid "Space"
msgstr "Spasie"
#. fR4fG
-#: chart2/uiconfig/ui/tp_DataLabel.ui:317
+#: chart2/uiconfig/ui/tp_DataLabel.ui:316
msgctxt "tp_DataLabel|liststoreSEPARATOR"
msgid "Comma"
msgstr "Komma"
#. 5baF4
-#: chart2/uiconfig/ui/tp_DataLabel.ui:318
+#: chart2/uiconfig/ui/tp_DataLabel.ui:317
msgctxt "tp_DataLabel|liststoreSEPARATOR"
msgid "Semicolon"
msgstr "Kommapunt"
#. 8MGkQ
-#: chart2/uiconfig/ui/tp_DataLabel.ui:319
+#: chart2/uiconfig/ui/tp_DataLabel.ui:318
msgctxt "tp_DataLabel|liststoreSEPARATOR"
msgid "New line"
msgstr "Nuwe reël"
#. bpmiF
-#: chart2/uiconfig/ui/tp_DataLabel.ui:320
+#: chart2/uiconfig/ui/tp_DataLabel.ui:319
msgctxt "tp_DataLabel|liststoreSEPARATOR"
msgid "Period"
msgstr "Punt"
#. jjR8u
-#: chart2/uiconfig/ui/tp_DataLabel.ui:324
+#: chart2/uiconfig/ui/tp_DataLabel.ui:323
msgctxt "tp_DataLabel|extended_tip|LB_TEXT_SEPARATOR"
msgid "Selects the separator between multiple text strings for the same object."
msgstr "Kies die skeidingssimbool tussen verskeie teksstringe vir dieselfde objek."
#. mFEKm
-#: chart2/uiconfig/ui/tp_DataLabel.ui:339
+#: chart2/uiconfig/ui/tp_DataLabel.ui:338
msgctxt "tp_DataLabel|label1"
msgid "Attribute Options"
msgstr "Attribuut Opsies"
#. avLCL
-#: chart2/uiconfig/ui/tp_DataLabel.ui:391
+#: chart2/uiconfig/ui/tp_DataLabel.ui:390
msgctxt "tp_DataLabel|extended_tip|CT_DIAL"
msgid "Click in the dial to set the text orientation for the data labels."
msgstr "Kliek in die draaiskyf vir die bepaling van die teks oriëntasie vir data etikette."
#. eKwUH
-#: chart2/uiconfig/ui/tp_DataLabel.ui:412
+#: chart2/uiconfig/ui/tp_DataLabel.ui:411
msgctxt "tp_DataLabel|extended_tip|NF_LABEL_DEGREES"
msgid "Enter the counterclockwise rotation angle for the data labels."
msgstr "Voer in die antikloksgewyse draaihoek vir data-etikette."
#. VArif
-#: chart2/uiconfig/ui/tp_DataLabel.ui:426
+#: chart2/uiconfig/ui/tp_DataLabel.ui:425
msgctxt "tp_DataLabel|FT_LABEL_DEGREES"
msgid "_Degrees"
msgstr "Gra_de"
#. zdP7E
-#: chart2/uiconfig/ui/tp_DataLabel.ui:451
+#: chart2/uiconfig/ui/tp_DataLabel.ui:450
msgctxt "tp_DataLabel|FT_LABEL_TEXTDIR"
msgid "Te_xt direction"
msgstr "Teks_rigting"
#. MYXZo
-#: chart2/uiconfig/ui/tp_DataLabel.ui:468
+#: chart2/uiconfig/ui/tp_DataLabel.ui:467
msgctxt "tp_DataLabel|extended_tip|LB_LABEL_TEXTDIR"
msgid "Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled."
msgstr "Spesifiseer die teksvloei vir paragrawe wat die komplekse teksuitleg (CTL) gebruik. Hierdie funksie is slegs beskikbaar as CTL-ondersteuning geaktiveer is."
#. PKnKk
-#: chart2/uiconfig/ui/tp_DataLabel.ui:491
+#: chart2/uiconfig/ui/tp_DataLabel.ui:490
msgctxt "tp_DataLabel|label2"
msgid "Rotate Text"
msgstr "Draai teks"
#. wBzcx
-#: chart2/uiconfig/ui/tp_DataLabel.ui:520
+#: chart2/uiconfig/ui/tp_DataLabel.ui:519
msgctxt "tp_DataLabel|CB_CUSTOM_LEADER_LINES"
msgid "_Connect displaced data labels to data points"
msgstr "_Verbind verplaasde data-etikette met data-punte"
#. BXobT
-#: chart2/uiconfig/ui/tp_DataLabel.ui:528
+#: chart2/uiconfig/ui/tp_DataLabel.ui:527
msgctxt "tp_DataLabel|extended_tip|CB_CUSTOM_LEADER_LINES"
msgid "Draws a line connecting the data labels to the data points"
msgstr "Teken 'n lyn wat die data etikette verbind met die data punte"
#. MBFBB
-#: chart2/uiconfig/ui/tp_DataLabel.ui:544
+#: chart2/uiconfig/ui/tp_DataLabel.ui:543
msgctxt "tp_DataLabel|label3"
msgid "Leader Lines"
msgstr "Riglyne"
#. iDheE
-#: chart2/uiconfig/ui/tp_DataLabel.ui:574
+#: chart2/uiconfig/ui/tp_DataLabel.ui:573
msgctxt "tp_DataLabel|extended_tip|tp_DataLabel"
msgid "Opens the Data Labels dialog, which enables you to set the data labels."
msgstr "Open die data-etikettering -dialoog waarin u die formaat van die data-etiket kan definieer."
diff --git a/source/af/cui/messages.po b/source/af/cui/messages.po
index 870d4997cc9..c58bbd6122d 100644
--- a/source/af/cui/messages.po
+++ b/source/af/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: 2021-04-12 12:05+0200\n"
-"PO-Revision-Date: 2021-04-07 14:15+0000\n"
+"POT-Creation-Date: 2021-04-27 17:02+0200\n"
+"PO-Revision-Date: 2021-04-28 11:49+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/af/>\n"
"Language: af\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: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1560976497.000000\n"
#. GyY9M
@@ -402,870 +402,900 @@ msgctxt "RID_SVXSTR_RENAME_TOOLBAR"
msgid "Rename Toolbar"
msgstr "Hernoem nutsbalk"
-#. GN45E
+#. GsaZE
+#: cui/inc/strings.hrc:70
+msgctxt "RID_SVXSTR_ALL_COMMANDS"
+msgid "All Commands"
+msgstr "Alle Opdragte"
+
+#. A7cUy
#: cui/inc/strings.hrc:71
+msgctxt "RID_SVXSTR_TABBED"
+msgid "Tabbed"
+msgstr "Oortjieblad"
+
+#. xqrfE
+#: cui/inc/strings.hrc:72
+msgctxt "RID_SVXSTR_TABBED_COMPACT"
+msgid "Tabbed Compact"
+msgstr "Kompakte Oortjieblad"
+
+#. fLLH2
+#: cui/inc/strings.hrc:73
+msgctxt "RID_SVXSTR_GROUPEDBAR"
+msgid "Groupedbar"
+msgstr "Groep werksbalk"
+
+#. AnFxX
+#: cui/inc/strings.hrc:74
+msgctxt "RID_SVXSTR_GROUPEDBAR_COMPACT"
+msgid "Groupedbar Compact"
+msgstr "Kompakte Werksbalk"
+
+#. GN45E
+#: cui/inc/strings.hrc:76
msgctxt "RID_SVXSTR_HYPDLG_CLOSEBUT"
msgid "Close"
msgstr "Sluit"
#. dkH9d
-#: cui/inc/strings.hrc:72
+#: cui/inc/strings.hrc:77
msgctxt "RID_SVXSTR_HYPDLG_MACROACT1"
msgid "Mouse over object"
msgstr "Muis oor objek"
#. 4QYHe
-#: cui/inc/strings.hrc:73
+#: cui/inc/strings.hrc:78
msgctxt "RID_SVXSTR_HYPDLG_MACROACT2"
msgid "Trigger hyperlink"
msgstr "Aktiveer hiperskakel"
#. WMQPj
-#: cui/inc/strings.hrc:74
+#: cui/inc/strings.hrc:79
msgctxt "RID_SVXSTR_HYPDLG_MACROACT3"
msgid "Mouse leaves object"
msgstr "Muis verlaat objek"
#. E8XCn
-#: cui/inc/strings.hrc:75
+#: cui/inc/strings.hrc:80
msgctxt "RID_SVXSTR_HYPDLG_NOVALIDFILENAME"
msgid "Please type in a valid file name."
msgstr "Tik asseblief ’n geldige lêernaam in."
#. ES4Pj
-#: cui/inc/strings.hrc:76
+#: cui/inc/strings.hrc:81
msgctxt "RID_SVXSTR_HYPERDLG_FORM_BUTTON"
msgid "Button"
msgstr "Knoppie"
#. MPHHF
-#: cui/inc/strings.hrc:77
+#: cui/inc/strings.hrc:82
msgctxt "RID_SVXSTR_HYPERDLG_FROM_TEXT"
msgid "Text"
msgstr "Teks"
#. 9nkb2
-#: cui/inc/strings.hrc:78
+#: cui/inc/strings.hrc:83
msgctxt "RID_SVXSTR_HYPERDLG_QUERYOVERWRITE"
msgid "The file already exists. Overwrite?"
msgstr "Die lêer bestaan reeds. Oorheenskryf?"
#. smWax
-#: cui/inc/strings.hrc:80
+#: cui/inc/strings.hrc:85
msgctxt "RID_SVXSTR_SELECT_FILE_IFRAME"
msgid "Select File for Floating Frame"
msgstr "Kies lêer vir swewende raam"
#. F74rR
-#: cui/inc/strings.hrc:81
+#: cui/inc/strings.hrc:86
msgctxt "RID_SVXSTR_ALLFUNCTIONS"
msgid "All commands"
msgstr "Alle opdragte"
#. EeB6i
-#: cui/inc/strings.hrc:82
+#: cui/inc/strings.hrc:87
msgctxt "RID_SVXSTR_MACROS"
msgid "Macros"
msgstr "Makro’s"
#. mkEjQ
-#: cui/inc/strings.hrc:83
+#: cui/inc/strings.hrc:88
msgctxt "RID_SVXSTR_MYMACROS"
msgid "My Macros"
msgstr "My makro’s"
#. Cv5m8
-#: cui/inc/strings.hrc:84
+#: cui/inc/strings.hrc:89
msgctxt "RID_SVXSTR_PRODMACROS"
msgid "%PRODUCTNAME Macros"
msgstr "%PRODUCTNAME-makro’s"
#. RGCGW
-#: cui/inc/strings.hrc:85
+#: cui/inc/strings.hrc:90
msgctxt "RID_SVXSTR_NOMACRODESC"
msgid "There is no description available for this macro."
msgstr "Daar is geen beskrywing beskikbaar vir dié makro nie."
#. AFniE
-#: cui/inc/strings.hrc:86
+#: cui/inc/strings.hrc:91
msgctxt "RID_SVXSTR_SELECTOR_RUN"
msgid "Run"
msgstr "Laat loop"
#. whwAN
-#: cui/inc/strings.hrc:87
+#: cui/inc/strings.hrc:92
msgctxt "RID_SVXSTR_ROW"
msgid "Insert Rows"
msgstr "Voeg rye in"
#. Su38S
#. tdf#119293 Labels depending on row/col
-#: cui/inc/strings.hrc:89
+#: cui/inc/strings.hrc:94
msgctxt "RID_SVXSTR_INSERTROW_BEFORE"
msgid "Above selection"
msgstr "Bo seleksie"
#. oBHui
-#: cui/inc/strings.hrc:90
+#: cui/inc/strings.hrc:95
msgctxt "RID_SVXSTR_INSERTROW_AFTER"
msgid "Below selection"
msgstr "Onder seleksie"
#. c8nou
-#: cui/inc/strings.hrc:91
+#: cui/inc/strings.hrc:96
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr "Verwyder uit gunstelinge"
#. XpjRm
-#: cui/inc/strings.hrc:92
+#: cui/inc/strings.hrc:97
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr "Ontbrekende karakter"
#. 7tBGT
-#: cui/inc/strings.hrc:93
+#: cui/inc/strings.hrc:98
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr "Voeg by gunstelinge"
#. AvBBC
#. PPI is pixel per inch, %1 is a number
-#: cui/inc/strings.hrc:95
+#: cui/inc/strings.hrc:100
msgctxt "RID_SVXSTR_PPI"
msgid "(%1 PPI)"
msgstr "(%1 PPI)"
#. thimC
-#: cui/inc/strings.hrc:96
+#: cui/inc/strings.hrc:101
msgctxt "RID_SVXSTR_COL"
msgid "Insert Columns"
msgstr "Voeg kolomme in"
#. AgqiD
#. tdf#119293 Labels depending on row/col
-#: cui/inc/strings.hrc:98
+#: cui/inc/strings.hrc:103
msgctxt "RID_SVXSTR_INSERTCOL_BEFORE"
msgid "Before selection"
msgstr "Voor seleksie"
#. nXnb3
-#: cui/inc/strings.hrc:99
+#: cui/inc/strings.hrc:104
msgctxt "RID_SVXSTR_INSERTCOL_AFTER"
msgid "After selection"
msgstr "Ná seleksie"
#. QrFJZ
-#: cui/inc/strings.hrc:100
+#: cui/inc/strings.hrc:105
msgctxt "RID_SVXSTR_AUTO_ENTRY"
msgid "Automatic"
msgstr "Outomaties"
#. X9CWA
-#: cui/inc/strings.hrc:101
+#: cui/inc/strings.hrc:106
msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
msgid "Link"
msgstr "Skakel"
#. QCgnw
-#: cui/inc/strings.hrc:102
+#: cui/inc/strings.hrc:107
msgctxt "RID_SVXSTR_LOADACCELCONFIG"
msgid "Load Keyboard Configuration"
msgstr "Laai sleutelbordopstelling"
#. eWQoY
-#: cui/inc/strings.hrc:103
+#: cui/inc/strings.hrc:108
msgctxt "RID_SVXSTR_SAVEACCELCONFIG"
msgid "Save Keyboard Configuration"
msgstr "Stoor sleutelbordopstelling"
#. ggFZE
-#: cui/inc/strings.hrc:104
+#: cui/inc/strings.hrc:109
msgctxt "RID_SVXSTR_FILTERNAME_CFG"
msgid "Configuration (*.cfg)"
msgstr "Opstelling (*.cfg)"
#. DigQB
-#: cui/inc/strings.hrc:105
+#: cui/inc/strings.hrc:110
msgctxt "RID_SVXSTR_HYPDLG_ERR_LERR_NOENTRIES"
msgid "Targets do not exist in the document."
msgstr "Teikens bestaan nie in die dokument nie."
#. pCbRV
-#: cui/inc/strings.hrc:106
+#: cui/inc/strings.hrc:111
msgctxt "RID_SVXSTR_HYPDLG_ERR_LERR_DOCNOTOPEN"
msgid "Couldn't open the document."
msgstr "Kon nie die dokument open nie."
#. zAUfq
-#: cui/inc/strings.hrc:107
+#: cui/inc/strings.hrc:112
msgctxt "RID_SVXSTR_EDITHINT"
msgid "[Enter text here]"
msgstr "[Tik teks hier in]"
#. ResDx
-#: cui/inc/strings.hrc:108
+#: cui/inc/strings.hrc:113
msgctxt "RID_SVXSTR_HANGUL"
msgid "Hangul"
msgstr "Hangoel"
#. 3t3AC
-#: cui/inc/strings.hrc:109
+#: cui/inc/strings.hrc:114
msgctxt "RID_SVXSTR_HANJA"
msgid "Hanja"
msgstr "Handja"
#. 88dts
-#: cui/inc/strings.hrc:110
+#: cui/inc/strings.hrc:115
msgctxt "RID_SVXSTR_BASICMACROS"
msgid "BASIC Macros"
msgstr "BASIC-makro’s"
#. XKYHn
-#: cui/inc/strings.hrc:111
+#: cui/inc/strings.hrc:116
msgctxt "RID_SVXSTR_GROUP_STYLES"
msgid "Styles"
msgstr "Style"
#. hFEBv
-#: cui/inc/strings.hrc:113
+#: cui/inc/strings.hrc:118
msgctxt "RID_SVXSTR_EVENT_STARTAPP"
msgid "Start Application"
msgstr "Begin toepassing"
#. 6tUvx
-#: cui/inc/strings.hrc:114
+#: cui/inc/strings.hrc:119
msgctxt "RID_SVXSTR_EVENT_CLOSEAPP"
msgid "Close Application"
msgstr "Sluit toepassing"
#. 6NsQz
-#: cui/inc/strings.hrc:115
+#: cui/inc/strings.hrc:120
msgctxt "RID_SVXSTR_EVENT_NEWDOC"
msgid "New Document"
msgstr "Nuwe dokument"
#. G6b2e
-#: cui/inc/strings.hrc:116
+#: cui/inc/strings.hrc:121
msgctxt "RID_SVXSTR_EVENT_CLOSEDOC"
msgid "Document closed"
msgstr "Dokument gesluit"
#. yvsTa
-#: cui/inc/strings.hrc:117
+#: cui/inc/strings.hrc:122
msgctxt "RID_SVXSTR_EVENT_PREPARECLOSEDOC"
msgid "Document is going to be closed"
msgstr "Dokument gaan gesluit word"
#. DKpfj
-#: cui/inc/strings.hrc:118
+#: cui/inc/strings.hrc:123
msgctxt "RID_SVXSTR_EVENT_OPENDOC"
msgid "Open Document"
msgstr "Open dokument"
#. DTDDm
-#: cui/inc/strings.hrc:119
+#: cui/inc/strings.hrc:124
msgctxt "RID_SVXSTR_EVENT_SAVEDOC"
msgid "Save Document"
msgstr "Stoor dokument"
#. Trc82
-#: cui/inc/strings.hrc:120
+#: cui/inc/strings.hrc:125
msgctxt "RID_SVXSTR_EVENT_SAVEASDOC"
msgid "Save Document As"
msgstr "Stoor dokument as"
#. GCbZt
-#: cui/inc/strings.hrc:121
+#: cui/inc/strings.hrc:126
msgctxt "RID_SVXSTR_EVENT_SAVEDOCDONE"
msgid "Document has been saved"
msgstr "Dokument is gestoor"
#. mYtMa
-#: cui/inc/strings.hrc:122
+#: cui/inc/strings.hrc:127
msgctxt "RID_SVXSTR_EVENT_SAVEASDOCDONE"
msgid "Document has been saved as"
msgstr "Dokument is gestoor as"
#. t8F8W
-#: cui/inc/strings.hrc:123
+#: cui/inc/strings.hrc:128
msgctxt "RID_SVXSTR_EVENT_ACTIVATEDOC"
msgid "Activate Document"
msgstr "Aktiveer dokument"
#. T7QE3
-#: cui/inc/strings.hrc:124
+#: cui/inc/strings.hrc:129
msgctxt "RID_SVXSTR_EVENT_DEACTIVATEDOC"
msgid "Deactivate Document"
msgstr "Deaktiveer dokument"
#. AQXyC
-#: cui/inc/strings.hrc:125
+#: cui/inc/strings.hrc:130
msgctxt "RID_SVXSTR_EVENT_PRINTDOC"
msgid "Print Document"
msgstr "Druk dokument"
#. 8uXuz
-#: cui/inc/strings.hrc:126
+#: cui/inc/strings.hrc:131
msgctxt "RID_SVXSTR_EVENT_MODIFYCHANGED"
msgid "'Modified' status was changed"
msgstr "“Gewysig”-status is verander"
#. 5CKDG
-#: cui/inc/strings.hrc:127
+#: cui/inc/strings.hrc:132
msgctxt "RID_SVXSTR_EVENT_MAILMERGE"
msgid "Printing of form letters started"
msgstr "Druk van vormletters begin"
#. AZ2io
-#: cui/inc/strings.hrc:128
+#: cui/inc/strings.hrc:133
msgctxt "RID_SVXSTR_EVENT_MAILMERGE_END"
msgid "Printing of form letters finished"
msgstr "Druk van vormvelde klaar"
#. dHtbz
-#: cui/inc/strings.hrc:129
+#: cui/inc/strings.hrc:134
msgctxt "RID_SVXSTR_EVENT_FIELDMERGE"
msgid "Merging of form fields started"
msgstr "Saamvoeg van vormvelde begin"
#. uGCdD
-#: cui/inc/strings.hrc:130
+#: cui/inc/strings.hrc:135
msgctxt "RID_SVXSTR_EVENT_FIELDMERGE_FINISHED"
msgid "Merging of form fields finished"
msgstr "Saamvoeg van vormvelde klaar"
#. srLLa
-#: cui/inc/strings.hrc:131
+#: cui/inc/strings.hrc:136
msgctxt "RID_SVXSTR_EVENT_PAGECOUNTCHANGE"
msgid "Changing the page count"
msgstr "Verander bladsytelling"
#. AsuQF
-#: cui/inc/strings.hrc:132
+#: cui/inc/strings.hrc:137
msgctxt "RID_SVXSTR_EVENT_SUBCOMPONENT_OPENED"
msgid "Loaded a sub component"
msgstr "’n Subkomponent is gelaai"
#. Gf22f
-#: cui/inc/strings.hrc:133
+#: cui/inc/strings.hrc:138
msgctxt "RID_SVXSTR_EVENT_SUBCOMPONENT_CLOSED"
msgid "Closed a sub component"
msgstr "’n Subkomponent is gesluit"
#. QayEb
-#: cui/inc/strings.hrc:134
+#: cui/inc/strings.hrc:139
msgctxt "RID_SVXSTR_EVENT_APPROVEPARAMETER"
msgid "Fill parameters"
msgstr "Vul parameters in"
#. mL59X
-#: cui/inc/strings.hrc:135
+#: cui/inc/strings.hrc:140
msgctxt "RID_SVXSTR_EVENT_ACTIONPERFORMED"
msgid "Execute action"
msgstr "Voer aksie uit"
#. KtHBE
-#: cui/inc/strings.hrc:136
+#: cui/inc/strings.hrc:141
msgctxt "RID_SVXSTR_EVENT_AFTERUPDATE"
msgid "After updating"
msgstr "Na bywerking"
#. b6CCj
-#: cui/inc/strings.hrc:137
+#: cui/inc/strings.hrc:142
msgctxt "RID_SVXSTR_EVENT_BEFOREUPDATE"
msgid "Before updating"
msgstr "Voor bywerking"
#. KTBcp
-#: cui/inc/strings.hrc:138
+#: cui/inc/strings.hrc:143
msgctxt "RID_SVXSTR_EVENT_APPROVEROWCHANGE"
msgid "Before record action"
msgstr "Voor opneemaksie"
#. Fhyio
-#: cui/inc/strings.hrc:139
+#: cui/inc/strings.hrc:144
msgctxt "RID_SVXSTR_EVENT_ROWCHANGE"
msgid "After record action"
msgstr "Na opneemaksie"
#. PmJgM
-#: cui/inc/strings.hrc:140
+#: cui/inc/strings.hrc:145
msgctxt "RID_SVXSTR_EVENT_CONFIRMDELETE"
msgid "Confirm deletion"
msgstr "Bevestig skrapping"
#. gcREA
-#: cui/inc/strings.hrc:141
+#: cui/inc/strings.hrc:146
msgctxt "RID_SVXSTR_EVENT_ERROROCCURRED"
msgid "Error occurred"
msgstr "Fout het voorgekom"
#. oAwDt
-#: cui/inc/strings.hrc:142
+#: cui/inc/strings.hrc:147
msgctxt "RID_SVXSTR_EVENT_ADJUSTMENTVALUECHANGED"
msgid "While adjusting"
msgstr "Tydens aanpassing"
#. AyfwP
-#: cui/inc/strings.hrc:143
+#: cui/inc/strings.hrc:148
msgctxt "RID_SVXSTR_EVENT_FOCUSGAINED"
msgid "When receiving focus"
msgstr "Tydens fokusontvangs"
#. BD96B
-#: cui/inc/strings.hrc:144
+#: cui/inc/strings.hrc:149
msgctxt "RID_SVXSTR_EVENT_FOCUSLOST"
msgid "When losing focus"
msgstr "Tydens fokusverlies"
#. wEhfE
-#: cui/inc/strings.hrc:145
+#: cui/inc/strings.hrc:150
msgctxt "RID_SVXSTR_EVENT_ITEMSTATECHANGED"
msgid "Item status changed"
msgstr "Itemstatus het verander"
#. FRW7b
-#: cui/inc/strings.hrc:146
+#: cui/inc/strings.hrc:151
msgctxt "RID_SVXSTR_EVENT_KEYTYPED"
msgid "Key pressed"
msgstr "Sleutel gedruk"
#. 4kZCD
-#: cui/inc/strings.hrc:147
+#: cui/inc/strings.hrc:152
msgctxt "RID_SVXSTR_EVENT_KEYUP"
msgid "Key released"
msgstr "Sleutel laat los"
#. ZiS2D
-#: cui/inc/strings.hrc:148
+#: cui/inc/strings.hrc:153
msgctxt "RID_SVXSTR_EVENT_LOADED"
msgid "When loading"
msgstr "Tydens laai"
#. vEjAG
-#: cui/inc/strings.hrc:149
+#: cui/inc/strings.hrc:154
msgctxt "RID_SVXSTR_EVENT_RELOADING"
msgid "Before reloading"
msgstr "Voor herlaai"
#. 5FvrE
-#: cui/inc/strings.hrc:150
+#: cui/inc/strings.hrc:155
msgctxt "RID_SVXSTR_EVENT_RELOADED"
msgid "When reloading"
msgstr "Tydens herlaai"
#. CDcYt
-#: cui/inc/strings.hrc:151
+#: cui/inc/strings.hrc:156
msgctxt "RID_SVXSTR_EVENT_MOUSEDRAGGED"
msgid "Mouse moved while key pressed"
msgstr "Muis het beweeg toe sleutel gedruk is"
#. CPpyk
-#: cui/inc/strings.hrc:152
+#: cui/inc/strings.hrc:157
msgctxt "RID_SVXSTR_EVENT_MOUSEENTERED"
msgid "Mouse inside"
msgstr "Muis binne"
#. 4hGfp
-#: cui/inc/strings.hrc:153
+#: cui/inc/strings.hrc:158
msgctxt "RID_SVXSTR_EVENT_MOUSEEXITED"
msgid "Mouse outside"
msgstr "Muis buite"
#. QEuWr
-#: cui/inc/strings.hrc:154
+#: cui/inc/strings.hrc:159
msgctxt "RID_SVXSTR_EVENT_MOUSEMOVED"
msgid "Mouse moved"
msgstr "Muis het beweeg"
#. 8YA3S
-#: cui/inc/strings.hrc:155
+#: cui/inc/strings.hrc:160
msgctxt "RID_SVXSTR_EVENT_MOUSEPRESSED"
msgid "Mouse button pressed"
msgstr "Muisknoppie gedruk"
#. RMuJe
-#: cui/inc/strings.hrc:156
+#: cui/inc/strings.hrc:161
msgctxt "RID_SVXSTR_EVENT_MOUSERELEASED"
msgid "Mouse button released"
msgstr "Muisknoppie gelos"
#. 5iPHQ
-#: cui/inc/strings.hrc:157
+#: cui/inc/strings.hrc:162
msgctxt "RID_SVXSTR_EVENT_POSITIONING"
msgid "Before record change"
msgstr "Voor rekordverandering"
#. yrBiz
-#: cui/inc/strings.hrc:158
+#: cui/inc/strings.hrc:163
msgctxt "RID_SVXSTR_EVENT_POSITIONED"
msgid "After record change"
msgstr "Na rekordverandering"
#. bdBH4
-#: cui/inc/strings.hrc:159
+#: cui/inc/strings.hrc:164
msgctxt "RID_SVXSTR_EVENT_RESETTED"
msgid "After resetting"
msgstr "Na teruglaaiing"
#. eVsFk
-#: cui/inc/strings.hrc:160
+#: cui/inc/strings.hrc:165
msgctxt "RID_SVXSTR_EVENT_APPROVERESETTED"
msgid "Prior to reset"
msgstr "Voor terugstelling"
#. 2oAoV
-#: cui/inc/strings.hrc:161
+#: cui/inc/strings.hrc:166
msgctxt "RID_SVXSTR_EVENT_APPROVEACTIONPERFORMED"
msgid "Approve action"
msgstr "Keur aksie goed"
#. hQAzK
-#: cui/inc/strings.hrc:162
+#: cui/inc/strings.hrc:167
msgctxt "RID_SVXSTR_EVENT_SUBMITTED"
msgid "Before submitting"
msgstr "Voor indiening"
#. CFPSo
-#: cui/inc/strings.hrc:163
+#: cui/inc/strings.hrc:168
msgctxt "RID_SVXSTR_EVENT_TEXTCHANGED"
msgid "Text modified"
msgstr "Teks gewysig"
#. 2ADMH
-#: cui/inc/strings.hrc:164
+#: cui/inc/strings.hrc:169
msgctxt "RID_SVXSTR_EVENT_UNLOADING"
msgid "Before unloading"
msgstr "Voor ontlading"
#. F8BL3
-#: cui/inc/strings.hrc:165
+#: cui/inc/strings.hrc:170
msgctxt "RID_SVXSTR_EVENT_UNLOADED"
msgid "When unloading"
msgstr "Tydens ontlaaiing"
#. M6fPe
-#: cui/inc/strings.hrc:166
+#: cui/inc/strings.hrc:171
msgctxt "RID_SVXSTR_EVENT_CHANGED"
msgid "Changed"
msgstr "Het verander"
#. gZyVB
-#: cui/inc/strings.hrc:167
+#: cui/inc/strings.hrc:172
msgctxt "RID_SVXSTR_EVENT_CREATEDOC"
msgid "Document created"
msgstr "Dokument geskep"
#. BcPDW
-#: cui/inc/strings.hrc:168
+#: cui/inc/strings.hrc:173
msgctxt "RID_SVXSTR_EVENT_LOADDOCFINISHED"
msgid "Document loading finished"
msgstr "Dokument klaar gelaai"
#. ir7AQ
-#: cui/inc/strings.hrc:169
+#: cui/inc/strings.hrc:174
msgctxt "RID_SVXSTR_EVENT_SAVEDOCFAILED"
msgid "Saving of document failed"
msgstr "Kon nie dokument stoor nie"
#. BFtTF
-#: cui/inc/strings.hrc:170
+#: cui/inc/strings.hrc:175
msgctxt "RID_SVXSTR_EVENT_SAVEASDOCFAILED"
msgid "'Save as' has failed"
msgstr "“Stoor as” het misluk"
#. N9e6u
-#: cui/inc/strings.hrc:171
+#: cui/inc/strings.hrc:176
msgctxt "RID_SVXSTR_EVENT_COPYTODOC"
msgid "Storing or exporting copy of document"
msgstr "Stoor of voer kopie van dokument uit"
#. okb9H
-#: cui/inc/strings.hrc:172
+#: cui/inc/strings.hrc:177
msgctxt "RID_SVXSTR_EVENT_COPYTODOCDONE"
msgid "Document copy has been created"
msgstr "Dokumentkopie is geskep"
#. DrYTY
-#: cui/inc/strings.hrc:173
+#: cui/inc/strings.hrc:178
msgctxt "RID_SVXSTR_EVENT_COPYTODOCFAILED"
msgid "Creating of document copy failed"
msgstr "Skep van dokumentkopie het misluk"
#. BBJJQ
-#: cui/inc/strings.hrc:174
+#: cui/inc/strings.hrc:179
msgctxt "RID_SVXSTR_EVENT_VIEWCREATED"
msgid "View created"
msgstr "Aansig geskep"
#. XN9Az
-#: cui/inc/strings.hrc:175
+#: cui/inc/strings.hrc:180
msgctxt "RID_SVXSTR_EVENT_PREPARECLOSEVIEW"
msgid "View is going to be closed"
msgstr "Aansig gaan gesluit word"
#. a9qty
-#: cui/inc/strings.hrc:176
+#: cui/inc/strings.hrc:181
msgctxt "RID_SVXSTR_EVENT_CLOSEVIEW"
msgid "View closed"
msgstr "Aansig gesluit"
#. dDunN
-#: cui/inc/strings.hrc:177
+#: cui/inc/strings.hrc:182
msgctxt "RID_SVXSTR_EVENT_TITLECHANGED"
msgid "Document title changed"
msgstr "Dokumenttitel het verander"
#. 6D6BS
-#: cui/inc/strings.hrc:178
+#: cui/inc/strings.hrc:183
msgctxt "RID_SVXSTR_EVENT_SELECTIONCHANGED"
msgid "Selection changed"
msgstr "Seleksie het verander"
#. XArW3
-#: cui/inc/strings.hrc:179
+#: cui/inc/strings.hrc:184
msgctxt "RID_SVXSTR_EVENT_DOUBLECLICK"
msgid "Double click"
msgstr "Dubbelkliek"
#. oDkyz
-#: cui/inc/strings.hrc:180
+#: cui/inc/strings.hrc:185
msgctxt "RID_SVXSTR_EVENT_RIGHTCLICK"
msgid "Right click"
msgstr "Regs-klik"
#. tVSz9
-#: cui/inc/strings.hrc:181
+#: cui/inc/strings.hrc:186
msgctxt "RID_SVXSTR_EVENT_CALCULATE"
msgid "Formulas calculated"
msgstr "Formules is bereken"
#. ESxTQ
-#: cui/inc/strings.hrc:182
+#: cui/inc/strings.hrc:187
msgctxt "RID_SVXSTR_EVENT_CONTENTCHANGED"
msgid "Content changed"
msgstr "Inhoud het verander"
#. Zimeo
-#: cui/inc/strings.hrc:184
+#: cui/inc/strings.hrc:189
msgctxt "RID_STR_SEARCH_ANYWHERE"
msgid "anywhere in the field"
msgstr "enige plek in die veld"
#. qCKMY
-#: cui/inc/strings.hrc:185
+#: cui/inc/strings.hrc:190
msgctxt "RID_STR_SEARCH_BEGINNING"
msgid "beginning of field"
msgstr "begin van veld"
#. CKVTF
-#: cui/inc/strings.hrc:186
+#: cui/inc/strings.hrc:191
msgctxt "RID_STR_SEARCH_END"
msgid "end of field"
msgstr "einde van veld"
#. FZwxu
-#: cui/inc/strings.hrc:187
+#: cui/inc/strings.hrc:192
msgctxt "RID_STR_SEARCH_WHOLE"
msgid "entire field"
msgstr "hele veld"
#. AFUFs
-#: cui/inc/strings.hrc:188
+#: cui/inc/strings.hrc:193
msgctxt "RID_STR_FROM_TOP"
msgid "From top"
msgstr "Vanaf bo"
#. FBDbX
-#: cui/inc/strings.hrc:189
+#: cui/inc/strings.hrc:194
msgctxt "RID_STR_FROM_BOTTOM"
msgid "From bottom"
msgstr "Van onder"
#. brdgV
-#: cui/inc/strings.hrc:190
+#: cui/inc/strings.hrc:195
msgctxt "RID_STR_SEARCH_NORECORD"
msgid "No records corresponding to your data found."
msgstr "Geen rekords wat met u data ooreenstem is gevind nie."
#. VkTjA
-#: cui/inc/strings.hrc:191
+#: cui/inc/strings.hrc:196
msgctxt "RID_STR_SEARCH_GENERAL_ERROR"
msgid "An unknown error occurred. The search could not be finished."
msgstr "’n Onbekende fout het voorgekom. Die soektog kon nie beëindig word nie."
#. jiQdw
-#: cui/inc/strings.hrc:192
+#: cui/inc/strings.hrc:197
msgctxt "RID_STR_OVERFLOW_FORWARD"
msgid "Overflow, search continued at the beginning"
msgstr "Oorloop, soektog aan begin voortgesit"
#. EzK3y
-#: cui/inc/strings.hrc:193
+#: cui/inc/strings.hrc:198
msgctxt "RID_STR_OVERFLOW_BACKWARD"
msgid "Overflow, search continued at the end"
msgstr "Oorloop, soektog aan einde voortgesit"
#. zwiat
-#: cui/inc/strings.hrc:194
+#: cui/inc/strings.hrc:199
msgctxt "RID_STR_SEARCH_COUNTING"
msgid "counting records"
msgstr "besig om rekords te tel"
#. 7cVWa
-#: cui/inc/strings.hrc:196
+#: cui/inc/strings.hrc:201
msgctxt "RID_SVXSTR_GALLERY_NOFILES"
msgid "<No Files>"
msgstr "<Geen lêers>"
#. AnJUu
-#: cui/inc/strings.hrc:197
+#: cui/inc/strings.hrc:202
msgctxt "RID_SVXSTR_GALLERYPROPS_OBJECT"
msgid "Object;Objects"
msgstr "Objek;Objekte"
#. GQXSM
-#: cui/inc/strings.hrc:198
+#: cui/inc/strings.hrc:203
msgctxt "RID_SVXSTR_GALLERY_READONLY"
msgid "(read-only)"
msgstr "(leesalleen)"
#. sAwgA
-#: cui/inc/strings.hrc:199
+#: cui/inc/strings.hrc:204
msgctxt "RID_SVXSTR_GALLERY_ALLFILES"
msgid "<All Files>"
msgstr "<Alle lêers>"
#. YkCky
-#: cui/inc/strings.hrc:200
+#: cui/inc/strings.hrc:205
msgctxt "RID_SVXSTR_GALLERY_ID_EXISTS"
msgid "This ID already exists..."
msgstr "Hierdie ID bestaan reeds..."
#. w3AUk
-#: cui/inc/strings.hrc:202
+#: cui/inc/strings.hrc:207
msgctxt "RID_MULTIPATH_DBL_ERR"
msgid "The path %1 already exists."
msgstr "Die pad %1 bestaan reeds."
#. 54BsS
-#: cui/inc/strings.hrc:203
+#: cui/inc/strings.hrc:208
msgctxt "RID_SVXSTR_ARCHIVE_TITLE"
msgid "Select Archives"
msgstr "Kies argiewe"
#. NDB5V
-#: cui/inc/strings.hrc:204
+#: cui/inc/strings.hrc:209
msgctxt "RID_SVXSTR_ARCHIVE_HEADLINE"
msgid "Archives"
msgstr "Argiewe"
#. ffPAq
-#: cui/inc/strings.hrc:205
+#: cui/inc/strings.hrc:210
msgctxt "RID_SVXSTR_MULTIFILE_DBL_ERR"
msgid "The file %1 already exists."
msgstr "Die lêer %1 bestaan reeds."
#. 5FyxP
-#: cui/inc/strings.hrc:206
+#: cui/inc/strings.hrc:211
msgctxt "RID_SVXSTR_ADD_IMAGE"
msgid "Add Image"
msgstr "Voeg beeld by"
#. eUzGk
-#: cui/inc/strings.hrc:208
+#: cui/inc/strings.hrc:213
msgctxt "RID_SVXSTR_ONE_PASSWORD_MISMATCH"
msgid "The confirmation password did not match the password. Set the password again by entering the same password in both boxes."
msgstr "Die bevestigingswagwoord het nie ooreengestem met die wagwoord nie. Stel die wagwoord weer deur die selfde wagwoord in altwee boksies te tik."
#. mN9jE
-#: cui/inc/strings.hrc:209
+#: cui/inc/strings.hrc:214
msgctxt "RID_SVXSTR_TWO_PASSWORDS_MISMATCH"
msgid "The confirmation passwords did not match the original passwords. Set the passwords again."
msgstr "Die bevestigingswagwoorde het nie ooreenstem met die oorspronklike wagwoorde nie. Stel die wagwoorde weer in."
#. 48ez3
-#: cui/inc/strings.hrc:210
+#: cui/inc/strings.hrc:215
msgctxt "RID_SVXSTR_INVALID_STATE_FOR_OK_BUTTON"
msgid "Please enter a password to open or to modify, or check the open read-only option to continue."
msgstr "Tik ’n wagwoord om te open of te wysig, of merk die “Open leesaleen”-keuse op voort te gaan."
#. aAbAN
-#: cui/inc/strings.hrc:211
+#: cui/inc/strings.hrc:216
msgctxt "RID_SVXSTR_INVALID_STATE_FOR_OK_BUTTON_V2"
msgid "Set the password by entering the same password in both boxes."
msgstr "Stel die wagwoord deur die dieselfde wagwoord in altwee boksies te tik."
#. ZXcFw
-#: cui/inc/strings.hrc:212
+#: cui/inc/strings.hrc:217
msgctxt "RID_SVXSTR_PASSWORD_LEN_INDICATOR"
msgid "Password length limit of %1 reached"
msgstr "Maksimum wagwoord lengte van %1 is bereik"
#. Fko49
-#: cui/inc/strings.hrc:214
+#: cui/inc/strings.hrc:219
msgctxt "STR_AUTOLINK"
msgid "Automatic"
msgstr "Outomaties"
#. WYHFb
-#: cui/inc/strings.hrc:215
+#: cui/inc/strings.hrc:220
msgctxt "STR_MANUALLINK"
msgid "Manual"
msgstr "Handmatig"
#. PFN4j
-#: cui/inc/strings.hrc:216
+#: cui/inc/strings.hrc:221
msgctxt "STR_BROKENLINK"
msgid "Not available"
msgstr "Nie beskikbaar nie"
#. 5ymS3
-#: cui/inc/strings.hrc:217
+#: cui/inc/strings.hrc:222
msgctxt "STR_CLOSELINKMSG"
msgid "Are you sure you want to remove the selected link?"
msgstr "Is u seker u wil die geselekteerde skakel skrap?"
#. wyMwT
-#: cui/inc/strings.hrc:218
+#: cui/inc/strings.hrc:223
msgctxt "STR_CLOSELINKMSG_MULTI"
msgid "Are you sure you want to remove the selected link?"
msgstr "Is u seker u wil die geselekteerde skakel skrap?"
#. CN74h
-#: cui/inc/strings.hrc:219
+#: cui/inc/strings.hrc:224
msgctxt "STR_WAITINGLINK"
msgid "Waiting"
msgstr "Wagtend"
#. QJKgF
-#: cui/inc/strings.hrc:221
+#: cui/inc/strings.hrc:226
msgctxt "RID_SVXSTR_SAVE_SCREENSHOT_AS"
msgid "Save Screenshot As..."
msgstr "Stoor skermskoot as..."
#. CAaFf
#. $(ROW) can be a number or the caption of the row in quotes
-#: cui/inc/strings.hrc:224
+#: cui/inc/strings.hrc:229
msgctxt "RID_SVXSTR_DIAGRAM_ROW"
msgid "Data Series $(ROW)"
msgstr "Datareeks $(ROW)"
#. HzhXp
-#: cui/inc/strings.hrc:226
+#: cui/inc/strings.hrc:231
msgctxt "RID_SVXSTR_YES"
msgid "Yes"
msgstr "Ja"
#. RuQiB
-#: cui/inc/strings.hrc:227
+#: cui/inc/strings.hrc:232
msgctxt "RID_SVXSTR_NO"
msgid "No"
msgstr "Nee"
#. irLeD
-#: cui/inc/strings.hrc:229
+#: cui/inc/strings.hrc:234
msgctxt "STR_LINKEDDOC_DOESNOTEXIST"
msgid ""
"The file\n"
@@ -1277,7 +1307,7 @@ msgstr ""
"bestaan nie."
#. iQYnX
-#: cui/inc/strings.hrc:230
+#: cui/inc/strings.hrc:235
msgctxt "STR_LINKEDDOC_NO_SYSTEM_FILE"
msgid ""
"The file\n"
@@ -1289,7 +1319,7 @@ msgstr ""
"bestaan nie in die plaaslike lêerstelsel nie."
#. 4PaJ2
-#: cui/inc/strings.hrc:231
+#: cui/inc/strings.hrc:236
msgctxt "STR_NAME_CONFLICT"
msgid ""
"The name '$file$' is already used for another database.\n"
@@ -1299,163 +1329,163 @@ msgstr ""
"Kies asseblief ’n ander naam."
#. KFB7q
-#: cui/inc/strings.hrc:232
+#: cui/inc/strings.hrc:237
msgctxt "RID_SVXSTR_QUERY_DELETE_CONFIRM"
msgid "Do you want to delete the entry?"
msgstr "Wil u die woordeboek skrap?"
#. gg9gD
-#: cui/inc/strings.hrc:234
+#: cui/inc/strings.hrc:239
msgctxt "RID_SVXSTR_DELQUERY"
msgid "Do you want to delete the following object?"
msgstr "Wil u die volgende objek skrap?"
#. 42ivC
-#: cui/inc/strings.hrc:235
+#: cui/inc/strings.hrc:240
msgctxt "RID_SVXSTR_DELQUERY_TITLE"
msgid "Confirm Deletion"
msgstr "Bevestig skrapping"
#. kn5KE
-#: cui/inc/strings.hrc:236
+#: cui/inc/strings.hrc:241
msgctxt "RID_SVXSTR_DELFAILED"
msgid "The selected object could not be deleted."
msgstr "Die geselekteerde objek kon nie geskrap word nie."
#. T7T8x
-#: cui/inc/strings.hrc:237
+#: cui/inc/strings.hrc:242
msgctxt "RID_SVXSTR_DELFAILED_TITLE"
msgid "Error Deleting Object"
msgstr "Kon nie objek skrap nie"
#. SCgXy
-#: cui/inc/strings.hrc:238
+#: cui/inc/strings.hrc:243
msgctxt "RID_SVXSTR_CREATEFAILED"
msgid "The object could not be created."
msgstr "Die objek kon nie geskep word nie."
#. TmiCU
-#: cui/inc/strings.hrc:239
+#: cui/inc/strings.hrc:244
msgctxt "RID_SVXSTR_CREATEFAILEDDUP"
msgid " Object with the same name already exists."
msgstr " Objek met die selfde naam bestaan reeds."
#. ffc5M
-#: cui/inc/strings.hrc:240
+#: cui/inc/strings.hrc:245
msgctxt "RID_SVXSTR_CREATEFAILED_TITLE"
msgid "Error Creating Object"
msgstr "Kon nie objek skep nie"
#. hpB8B
-#: cui/inc/strings.hrc:241
+#: cui/inc/strings.hrc:246
msgctxt "RID_SVXSTR_RENAMEFAILED"
msgid "The object could not be renamed."
msgstr "Die objek kon nie hernoem word nie."
#. eevjm
-#: cui/inc/strings.hrc:242
+#: cui/inc/strings.hrc:247
msgctxt "RID_SVXSTR_RENAMEFAILED_TITLE"
msgid "Error Renaming Object"
msgstr "Fout met hernoem van objek"
#. fTHFY
-#: cui/inc/strings.hrc:243
+#: cui/inc/strings.hrc:248
msgctxt "RID_SVXSTR_ERROR_TITLE"
msgid "%PRODUCTNAME Error"
msgstr "%PRODUCTNAME-fout"
#. e6BgS
-#: cui/inc/strings.hrc:244
+#: cui/inc/strings.hrc:249
msgctxt "RID_SVXSTR_ERROR_LANG_NOT_SUPPORTED"
msgid "The scripting language %LANGUAGENAME is not supported."
msgstr "Die skriptaal %LANGUAGENAME word nie ondersteun nie."
#. EUek9
-#: cui/inc/strings.hrc:245
+#: cui/inc/strings.hrc:250
msgctxt "RID_SVXSTR_ERROR_RUNNING"
msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr "’n Fout het ontstaan toe die %LANGUAGENAME-skrip %SCRIPTNAME laat loop is."
#. KVQAh
-#: cui/inc/strings.hrc:246
+#: cui/inc/strings.hrc:251
msgctxt "RID_SVXSTR_EXCEPTION_RUNNING"
msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr "’n Uitsondering het ontstaan toe die %LANGUAGENAME-skrip %SCRIPTNAME laat loop is."
#. 5bFCQ
-#: cui/inc/strings.hrc:247
+#: cui/inc/strings.hrc:252
msgctxt "RID_SVXSTR_ERROR_AT_LINE"
msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
msgstr "’n Fout het ontstaan toe die %LANGUAGENAME-skrip %SCRIPTNAME laat loop is. Sien lyn: %LINENUMBER."
#. KTptU
-#: cui/inc/strings.hrc:248
+#: cui/inc/strings.hrc:253
msgctxt "RID_SVXSTR_EXCEPTION_AT_LINE"
msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
msgstr "’n Uitsondering het ontstaan toe die %LANGUAGENAME-skrip %SCRIPTNAME laat loop is. Sien lyn: %LINENUMBER."
#. BZDbp
-#: cui/inc/strings.hrc:249
+#: cui/inc/strings.hrc:254
msgctxt "RID_SVXSTR_FRAMEWORK_ERROR_RUNNING"
msgid "A Scripting Framework error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr "’n Skripraamwerkfout het ontstaan toe die %LANGUAGENAME-skrip %SCRIPTNAME laat loop is."
#. AAghx
-#: cui/inc/strings.hrc:250
+#: cui/inc/strings.hrc:255
msgctxt "RID_SVXSTR_ERROR_TYPE_LABEL"
msgid "Type:"
msgstr "Soort:"
#. GAsca
-#: cui/inc/strings.hrc:251
+#: cui/inc/strings.hrc:256
msgctxt "RID_SVXSTR_ERROR_MESSAGE_LABEL"
msgid "Message:"
msgstr "Boodskap:"
#. ZcxRY
-#: cui/inc/strings.hrc:253
+#: cui/inc/strings.hrc:258
msgctxt "RID_SVXSTR_CHG_MATH"
msgid "MathType to %PRODUCTNAME Math or reverse"
msgstr "MathType na % PRODUCTNAME Wiskunde, of andersom"
#. Ttggs
-#: cui/inc/strings.hrc:254
+#: cui/inc/strings.hrc:259
msgctxt "RID_SVXSTR_CHG_WRITER"
msgid "WinWord to %PRODUCTNAME Writer or reverse"
msgstr "WinWord na %PRODUCTNAME Writer, of andersom"
#. ZJRKY
-#: cui/inc/strings.hrc:255
+#: cui/inc/strings.hrc:260
msgctxt "RID_SVXSTR_CHG_CALC"
msgid "Excel to %PRODUCTNAME Calc or reverse"
msgstr "Excel na %PRODUCTNAME Calc, of andersom"
#. VmuND
-#: cui/inc/strings.hrc:256
+#: cui/inc/strings.hrc:261
msgctxt "RID_SVXSTR_CHG_IMPRESS"
msgid "PowerPoint to %PRODUCTNAME Impress or reverse"
msgstr "PowerPoint na %PRODUCTNAME Impress, of andersom"
#. sE8as
-#: cui/inc/strings.hrc:257
+#: cui/inc/strings.hrc:262
msgctxt "RID_SVXSTR_CHG_SMARTART"
msgid "SmartArt to %PRODUCTNAME shapes or reverse"
msgstr "SmartArt vorme na % PRODUCTNAME, of andersom"
#. AEgXY
-#: cui/inc/strings.hrc:258
+#: cui/inc/strings.hrc:263
msgctxt "RID_SVXSTR_CHG_VISIO"
msgid "Visio to %PRODUCTNAME Draw or reverse"
msgstr "Visio na %PRODUCTNAME of omgekeerd"
#. Zarkq
-#: cui/inc/strings.hrc:259
+#: cui/inc/strings.hrc:264
msgctxt "RID_SVXSTR_CHG_PDF"
msgid "PDF to %PRODUCTNAME Draw or reverse"
msgstr "PDF na %PRODUCTNAME Draw of omgekeerd"
#. dDtDU
-#: cui/inc/strings.hrc:261
+#: cui/inc/strings.hrc:266
msgctxt "RID_SVXSTR_OPT_DOUBLE_DICTS"
msgid ""
"The specified name already exists.\n"
@@ -1465,7 +1495,7 @@ msgstr ""
"Tik asseblief ’n nuwe naam."
#. kzhkA
-#: cui/inc/strings.hrc:262
+#: cui/inc/strings.hrc:267
msgctxt "RID_SVXSTR_OPT_INVALID_DICT_NAME"
msgid ""
"The specified name is invalid.\n"
@@ -1487,133 +1517,133 @@ msgstr ""
#. For example, adding "Grammar By" word "fund" to the new user
#. word "crowdfund", the spell checker will recognize "crowdfund"
#. with suffixes of "fund": "crowdfunding", "crowdfund's" etc.
-#: cui/inc/strings.hrc:277
+#: cui/inc/strings.hrc:282
msgctxt "RID_SVXSTR_OPT_GRAMMAR_BY"
msgid "~Grammar By"
msgstr "~Grammatika Volgens"
#. LPb5d
-#: cui/inc/strings.hrc:278
+#: cui/inc/strings.hrc:283
msgctxt "STR_MODIFY"
msgid "~Replace"
msgstr "Ve~rvang"
#. anivV
-#: cui/inc/strings.hrc:279
+#: cui/inc/strings.hrc:284
msgctxt "RID_SVXSTR_CONFIRM_SET_LANGUAGE"
msgid "Do you want to change the '%1' dictionary language?"
msgstr "Wil u die “%1”-woordeboektaal wysig?"
#. XEFrB
-#: cui/inc/strings.hrc:281
+#: cui/inc/strings.hrc:286
msgctxt "RID_SVXSTR_COLOR_CONFIG_DELETE"
msgid "Do you really want to delete the color scheme?"
msgstr "Wil u regtig die kleurskema skrap?"
#. ybdED
-#: cui/inc/strings.hrc:282
+#: cui/inc/strings.hrc:287
msgctxt "RID_SVXSTR_COLOR_CONFIG_DELETE_TITLE"
msgid "Color Scheme Deletion"
msgstr "Kleurskemaskrapping"
#. DoNBE
-#: cui/inc/strings.hrc:283
+#: cui/inc/strings.hrc:288
msgctxt "RID_SVXSTR_COLOR_CONFIG_SAVE1"
msgid "Save scheme"
msgstr "Stoor skema"
#. tFrki
-#: cui/inc/strings.hrc:284
+#: cui/inc/strings.hrc:289
msgctxt "RID_SVXSTR_COLOR_CONFIG_SAVE2"
msgid "Name of color scheme"
msgstr "Naam van kleurskema"
#. BAGbe
-#: cui/inc/strings.hrc:286
+#: cui/inc/strings.hrc:291
msgctxt "RID_SVXSTR_SPELL"
msgid "Spelling"
msgstr "Spelling"
#. uBohu
-#: cui/inc/strings.hrc:287
+#: cui/inc/strings.hrc:292
msgctxt "RID_SVXSTR_HYPH"
msgid "Hyphenation"
msgstr "Woordafbreking"
#. XGkt6
-#: cui/inc/strings.hrc:288
+#: cui/inc/strings.hrc:293
msgctxt "RID_SVXSTR_THES"
msgid "Thesaurus"
msgstr "Tesourus"
#. EFrDA
-#: cui/inc/strings.hrc:289
+#: cui/inc/strings.hrc:294
msgctxt "RID_SVXSTR_GRAMMAR"
msgid "Grammar"
msgstr "Grammatika"
#. zbEv9
-#: cui/inc/strings.hrc:290
+#: cui/inc/strings.hrc:295
msgctxt "RID_SVXSTR_CAPITAL_WORDS"
msgid "Check uppercase words"
msgstr "Kontroleer bokaswoorde"
#. BbDNe
-#: cui/inc/strings.hrc:291
+#: cui/inc/strings.hrc:296
msgctxt "RID_SVXSTR_WORDS_WITH_DIGITS"
msgid "Check words with numbers "
msgstr "Kontroleer woorde met getalle "
#. bPDyB
-#: cui/inc/strings.hrc:292
+#: cui/inc/strings.hrc:297
msgctxt "RID_SVXSTR_SPELL_SPECIAL"
msgid "Check special regions"
msgstr "Kontroleer spesiale gebiede"
#. XjifG
-#: cui/inc/strings.hrc:293
+#: cui/inc/strings.hrc:298
msgctxt "RID_SVXSTR_SPELL_AUTO"
msgid "Check spelling as you type"
msgstr "Kontroleer spelling terwyl getik word"
#. J3ENq
-#: cui/inc/strings.hrc:294
+#: cui/inc/strings.hrc:299
msgctxt "RID_SVXSTR_GRAMMAR_AUTO"
msgid "Check grammar as you type"
msgstr "Kontroleer grammatika terwyl getik word"
#. f6v3L
-#: cui/inc/strings.hrc:295
+#: cui/inc/strings.hrc:300
msgctxt "RID_SVXSTR_NUM_MIN_WORDLEN"
msgid "Minimal number of characters for hyphenation: "
msgstr "Minimum getal karakters vir koppelteken: "
#. BCrEf
-#: cui/inc/strings.hrc:296
+#: cui/inc/strings.hrc:301
msgctxt "RID_SVXSTR_NUM_PRE_BREAK"
msgid "Characters before line break: "
msgstr "Karakters voor lynbreuk: "
#. Kgioh
-#: cui/inc/strings.hrc:297
+#: cui/inc/strings.hrc:302
msgctxt "RID_SVXSTR_NUM_POST_BREAK"
msgid "Characters after line break: "
msgstr "Karakters na lynbreuk: "
#. AewrH
-#: cui/inc/strings.hrc:298
+#: cui/inc/strings.hrc:303
msgctxt "RID_SVXSTR_HYPH_AUTO"
msgid "Hyphenate without inquiry"
msgstr "Breek woorde af sonder navraag"
#. qCKn9
-#: cui/inc/strings.hrc:299
+#: cui/inc/strings.hrc:304
msgctxt "RID_SVXSTR_HYPH_SPECIAL"
msgid "Hyphenate special regions"
msgstr "Breek woorde af in spesiale gebiede"
#. weKUF
-#: cui/inc/strings.hrc:301
+#: cui/inc/strings.hrc:306
msgctxt "RID_SVXSTR_JRE_NOT_RECOGNIZED"
msgid ""
"The folder you selected does not contain a Java runtime environment.\n"
@@ -1623,7 +1653,7 @@ msgstr ""
"Kies asseblief ’n ander gids."
#. jFLdB
-#: cui/inc/strings.hrc:302
+#: cui/inc/strings.hrc:307
msgctxt "RID_SVXSTR_JRE_FAILED_VERSION"
msgid ""
"The Java runtime environment you selected is not the required version.\n"
@@ -1633,13 +1663,13 @@ msgstr ""
"Kies asseblief ’n ander gids."
#. 79uiz
-#: cui/inc/strings.hrc:303
+#: cui/inc/strings.hrc:308
msgctxt "RID_SVXSTR_JAVA_START_PARAM"
msgid "Edit Parameter"
msgstr "Wysig parameter"
#. fsbAN
-#: cui/inc/strings.hrc:305
+#: cui/inc/strings.hrc:310
msgctxt "RID_SVXSTR_OPT_PROXYPORTS"
msgid ""
"Invalid value!\n"
@@ -1651,37 +1681,37 @@ msgstr ""
"Die maksimum waarde vir ’n poortnommer is 65535."
#. UCFD6
-#: cui/inc/strings.hrc:307
+#: cui/inc/strings.hrc:312
msgctxt "RID_SVXSTR_DESC_GRADIENT"
msgid "Please enter a name for the gradient:"
msgstr "Tik asseblief ’n naam vir die gradiënt in:"
#. UDvKR
-#: cui/inc/strings.hrc:308
+#: cui/inc/strings.hrc:313
msgctxt "RID_SVXSTR_DESC_NEW_BITMAP"
msgid "Please enter a name for the bitmap:"
msgstr "Tik asseblief ’n naam vir die biskaart in:"
#. QXqJD
-#: cui/inc/strings.hrc:309
+#: cui/inc/strings.hrc:314
msgctxt "RID_SVXSTR_DESC_EXT_BITMAP"
msgid "Please enter a name for the external bitmap:"
msgstr "Tik asseblief ’n naam vir die eksterne biskaart in:"
#. SrS6X
-#: cui/inc/strings.hrc:310
+#: cui/inc/strings.hrc:315
msgctxt "RID_SVXSTR_DESC_NEW_PATTERN"
msgid "Please enter a name for the pattern:"
msgstr "Tik asseblief ’n naam vir die patroon:"
#. yD7AW
-#: cui/inc/strings.hrc:311
+#: cui/inc/strings.hrc:316
msgctxt "RID_SVXSTR_DESC_LINESTYLE"
msgid "Please enter a name for the line style:"
msgstr "Tik asseblief ’n naam vir die lynstyl:"
#. FQDrh
-#: cui/inc/strings.hrc:312
+#: cui/inc/strings.hrc:317
msgctxt "RID_SVXSTR_ASK_CHANGE_LINESTYLE"
msgid ""
"The line style was modified without saving. \n"
@@ -1691,398 +1721,398 @@ msgstr ""
"Wysig die gekose lynstyl of voeg ’n nuwe lynstyl by."
#. Z5Dkg
-#: cui/inc/strings.hrc:313
+#: cui/inc/strings.hrc:318
msgctxt "RID_SVXSTR_DESC_HATCH"
msgid "Please enter a name for the hatching:"
msgstr "Tik asseblief ’n naam vir die arsering:"
#. rvyBi
-#: cui/inc/strings.hrc:314
+#: cui/inc/strings.hrc:319
msgctxt "RID_SVXSTR_CHANGE"
msgid "Modify"
msgstr "Wysig"
#. ZDhBm
-#: cui/inc/strings.hrc:315
+#: cui/inc/strings.hrc:320
msgctxt "RID_SVXSTR_ADD"
msgid "Add"
msgstr "Voeg by"
#. QgAFH
-#: cui/inc/strings.hrc:316
+#: cui/inc/strings.hrc:321
msgctxt "RID_SVXSTR_DESC_COLOR"
msgid "Please enter a name for the new color:"
msgstr "Tik asseblief ’n naam vir die nuwe kleur:"
#. GKnJR
-#: cui/inc/strings.hrc:317
+#: cui/inc/strings.hrc:322
msgctxt "RID_SVXSTR_TABLE"
msgid "Table"
msgstr "Tabel"
#. J6FBw
-#: cui/inc/strings.hrc:318
+#: cui/inc/strings.hrc:323
msgctxt "RID_SVXSTR_DESC_LINEEND"
msgid "Please enter a name for the new arrowhead:"
msgstr "Tik asseblief ’n naam vir die nuwe pylpunt:"
#. xD9BU
-#: cui/inc/strings.hrc:319
+#: cui/inc/strings.hrc:324
msgctxt "RID_SVXSTR_CHARNAME_NOSTYLE"
msgid "No %1"
msgstr "Geen %1"
#. GVkFG
-#: cui/inc/strings.hrc:320
+#: cui/inc/strings.hrc:325
msgctxt "RID_SVXSTR_CHARNAME_FAMILY"
msgid "Family:"
msgstr "Familie:"
#. 6uDkp
-#: cui/inc/strings.hrc:321
+#: cui/inc/strings.hrc:326
msgctxt "RID_SVXSTR_CHARNAME_FONT"
msgid "Font:"
msgstr "Font:"
#. KFXAV
-#: cui/inc/strings.hrc:322
+#: cui/inc/strings.hrc:327
msgctxt "RID_SVXSTR_CHARNAME_STYLE"
msgid "Style:"
msgstr "Styl:"
#. gDu75
-#: cui/inc/strings.hrc:323
+#: cui/inc/strings.hrc:328
msgctxt "RID_SVXSTR_CHARNAME_TYPEFACE"
msgid "Typeface:"
msgstr "Lettertipe:"
#. BcWHA
-#: cui/inc/strings.hrc:324
+#: cui/inc/strings.hrc:329
msgctxt "RID_SVXSTR_USE_REPLACE"
msgid "Use replacement table"
msgstr "Gebruik vervangingstabel"
#. L8BEE
-#: cui/inc/strings.hrc:325
+#: cui/inc/strings.hrc:330
msgctxt "RID_SVXSTR_CPTL_STT_WORD"
msgid "Correct TWo INitial CApitals"
msgstr "Korrigeer TWee AAnvangshoofletters"
#. p5h3s
-#: cui/inc/strings.hrc:326
+#: cui/inc/strings.hrc:331
msgctxt "RID_SVXSTR_CPTL_STT_SENT"
msgid "Capitalize first letter of every sentence"
msgstr "Hoofletter aan die begin van elke sin"
#. prrWd
-#: cui/inc/strings.hrc:327
+#: cui/inc/strings.hrc:332
msgctxt "RID_SVXSTR_BOLD_UNDER"
msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
msgstr "Outomatiese *vetdruk*, /skuinsdruk/, -doodtrek- en _onderstreep_"
#. a89xT
-#: cui/inc/strings.hrc:328
+#: cui/inc/strings.hrc:333
msgctxt "RID_SVXSTR_NO_DBL_SPACES"
msgid "Ignore double spaces"
msgstr "Ignoreer dubbelspasies"
#. qEA6h
-#: cui/inc/strings.hrc:329
+#: cui/inc/strings.hrc:334
msgctxt "RID_SVXSTR_DETECT_URL"
msgid "URL Recognition"
msgstr "URL-herkenning"
#. JfySE
-#: cui/inc/strings.hrc:330
+#: cui/inc/strings.hrc:335
msgctxt "RID_SVXSTR_DASH"
msgid "Replace dashes"
msgstr "Vervang aandagstrepe"
#. u2BuA
-#: cui/inc/strings.hrc:331
+#: cui/inc/strings.hrc:336
msgctxt "RID_SVXSTR_CORRECT_ACCIDENTAL_CAPS_LOCK"
msgid "Correct accidental use of cAPS LOCK key"
msgstr "Korrigeer as cAPS LOCK per ongeluk aan is"
#. GZqG9
-#: cui/inc/strings.hrc:332
+#: cui/inc/strings.hrc:337
msgctxt "RID_SVXSTR_NON_BREAK_SPACE"
msgid "Add non-breaking space before specific punctuation marks in French text"
msgstr "Voeg ’n niebrekende spasie voor spesifieke leestekens in Franse teks"
#. NDmW9
-#: cui/inc/strings.hrc:333
+#: cui/inc/strings.hrc:338
msgctxt "RID_SVXSTR_ORDINAL"
msgid "Format ordinal numbers suffixes (1st -> 1^st)"
msgstr "Formateer agtervoegsels van rangtelworode (1st → 1^st)"
#. 6oHuF
-#: cui/inc/strings.hrc:334
+#: cui/inc/strings.hrc:339
msgctxt "RID_SVXSTR_OLD_HUNGARIAN"
msgid "Transliterate to Old Hungarian if the text direction is from right to left"
msgstr "Vertaal na Ou-Hongaars, wanneer die teks rigting van regs na links is"
#. CNtDd
-#: cui/inc/strings.hrc:335
+#: cui/inc/strings.hrc:340
msgctxt "RID_SVXSTR_ANGLE_QUOTES"
msgid "Replace << and >> with angle quotes"
msgstr "Vervang << en >> met hoekige Aanhalingstekens"
#. Rc6Zg
-#: cui/inc/strings.hrc:336
+#: cui/inc/strings.hrc:341
msgctxt "RID_SVXSTR_DEL_EMPTY_PARA"
msgid "Remove blank paragraphs"
msgstr "Verwyder leë paragrawe"
#. F6HCc
-#: cui/inc/strings.hrc:337
+#: cui/inc/strings.hrc:342
msgctxt "RID_SVXSTR_USER_STYLE"
msgid "Replace Custom Styles"
msgstr "Vervang doelgemaakte style"
#. itDJG
-#: cui/inc/strings.hrc:338
+#: cui/inc/strings.hrc:343
msgctxt "RID_SVXSTR_BULLET"
msgid "Replace bullets with: %1"
msgstr "Vervang koeëls met: %1"
#. BvroE
#. To translators: %1 will be replaced with a percentage, e.g. "10%"
-#: cui/inc/strings.hrc:340
+#: cui/inc/strings.hrc:345
msgctxt "RID_SVXSTR_RIGHT_MARGIN"
msgid "Combine single line paragraphs if length greater than %1"
msgstr "Kombineer enkelreëlparagrawe indien langer as %1"
#. M9kNQ
-#: cui/inc/strings.hrc:341
+#: cui/inc/strings.hrc:346
msgctxt "RID_SVXSTR_NUM"
msgid "Bulleted and numbered lists. Bullet symbol: %1"
msgstr "Koeël-paragrawe en nommering. Koeël-simbole: % 1"
#. BJVGT
-#: cui/inc/strings.hrc:342
+#: cui/inc/strings.hrc:347
msgctxt "RID_SVXSTR_BORDER"
msgid "Apply border"
msgstr "Pas rand toe"
#. bXpcq
-#: cui/inc/strings.hrc:343
+#: cui/inc/strings.hrc:348
msgctxt "RID_SVXSTR_CREATE_TABLE"
msgid "Create table"
msgstr "Skep tabel"
#. RvEBo
-#: cui/inc/strings.hrc:344
+#: cui/inc/strings.hrc:349
msgctxt "RID_SVXSTR_REPLACE_TEMPLATES"
msgid "Apply Styles"
msgstr "Pas style toe"
#. 6MGUe
-#: cui/inc/strings.hrc:345
+#: cui/inc/strings.hrc:350
msgctxt "RID_SVXSTR_DEL_SPACES_AT_STT_END"
msgid "Delete spaces and tabs at beginning and end of paragraph"
msgstr "Skrap spasies en inkepe aan die begin en einde van paragraaf"
#. R9Kke
-#: cui/inc/strings.hrc:346
+#: cui/inc/strings.hrc:351
msgctxt "RID_SVXSTR_DEL_SPACES_BETWEEN_LINES"
msgid "Delete spaces and tabs at end and start of line"
msgstr "Skrap spasies en inkepe aan die begin en einde van reëls"
#. GFpkR
-#: cui/inc/strings.hrc:347
+#: cui/inc/strings.hrc:352
msgctxt "RID_SVXSTR_CONNECTOR"
msgid "Connector"
msgstr "Verbinder"
#. XDp8d
-#: cui/inc/strings.hrc:348
+#: cui/inc/strings.hrc:353
msgctxt "RID_SVXSTR_DIMENSION_LINE"
msgid "Dimension line"
msgstr "Dimensielyn"
#. Mxt3D
-#: cui/inc/strings.hrc:349
+#: cui/inc/strings.hrc:354
msgctxt "RID_SVXSTR_STARTQUOTE"
msgid "Start Quote"
msgstr "By Woordbegin"
#. o8nY6
-#: cui/inc/strings.hrc:350
+#: cui/inc/strings.hrc:355
msgctxt "RID_SVXSTR_ENDQUOTE"
msgid "End Quote"
msgstr "By Woordeinde"
#. cZX7G
-#: cui/inc/strings.hrc:352
+#: cui/inc/strings.hrc:357
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Geen skadu"
#. bzAHG
-#: cui/inc/strings.hrc:353
+#: cui/inc/strings.hrc:358
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Gooi skaduwee na regs onder"
#. FjBGC
-#: cui/inc/strings.hrc:354
+#: cui/inc/strings.hrc:359
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Gooi skaduwee na regs bo"
#. 5BkoC
-#: cui/inc/strings.hrc:355
+#: cui/inc/strings.hrc:360
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Gooi skaduwee na links onder"
#. GYB8M
-#: cui/inc/strings.hrc:356
+#: cui/inc/strings.hrc:361
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Gooi skaduwee na links bo"
#. xTvak
-#: cui/inc/strings.hrc:357
+#: cui/inc/strings.hrc:362
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Onderteken deur: %1"
#. Uc7wm
-#: cui/inc/strings.hrc:359
+#: cui/inc/strings.hrc:364
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "Alle Lêers"
#. 8bnrf
-#: cui/inc/strings.hrc:361
+#: cui/inc/strings.hrc:366
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr "Geregistreerde Databasisse"
#. xySty
-#: cui/inc/strings.hrc:363
+#: cui/inc/strings.hrc:368
msgctxt "RID_SVXSTR_CANNOTCONVERTURL_ERR"
msgid "The URL <%1> cannot be converted to a filesystem path."
msgstr "Die URL <%1> kan nie omgeskakel word na 'n lêersisteem pad nie."
#. WHVhx
-#: cui/inc/strings.hrc:365
+#: cui/inc/strings.hrc:370
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2021 LibreOffice contributors."
msgstr "Kopiereg © 2000–2021 LibreOffice bydraers."
#. GesDU
-#: cui/inc/strings.hrc:366
+#: cui/inc/strings.hrc:371
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
#. WCnhx
-#: cui/inc/strings.hrc:367
+#: cui/inc/strings.hrc:372
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Dié vrystelling is verskaf deur %OOOVENDOR."
#. Lz9nx
-#: cui/inc/strings.hrc:368
+#: cui/inc/strings.hrc:373
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice was gebaseer op OpenOffice.org."
#. 9aeNR
-#: cui/inc/strings.hrc:369
+#: cui/inc/strings.hrc:374
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org"
msgstr "%PRODUCTNAME is afgeleide van LibreOffice, gebaseer op OpenOffice.org"
#. q5Myk
-#: cui/inc/strings.hrc:370
+#: cui/inc/strings.hrc:375
msgctxt "aboutdialog|uilocale"
msgid "UI: $LOCALE"
msgstr "UI: $LOCALE"
#. 3vXzF
-#: cui/inc/strings.hrc:372
+#: cui/inc/strings.hrc:377
msgctxt "optpathspage|editpaths"
msgid "Edit Paths: %1"
msgstr "Redigeer paaie: %1"
#. 8ZaCL
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Label"
msgstr "Etikettering"
#. GceL6
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Command"
msgstr "Bevel"
#. dRqYc
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Tooltip"
msgstr "Direkte Hulp"
#. 3FZFt
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_QRCODEDATALONG"
msgid "The URL or text is too long for the current error correction level. Either shorten the text or decrease the correction level."
msgstr "Die URL of teks is te lank vir die huidige foutkorreksie vlak. Óf verkort die teks of verlaag die regstellingsvlak."
#. AD8QJ
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_DELETEUSERCOLOR1"
msgid "You can only delete user-defined colors"
msgstr "U kan alleen gebruiker-gedefineerde kleure skrap"
#. 4LWGV
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_DELETEUSERCOLOR2"
msgid "Please select the color to delete"
msgstr "Kies asseblief die kleur om te skrap"
#. FjQQ5
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLBUTTON"
msgid "Install"
msgstr "Installeer"
#. 2GUFq
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLEDBUTTON"
msgid "Installed"
msgstr "Geïnstalleerd"
#. TmK5f
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLING"
msgid "Installing"
msgstr "Installeer"
#. izdAK
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:390
msgctxt "RID_SVXSTR_ADDITIONS_SEARCHING"
msgid "Searching..."
msgstr "Soek..."
#. HYT6K
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_ADDITIONS_LOADING"
msgid "Loading..."
msgstr "Laai..."
#. 88Ect
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:392
msgctxt "RID_SVXSTR_ADDITIONS_DIALOG_TITLE_PREFIX"
msgid "Extensions"
msgstr "Toevoegings"
#. KTtQE
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:394
msgctxt "RID_SVXSTR_UI_APPLYALL"
msgid "Apply to %MODULE"
msgstr "Pas toe op %MODULE"
@@ -3257,7 +3287,7 @@ msgstr "Nutsbalke is konteks sensitief, hull open volgens die konteks. As u dit
#: cui/inc/tipoftheday.hrc:240
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create a master document from the current Writer document by using File ▸ Send ▸ Create Master Document."
-msgstr ""
+msgstr "U kan 'n meester dokument skep uit die huidige 'Writer\" dokument deur Lêer ▸ Aanstuur ▸ Skep Meester"
#. cPNVv
#: cui/inc/tipoftheday.hrc:241
@@ -7931,7 +7961,7 @@ msgstr "Skep databasisskakel"
#: cui/uiconfig/ui/databaselinkdialog.ui:92
msgctxt "databaselinkdialog|browse"
msgid "Browse..."
-msgstr "Blaai..."
+msgstr "Rondkyk..."
#. YPWDd
#: cui/uiconfig/ui/databaselinkdialog.ui:99
@@ -8984,19 +9014,19 @@ msgid "Assigns macros to program events. The assigned macro runs automatically e
msgstr "Ken spesifieke makro's toe aan programme. 'n Toegewysde makro sal outomaties loop elke keer as die gekose gebeurtenis plaasvind."
#. BuBeE
-#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+#: cui/uiconfig/ui/fileextcheckdialog.ui:31
msgctxt "FileExtCheck|Checkbox"
msgid "_Perform check on startup"
msgstr "_Aanvanklik voer uit gemerkte program"
#. Bjfzv
-#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+#: cui/uiconfig/ui/fileextcheckdialog.ui:35
msgctxt "FileExtCheck|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr "Heraktiveer die dialoog met Nutsprogramme▸ Opsies▸ Algemeen"
#. mGEv5
-#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+#: cui/uiconfig/ui/fileextcheckdialog.ui:63
msgctxt "FileExtCheckDialog|Ok_Button"
msgid "_OK"
msgstr "_OK"
@@ -11146,7 +11176,7 @@ msgstr "Inhoud:"
#: cui/uiconfig/ui/insertfloatingframe.ui:165
msgctxt "insertfloatingframe|buttonbrowse"
msgid "Browse..."
-msgstr "Blaai..."
+msgstr "Rondkyk..."
#. EQDKW
#: cui/uiconfig/ui/insertfloatingframe.ui:172
@@ -11978,50 +12008,26 @@ msgctxt "macroselectordialog|MacroSelectorDialog"
msgid "Macro Selector"
msgstr "Makroselektor"
-#. sgKzf
-#: cui/uiconfig/ui/macroselectordialog.ui:42
-msgctxt "macroselectordialog|add"
-msgid "Add"
-msgstr "Voeg by"
-
#. fpfnw
-#: cui/uiconfig/ui/macroselectordialog.ui:135
+#: cui/uiconfig/ui/macroselectordialog.ui:108
msgctxt "macroselectordialog|helpmacro"
msgid "Select the library that contains the macro you want. Then select the macro under 'Macro name'."
msgstr "Kies eers die biblioteek wat die gewenste makro bevat. Kies dan die makro onder 'Makro-naam'."
-#. nVAE3
-#: cui/uiconfig/ui/macroselectordialog.ui:151
-msgctxt "macroselectordialog|helptoolbar"
-msgid "To add a command to a toolbar, select the category and then the command. Then drag the command to the Commands list of the Toolbars tab page in the Customize dialog."
-msgstr "Om 'n opdrag aan 'n werkbalk toe te voeg, kies eers 'n kategorie en dan die opdrag. Sleep die opdrag na die opdraglys op die tabblad Werkbalk in die dialoogvenster aanpas."
-
#. SuCLc
-#: cui/uiconfig/ui/macroselectordialog.ui:230
+#: cui/uiconfig/ui/macroselectordialog.ui:182
msgctxt "macroselectordialog|libraryft"
msgid "Library"
msgstr "Biblioteek"
-#. ah4q5
-#: cui/uiconfig/ui/macroselectordialog.ui:245
-msgctxt "macroselectordialog|categoryft"
-msgid "Category"
-msgstr "Kategorie"
-
#. QvKmS
-#: cui/uiconfig/ui/macroselectordialog.ui:318
+#: cui/uiconfig/ui/macroselectordialog.ui:243
msgctxt "macroselectordialog|macronameft"
msgid "Macro Name"
msgstr "Makronaam"
-#. 2pAF6
-#: cui/uiconfig/ui/macroselectordialog.ui:334
-msgctxt "macroselectordialog|commandsft"
-msgid "Commands"
-msgstr "Bevele"
-
#. gsUCh
-#: cui/uiconfig/ui/macroselectordialog.ui:397
+#: cui/uiconfig/ui/macroselectordialog.ui:297
msgctxt "macroselectordialog|label1"
msgid "Description"
msgstr "Beskrywing"
@@ -13996,7 +14002,7 @@ msgstr "Voer die pad en naam van die e-Pos program in."
#: cui/uiconfig/ui/optemailpage.ui:62
msgctxt "optemailpage|browse"
msgid "Browse..."
-msgstr "Blaai..."
+msgstr "Rondkyk..."
#. Vs69j
#: cui/uiconfig/ui/optemailpage.ui:69
@@ -17426,146 +17432,146 @@ msgid "Properties"
msgstr "Eienskappe"
#. FTBKZ
-#: cui/uiconfig/ui/paraindentspacing.ui:73
+#: cui/uiconfig/ui/paraindentspacing.ui:72
msgctxt "paraindentspacing|drawingareaWN_EXAMPLE-atkobject"
msgid "Example"
msgstr "Voorbeeld"
#. saei7
-#: cui/uiconfig/ui/paraindentspacing.ui:115
+#: cui/uiconfig/ui/paraindentspacing.ui:113
msgctxt "paraindentspacing|labelFT_LEFTINDENT"
msgid "_Before text:"
msgstr "_Voor teks:"
#. iV7A5
-#: cui/uiconfig/ui/paraindentspacing.ui:129
+#: cui/uiconfig/ui/paraindentspacing.ui:127
msgctxt "paraindentspacing|labelFT_RIGHTINDENT"
msgid "After _text:"
msgstr "Na _teks:"
#. 396YJ
-#: cui/uiconfig/ui/paraindentspacing.ui:143
+#: cui/uiconfig/ui/paraindentspacing.ui:141
msgctxt "paraindentspacing|labelFT_FLINEINDENT"
msgid "_First line:"
msgstr "_Eerste reël:"
#. jwo9n
-#: cui/uiconfig/ui/paraindentspacing.ui:155
+#: cui/uiconfig/ui/paraindentspacing.ui:153
msgctxt "paraindentspacing|checkCB_AUTO"
msgid "_Automatic"
msgstr "_Outomaties"
#. NE9g8
-#: cui/uiconfig/ui/paraindentspacing.ui:157
+#: cui/uiconfig/ui/paraindentspacing.ui:155
msgctxt "paraindentspacing|checkCB_AUTO|tooltip_text"
msgid "Indent paragraph automatically according to font size and line spacing."
msgstr "Skuif paragraaf outomaties in volgens lettergrootte en lynspasiëring."
#. L9iw7
-#: cui/uiconfig/ui/paraindentspacing.ui:210
+#: cui/uiconfig/ui/paraindentspacing.ui:208
msgctxt "paraindentspacing|labelST_LINEDIST_ABS"
msgid "Fixed"
msgstr "Vas (nieproporsioneel)"
#. qwSsb
-#: cui/uiconfig/ui/paraindentspacing.ui:223
+#: cui/uiconfig/ui/paraindentspacing.ui:221
msgctxt "paraindentspacing|label1"
msgid "Indent"
msgstr "Inkeep"
#. RMdgy
-#: cui/uiconfig/ui/paraindentspacing.ui:260
+#: cui/uiconfig/ui/paraindentspacing.ui:258
msgctxt "paraindentspacing|labelFT_TOPDIST"
msgid "Ab_ove paragraph:"
msgstr "B_o paragraaf:"
#. mTi8C
-#: cui/uiconfig/ui/paraindentspacing.ui:274
+#: cui/uiconfig/ui/paraindentspacing.ui:272
msgctxt "paraindentspacing|labelFT_BOTTOMDIST"
msgid "Below _paragraph:"
msgstr "Onder _paragraaf:"
#. AdWVr
-#: cui/uiconfig/ui/paraindentspacing.ui:319
+#: cui/uiconfig/ui/paraindentspacing.ui:317
msgctxt "paraindentspacing|checkCB_CONTEXTUALSPACING"
msgid "Do not add space between paragraphs of the same style"
msgstr "Moenie spasiëring bysit tussen paragrawe van dieselfde styl."
#. hWQWQ
-#: cui/uiconfig/ui/paraindentspacing.ui:338
+#: cui/uiconfig/ui/paraindentspacing.ui:336
msgctxt "paraindentspacing|labelFL_VERTALIGN"
msgid "Spacing"
msgstr "Spasiëring"
#. vuFhh
-#: cui/uiconfig/ui/paraindentspacing.ui:380
+#: cui/uiconfig/ui/paraindentspacing.ui:378
msgctxt "paraindentspacing|liststoreLB_LINEDIST"
msgid "Single"
msgstr "Enkel"
#. 5qPNL
-#: cui/uiconfig/ui/paraindentspacing.ui:381
+#: cui/uiconfig/ui/paraindentspacing.ui:379
msgctxt "paraindentspacing|liststoreLB_LINEDIST"
msgid "1.15 Lines"
msgstr "1,15 reëls"
#. GxLCB
-#: cui/uiconfig/ui/paraindentspacing.ui:382
+#: cui/uiconfig/ui/paraindentspacing.ui:380
msgctxt "paraindentspacing|liststoreLB_LINEDIST"
msgid "1.5 Lines"
msgstr "1,5 reëls"
#. cD4RR
-#: cui/uiconfig/ui/paraindentspacing.ui:383
+#: cui/uiconfig/ui/paraindentspacing.ui:381
msgctxt "paraindentspacing|liststoreLB_LINEDIST"
msgid "Double"
msgstr "Dubbel"
#. 98csB
-#: cui/uiconfig/ui/paraindentspacing.ui:384
+#: cui/uiconfig/ui/paraindentspacing.ui:382
msgctxt "paraindentspacing|liststoreLB_LINEDIST"
msgid "Proportional"
msgstr "Proporsioneel"
#. XN6ri
-#: cui/uiconfig/ui/paraindentspacing.ui:385
+#: cui/uiconfig/ui/paraindentspacing.ui:383
msgctxt "paraindentspacing|liststoreLB_LINEDIST"
msgid "At least"
msgstr "Minstens"
#. NYeFC
-#: cui/uiconfig/ui/paraindentspacing.ui:386
+#: cui/uiconfig/ui/paraindentspacing.ui:384
msgctxt "paraindentspacing|liststoreLB_LINEDIST"
msgid "Leading"
msgstr "Koeëlparagrawe"
#. 9fdqy
-#: cui/uiconfig/ui/paraindentspacing.ui:399
+#: cui/uiconfig/ui/paraindentspacing.ui:397
msgctxt "paraindentspacing|labelFT_LINEDIST"
msgid "of"
msgstr " "
#. Bga6L
-#: cui/uiconfig/ui/paraindentspacing.ui:462
+#: cui/uiconfig/ui/paraindentspacing.ui:460
msgctxt "paraindentspacing|checkCB_REGISTER"
msgid "Activate page li_ne-spacing"
msgstr "Aktiveer bladsy ly_nspasiëring"
#. uesRM
#. xdds
-#: cui/uiconfig/ui/paraindentspacing.ui:465
+#: cui/uiconfig/ui/paraindentspacing.ui:463
msgctxt "paraindentspacing|checkCB_REGISTER|tooltip_text"
msgid "Applies page line-spacing (register-true) if set for the Page Style."
msgstr "Wend bladsy lynspasiëring (register-true) aan, indien gestel vir Bladsy Styl."
#. MwL9j
-#: cui/uiconfig/ui/paraindentspacing.ui:470
+#: cui/uiconfig/ui/paraindentspacing.ui:469
msgctxt "paraindentspacing|extended_tip|checkCB_REGISTER"
msgid "If page line-spacing is activated and the Page style uses page line-spacing, then this paragraph will align to an invisible vertical page grid, regardless of their font size, so that each line is the same height."
msgstr "As bladsy-spasiëring geldend is en die Bladsy-styl gebruik Bladsy-lynspasiëring, sal hierdie paragraaf ooreenstem met 'n onsigbare vertikale bladsyrooster, ongeag hul lettergrootte, sodat elke lyn dieselfde hoogte het."
#. GxJB6
-#: cui/uiconfig/ui/paraindentspacing.ui:486
+#: cui/uiconfig/ui/paraindentspacing.ui:485
msgctxt "paraindentspacing|labelFL_PROPERTIES"
msgid "Line Spacing"
msgstr "Reëlspasiëring"
@@ -21075,7 +21081,7 @@ msgstr "Standaard Werksbalk"
#: cui/uiconfig/ui/toolbarmodedialog.ui:127
msgctxt "ToolbarmodeDialog|radiobutton2"
msgid "Tabbed"
-msgstr "Getabuleer"
+msgstr "Oortjieblad"
#. DZLbS
#: cui/uiconfig/ui/toolbarmodedialog.ui:156
@@ -21099,13 +21105,13 @@ msgstr "Kompakte Tabblad"
#: cui/uiconfig/ui/toolbarmodedialog.ui:210
msgctxt "ToolbarmodeDialog|radiobutton6"
msgid "Groupedbar"
-msgstr "Gegroepeerde balk"
+msgstr "Groep werksbalk"
#. qwCAA
#: cui/uiconfig/ui/toolbarmodedialog.ui:228
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar Compact"
-msgstr "Kompakte Gegroepeerde balk"
+msgstr "Kompakte werksbalk"
#. iSVgL
#: cui/uiconfig/ui/toolbarmodedialog.ui:246
diff --git a/source/af/dictionaries/eo.po b/source/af/dictionaries/eo.po
index cb3b1e690cd..823f3f3f091 100644
--- a/source/af/dictionaries/eo.po
+++ b/source/af/dictionaries/eo.po
@@ -4,14 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-04-12 12:05+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"
+"PO-Revision-Date: 2021-04-15 08:37+0000\n"
+"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
+"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/dictionarieseo/af/>\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-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
#. 8TKYb
#: description.xml
@@ -20,4 +22,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Spelling dictionary, thesaurus, and hyphenator for Esperanto"
-msgstr ""
+msgstr "Spellingwoordeboek, thesaurus en afbreekreëls vir Esperanto"
diff --git a/source/af/dictionaries/mn_MN.po b/source/af/dictionaries/mn_MN.po
new file mode 100644
index 00000000000..cc583369037
--- /dev/null
+++ b/source/af/dictionaries/mn_MN.po
@@ -0,0 +1,25 @@
+#. extracted from dictionaries/mn_MN
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2021-04-27 17:02+0200\n"
+"PO-Revision-Date: 2021-04-28 11:49+0000\n"
+"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
+"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/dictionariesmn_mn/af/>\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-Accelerator-Marker: ~\n"
+"X-Generator: Weblate 4.4.2\n"
+
+#. UsF8V
+#: description.xml
+msgctxt ""
+"description.xml\n"
+"dispname\n"
+"description.text"
+msgid "Mongolian spelling and hyphenation dictionaries"
+msgstr "Mongoolse spelling en koppelteken woordeboeke"
diff --git a/source/af/extensions/messages.po b/source/af/extensions/messages.po
index 813bd3b861a..4f4a4dff8bc 100644
--- a/source/af/extensions/messages.po
+++ b/source/af/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: 2021-02-22 17:16+0100\n"
-"PO-Revision-Date: 2021-01-26 17:37+0000\n"
+"POT-Creation-Date: 2021-04-27 17:02+0200\n"
+"PO-Revision-Date: 2021-04-28 11:49+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/extensionsmessages/af/>\n"
"Language: af\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: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1548063388.000000\n"
#. cBx8W
@@ -3154,7 +3154,7 @@ msgstr "Ligging"
#: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:78
msgctxt "datasourcepage|browse"
msgid "Browse..."
-msgstr "Blaai..."
+msgstr "Rondkyk..."
#. apVFE
#: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:85
@@ -3865,7 +3865,7 @@ msgid "User-defined field _3"
msgstr "Gebruikergedefinieerde veld _3"
#. x9s9K
-#: extensions/uiconfig/sbibliography/ui/generalpage.ui:880
+#: extensions/uiconfig/sbibliography/ui/generalpage.ui:910
msgctxt "generalpage|extended_tip|GeneralPage"
msgid "Insert, delete, edit, and organize records in the bibliography database."
msgstr "Hier registreer die slimmerd 'n bestaande adresboek as 'n databasis by %PRODUCTNAME."
diff --git a/source/af/extras/source/gallery/share.po b/source/af/extras/source/gallery/share.po
index 92c345acc8e..7de4daf14f0 100644
--- a/source/af/extras/source/gallery/share.po
+++ b/source/af/extras/source/gallery/share.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-06-22 17:23+0200\n"
-"PO-Revision-Date: 2020-07-05 00:08+0000\n"
+"POT-Creation-Date: 2021-04-27 17:02+0200\n"
+"PO-Revision-Date: 2021-04-28 11:49+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
-"Language-Team: Afrikaans <https://weblate.documentfoundation.org/projects/libo_ui-master/extrassourcegalleryshare/af/>\n"
+"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/extrassourcegalleryshare/af/>\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-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1547622538.000000\n"
#. oG3Mq
@@ -34,6 +34,15 @@ msgctxt ""
msgid "Backgrounds"
msgstr "Agtergronde"
+#. fVCP9
+#: gallery_names.ulf
+msgctxt ""
+"gallery_names.ulf\n"
+"bullets\n"
+"LngText.text"
+msgid "Bullets"
+msgstr "Kolparagrawe"
+
#. kuNKS
#: gallery_names.ulf
msgctxt ""
diff --git a/source/af/filter/messages.po b/source/af/filter/messages.po
index 6ecd6c551c7..c6ea5cd1552 100644
--- a/source/af/filter/messages.po
+++ b/source/af/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: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-01-26 17:36+0000\n"
+"PO-Revision-Date: 2021-04-28 11:49+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/filtermessages/af/>\n"
"Language: af\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: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1560927302.000000\n"
#. 5AQgJ
@@ -1570,7 +1570,7 @@ msgstr "Transformeer dokument"
#: filter/uiconfig/ui/testxmlfilter.ui:111
msgctxt "testxmlfilter|exportbrowse"
msgid "Browse..."
-msgstr "Blaai..."
+msgstr "Rondkyk..."
#. 6ZGrB
#: filter/uiconfig/ui/testxmlfilter.ui:117
@@ -1618,7 +1618,7 @@ msgstr "XSLT vir invoer"
#: filter/uiconfig/ui/testxmlfilter.ui:229
msgctxt "testxmlfilter|importbrowse"
msgid "Browse..."
-msgstr "Blaai..."
+msgstr "Rondkyk..."
#. eR68F
#: filter/uiconfig/ui/testxmlfilter.ui:235
@@ -1942,7 +1942,7 @@ msgstr "Sjabloon vir _invoer:"
#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:133
msgctxt "xmlfiltertabpagetransformation|browsetemp"
msgid "Browse..."
-msgstr "Blaai..."
+msgstr "Rondkyk..."
#. Dce3n
#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:139
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 250c11c5b90..d2c93d97a45 100644
--- a/source/af/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/af/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: 2021-04-12 12:06+0200\n"
-"PO-Revision-Date: 2021-04-07 14:15+0000\n"
+"POT-Creation-Date: 2021-04-27 17:03+0200\n"
+"PO-Revision-Date: 2021-04-28 11:49+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/af/>\n"
"Language: af\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: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1560976865.000000\n"
#. W5ukN
@@ -22718,6 +22718,16 @@ msgctxt ""
msgid "Protect Track Changes"
msgstr "Beskerm aangetekende wysigings"
+#. XGBrs
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:ProtectTraceChangeMode\n"
+"PopupLabel\n"
+"value.text"
+msgid "Protect Track Changes"
+msgstr "Beskerm aangetekende wysigings"
+
#. 7u9EW
#: GenericCommands.xcu
msgctxt ""
@@ -26198,6 +26208,16 @@ msgctxt ""
msgid "For Selection"
msgstr "Vir seleksie"
+#. yhJF9
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:SetLanguageSelectionMenu\n"
+"PopupLabel\n"
+"value.text"
+msgid "Language for Selection"
+msgstr "Taal vir die seleksie"
+
#. TbazQ
#: GenericCommands.xcu
msgctxt ""
@@ -26208,6 +26228,16 @@ msgctxt ""
msgid "For Paragraph"
msgstr "Vir paragraaf"
+#. nAUEv
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:SetLanguageParagraphMenu\n"
+"PopupLabel\n"
+"value.text"
+msgid "Language for Paragraph"
+msgstr "Taal vir die Paragraaf"
+
#. MjBaU
#: GenericCommands.xcu
msgctxt ""
@@ -26218,6 +26248,16 @@ msgctxt ""
msgid "For All Text"
msgstr "Vir alle teks"
+#. KrUgJ
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:SetLanguageAllTextMenu\n"
+"PopupLabel\n"
+"value.text"
+msgid "Language for All Text"
+msgstr "Taal vir Alle Teks"
+
#. 4cXLB
#: GenericCommands.xcu
msgctxt ""
@@ -29106,7 +29146,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed"
-msgstr "Oortjies"
+msgstr "Oortjieblad"
#. 8Nfyz
#: ToolbarMode.xcu
@@ -29126,7 +29166,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar Compact"
-msgstr "Kompakte groepbalk"
+msgstr "Kompakte Werksbalk"
#. qM7MP
#: ToolbarMode.xcu
@@ -29136,7 +29176,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar"
-msgstr "Staaf groep"
+msgstr "Groep werksbalk"
#. jjRxj
#: ToolbarMode.xcu
@@ -29196,7 +29236,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed"
-msgstr "Oortjies"
+msgstr "Oortjieblad"
#. 5bBrj
#: ToolbarMode.xcu
@@ -29216,7 +29256,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar Compact"
-msgstr "Kompakte groepbalk"
+msgstr "Kompakte Werksbalk"
#. is78h
#: ToolbarMode.xcu
@@ -29226,7 +29266,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar"
-msgstr "Staaf groep"
+msgstr "Groep Werksbalk"
#. GPGPB
#: ToolbarMode.xcu
@@ -29266,7 +29306,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed"
-msgstr "Oortjies"
+msgstr "Oortjieblad"
#. DnZxB
#: ToolbarMode.xcu
@@ -29286,7 +29326,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar Compact"
-msgstr "Kompakte groepbalk"
+msgstr "Kompakte Werksbalk"
#. tGs79
#: ToolbarMode.xcu
@@ -29296,7 +29336,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar"
-msgstr "Groepeer Werksbalk"
+msgstr "Groep werksbalk"
#. WcJLU
#: ToolbarMode.xcu
@@ -29336,7 +29376,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed"
-msgstr "Oortjies"
+msgstr "Oortjieblad"
#. mGCMC
#: ToolbarMode.xcu
@@ -29356,7 +29396,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar Compact"
-msgstr "Kompakte groepbalk"
+msgstr "Kompakte Werksbalk"
#. FncB5
#: ToolbarMode.xcu
@@ -29698,6 +29738,16 @@ msgctxt ""
msgid "Indexes and ~Tables"
msgstr "Indekse en ~tabelle"
+#. eFv2z
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:UpdateAllIndexes\n"
+"PopupLabel\n"
+"value.text"
+msgid "Update Indexes and ~Tables"
+msgstr "Indekse en ~Tabelle Bywerk"
+
#. XPn5o
#: WriterCommands.xcu
msgctxt ""
@@ -29718,15 +29768,15 @@ msgctxt ""
msgid "Current ~Index"
msgstr "Huidige ~indeks"
-#. K4wN4
+#. 4nqPU
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:UpdateCurIndex\n"
"PopupLabel\n"
"value.text"
-msgid "Update index"
-msgstr "Werk indeks by"
+msgid "Update ~Index"
+msgstr "~Indeks Bywerk"
#. 3sfQu
#: WriterCommands.xcu
@@ -29948,6 +29998,16 @@ msgctxt ""
msgid "~Links"
msgstr "Skake~ls"
+#. gA4ED
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:UpdateAllLinks\n"
+"PopupLabel\n"
+"value.text"
+msgid "Update ~Links"
+msgstr "~Skakels Bywerk"
+
#. fQQgY
#: WriterCommands.xcu
msgctxt ""
@@ -30198,6 +30258,16 @@ msgctxt ""
msgid "~Charts"
msgstr "~Grafieke"
+#. wJWVm
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:UpdateCharts\n"
+"PopupLabel\n"
+"value.text"
+msgid "Update ~Charts"
+msgstr "~Diagramme Bywerk"
+
#. 46XYv
#: WriterCommands.xcu
msgctxt ""
@@ -30346,7 +30416,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Cross-~reference..."
-msgstr ""
+msgstr "Kruisve~rwysing..."
#. uBUDR
#: WriterCommands.xcu
@@ -32288,6 +32358,16 @@ msgctxt ""
msgid "~Fields"
msgstr "~Velde"
+#. SfG3D
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:UpdateFields\n"
+"PopupLabel\n"
+"value.text"
+msgid "Update ~Fields"
+msgstr "~Velde Bywerk"
+
#. tpc5P
#: WriterCommands.xcu
msgctxt ""
@@ -32948,6 +33028,16 @@ msgctxt ""
msgid "Page Formatting"
msgstr "Bladsyformatering"
+#. neAhV
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:Repaginate\n"
+"PopupLabel\n"
+"value.text"
+msgid "Update Page Formatting"
+msgstr "Bladsy Formattering Bywerk"
+
#. yyVam
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/af/sc/messages.po b/source/af/sc/messages.po
index ca259a3ebe4..5f6bd2d16e8 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: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-27 17:03+0200\n"
"PO-Revision-Date: 2021-03-09 11:41+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/af/>\n"
@@ -24734,231 +24734,231 @@ msgid "No solution was found."
msgstr "Geen Oplossing was gevind nie."
#. iQSEv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3009
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3002
msgctxt "CalcNotebookbar|FileMenuButton"
msgid "_File"
msgstr "_Lêer"
#. wh523
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3028
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3021
msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Hulp"
#. 3iDW7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3083
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3076
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr "~Lêer"
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3559
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Definieer die rand van die geselekteerde selle."
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3846
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3839
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Inspringing vergroot"
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3853
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Inspringing verminder"
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4792
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4785
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Begin"
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4901
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4894
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Begin"
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5460
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5453
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Vel_d"
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5981
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5974
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Invoeg"
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6089
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6082
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Invoeg"
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6500
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6526
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6964
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6493
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6519
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6957
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Objek-belyning"
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7189
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7182
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "~Uitleg"
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7274
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7267
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~Uitleg"
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8580
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8573
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr "_Statistiek"
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8631
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8624
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Data"
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8740
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8733
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Data"
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9562
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9555
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Oorsig"
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9648
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9641
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "He~rsien"
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10554
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10547
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Aansig"
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10640
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10633
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Vertoon Merker"
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11692
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11775
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Beeld"
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11817
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11900
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Beel~d"
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13036
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13119
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Teken"
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13146
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13229
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Teken"
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13618
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13701
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Omskakel"
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13918
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14001
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "-Objek"
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14028
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14111
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Objek"
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14603
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14686
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "-Media"
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14711
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14794
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15104
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15187
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Druk"
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15188
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15271
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Druk"
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16023
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16106
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Vo_rm"
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16108
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16191
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Vo~rm"
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16165
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16248
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr "_Uitbreiding"
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16239
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16322
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "~Uitbreiding"
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17467
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17550
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Nu_tsbalk"
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17635
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "Nu~tsgoed"
@@ -25163,492 +25163,492 @@ msgid "~Tools"
msgstr "Nu~tsgoed"
#. LL2dj
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3308
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3301
msgctxt "notebookbar_groupedbar_compact|fileb"
msgid "_File"
msgstr "_Lêer"
#. MR7ZB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3419
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3412
msgctxt "notebookbar_groupedbar_compact|editb"
msgid "_Edit"
msgstr "_Wysig"
#. AXNcR
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3538
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5126
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3531
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5119
msgctxt "notebookbar_groupedbar_compact|paragraphstyleb"
msgid "St_yles"
msgstr "St_yle"
#. scY66
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3692
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3685
msgctxt "notebookbar_groupedbar_compact|formatb"
msgid "F_ont"
msgstr "F_ont"
#. LFB3L
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3927
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3920
msgctxt "notebookbar_groupedbar_compact|paragraphb"
msgid "_Paragraph"
msgstr "_Paragraaf"
#. UnsAB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4341
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4334
msgctxt "notebookbar_groupedbar_compact|numberb"
msgid "_Number"
msgstr "_Getal"
#. hBvBa
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4455
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4448
msgctxt "notebookbar_groupedbar_compact|datab"
msgid "_Data"
msgstr "_Data"
#. CMGpS
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4569
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4562
msgctxt "notebookbar_groupedbar_compact|insertb"
msgid "_Insert"
msgstr "_Voeg In"
#. 5wZbP
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4683
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4676
msgctxt "notebookbar_groupedbar_compact|reviewb"
msgid "_Review"
msgstr "_Oorsig"
#. Uyv2y
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4797
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4790
msgctxt "notebookbar_groupedbar_compact|viewb"
msgid "_View"
msgstr "_Bekyk"
#. bgPuY
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4909
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:11443
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4902
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:11436
msgctxt "notebookbar_groupedbar_compact|FormButton"
msgid "Fo_rm"
msgstr "Fo_rm"
#. 5fAr4
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5002
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4995
msgctxt "notebookbar_groupedbar_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr "Uit_breiding"
#. T2jYU
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5280
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5273
msgctxt "notebookbar_groupedbar_compact|FormatButton"
msgid "F_ont"
msgstr "Font"
#. jZETF
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5513
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5506
msgctxt "notebookbar_groupedbar_compact|paragraphS"
msgid "_Paragraph"
msgstr "_Paragraaf"
#. 5Wp5j
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5771
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5764
msgctxt "notebookbar_groupedbar_compact|viewS"
msgid "_View"
msgstr "_Bekyk"
#. DC7Hv
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5909
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5902
msgctxt "notebookbar_groupedbar_compact|editdrawb"
msgid "D_raw"
msgstr "\"D_raw\""
#. ncAKi
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:6347
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7933
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9004
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9625
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:10459
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:6340
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7926
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:8997
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9618
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:10452
msgctxt "notebookbar_groupedbar_compact|ArrangeButton"
msgid "_Arrange"
msgstr "Orden"
#. 8pLR3
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:6631
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:6624
msgctxt "notebookbar_groupedbar_compact|draw"
msgid "_Shape"
msgstr "Vorm"
#. NM63T
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:6887
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:10716
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:6880
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:10709
msgctxt "notebookbar_groupedbar_compact|viewDrawb"
msgid "Grou_p"
msgstr "Groe_p"
#. cbMTW
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7013
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7006
msgctxt "notebookbar_groupedbar_compact|3Db"
msgid "3_D"
msgstr "3_D"
#. BTzDn
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7248
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7241
msgctxt "notebookbar_groupedbar_compact|GridButton"
msgid "_Fontwork"
msgstr "_Fontwerk"
#. PLqyG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7362
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:8438
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9261
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9883
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:10831
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7355
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:8431
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9254
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9876
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:10824
msgctxt "notebookbar_groupedbar_compact|GridButton"
msgid "_Grid"
msgstr "_Rooster"
#. K6izG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7495
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7488
msgctxt "notebookbar_groupedbar_compact|ImageButton"
msgid "Im_age"
msgstr "_Beeld"
#. SEFWn
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:8167
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:8160
msgctxt "notebookbar_groupedbar_compact|ColorButton"
msgid "Fi_lter"
msgstr "Fi_lter"
#. 5a4zV
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:8566
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:8559
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "_Object"
msgstr "_Objek"
#. Ghwp6
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9390
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9383
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "_Media"
msgstr "_Media"
#. nyHDP
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:10021
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:10014
msgctxt "notebookbar_groupedbar_compact|editdrawb"
msgid "_Edit"
msgstr "_Wysig"
#. PhCFL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:11310
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:11303
msgctxt "notebookbar_groupedbar_compact|PrintMenuButton"
msgid "_Print"
msgstr "_Uitdruk"
#. RC7F3
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:12227
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:12220
msgctxt "notebookbar_groupedbar_compact|MenuButton"
msgid "_Menu"
msgstr "_Keuselys"
#. mBSfG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2615
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2608
msgctxt "notebookbar_groupedbar_full|defaultD"
msgid "Default"
msgstr "Verstek"
#. Z7t2R
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2629
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2622
msgctxt "notebookbar_groupedbar_full|Accent1"
msgid "Accent 1"
msgstr "Aksent 1"
#. xeEFE
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2637
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2630
msgctxt "notebookbar_groupedbar_full|Accent2"
msgid "Accent 2"
msgstr "Aksent 2"
#. G3TRo
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2645
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2638
msgctxt "notebookbar_groupedbar_full|Accent3"
msgid "Accent 3"
msgstr "Aksent 3"
#. QcUKG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2659
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2652
msgctxt "notebookbar_groupedbar_full|Header1"
msgid "Heading 1"
msgstr "Opskrif 1"
#. 6Ej4G
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2667
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2660
msgctxt "notebookbar_groupedbar_full|Header2"
msgid "Heading 2"
msgstr "Opskrif 2"
#. sqE94
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2681
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2674
msgctxt "notebookbar_groupedbar_full|bad"
msgid "Bad"
msgstr "Sleg"
#. 3ibZN
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2689
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2682
msgctxt "notebookbar_groupedbar_full|good"
msgid "Good"
msgstr "Goed"
#. DGBbw
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2697
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2690
msgctxt "notebookbar_groupedbar_full|neutral"
msgid "Neutral"
msgstr "Neutraal"
#. keb9M
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2705
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2698
msgctxt "notebookbar_groupedbar_full|error"
msgid "Error"
msgstr "Fout"
#. WtFbH
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2713
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2706
msgctxt "notebookbar_groupedbar_full|warning"
msgid "Warning"
msgstr "Waarskuwing"
#. t9EbD
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2727
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2720
msgctxt "notebookbar_groupedbar_full|footnote"
msgid "Footnote"
msgstr "Voetnoot"
#. FFrSw
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2735
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2728
msgctxt "notebookbar_groupedbar_full|note"
msgid "Note"
msgstr "Nota"
#. EsADr
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3226
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3219
msgctxt "notebookbar_groupedbar_full|menub"
msgid "_Menu"
msgstr "_Keuselys"
#. Ch63h
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3280
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3273
msgctxt "notebookbar_groupedbar_full|toolsb"
msgid "_Tools"
msgstr "Nu_tsbalk"
#. kdH4L
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3335
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3328
msgctxt "notebookbar_groupedbar_full|helpb"
msgid "_Help"
msgstr "_Help"
#. bkg23
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3444
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3437
msgctxt "notebookbar_groupedbar_full|fileb"
msgid "_File"
msgstr "_Lêer"
#. aqbEs
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3682
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3675
msgctxt "notebookbar_groupedbar_full|editb"
msgid "_Edit"
msgstr "_Wysig"
#. HFC9U
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3879
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3872
msgctxt "notebookbar_groupedbar_full|paragraphstyleb"
msgid "St_yles"
msgstr "St_yle"
#. VFtWK
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4152
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4145
msgctxt "notebookbar_groupedbar_full|formatb"
msgid "F_ont"
msgstr "F_ont"
#. 9HzEG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4398
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4391
msgctxt "notebookbar_groupedbar_full|numberb"
msgid "_Number"
msgstr "_Getal"
#. F7vQ2
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4614
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4607
msgctxt "notebookbar_groupedbar_full|paragraphb"
msgid "_Alignment"
msgstr "_Belyning"
#. QnhiG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4848
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4841
msgctxt "notebookbar_groupedbar_full|cellb"
msgid "_Cells"
msgstr "_Selle"
#. rrpkZ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5009
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5002
msgctxt "notebookbar_groupedbar_full|insertb"
msgid "_Insert"
msgstr "_Voeg in"
#. NsDSM
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5192
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5185
msgctxt "notebookbar_groupedbar_full|datab"
msgid "_Data"
msgstr "_Data"
#. gQQfL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5364
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5357
msgctxt "notebookbar_groupedbar_full|reviewb"
msgid "_Review"
msgstr "Oo_rsig"
#. BHDdD
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5536
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5529
msgctxt "notebookbar_groupedbar_full|viewb"
msgid "_View"
msgstr "_Bekyk"
#. ZJufp
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5761
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5754
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "Im_age"
msgstr "Afbeeldin_g"
#. punQr
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6113
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6106
msgctxt "notebookbar_groupedbar_full|arrange"
msgid "_Arrange"
msgstr "R_angskik"
#. DDTxx
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6264
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6257
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "K_leur"
#. CHosB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6515
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6508
msgctxt "notebookbar_groupedbar_full|GridB"
msgid "_Grid"
msgstr "_Rooster"
#. xeUxD
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6652
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6645
msgctxt "notebookbar_groupedbar_full|languageb"
msgid "_Language"
msgstr "_Taal"
#. eBoPL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6881
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6874
msgctxt "notebookbar_groupedbar_full|revieb"
msgid "_Review"
msgstr "Oorsig"
#. y4Sg3
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7094
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7087
msgctxt "notebookbar_groupedbar_full|commentsb"
msgid "_Comments"
msgstr "_Opmerkings"
#. m9Mxg
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7297
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7290
msgctxt "notebookbar_groupedbar_full|compareb"
msgid "Com_pare"
msgstr "_Vergelyking"
#. ewCjP
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7499
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7492
msgctxt "notebookbar_groupedbar_full|viewa"
msgid "_View"
msgstr "_Aansig"
#. WfzeY
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7945
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7938
msgctxt "notebookbar_groupedbar_full|drawb"
msgid "D_raw"
msgstr "\"D_raw\""
#. QNg9L
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8314
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8307
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "_Edit"
msgstr "_Wysig"
#. MECyG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8655
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8648
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "_Rangskik"
#. 9Z4JQ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8822
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8815
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_View"
msgstr "_Aansig"
#. 3i55T
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9024
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9017
msgctxt "notebookbar_groupedbar_full|viewDrawb"
msgid "Grou_p"
msgstr "_Groep"
#. fNGFB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9174
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9167
msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "3_D"
#. stsit
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9483
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9476
msgctxt "notebookbar_groupedbar_full|formatd"
msgid "F_ont"
msgstr "_Font"
#. ZDEax
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9748
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9741
msgctxt "notebookbar_groupedbar_full|paragraphTextb"
msgid "_Alignment"
msgstr "_Belyning"
#. CVAyh
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9950
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9943
msgctxt "notebookbar_groupedbar_full|viewd"
msgid "_View"
msgstr "_Aansig"
#. h6EHi
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10104
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10097
msgctxt "notebookbar_groupedbar_full|insertTextb"
msgid "_Insert"
msgstr "_Voeg in"
#. eLnnF
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10249
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10242
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "_Media"
#. dzADL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10486
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10479
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "F_rame"
msgstr "_Raam"
#. GjFnB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10917
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10910
msgctxt "notebookbar_groupedbar_full|arrageOLE"
msgid "_Arrange"
msgstr "_Rangskik"
#. DF4U7
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11083
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11076
msgctxt "notebookbar_groupedbar_full|OleGridB"
msgid "_Grid"
msgstr "_Rooster"
#. UZ2JJ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11285
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11278
msgctxt "notebookbar_groupedbar_full|viewf"
msgid "_View"
msgstr "_Aansig"
diff --git a/source/af/scp2/source/ooo.po b/source/af/scp2/source/ooo.po
index 84ab29ee01f..fd5d82d92a8 100644
--- a/source/af/scp2/source/ooo.po
+++ b/source/af/scp2/source/ooo.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-04-12 12:07+0200\n"
-"PO-Revision-Date: 2020-12-18 19:36+0000\n"
+"PO-Revision-Date: 2021-04-15 08:37+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
-"Language-Team: Afrikaans <https://weblate.documentfoundation.org/projects/libo_ui-master/scp2sourceooo/af/>\n"
+"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/scp2sourceooo/af/>\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-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1560975729.000000\n"
#. CYBGJ
@@ -4577,7 +4577,7 @@ msgctxt ""
"STR_NAME_MODULE_EXTENSION_DICTIONARY_EO\n"
"LngText.text"
msgid "Esperanto"
-msgstr ""
+msgstr "Esperanto"
#. kCMkK
#: module_ooo.ulf
@@ -4586,7 +4586,7 @@ msgctxt ""
"STR_DESC_MODULE_EXTENSION_DICTIONARY_EO\n"
"LngText.text"
msgid "Esperanto spelling dictionary, hyphenation rules, and thesaurus"
-msgstr ""
+msgstr "Spellingwoordeboek, thesaurus en woordafbreekreëls vir Esperanto"
#. 6Mzvn
#: module_ooo.ulf
diff --git a/source/af/sd/messages.po b/source/af/sd/messages.po
index 34efab4bfa8..8eb3b34f1bf 100644
--- a/source/af/sd/messages.po
+++ b/source/af/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: 2021-03-29 16:03+0200\n"
-"PO-Revision-Date: 2021-03-30 09:34+0000\n"
+"POT-Creation-Date: 2021-04-27 17:03+0200\n"
+"PO-Revision-Date: 2021-04-28 11:49+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/af/>\n"
"Language: af\n"
@@ -3640,7 +3640,7 @@ msgstr "Teks"
#: sd/uiconfig/sdraw/ui/drawprtldialog.ui:521
msgctxt "drawprtldialog|RID_SVXPAGE_PICK_BULLET"
msgid "Bullets"
-msgstr "Koeëltjies"
+msgstr "Kolparagrawe"
#. X7bEg
#: sd/uiconfig/sdraw/ui/drawprtldialog.ui:569
@@ -3805,225 +3805,225 @@ msgid "Name HTML Design"
msgstr "Naam vir HTML-ontwerp"
#. V3FWt
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3175
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3167
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr "Lêer"
#. exwEC
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3194
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3186
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Help"
#. qrXDY
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3250
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3242
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr "Lêer"
#. EQ6HL
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4572
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4564
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "Begin"
#. jtFqm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4673
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4665
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr "Begin"
#. zoUaS
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5420
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5412
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Veld"
#. S5FkE
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5606
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5598
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Invoeg"
#. Z3UCg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5713
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5705
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Invoeg"
#. TVDXM
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6429
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6421
msgctxt "drawnotebookbar|PageMenuButton"
msgid "_Layout"
msgstr "Uitleg"
#. Rv7x4
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6515
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6507
msgctxt "drawnotebookbar|PageLabel"
msgid "~Layout"
msgstr "Uitleg"
#. BQcfo
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7065
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:7057
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Oorsig"
#. prpcY
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7149
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:7141
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "He~rsien"
#. EiuB6
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8199
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Sien Lys"
#. EF3TH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8293
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8285
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Vertoon Merker"
#. 94L75
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9680
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9672
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr "Teks"
#. PQtWE
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9777
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9769
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr "Teks"
#. tNq7H
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10707
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10699
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "Tabel"
#. 9pJGh
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10792
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10784
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr "Tabel"
#. ECD4J
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12536
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14390
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11328
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12618
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14472
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Omvorm"
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11931
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12013
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Beeld"
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12043
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12125
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Beeld"
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13788
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13870
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Draw"
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13897
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13979
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Draw"
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14756
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14838
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "Objek"
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14866
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14948
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "Objek"
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15382
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15464
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "Media"
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15489
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15571
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "Media"
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16324
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16406
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Vorm"
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16409
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16491
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Vorm"
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17223
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17305
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_D"
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17333
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17415
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr "3~D"
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17868
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17950
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr "Model"
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17953
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18035
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr "Model"
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18010
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18092
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "Uitbreiding"
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18084
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18166
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Uitbreiding"
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19028
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19110
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Nu_tsbalk"
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:19113
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:19195
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Nu~tsbalk"
@@ -4239,190 +4239,190 @@ msgid "~Tools"
msgstr "Nu~tsgoed"
#. BN8VW
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2302
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2295
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
msgstr "Kieslys-balk"
#. gf8PA
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2434
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2427
msgctxt "draw_notebookbar_groupedbar_compact|MenubarView"
msgid "Menubar"
msgstr "Kieslys-balk"
#. ELBq3
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:3037
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:3030
msgctxt "draw_notebookbar_groupedbar_compact|fileb"
msgid "_File"
msgstr "Lêer"
#. DRGus
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:3148
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:3141
msgctxt "draw_notebookbar_groupedbar_compact|editb"
msgid "_Edit"
msgstr "_Wysig"
#. vbFke
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:3278
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:6774
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:13069
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:3271
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:6767
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:13062
msgctxt "draw_notebookbar_groupedbar_compact|insertText"
msgid "_Insert"
msgstr "Invoeg"
#. 4p9DA
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:3439
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:12668
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:3432
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:12661
msgctxt "draw_notebookbar_groupedbar_compact|draw"
msgid "D_raw"
msgstr "Draw"
#. DsE2d
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:3882
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:7639
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:9558
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:10681
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:11360
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:12251
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:13205
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:3875
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:7632
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:9551
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:10674
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:11353
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:12244
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:13198
msgctxt "draw_notebookbar_groupedbar_compact|insertText"
msgid "_Snap"
msgstr "Vang"
#. Dsr5A
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:4022
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:13345
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:4015
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:13338
msgctxt "draw_notebookbar_groupedbar_compact|reviewb"
msgid "_Review"
msgstr "Oorsien"
#. Pxoj8
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:4136
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:5289
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:13459
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:4129
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:5282
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:13452
msgctxt "draw_notebookbar_groupedbar_compact|viewT"
msgid "_View"
msgstr "_Aansig"
#. cjxQa
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:4248
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:13595
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:4241
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:13588
msgctxt "draw_notebookbar_groupedbar_compact|FormButton"
msgid "Fo_rm"
msgstr "Vorm"
#. eAioD
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:4341
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:4334
msgctxt "draw_notebookbar_groupedbar_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr "Uitbreiding"
#. c3M8j
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:4503
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:5458
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:4496
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:5451
msgctxt "draw_notebookbar_groupedbar_compact|formatt"
msgid "F_ont"
msgstr "Font"
#. pUqDJ
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:4740
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:5695
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:4733
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:5688
msgctxt "draw_notebookbar_groupedbar_compact|paragrapht"
msgid "_Paragraph"
msgstr "Paragraaf"
#. MRg9E
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:5962
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:5955
msgctxt "draw_notebookbar_groupedbar_compact|rowscolumnst"
msgid "_Table"
msgstr "Tabel"
#. QzCG4
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:6649
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:6642
msgctxt "draw_notebookbar_groupedbar_compact|calculatet"
msgid "_Calc"
msgstr "Calc"
#. 5GKtj
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:6923
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:11535
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:6916
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:11528
msgctxt "draw_notebookbar_groupedbar_compact|editdrawb"
msgid "D_raw"
msgstr "Draw"
#. dc5qG
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:7361
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:9280
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:10403
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:11081
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:11973
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:7354
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:9273
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:10396
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:11074
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:11966
msgctxt "draw_notebookbar_groupedbar_compact|ArrangeButton"
msgid "_Arrange"
msgstr "Rangskik"
#. ApB4j
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:7829
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:7822
msgctxt "draw_notebookbar_groupedbar_compact|draw"
msgid "_Shape"
msgstr "Vorm"
#. R5YZh
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8106
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:12391
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8099
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:12384
msgctxt "draw_notebookbar_groupedbar_compact|viewDrawb"
msgid "Grou_p"
msgstr "Groepeer"
#. TCPHC
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8351
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8344
msgctxt "draw_notebookbar_groupedbar_compact|3Db"
msgid "3_D"
msgstr "3_D"
#. hgFay
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8585
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8578
msgctxt "draw_notebookbar_groupedbar_compact|GridButton"
msgid "_Fontwork"
msgstr "FontWerk"
#. Q6ELJ
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8699
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8692
msgctxt "draw_notebookbar_groupedbar_compact|GridButton"
msgid "_Grid"
msgstr "Rooster"
#. fQJRZ
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8839
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8832
msgctxt "draw_notebookbar_groupedbar_compact|graphicB"
msgid "_Image"
msgstr "Beeld"
#. xudwE
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:9676
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:9669
msgctxt "draw_notebookbar_groupedbar_compact|GridB"
msgid "Fi_lter"
msgstr "Filter"
#. 8qSXf
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:9965
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:9958
msgctxt "draw_notebookbar_groupedbar_compact|graphicB"
msgid "_Object"
msgstr "Objek"
#. QdUM9
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:10846
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:10839
msgctxt "draw_notebookbar_groupedbar_compact|graphicB"
msgid "_Media"
msgstr "Media"
#. kwxYr
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:12529
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:12522
msgctxt "draw_notebookbar_groupedbar_compact|oleB"
msgid "_Master"
msgstr "Meester"
#. bBpXr
-#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:14357
+#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:14350
msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr "Keuseskerm"
@@ -6604,237 +6604,237 @@ msgid "All shapes"
msgstr "Alle vorms"
#. qGFEo
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3208
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3201
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr "Lêer"
#. PyC4c
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3227
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3220
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Help"
#. VoxXb
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3283
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3276
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr "Lêer"
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4853
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4846
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "Begin"
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4955
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4948
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "Begin"
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5570
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5563
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Veld"
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6129
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6122
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Invoeg"
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6235
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6228
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Invoeg"
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7028
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7021
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr "Uitleg"
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7114
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7107
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "Uitleg"
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7588
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7581
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "Skyfievertoning"
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7673
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7666
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "Skyfievertoning"
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8221
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8214
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Oorsig"
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8305
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8298
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "He~rsien"
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9556
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9549
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Sien Lys"
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9642
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9635
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Vertoon Merker"
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10564
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10557
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabel"
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10649
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10642
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabel"
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11191
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12391
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14263
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11184
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12474
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14346
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Omskakel"
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11788
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11871
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Beeld"
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11900
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11983
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "~Beeld"
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13659
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "\"_Draw\""
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13769
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13852
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "\"~Draw'"
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14629
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14712
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objek"
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14739
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14822
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objek"
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15255
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15338
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15362
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15445
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16197
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16280
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Vo_rm"
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16282
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16365
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Vo~rm"
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17094
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17177
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_Model"
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17179
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17262
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr "Model"
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18007
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18090
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr "-Aansig"
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18092
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18175
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr "Oorsig"
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18906
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18989
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_D"
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19016
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19099
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr "3~D"
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19073
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19156
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "Uitbreiding"
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19147
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19230
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Uitbreiding"
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20143
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20226
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Nu_tsbalk"
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:20228
+#: sd/uiconfig/simpress/ui/notebookbar.ui:20311
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Nu~tsgoed"
@@ -7050,196 +7050,196 @@ msgid "~Tools"
msgstr "Nu~tsgoed"
#. JC7Dd
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:2308
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:2301
msgctxt "impress_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
msgstr "Kieslys-balk"
#. aEHCg
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:2481
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:2474
msgctxt "impress_notebookbar_groupedbar_compact|MenubarView"
msgid "Menubar"
msgstr "Kieslys-balk"
#. LL2dj
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:3097
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:3090
msgctxt "notebookbar_groupedbar_compact|fileb"
msgid "_File"
msgstr "Lêer"
#. MR7ZB
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:3208
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:3201
msgctxt "notebookbar_groupedbar_compact|editb"
msgid "_Edit"
msgstr "_Wysig"
#. 26rGJ
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:3338
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4557
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:3331
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4550
msgctxt "notebookbar_groupedbar_compact|reviewb"
msgid "S_lide"
msgstr "Skyfie"
#. WZ5Fe
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:3500
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:12758
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:3493
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:12751
msgctxt "notebookbar_groupedbar_compact|draw"
msgid "D_raw"
msgstr "\"Draw\""
#. GYqWX
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:3943
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:7709
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:9626
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:10749
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:11428
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:12319
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:13284
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:3936
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:7702
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:9619
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:10742
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:11421
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:12312
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:13277
msgctxt "notebookbar_groupedbar_compact|insertText"
msgid "_Snap"
msgstr "Gryp"
#. LFnQL
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4083
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:6844
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:13148
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4076
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:6837
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:13141
msgctxt "notebookbar_groupedbar_compact|insertText"
msgid "_Insert"
msgstr "Invoeg"
#. 5wZbP
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4197
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:13424
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4190
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:13417
msgctxt "notebookbar_groupedbar_compact|reviewb"
msgid "_Review"
msgstr "Resensie"
#. BxXfn
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4322
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:5388
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:13549
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4315
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:5381
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:13542
msgctxt "notebookbar_groupedbar_compact|viewT"
msgid "_View"
msgstr "Afbeelding"
#. 5fAr4
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4421
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4414
msgctxt "notebookbar_groupedbar_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr "Uitbreiding"
#. fED72
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4712
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:5556
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4705
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:5549
msgctxt "notebookbar_groupedbar_compact|formatt"
msgid "F_ont"
msgstr "Font"
#. YgxCs
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4947
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:5767
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4940
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:5760
msgctxt "notebookbar_groupedbar_compact|paragrapht"
msgid "_Paragraph"
msgstr "Paragraaf"
#. Tgwxy
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:6045
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:6038
msgctxt "notebookbar_groupedbar_compact|rowscolumnst"
msgid "_Table"
msgstr "Tabel"
#. PRamE
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:6719
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:6712
msgctxt "notebookbar_groupedbar_compact|calculatet"
msgid "_Calc"
msgstr "\"Calc\""
#. DC7Hv
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:6993
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:11603
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:6986
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:11596
msgctxt "notebookbar_groupedbar_compact|editdrawb"
msgid "D_raw"
msgstr "\"Draw\""
#. ncAKi
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:7431
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:9348
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:10471
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:11149
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:12041
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:7424
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:9341
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:10464
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:11142
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:12034
msgctxt "notebookbar_groupedbar_compact|ArrangeButton"
msgid "_Arrange"
msgstr "Orden"
#. 8pLR3
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:7899
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:7892
msgctxt "notebookbar_groupedbar_compact|draw"
msgid "_Shape"
msgstr "Vorm"
#. NM63T
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8174
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:12459
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8167
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:12452
msgctxt "notebookbar_groupedbar_compact|viewDrawb"
msgid "Grou_p"
msgstr "Groepeer"
#. cbMTW
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8419
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8412
msgctxt "notebookbar_groupedbar_compact|3Db"
msgid "3_D"
msgstr "3_D"
#. BTzDn
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8653
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8646
msgctxt "notebookbar_groupedbar_compact|GridButton"
msgid "_Fontwork"
msgstr "Fontwerk"
#. PLqyG
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8767
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8760
msgctxt "notebookbar_groupedbar_compact|GridButton"
msgid "_Grid"
msgstr "Rooster"
#. XL8kc
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8907
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8900
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "_Image"
msgstr "Beeld"
#. snvvw
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:9744
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:9737
msgctxt "notebookbar_groupedbar_compact|GridB"
msgid "Fi_lter"
msgstr "Filter"
#. 5a4zV
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:10033
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:10026
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "_Object"
msgstr "Objek"
#. Ghwp6
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:10914
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:10907
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "_Media"
msgstr "Media"
#. w6MPS
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:12597
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:12590
msgctxt "notebookbar_groupedbar_compact|oleB"
msgid "_Master"
msgstr "Model"
#. MGQxe
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:13687
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:13680
msgctxt "impress_notebookbar_groupedbar_compact|FormButton"
msgid "Fo_rm"
msgstr "Vorm"
#. xBYsC
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:14449
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:14442
msgctxt "notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr "Keuselys"
diff --git a/source/af/sfx2/messages.po b/source/af/sfx2/messages.po
index 214ada1f6ea..9a80d6084a3 100644
--- a/source/af/sfx2/messages.po
+++ b/source/af/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: 2021-04-12 12:06+0200\n"
-"PO-Revision-Date: 2021-03-23 10:56+0000\n"
+"POT-Creation-Date: 2021-04-27 17:03+0200\n"
+"PO-Revision-Date: 2021-04-28 11:49+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/af/>\n"
"Language: af\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: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1560975251.000000\n"
#. bHbFE
@@ -331,38 +331,44 @@ msgstr ""
"Die volgende gidse kan nie geskrap word nie:\n"
"$1"
-#. JiTrQ
+#. buPTz
#: include/sfx2/strings.hrc:73
+msgctxt "STR_TOOLTIP_ERROR_RENAME_TEMPLATE"
+msgid "There is another template with the name $1 in $2."
+msgstr "In $2 is daar 'n ander sjablone met die naam $1."
+
+#. JiTrQ
+#: include/sfx2/strings.hrc:74
msgctxt "STR_QMSG_SEL_FOLDER_DELETE"
msgid "Do you want to delete the selected category?"
msgstr "Wil u die geselekteerde kategorie verwyder?"
#. C9pLF
-#: include/sfx2/strings.hrc:74
+#: include/sfx2/strings.hrc:75
msgctxt "STR_QMSG_TEMPLATE_OVERWRITE"
msgid "A template named $1 already exists in $2. Do you want to overwrite it?"
msgstr "'n Sjablone genaamd $1 bestaan alreeds in $2. Wil u dit oorskryf?"
#. 6MoGu
-#: include/sfx2/strings.hrc:75
+#: include/sfx2/strings.hrc:76
msgctxt "STR_QMSG_SEL_TEMPLATE_DELETE"
msgid "Do you want to delete the selected templates?"
msgstr "Wil u die gekose sjablone skrap?"
#. WR2LD
-#: include/sfx2/strings.hrc:76
+#: include/sfx2/strings.hrc:77
msgctxt "STR_QMSG_ERROR_OPENING_FILE"
msgid "An error occurred during opening the file. This may be caused by incorrect file contents.\n"
msgstr "’n Fout het voorgekom tydens oopmaak van die lêer. Dit kan weens verkeerde lêerinhoud wees.\n"
#. AsUee
-#: include/sfx2/strings.hrc:77
+#: include/sfx2/strings.hrc:78
msgctxt "STR_QMSG_ERROR_OPENING_FILE_DETAILS"
msgid "The error details are:\n"
msgstr "Die fout se besonderhede is:\n"
#. D2XDV
-#: include/sfx2/strings.hrc:78
+#: include/sfx2/strings.hrc:79
msgctxt "STR_QMSG_ERROR_OPENING_FILE_CONTINUE"
msgid ""
"\n"
@@ -376,139 +382,139 @@ msgstr ""
"Wil u die fout ignoreer en voortgaan om die lêer te laai?"
#. g63UH
-#: include/sfx2/strings.hrc:80
+#: include/sfx2/strings.hrc:81
msgctxt "STR_HELP_WINDOW_TITLE"
msgid "%PRODUCTNAME Help"
msgstr "%PRODUCTNAME-hulp"
#. Veb3m
-#: include/sfx2/strings.hrc:81
+#: include/sfx2/strings.hrc:82
msgctxt "STR_HELP_BUTTON_INDEX_ON"
msgid "Show Navigation Pane"
msgstr "Vertoon navigasiepaneel"
#. 3LGpr
-#: include/sfx2/strings.hrc:82
+#: include/sfx2/strings.hrc:83
msgctxt "STR_HELP_BUTTON_INDEX_OFF"
msgid "Hide Navigation Pane"
msgstr "Versteek navigasiepaneel"
#. g8Vns
-#: include/sfx2/strings.hrc:83
+#: include/sfx2/strings.hrc:84
msgctxt "STR_HELP_BUTTON_START"
msgid "First Page"
msgstr "Eerste bladsy"
#. YMoQp
-#: include/sfx2/strings.hrc:84
+#: include/sfx2/strings.hrc:85
msgctxt "STR_HELP_BUTTON_PREV"
msgid "Previous Page"
msgstr "Vorige bladsy"
#. mGB7r
-#: include/sfx2/strings.hrc:85
+#: include/sfx2/strings.hrc:86
msgctxt "STR_HELP_BUTTON_NEXT"
msgid "Next Page"
msgstr "Volgende bladsy"
#. dys7x
-#: include/sfx2/strings.hrc:86
+#: include/sfx2/strings.hrc:87
msgctxt "STR_HELP_BUTTON_PRINT"
msgid "Print..."
msgstr "Druk..."
#. bmCzY
-#: include/sfx2/strings.hrc:87
+#: include/sfx2/strings.hrc:88
msgctxt "STR_HELP_BUTTON_ADDBOOKMARK"
msgid "Add to Bookmarks..."
msgstr "Voeg by boekmerke..."
#. SGFus
-#: include/sfx2/strings.hrc:88
+#: include/sfx2/strings.hrc:89
msgctxt "STR_HELP_BUTTON_SEARCHDIALOG"
msgid "Find on this Page..."
msgstr "Vind op hierdie bladsy..."
#. qvTDZ
-#: include/sfx2/strings.hrc:89
+#: include/sfx2/strings.hrc:90
msgctxt "STR_HELP_BUTTON_SOURCEVIEW"
msgid "HTML Source"
msgstr "HTML-bronkode"
#. pHyBm
-#: include/sfx2/strings.hrc:90
+#: include/sfx2/strings.hrc:91
msgctxt "STR_HELP_MENU_TEXT_SELECTION_MODE"
msgid "Select Text"
msgstr "Selekteer teks"
#. 5FCCv
-#: include/sfx2/strings.hrc:91
+#: include/sfx2/strings.hrc:92
msgctxt "STR_HELP_MENU_TEXT_COPY"
msgid "~Copy"
msgstr "~Kopieer"
#. TQd3C
-#: include/sfx2/strings.hrc:92
+#: include/sfx2/strings.hrc:93
msgctxt "STR_INFO_NOSEARCHRESULTS"
msgid "No topics found."
msgstr "Geen onderwerpe gevind nie."
#. 9D6Ze
-#: include/sfx2/strings.hrc:93
+#: include/sfx2/strings.hrc:94
msgctxt "STR_INFO_NOSEARCHTEXTFOUND"
msgid "The text you entered was not found."
msgstr "Die teks wat u ingetik het, is nie gevind nie."
#. qLPDs
-#: include/sfx2/strings.hrc:94
+#: include/sfx2/strings.hrc:95
msgctxt "RID_HELP_ONSTARTUP_TEXT"
msgid "~Display %PRODUCTNAME %MODULENAME Help at Startup"
msgstr "~Vertoon %PRODUCTNAME %MODULENAME-hulp tydens laai"
#. TEgzB
-#: include/sfx2/strings.hrc:96
+#: include/sfx2/strings.hrc:97
msgctxt "STR_NONAME"
msgid "Untitled"
msgstr "Naamloos"
#. fs5SN
-#: include/sfx2/strings.hrc:97
+#: include/sfx2/strings.hrc:98
msgctxt "STR_STANDARD_SHORTCUT"
msgid "Standard"
msgstr "Standaard"
#. 6sRBN
-#: include/sfx2/strings.hrc:98
+#: include/sfx2/strings.hrc:99
msgctxt "STR_BYTES"
msgid "Bytes"
msgstr "Grepe"
#. 6iirE
-#: include/sfx2/strings.hrc:99
+#: include/sfx2/strings.hrc:100
msgctxt "STR_KB"
msgid "KB"
msgstr "KG"
#. VrFxn
-#: include/sfx2/strings.hrc:100
+#: include/sfx2/strings.hrc:101
msgctxt "STR_MB"
msgid "MB"
msgstr "MG"
#. 9rBAW
-#: include/sfx2/strings.hrc:101
+#: include/sfx2/strings.hrc:102
msgctxt "STR_GB"
msgid "GB"
msgstr "GG"
#. DqwaN
-#: include/sfx2/strings.hrc:102
+#: include/sfx2/strings.hrc:103
msgctxt "STR_QUERY_LASTVERSION"
msgid "Cancel all changes?"
msgstr "Kanselleer alle wysigings?"
#. cCrDG
-#: include/sfx2/strings.hrc:103
+#: include/sfx2/strings.hrc:104
msgctxt "STR_NO_WEBBROWSER_FOUND"
msgid ""
"Opening \"$(ARG1)\" failed with error code $(ARG2) and message: \"$(ARG3)\"\n"
@@ -518,241 +524,241 @@ msgstr ""
"Miskien is daar geen webblaaier op u stelsel nie. Kontroleer in hierdie geval u rekenaar instellings of installeer 'n webblaaier (bv. Firefox) op die verstek ligging soos versoek tydens die blaaierinstallasie."
#. ADqLM
-#: include/sfx2/strings.hrc:104
+#: include/sfx2/strings.hrc:105
msgctxt "STR_NO_ABS_URI_REF"
msgid "\"$(ARG1)\" cannot be passed to an external application to open it (e.g., it might not be an absolute URL, or might denote no existing file)."
msgstr "\"$(ARG1)\" kan nie deurgegee word aan 'n eksterne toepassing om oop te maak nie (die URL is moontlik nie-absoluut, of dui 'n nie-bestaande lêer aan)."
#. XDUCY
-#: include/sfx2/strings.hrc:105
+#: include/sfx2/strings.hrc:106
msgctxt "STR_GID_INTERN"
msgid "Internal"
msgstr "Intern"
#. 4g9hU
-#: include/sfx2/strings.hrc:106
+#: include/sfx2/strings.hrc:107
msgctxt "STR_GID_APPLICATION"
msgid "Application"
msgstr "Toepassing"
#. rBzxu
-#: include/sfx2/strings.hrc:107
+#: include/sfx2/strings.hrc:108
msgctxt "STR_GID_VIEW"
msgid "View"
msgstr "Bekyk"
#. NQnym
-#: include/sfx2/strings.hrc:108
+#: include/sfx2/strings.hrc:109
msgctxt "STR_GID_DOCUMENT"
msgid "Documents"
msgstr "Dokumente"
#. DbzDd
-#: include/sfx2/strings.hrc:109
+#: include/sfx2/strings.hrc:110
msgctxt "STR_GID_EDIT"
msgid "Edit"
msgstr "Redigeer"
#. HqK5g
-#: include/sfx2/strings.hrc:110
+#: include/sfx2/strings.hrc:111
msgctxt "STR_GID_MACRO"
msgid "BASIC"
msgstr "BASIC"
#. 3QkTL
-#: include/sfx2/strings.hrc:111
+#: include/sfx2/strings.hrc:112
msgctxt "STR_GID_OPTIONS"
msgid "Options"
msgstr "Opsies"
#. GFEQ3
-#: include/sfx2/strings.hrc:112
+#: include/sfx2/strings.hrc:113
msgctxt "STR_GID_MATH"
msgid "Math"
msgstr "Wiskunde"
#. rFALW
-#: include/sfx2/strings.hrc:113
+#: include/sfx2/strings.hrc:114
msgctxt "STR_GID_NAVIGATOR"
msgid "Navigate"
msgstr "Navigeer"
#. w7dmG
-#: include/sfx2/strings.hrc:114
+#: include/sfx2/strings.hrc:115
msgctxt "STR_GID_INSERT"
msgid "Insert"
msgstr "Voeg in"
#. fokQp
-#: include/sfx2/strings.hrc:115
+#: include/sfx2/strings.hrc:116
msgctxt "STR_GID_FORMAT"
msgid "Format"
msgstr "Formaat"
#. fLTV6
-#: include/sfx2/strings.hrc:116
+#: include/sfx2/strings.hrc:117
msgctxt "STR_GID_TEMPLATE"
msgid "Templates"
msgstr "Sjablone"
#. JAdCZ
-#: include/sfx2/strings.hrc:117
+#: include/sfx2/strings.hrc:118
msgctxt "STR_GID_TEXT"
msgid "Text"
msgstr "Teks"
#. PSfaP
-#: include/sfx2/strings.hrc:118
+#: include/sfx2/strings.hrc:119
msgctxt "STR_GID_FRAME"
msgid "Frame"
msgstr "Raam"
#. 5V4iR
-#: include/sfx2/strings.hrc:119
+#: include/sfx2/strings.hrc:120
msgctxt "STR_GID_GRAPHIC"
msgid "Image"
msgstr "Beeld"
#. DzBoB
-#: include/sfx2/strings.hrc:120
+#: include/sfx2/strings.hrc:121
msgctxt "STR_GID_TABLE"
msgid "Table"
msgstr "Tabel"
#. Cmsi4
-#: include/sfx2/strings.hrc:121
+#: include/sfx2/strings.hrc:122
msgctxt "STR_GID_ENUMERATION"
msgid "Numbering"
msgstr "Nommering"
#. CDFSE
-#: include/sfx2/strings.hrc:122
+#: include/sfx2/strings.hrc:123
msgctxt "STR_GID_DATA"
msgid "Data"
msgstr "Data"
#. CV9Pq
-#: include/sfx2/strings.hrc:123
+#: include/sfx2/strings.hrc:124
msgctxt "STR_GID_SPECIAL"
msgid "Special Functions"
msgstr "Spesiale funksies"
#. 5CfQs
-#: include/sfx2/strings.hrc:124
+#: include/sfx2/strings.hrc:125
msgctxt "STR_GID_IMAGE"
msgid "Image"
msgstr "Beeld"
#. 5wvK9
-#: include/sfx2/strings.hrc:125
+#: include/sfx2/strings.hrc:126
msgctxt "STR_GID_CHART"
msgid "Chart"
msgstr "Grafiek"
#. pNE8F
-#: include/sfx2/strings.hrc:126
+#: include/sfx2/strings.hrc:127
msgctxt "STR_GID_EXPLORER"
msgid "Explorer"
msgstr "Verkenner(Explorer)"
#. yBawD
-#: include/sfx2/strings.hrc:127
+#: include/sfx2/strings.hrc:128
msgctxt "STR_GID_CONNECTOR"
msgid "Connector"
msgstr "Verbinder"
#. 3rGea
-#: include/sfx2/strings.hrc:128
+#: include/sfx2/strings.hrc:129
msgctxt "STR_GID_MODIFY"
msgid "Modify"
msgstr "Wysig"
#. WcwGs
-#: include/sfx2/strings.hrc:129
+#: include/sfx2/strings.hrc:130
msgctxt "STR_GID_DRAWING"
msgid "Drawing"
msgstr "Tekening"
#. Ajo4w
-#: include/sfx2/strings.hrc:130
+#: include/sfx2/strings.hrc:131
msgctxt "STR_GID_CONTROLS"
msgid "Controls"
msgstr "Kontroles"
#. L5coQ
-#: include/sfx2/strings.hrc:131
+#: include/sfx2/strings.hrc:132
msgctxt "STR_QUITAPP"
msgid "E~xit %PRODUCTNAME"
msgstr "S~luit %PRODUCTNAME af"
#. k2PBJ
-#: include/sfx2/strings.hrc:132
+#: include/sfx2/strings.hrc:133
msgctxt "RID_STR_HELP"
msgid "Help"
msgstr "Hulp"
#. roDzu
-#: include/sfx2/strings.hrc:133
+#: include/sfx2/strings.hrc:134
msgctxt "RID_STR_HLPFILENOTEXIST"
msgid "The help file for this topic is not installed."
msgstr "Die hulplêer vir hierdie toepassing is nie geïnstalleer nie."
#. zjPS7
-#: include/sfx2/strings.hrc:134
+#: include/sfx2/strings.hrc:135
msgctxt "STR_QUICKSTART_EXIT"
msgid "Exit Quickstarter"
msgstr "Verlaat snelbeginner"
#. ecxqC
-#: include/sfx2/strings.hrc:135
+#: include/sfx2/strings.hrc:136
msgctxt "STR_QUICKSTART_TIP"
msgid "%PRODUCTNAME %PRODUCTVERSION Quickstarter"
msgstr "%PRODUCTNAME %PRODUCTVERSION-snelbeginner"
#. G9Gqk
-#: include/sfx2/strings.hrc:136
+#: include/sfx2/strings.hrc:137
msgctxt "STR_QUICKSTART_FILEOPEN"
msgid "Open Document..."
msgstr "Open dokument..."
#. wecTF
-#: include/sfx2/strings.hrc:137
+#: include/sfx2/strings.hrc:138
msgctxt "STR_QUICKSTART_FROMTEMPLATE"
msgid "From Template..."
msgstr "Vanaf sjabloon..."
#. FzJCj
-#: include/sfx2/strings.hrc:138
+#: include/sfx2/strings.hrc:139
msgctxt "STR_QUICKSTART_PRELAUNCH"
msgid "Load %PRODUCTNAME During System Start-Up"
msgstr "Laai %PRODUCTNAME wanneer rekenaar aanskakel"
#. hMejq
-#: include/sfx2/strings.hrc:139
+#: include/sfx2/strings.hrc:140
msgctxt "STR_QUICKSTART_LNKNAME"
msgid "%PRODUCTNAME %PRODUCTVERSION"
msgstr "%PRODUCTNAME %PRODUCTVERSION"
#. CBB6Z
-#: include/sfx2/strings.hrc:140
+#: include/sfx2/strings.hrc:141
msgctxt "STR_QUICKSTART_FILE"
msgid "File"
msgstr "Lêer"
#. c6wAB
-#: include/sfx2/strings.hrc:141
+#: include/sfx2/strings.hrc:142
msgctxt "STR_QUICKSTART_STARTCENTER"
msgid "Startcenter"
msgstr "Beginsentrum"
#. Uhn54
-#: include/sfx2/strings.hrc:142
+#: include/sfx2/strings.hrc:143
msgctxt "STR_QUICKSTART_RECENTDOC"
msgid "Recent Documents"
msgstr "Onlangse dokumente"
#. DirQf
-#: include/sfx2/strings.hrc:143
+#: include/sfx2/strings.hrc:144
msgctxt "STR_QUERY_UPDATE_LINKS"
msgid ""
"The document %{filename} contains one or more links to external data.\n"
@@ -766,13 +772,13 @@ msgstr ""
"om die nuutste data te bekom?"
#. zJGEM
-#: include/sfx2/strings.hrc:144
+#: include/sfx2/strings.hrc:145
msgctxt "STR_DDE_ERROR"
msgid "DDE link to %1 for %2 area %3 are not available."
msgstr "DDE-skakel na %1 vir %2 ruimte %3 is nie beskikbaar nie."
#. zECGD
-#: include/sfx2/strings.hrc:145
+#: include/sfx2/strings.hrc:146
msgctxt "STR_SECURITY_WARNING_NO_HYPERLINKS"
msgid ""
"For security reasons, the hyperlink cannot be executed.\n"
@@ -782,13 +788,13 @@ msgstr ""
"Die aangegewe adres sal nie geopen word nie."
#. vcMzA
-#: include/sfx2/strings.hrc:146
+#: include/sfx2/strings.hrc:147
msgctxt "RID_SECURITY_WARNING_TITLE"
msgid "Security Warning"
msgstr "Sekuriteitswaarskuwing"
#. vVCon
-#: include/sfx2/strings.hrc:147
+#: include/sfx2/strings.hrc:148
msgctxt "RID_SVXSTR_XMLSEC_QUERY_LOSINGSIGNATURE"
msgid ""
"Saving will remove all existing signatures.\n"
@@ -798,7 +804,7 @@ msgstr ""
"Wil u voortgaan om die dokument te stoor?"
#. cGnF9
-#: include/sfx2/strings.hrc:148
+#: include/sfx2/strings.hrc:149
msgctxt "RID_SVXSTR_XMLSEC_QUERY_SAVEBEFORESIGN"
msgid ""
"The document has to be saved before it can be signed.\n"
@@ -808,7 +814,7 @@ msgstr ""
"Wil u die dokument stoor?"
#. zNVEd
-#: include/sfx2/strings.hrc:149
+#: include/sfx2/strings.hrc:150
msgctxt "STR_QUERY_CANCELCHECKOUT"
msgid ""
"This will discard all changes on the server since check-out.\n"
@@ -818,74 +824,74 @@ msgstr ""
"Wil u voortgaan?"
#. jufLD
-#: include/sfx2/strings.hrc:150
+#: include/sfx2/strings.hrc:151
msgctxt "STR_INFO_WRONGDOCFORMAT"
msgid "This document must be saved in OpenDocument file format before it can be digitally signed."
msgstr "Hierdie dokument moet in OpenDocument-lêerformaat gestoor wees voor dit digitaal onderteken kan word."
#. ori9u
-#: include/sfx2/strings.hrc:151
+#: include/sfx2/strings.hrc:152
msgctxt "RID_XMLSEC_DOCUMENTSIGNED"
msgid " (Signed)"
msgstr " (Onderteken)"
#. kgWZS
-#: include/sfx2/strings.hrc:152
+#: include/sfx2/strings.hrc:153
msgctxt "STR_EMBEDDED_TITLE"
msgid " (Embedded document)"
msgstr " (dokument ingebed)"
#. 3nT9T
-#: include/sfx2/strings.hrc:153
+#: include/sfx2/strings.hrc:154
msgctxt "STR_STANDARD"
msgid "Standard"
msgstr "Standaard"
#. FjCuJ
-#: include/sfx2/strings.hrc:154
+#: include/sfx2/strings.hrc:155
msgctxt "RID_SVXSTR_FILELINK"
msgid "Document"
msgstr "Dokument"
#. BfMd3
-#: include/sfx2/strings.hrc:155
+#: include/sfx2/strings.hrc:156
msgctxt "STR_NONE"
msgid "- None -"
msgstr "- Geen -"
#. XBXvE
-#: include/sfx2/strings.hrc:156
+#: include/sfx2/strings.hrc:157
msgctxt "saveastemplatedlg|categorylist"
msgid "None"
msgstr "Geen"
#. 5kUsi
-#: include/sfx2/strings.hrc:157
+#: include/sfx2/strings.hrc:158
msgctxt "RID_SVXSTR_GRAPHICLINK"
msgid "Image"
msgstr "Afbeelding"
#. dUK2G
-#: include/sfx2/strings.hrc:158
+#: include/sfx2/strings.hrc:159
msgctxt "STR_SFX_FILTERNAME_ALL"
msgid "All files"
msgstr "Alle lêers"
#. E39E2
-#: include/sfx2/strings.hrc:159
+#: include/sfx2/strings.hrc:160
msgctxt "STR_SFX_FILTERNAME_PDF"
msgid "PDF files"
msgstr "PDF-lêers"
#. gCHbP
-#: include/sfx2/strings.hrc:160
+#: include/sfx2/strings.hrc:161
msgctxt "RID_SVXSTR_EDITGRFLINK"
msgid "Link Image"
msgstr "Koppel die afbeelding"
#. u9H7a
#. i66948 used in project scripting
-#: include/sfx2/strings.hrc:162
+#: include/sfx2/strings.hrc:163
msgctxt "STR_ERRUNOEVENTBINDUNG"
msgid ""
"An appropriate component method %1\n"
@@ -899,43 +905,43 @@ msgstr ""
"Kontroleer die spelling van die metodenaam."
#. 2FLYB
-#: include/sfx2/strings.hrc:163
+#: include/sfx2/strings.hrc:164
msgctxt "RID_SVXSTR_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "Beeldlêer kan nie oopgemaak word nie"
#. 6eLsb
-#: include/sfx2/strings.hrc:164
+#: include/sfx2/strings.hrc:165
msgctxt "RID_SVXSTR_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr "Beeldlêer kan nie gelees word nie"
#. HGRsV
-#: include/sfx2/strings.hrc:165
+#: include/sfx2/strings.hrc:166
msgctxt "RID_SVXSTR_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr "Onbekende beeldformaat"
#. YJhGK
-#: include/sfx2/strings.hrc:166
+#: include/sfx2/strings.hrc:167
msgctxt "RID_SVXSTR_GRFILTER_VERSIONERROR"
msgid "This version of the image file is not supported"
msgstr "Hierdie weergawe van die beeldlêer word nie ondersteun nie"
#. Sn8KQ
-#: include/sfx2/strings.hrc:167
+#: include/sfx2/strings.hrc:168
msgctxt "RID_SVXSTR_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr "Beeldfilter nie gevind nie"
#. huEFV
-#: include/sfx2/strings.hrc:168
+#: include/sfx2/strings.hrc:169
msgctxt "RID_SVXSTR_TXTFILTER_FILTERERROR"
msgid "This is not a text document"
msgstr "Hierdie is nie 'n teks dokument"
#. ejBgZ
-#: include/sfx2/strings.hrc:169
+#: include/sfx2/strings.hrc:170
msgctxt "RID_SVXSTR_END_REDLINING_WARNING"
msgid ""
"This action will exit the change recording mode.\n"
@@ -951,43 +957,43 @@ msgstr ""
"\n"
#. E2CcY
-#: include/sfx2/strings.hrc:170
+#: include/sfx2/strings.hrc:171
msgctxt "RID_SVXSTR_INCORRECT_PASSWORD"
msgid "Incorrect password"
msgstr "Verkeerde wagwoord"
#. 7Ezso
-#: include/sfx2/strings.hrc:171
+#: include/sfx2/strings.hrc:172
msgctxt "RID_SVXSTR_GPG_ENCRYPT_FAILURE"
msgid "OpenPGP key not trusted, damaged, or encryption failure. Please try again."
msgstr "Die OpenPGP sleutel is nie meer beroubaar nie, is of korrup of enkripsie faal."
#. DQCUm
-#: include/sfx2/strings.hrc:173
+#: include/sfx2/strings.hrc:174
msgctxt "STR_PASSWD_MIN_LEN"
msgid "(Minimum $(MINLEN) characters)"
msgstr "(minstens $(MINLEN) karakters)"
#. ZKZnh
-#: include/sfx2/strings.hrc:174
+#: include/sfx2/strings.hrc:175
msgctxt "STR_PASSWD_MIN_LEN1"
msgid "(Minimum 1 character)"
msgstr "(minstens 1 karakter)"
#. B3WoF
-#: include/sfx2/strings.hrc:175
+#: include/sfx2/strings.hrc:176
msgctxt "STR_PASSWD_EMPTY"
msgid "(The password can be empty)"
msgstr "(Die wagwoord kan leeg wees)"
#. iBD9D
-#: include/sfx2/strings.hrc:176
+#: include/sfx2/strings.hrc:177
msgctxt "STR_MODULENOTINSTALLED"
msgid "The action could not be executed. The %PRODUCTNAME program module needed for this action is currently not installed."
msgstr "Die aksie kon nie uitgevoer word nie. Die %PRODUCTNAME-programmodule wat vir hierdie aksie benodig word, is tans nie geïnstalleer nie."
#. TXAV5
-#: include/sfx2/strings.hrc:178
+#: include/sfx2/strings.hrc:179
msgctxt "STR_FILTER_NOT_INSTALLED"
msgid ""
"The selected filter $(FILTER) has not been installed.\n"
@@ -997,7 +1003,7 @@ msgstr ""
"Wil u dit nou installeer?"
#. gQhYY
-#: include/sfx2/strings.hrc:179
+#: include/sfx2/strings.hrc:180
msgctxt "STR_FILTER_CONSULT_SERVICE"
msgid ""
"The selected filter $(FILTER) is not included in your edition.\n"
@@ -1007,215 +1013,215 @@ msgstr ""
"U kan inligting oor bestellings op ons tuisblad kry."
#. Y9yeS
-#: include/sfx2/strings.hrc:181
+#: include/sfx2/strings.hrc:182
msgctxt "STR_WELCOME_LINE1"
msgid "Welcome to %PRODUCTNAME."
msgstr "Welkom by %PRODUCTNAME."
#. hyKnu
-#: include/sfx2/strings.hrc:182
+#: include/sfx2/strings.hrc:183
msgctxt "STR_WELCOME_LINE2"
msgid "Drop a document here or pick an app from the left side to create one."
msgstr "Laat val ’n dokument hier of kies ’n toepassing links om een te skep."
#. oTVdA
#. Translators: Target types in Auto-redaction dialog
-#: include/sfx2/strings.hrc:185
+#: include/sfx2/strings.hrc:186
msgctxt "STR_REDACTION_TARGET_TYPE_TEXT"
msgid "Text"
msgstr "Teks"
#. eG5qc
-#: include/sfx2/strings.hrc:186
+#: include/sfx2/strings.hrc:187
msgctxt "STR_REDACTION_TARGET_TYPE_REGEX"
msgid "Regular expression"
msgstr "Standaard Uitdrukking"
#. TaDCG
-#: include/sfx2/strings.hrc:187
+#: include/sfx2/strings.hrc:188
msgctxt "STR_REDACTION_TARGET_TYPE_PREDEF"
msgid "Predefined"
msgstr "Vooraf gedefinieerd"
#. bDjwW
-#: include/sfx2/strings.hrc:188
+#: include/sfx2/strings.hrc:189
msgctxt "STR_REDACTION_TARGET_TYPE_UNKNOWN"
msgid "Unknown"
msgstr "Onbekend"
#. Ao6kC
#. Translators: Column headers in Auto-redaction dialog's targets list
-#: include/sfx2/strings.hrc:191
+#: include/sfx2/strings.hrc:192
msgctxt "STR_REDACTION_TARGET_NAME"
msgid "Target Name"
msgstr "Teiken Naam"
#. mGjsx
-#: include/sfx2/strings.hrc:192
+#: include/sfx2/strings.hrc:193
msgctxt "STR_REDACTION_TYPE"
msgid "Type"
msgstr "Tipe"
#. gFKC4
-#: include/sfx2/strings.hrc:193
+#: include/sfx2/strings.hrc:194
msgctxt "STR_REDACTION_CONTENT"
msgid "Content"
msgstr "Inhoud"
#. oSNPd
-#: include/sfx2/strings.hrc:194
+#: include/sfx2/strings.hrc:195
msgctxt "STR_REDACTION_CASE_SENSITIVE"
msgid "Case Sensitive"
msgstr "Groot- Klein-letter Sensitief"
#. FLcSM
-#: include/sfx2/strings.hrc:195
+#: include/sfx2/strings.hrc:196
msgctxt "STR_REDACTION_WHOLE_WORDS"
msgid "Whole Words"
msgstr "Hele woorde"
#. YgzCk
#. Translators: Values for the Case Sensitive and the Whole Words columns in Auto-redaction dialog
-#: include/sfx2/strings.hrc:198
+#: include/sfx2/strings.hrc:199
msgctxt "STR_REDACTION_YES"
msgid "Yes"
msgstr "Ja"
#. oZNaM
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:200
msgctxt "STR_REDACTION_NO"
msgid "No"
msgstr "Nee"
#. FM3Gf
#. Translators: Misc strings of the Auto Redaction dialog
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:203
msgctxt "STR_REDACTION_TARGET"
msgid "Target"
msgstr "Doelwit"
#. m2i7V
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:204
msgctxt "STR_REDACTION_LOAD_TARGETS"
msgid "Load Targets"
msgstr "Laai Doelwitte"
#. HgrwX
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:205
msgctxt "STR_REDACTION_SAVE_TARGETS"
msgid "Save Targets"
msgstr "Stoor Doelwitte"
#. MYMTF
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:206
msgctxt "STR_REDACTION_FIELDS_REQUIRED"
msgid "All fields are required"
msgstr "Al die velde word vereis"
#. rQS6M
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:207
msgctxt "STR_REDACTION_TARGET_NAME_CLASH"
msgid "There is already a target with this name"
msgstr "Daar is alreeds 'n Doelwit met die naam"
#. s248s
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:208
msgctxt "STR_REDACTION_MULTI_EDIT"
msgid "You have selected multiple targets, but only one target can be edited at once."
msgstr "Jy het veelvuldige Doelwitte gekies, meer slegs een kan op 'n slag redigeer word."
#. BTayC
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:209
msgctxt "STR_REDACTION_MULTI_DELETE"
msgid "Are you sure you would like to delete $(TARGETSCOUNT) targets at once?"
msgstr "Is u seker dat u $(TARGETSCOUNT) doelwitte gelyktydig wil skrap?"
#. qFqDC
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:210
msgctxt "STR_REDACTION_JSON_FILE_FILTER"
msgid "Target Set (*.json)"
msgstr "Doelversameling (*.json)"
#. EGCo6
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:211
msgctxt "STR_REDACTION_EDIT_TARGET"
msgid "Edit Target"
msgstr "Doel redigeer"
#. ACY9D
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:212
msgctxt "STR_REDACTION_TARGET_ADD_ERROR"
msgid "An error occurred while adding new target. Please report this incident."
msgstr "Kon nie 'n nuwe doelwit byvoeg nie. Rapporteer asb. hierdie voorval."
#. znVBU
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:213
msgctxt "STR_REDACTION_NO_DRAW_WARNING"
msgid "Draw module is needed for redaction. Please make sure you have LibreOffice Draw installed and working correctly."
msgstr "Die tekenmodule is nodig vir redigering. Maak seker dat LibreOffice Draw geïnstalleer is en dat dit goed werk."
#. FQ9kN
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:215
msgctxt "STR_SFX_FILEDLG_ACTUALVERSION"
msgid "Current version"
msgstr "Huidige weergawe"
#. GFAEM
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:216
msgctxt "STR_SFX_EXPLORERFILE_EXPORT"
msgid "Export"
msgstr "Voer uit"
#. 2DBBC
-#: include/sfx2/strings.hrc:216
+#: include/sfx2/strings.hrc:217
msgctxt "STR_SFX_EXPLORERFILE_INSERT"
msgid "Insert"
msgstr "Voeg in"
#. VBKtt
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:218
msgctxt "STR_SFX_EXPLORERFILE_BUTTONINSERT"
msgid "~Insert"
msgstr "Voeg ~in"
#. DcLFD
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:219
msgctxt "STR_SFX_IMPORT_ALL_IMAGES"
msgid "<All images>"
msgstr "<Alle beelde>"
#. tPDwc
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:220
msgctxt "STR_PB_SAVEACOPY"
msgid "Save a Copy"
msgstr "Stoor ’n kopie"
#. T9mMd
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:221
msgctxt "STR_PB_COMPAREDOC"
msgid "Compare to"
msgstr "Vergelyk met"
#. 4qMCh
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:222
msgctxt "STR_PB_MERGEDOC"
msgid "Merge with"
msgstr "Smelt saam met"
#. cDMBG
-#: include/sfx2/strings.hrc:223
+#: include/sfx2/strings.hrc:224
msgctxt "STR_SFX_NEWOFFICEDOC"
msgid "%PRODUCTNAME document"
msgstr "%PRODUCTNAME-dokument"
#. 43QYo
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:225
msgctxt "SFX_ST_DURATION_FORMAT"
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"
#. jQX7C
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:226
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -1225,31 +1231,31 @@ msgstr ""
"Die waarde sal as teks gestoor word."
#. cinmA
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:228
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Styl bestaan reeds. Oorskryf?"
#. f627N
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:230
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "Stel te~rug"
#. EXGDb
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:231
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Hierdie naam is reeds in gebruik."
#. N5aeR
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:232
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Hierdie styl bestaan nie."
#. CYQwN
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:233
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -1259,7 +1265,7 @@ msgstr ""
"omdat dit tot 'n rekursiewe verwysing sou lei."
#. ECPSd
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:234
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -1269,7 +1275,7 @@ msgstr ""
"Kies asseblief ’n ander naam."
#. NWDmA
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:235
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -1281,73 +1287,73 @@ msgstr ""
"Wil u die geselekteerde styl uitvee?\n"
#. kuD77
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:236
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Style in gebruik: "
#. 4JhEW
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:237
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Navigator"
#. Acahp
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Foutiewe wagwoordbevestiging"
#. 6uv4b
-#: include/sfx2/strings.hrc:238
+#: include/sfx2/strings.hrc:239
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Stuur"
#. 9HHQw
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:240
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Font"
#. 7baC6
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:242
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Sien weergaweopmerking"
#. LGiF8
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:243
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(geen naam gegee nie)"
#. rZ4Ao
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:245
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Hiërargies"
#. 4VXDe
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:247
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."
#. 9MnrK
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:248
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Kanselleer opname"
#. m9FCm
-#: include/sfx2/strings.hrc:249
+#: include/sfx2/strings.hrc:250
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Die sjablone word vir eerste gebruik geïnisialiseer."
#. F3ym2
-#: include/sfx2/strings.hrc:251
+#: include/sfx2/strings.hrc:252
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1357,7 +1363,7 @@ msgstr ""
"Kies asseblief 'n drukker en probeer weer."
#. a3NTu
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1367,19 +1373,19 @@ msgstr ""
"Gaan asseblief u drukkeropstelling na."
#. acKHX
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Drukker besig"
#. hDEUj
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (leesalleen)"
#. uL87C
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1391,7 +1397,7 @@ msgstr ""
"in die aktiewe dokument gestoor word?"
#. cxuAH
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1403,7 +1409,7 @@ msgstr ""
"aktiewe dokument gestoor word?"
#. 4QJxB
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1415,7 +1421,7 @@ msgstr ""
"in die aktiewe dokument gestoor word?"
#. RXbfs
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1425,7 +1431,7 @@ msgstr ""
"omdat ’n druktaak uitgevoer word."
#. YGyQP
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
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"
@@ -1436,7 +1442,7 @@ msgstr ""
#. 3nzi6
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
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"
@@ -1448,19 +1454,19 @@ msgstr ""
"Foutkode is $1"
#. ZWTDr
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr "Fout met stuur van e-pos"
#. QVS2D
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
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?"
#. ZdGNX
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_QUERY_OPENASTEMPLATE_LOCKED"
msgid ""
"This document cannot be edited, because it is locked in another session.%LOCKINFO\n"
@@ -1470,471 +1476,471 @@ msgstr ""
"Wil u 'n kopie van die dokument wysig?"
#. n3sMB
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid "You can also try to ignore the lock and open the file for editing."
msgstr "U kan ook probeer om die versperring te ignoreer en die lêer oopmaak vir redigering."
#. yaKxR
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "Open ~kopie"
#. UYkFP
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr "~Open"
#. GcSXH
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (herstelde dokument)"
#. HPqkX
-#: include/sfx2/strings.hrc:269
+#: include/sfx2/strings.hrc:270
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "Hierdie dokument is nie op die bediener afgemeld nie."
#. uPc29
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr "Help ons om %PRODUCTNAME beter te maak!"
#. PboiP
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr "Raak betrokke"
#. GuLGH
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr "U donasies ondersteun ons wêreldwye gemeenskap."
#. KzgoD
-#: include/sfx2/strings.hrc:273
+#: include/sfx2/strings.hrc:274
msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr "Doneer"
#. G8bbK
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "STR_WHATSNEW"
msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
msgstr "u loop tans weergawe %PRODUCTVERSION van %PRODUCTNAME vir die eerste keer. Wil u sien wat nuut is?"
#. J5UkB
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "STR_WHATSNEW_BUTTON"
msgid "Release Notes"
msgstr "Weergawe Inligting"
#. c7NPT
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Dié dokument is oop in leesalleen modus."
#. KyyFk
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
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."
#. MENvD
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "Die klassifikasie etiket van hierdie dokument is %1."
#. 3B3ij
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "Die dokument moet eers geklassifiseer word, voordat die klembord geplak kan word."
#. BYcYH
-#: include/sfx2/strings.hrc:280
+#: include/sfx2/strings.hrc:281
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "Hierdie dokument het 'n laer vlak klassifikasie as die inhoud van die klembord."
#. EJPzh
-#: include/sfx2/strings.hrc:281
+#: include/sfx2/strings.hrc:282
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr "Vlak"
#. itVew
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Nasionale sekuriteit:"
#. ZBXbG
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Uitvoer Kontrole:"
#. QAnvx
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Sluit Af."
#. PwPNw
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Redigeer dokument"
#. FCeC5
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Onderteken dokument"
#. MEfTq
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_READONLY_FINISH_SIGN"
msgid "Finish Signing"
msgstr "Finse Simbole"
#. pkWmU
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "Dié dokument het ’n ongeldige handtekening."
#. Vd3CU
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
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."
#. 2HNfx
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "At least one signature has problems: the certificate could not be validated."
msgstr "Minstens een handtekening het probleme: die sertifikaat is nie gevalideer nie."
#. tjCmr
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "At least one signature has problems: the document is only partially signed."
msgstr "Minstens een handtekening het probleme: die dokument is slegs gedeeltelik onderteken."
#. mU6ot
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
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."
#. FKDbE
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
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."
#. rMGka
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Wys handtekeninge"
#. fkzJb
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TRACK_CHANGES_BUTTON"
msgid "Show Toolbar"
-msgstr ""
+msgstr "Vertoon Werkbalk"
#. 68ZqS
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TRACK_CHANGES_BUTTON_HIDE"
msgid "Hide Toolbar"
-msgstr ""
+msgstr "Verberg Werkbalk"
#. Wkvpi
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Sluit Paneel."
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr "Grys Elegant"
#. FkuLG
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Byekorf"
#. uwaPH
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Blou Kromme"
#. hHRDz
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Bloudruk Planne"
#. MAnPU
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr "Bonbon"
#. jEiAn
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr "Geel Motief"
#. QDNuB
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fokus"
#. GADdA
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Woudvoël"
#. TT8G5
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr "Verfrissend"
#. C5N9D
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspirasie"
#. fCKG9
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Ligte"
#. pcLWs
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr "Florerende Vryheid"
#. xo2gC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropolis"
#. FFDBk
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Middernag Blou"
#. yiCzk
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Natuur Illustrasie"
#. cCZzC
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Potlood"
#. Ji4Cw
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Klavier"
#. mrbiq
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfolio"
#. ysBGy
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Vordering"
#. gtPt9
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Sonsondergang"
#. 73Y2e
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Tradisioneel"
#. MSY8y
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Helder"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Samevatting"
#. hCpfD
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Verstek"
#. d7Hyk
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderne"
#. CVJEC
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Moderne sakebrief sans-serif"
#. 95GeB
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Moderne sakebrief sans-serif"
#. XdU49
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Visetekaartjie met logo"
#. UAmSj
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Eenvoudig"
#. W7NVH
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. ZaGGB
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Verwyder"
#. JReRY
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Alles uitwis"
#. yC8Gs
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Wagwoordlengte"
#. FKFmJ
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:340
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 "Die wagwoord wat u ingevoer het, veroorsaak probleme met versoenbaarheid. Voer 'n wagwoord, wat korter as 52 grepe is of langer is as 55 grepe."
#. jBQFN
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}-Klik, om die skakel: %{link} te open"
#. jC3AK
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Kliek om die skakel: %{link} te open"
#. eFJMp
-#: include/sfx2/strings.hrc:344
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(gebruik deur: %STYLELIST)"
#. 6UgqW
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "Dokument"
#. XDGTb
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "Spreiblad"
#. 3UZXB
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "Voorlegging"
#. noN5s
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "Tekening"
#. QpuFo
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "Onlangs gebruik"
#. EcAjb
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:352
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr "Geen onlangse karakters"
@@ -3699,25 +3705,25 @@ msgid "No"
msgstr "Nee"
#. muk9B
-#: sfx2/uiconfig/ui/linkeditdialog.ui:13
+#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
msgstr "Wysig DDE skakel"
#. CZn3G
-#: sfx2/uiconfig/ui/linkeditdialog.ui:107
+#: sfx2/uiconfig/ui/linkeditdialog.ui:102
msgctxt "linkeditdialog|label2"
msgid "_Application:"
msgstr "_Toepassing:"
#. GZsEX
-#: sfx2/uiconfig/ui/linkeditdialog.ui:121
+#: sfx2/uiconfig/ui/linkeditdialog.ui:116
msgctxt "linkeditdialog|label3"
msgid "_File:"
msgstr "Lêer:"
#. 6Fx6h
-#: sfx2/uiconfig/ui/linkeditdialog.ui:135
+#: sfx2/uiconfig/ui/linkeditdialog.ui:130
msgctxt "linkeditdialog|label4"
msgid "_Category:"
msgstr "_Kategorie:"
@@ -3741,7 +3747,7 @@ msgid "Lists the section or object that the link refers to in the source file. I
msgstr "Lys die gedeelte of objek waarna die skakel in die bronlêer wys. Indien verkies, kan u 'n nuwe afdeling of 'n nuwe objek hier invoer."
#. hiapi
-#: sfx2/uiconfig/ui/linkeditdialog.ui:204
+#: sfx2/uiconfig/ui/linkeditdialog.ui:199
msgctxt "linkeditdialog|label1"
msgid "Modify Link"
msgstr "Wysig skakel"
diff --git a/source/af/svl/messages.po b/source/af/svl/messages.po
index 841cc0c6739..da643d5fe92 100644
--- a/source/af/svl/messages.po
+++ b/source/af/svl/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: 2021-01-19 13:13+0100\n"
-"PO-Revision-Date: 2021-01-26 17:36+0000\n"
+"PO-Revision-Date: 2021-04-28 11:49+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/svlmessages/af/>\n"
"Language: af\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: Weblate 4.4\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1519741385.000000\n"
#. PDMJD
@@ -27,7 +27,7 @@ msgstr "Werkruimte"
#: include/svl/svl.hrc:27
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
-msgstr "Deursoek..."
+msgstr "Rondkyk..."
#. wH3TZ
msgctxt "stock"
diff --git a/source/af/svtools/messages.po b/source/af/svtools/messages.po
index e25966a90c0..f09514085ab 100644
--- a/source/af/svtools/messages.po
+++ b/source/af/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: 2021-02-17 15:59+0100\n"
-"PO-Revision-Date: 2021-02-18 20:37+0000\n"
+"POT-Creation-Date: 2021-04-27 17:03+0200\n"
+"PO-Revision-Date: 2021-04-28 11:49+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/af/>\n"
"Language: af\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: Weblate 4.4\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1560975732.000000\n"
#. fLdeV
@@ -5076,350 +5076,362 @@ msgctxt "graphicexport|GraphicExportDialog"
msgid "%1 Options"
msgstr "%1-opsies"
+#. C3C7t
+#: svtools/uiconfig/ui/graphicexport.ui:127
+msgctxt "graphicexport|modifydimensionscb"
+msgid "Modify dimensions"
+msgstr "Wysig dimensies"
+
#. pyd6J
-#: svtools/uiconfig/ui/graphicexport.ui:129
+#: svtools/uiconfig/ui/graphicexport.ui:146
msgctxt "graphicexport|label5"
msgid "Width:"
msgstr "Wydte:"
#. drQDY
-#: svtools/uiconfig/ui/graphicexport.ui:143
+#: svtools/uiconfig/ui/graphicexport.ui:160
msgctxt "graphicexport|label6"
msgid "Height:"
msgstr "Hoogte:"
+#. exCyd
+#: svtools/uiconfig/ui/graphicexport.ui:171
+msgctxt "graphicexport|modifyresolutioncb"
+msgid "Modify resolution"
+msgstr "Wysig resolusie"
+
#. ZWxGB
-#: svtools/uiconfig/ui/graphicexport.ui:157
+#: svtools/uiconfig/ui/graphicexport.ui:189
msgctxt "graphicexport|resolutionft"
msgid "Resolution:"
msgstr "Resolusie:"
#. 2rwEJ
-#: svtools/uiconfig/ui/graphicexport.ui:178
+#: svtools/uiconfig/ui/graphicexport.ui:209
msgctxt "graphicexport|extended_tip|widthmf"
msgid "Specifies the measurement units."
msgstr "Spesifiseer die maateenhede."
#. BPaB3
-#: svtools/uiconfig/ui/graphicexport.ui:198
+#: svtools/uiconfig/ui/graphicexport.ui:229
msgctxt "graphicexport|extended_tip|heightmf"
msgid "Specifies the height."
msgstr "Spesifiseer die hoogte."
#. Da3fv
-#: svtools/uiconfig/ui/graphicexport.ui:217
+#: svtools/uiconfig/ui/graphicexport.ui:249
msgctxt "graphicexport|extended_tip|resolutionmf"
msgid "Enter the image resolution. Select the measurement units from the list box."
msgstr "Tik die beeld resolusie in. Kies die meeteenhede in die lys."
#. S9aHs
-#: svtools/uiconfig/ui/graphicexport.ui:231
+#: svtools/uiconfig/ui/graphicexport.ui:263
msgctxt "graphicexport|liststore2"
msgid "inches"
msgstr "duim"
#. dCstP
-#: svtools/uiconfig/ui/graphicexport.ui:232
+#: svtools/uiconfig/ui/graphicexport.ui:264
msgctxt "graphicexport|liststore2"
msgid "cm"
msgstr "cm"
#. X5dLV
-#: svtools/uiconfig/ui/graphicexport.ui:233
+#: svtools/uiconfig/ui/graphicexport.ui:265
msgctxt "graphicexport|liststore2"
msgid "mm"
msgstr "mm"
#. 6vWVJ
-#: svtools/uiconfig/ui/graphicexport.ui:234
+#: svtools/uiconfig/ui/graphicexport.ui:266
msgctxt "graphicexport|liststore2"
msgid "points"
msgstr "punte"
#. ZqyAj
-#: svtools/uiconfig/ui/graphicexport.ui:235
+#: svtools/uiconfig/ui/graphicexport.ui:267
msgctxt "graphicexport|liststore2"
msgid "pixels"
msgstr "pixels"
#. QL8mE
-#: svtools/uiconfig/ui/graphicexport.ui:239
+#: svtools/uiconfig/ui/graphicexport.ui:271
msgctxt "graphicexport|extended_tip|widthlb"
msgid "Specifies the width."
msgstr "Spesifiseer die wydte."
#. kYLvv
-#: svtools/uiconfig/ui/graphicexport.ui:253
+#: svtools/uiconfig/ui/graphicexport.ui:285
msgctxt "graphicexport|liststore1"
msgid "pixels/cm"
msgstr "pixels/cm"
#. zjmFd
-#: svtools/uiconfig/ui/graphicexport.ui:254
+#: svtools/uiconfig/ui/graphicexport.ui:286
msgctxt "graphicexport|liststore1"
msgid "pixels/inch"
msgstr "pixels/duim"
#. iMZW3
-#: svtools/uiconfig/ui/graphicexport.ui:255
+#: svtools/uiconfig/ui/graphicexport.ui:287
msgctxt "graphicexport|liststore1"
msgid "pixels/meter"
msgstr "pixeels/meter"
#. ND5ki
-#: svtools/uiconfig/ui/graphicexport.ui:259
+#: svtools/uiconfig/ui/graphicexport.ui:291
msgctxt "graphicexport|extended_tip|resolutionlb"
msgid "Enter the image resolution. Select the measurement units from the list box."
msgstr "Tik die beeld-resolusie in. Kies die meeteenhede vanuit die lys."
#. ENaqm
-#: svtools/uiconfig/ui/graphicexport.ui:277
+#: svtools/uiconfig/ui/graphicexport.ui:309
msgctxt "graphicexport|label1"
msgid "Size"
msgstr "Grootte"
#. Dc5fy
-#: svtools/uiconfig/ui/graphicexport.ui:303
+#: svtools/uiconfig/ui/graphicexport.ui:335
msgctxt "graphicexport|extended_tip|colordepthlb"
msgid "Select the color depth from 8 bit grayscale or 24 bit true color."
msgstr "Kies as die kleurdiepte van 8-bis-grysskale of 24-bit ware kleure."
#. hFaPC
-#: svtools/uiconfig/ui/graphicexport.ui:312
+#: svtools/uiconfig/ui/graphicexport.ui:344
msgctxt "graphicexport|label2"
msgid "Color Depth"
msgstr "Kleurdiepte"
#. EFn8k
-#: svtools/uiconfig/ui/graphicexport.ui:348
+#: svtools/uiconfig/ui/graphicexport.ui:380
msgctxt "graphicexport|extended_tip|compressionjpgnf"
msgid "Sets the quality for the export. Choose from a low quality with minimal file size, up to a high quality and big file size"
msgstr "Stel in, die kwaliteit vir uitvoer. Kies tussen lae beeld-gehalte met minimum lêergrootte en hoë -gehalte met groot lêergrootte"
#. Tk5y2
-#: svtools/uiconfig/ui/graphicexport.ui:377
+#: svtools/uiconfig/ui/graphicexport.ui:409
msgctxt "graphicexport|label9"
msgid "Quality"
msgstr "Gehalte"
#. AHkNV
-#: svtools/uiconfig/ui/graphicexport.ui:413
+#: svtools/uiconfig/ui/graphicexport.ui:445
msgctxt "graphicexport|extended_tip|compressionpngnf"
msgid "Sets the compression for the export. A high compression means a smaller, but slower to load image."
msgstr "Stel in die kompressie vir die uitvoer. Hoë kompressie beteken 'n kleiner, maar stadiger laai beeld."
#. f4LYz
-#: svtools/uiconfig/ui/graphicexport.ui:442
+#: svtools/uiconfig/ui/graphicexport.ui:474
msgctxt "graphicexport|label"
msgid "Compression"
msgstr "Kompressie"
#. hQadL
-#: svtools/uiconfig/ui/graphicexport.ui:462
+#: svtools/uiconfig/ui/graphicexport.ui:494
msgctxt "graphicexport|rlecb"
msgid "RLE encoding"
msgstr "RLE-enkodering"
#. DqpKW
-#: svtools/uiconfig/ui/graphicexport.ui:473
+#: svtools/uiconfig/ui/graphicexport.ui:505
msgctxt "graphicexport|extended_tip|rlecb"
msgid "Applies RLE (Run Length Encoding) to the BMP graphics."
msgstr "Pas RLE (Run Length Encoding) toe op BMP-grafika."
#. EA7BF
-#: svtools/uiconfig/ui/graphicexport.ui:482
+#: svtools/uiconfig/ui/graphicexport.ui:514
msgctxt "graphicexport|label3"
msgid "Compression"
msgstr "Kompressie"
#. qiLZK
-#: svtools/uiconfig/ui/graphicexport.ui:502
+#: svtools/uiconfig/ui/graphicexport.ui:534
msgctxt "graphicexport|interlacedcb"
msgid "Interlaced"
msgstr "Saamgevleg"
#. cLvu6
-#: svtools/uiconfig/ui/graphicexport.ui:513
+#: svtools/uiconfig/ui/graphicexport.ui:545
msgctxt "graphicexport|extended_tip|interlacedcb"
msgid "Specifies whether the graphic is to be saved in interlaced mode."
msgstr "Spesifiseer of 'n afbeelding in die interlace-modus gestoor word."
#. BkbD3
-#: svtools/uiconfig/ui/graphicexport.ui:522
+#: svtools/uiconfig/ui/graphicexport.ui:554
msgctxt "graphicexport|label12"
msgid "Mode"
msgstr "Modus"
#. Nhj88
-#: svtools/uiconfig/ui/graphicexport.ui:542
+#: svtools/uiconfig/ui/graphicexport.ui:574
msgctxt "graphicexport|savetransparencycb"
msgid "Save transparency"
msgstr "Stoor deursigtigheid"
#. kZ3uW
-#: svtools/uiconfig/ui/graphicexport.ui:553
+#: svtools/uiconfig/ui/graphicexport.ui:585
msgctxt "graphicexport|extended_tip|savetransparencycb"
msgid "Specifies whether to save the background of the picture as transparent. Only objects will be visible in the GIF image. Use the Color Replacer to set the transparent color in the picture."
msgstr "Spesifiseer of die beeldagtergrond as deursigtig gestoor moet word. Slegs objekte is dan sigbaar in die GIF-beeld. Gebruik die oogdrupper om die deursigtige kleur van die prentjie in te stel."
#. ZPmXf
-#: svtools/uiconfig/ui/graphicexport.ui:562
+#: svtools/uiconfig/ui/graphicexport.ui:594
msgctxt "graphicexport|labe"
msgid "Drawing Objects"
msgstr "Tekenobjekte"
#. KMCxb
-#: svtools/uiconfig/ui/graphicexport.ui:589
+#: svtools/uiconfig/ui/graphicexport.ui:621
msgctxt "graphicexport|binarycb"
msgid "Binary"
msgstr "Binêr"
#. qFTuj
-#: svtools/uiconfig/ui/graphicexport.ui:598
+#: svtools/uiconfig/ui/graphicexport.ui:630
msgctxt "graphicexport|extended_tip|binarycb"
msgid "Exports the file in binary format. The resulting file is smaller than a text file."
msgstr "Die lêer word in binêre formaat uitgevoer. Die verkrygde lêer is kleiner as 'n tekslêer."
#. 8cZsH
-#: svtools/uiconfig/ui/graphicexport.ui:609
+#: svtools/uiconfig/ui/graphicexport.ui:641
msgctxt "graphicexport|textcb"
msgid "Text"
msgstr "Teks"
#. GFbg2
-#: svtools/uiconfig/ui/graphicexport.ui:618
+#: svtools/uiconfig/ui/graphicexport.ui:650
msgctxt "graphicexport|extended_tip|textcb"
msgid "Exports the file in ASCII text format. The resulting file is larger than a binary file."
msgstr "Die lêer word uitgevoer in ASCII-teksformaat. 'n Lêer van hierdie tipe is groter as 'n binêre lêer."
#. ECUb9
-#: svtools/uiconfig/ui/graphicexport.ui:633
+#: svtools/uiconfig/ui/graphicexport.ui:665
msgctxt "graphicexport|label16"
msgid "Encoding"
msgstr "Enkodering"
#. aeV52
-#: svtools/uiconfig/ui/graphicexport.ui:665
+#: svtools/uiconfig/ui/graphicexport.ui:697
msgctxt "graphicexport|tiffpreviewcb"
msgid "Image preview (TIFF)"
msgstr "Beeldvoorskou (TIFF)"
#. H8vtD
-#: svtools/uiconfig/ui/graphicexport.ui:674
+#: svtools/uiconfig/ui/graphicexport.ui:706
msgctxt "graphicexport|extended_tip|tiffpreviewcb"
msgid "Specifies whether a preview image is exported in the TIFF format together with the actual PostScript file."
msgstr "Spesifiseer of 'n voorskouprent in TIFF-formaat saam met die PostScript-lêer uitgeskryf word."
#. AeEJu
-#: svtools/uiconfig/ui/graphicexport.ui:685
+#: svtools/uiconfig/ui/graphicexport.ui:717
msgctxt "graphicexport|epsipreviewcb"
msgid "Interchange (EPSI)"
msgstr "Uitruiling (EPSI)"
#. gLbUQ
-#: svtools/uiconfig/ui/graphicexport.ui:693
+#: svtools/uiconfig/ui/graphicexport.ui:725
msgctxt "graphicexport|extended_tip|epsipreviewcb"
msgid "Specifies whether a monochrome preview graphic in EPSI format is exported together with the PostScript file. This format only contains printable characters from the 7-bit ASCII code."
msgstr "Spesifiseer of 'n monochrome voorskouprent in EPSI-formaat met die PostScript-lêer uitgeskryf moet word. Hierdie formaat bevat slegs drukbare karakters van die 7-bis ASCII-kode."
#. sRbZb
-#: svtools/uiconfig/ui/graphicexport.ui:708
+#: svtools/uiconfig/ui/graphicexport.ui:740
msgctxt "graphicexport|label17"
msgid "Preview"
msgstr "Voorskou"
#. Jfbgx
-#: svtools/uiconfig/ui/graphicexport.ui:735
+#: svtools/uiconfig/ui/graphicexport.ui:767
msgctxt "graphicexport|color1rb"
msgid "Color"
msgstr "Kleur"
#. LNHEi
-#: svtools/uiconfig/ui/graphicexport.ui:744
+#: svtools/uiconfig/ui/graphicexport.ui:776
msgctxt "graphicexport|extended_tip|color1rb"
msgid "Exports the file in color."
msgstr "Voer die lêer in kleur uit."
#. VeZFK
-#: svtools/uiconfig/ui/graphicexport.ui:755
+#: svtools/uiconfig/ui/graphicexport.ui:787
msgctxt "graphicexport|color2rb"
msgid "Grayscale"
msgstr "Grysskaal"
#. TWEx8
-#: svtools/uiconfig/ui/graphicexport.ui:764
+#: svtools/uiconfig/ui/graphicexport.ui:796
msgctxt "graphicexport|extended_tip|color2rb"
msgid "Exports the file in grayscale tones."
msgstr "Skryf die lêer in grysskaal uit."
#. BbSGF
-#: svtools/uiconfig/ui/graphicexport.ui:779
+#: svtools/uiconfig/ui/graphicexport.ui:811
msgctxt "graphicexport|label18"
msgid "Color Format"
msgstr "Kleurformaat"
#. b6J7X
-#: svtools/uiconfig/ui/graphicexport.ui:806
+#: svtools/uiconfig/ui/graphicexport.ui:838
msgctxt "graphicexport|level1rb"
msgid "Level 1"
msgstr "Vlak 1"
#. pEcBC
-#: svtools/uiconfig/ui/graphicexport.ui:815
+#: svtools/uiconfig/ui/graphicexport.ui:847
msgctxt "graphicexport|extended_tip|level1rb"
msgid "Compression is not available at this level. Select the Level 1 option if your PostScript printer does not offer the capabilities of Level 2."
msgstr "Geen kompressie is op hierdie vlak moontlik nie. As die PostScript drukker nie vlak 2 ondersteun nie, kies die vlak 1-opsie."
#. kuCNX
-#: svtools/uiconfig/ui/graphicexport.ui:826
+#: svtools/uiconfig/ui/graphicexport.ui:858
msgctxt "graphicexport|level2rb"
msgid "Level 2"
msgstr "Vlak 2"
#. wiWrE
-#: svtools/uiconfig/ui/graphicexport.ui:835
+#: svtools/uiconfig/ui/graphicexport.ui:867
msgctxt "graphicexport|extended_tip|level2rb"
msgid "Select the Level 2 option if your output device supports colored bitmaps, palette graphics and compressed graphics."
msgstr "Kies die vlak 2-opsie as die uitvoerapparaat wel kleurkaart, paletgrafiek en saamgeperste grafika ondersteun."
#. JUuBZ
-#: svtools/uiconfig/ui/graphicexport.ui:850
+#: svtools/uiconfig/ui/graphicexport.ui:882
msgctxt "graphicexport|label19"
msgid "Version"
msgstr "Weergawe"
#. FjkbL
-#: svtools/uiconfig/ui/graphicexport.ui:877
+#: svtools/uiconfig/ui/graphicexport.ui:909
msgctxt "graphicexport|compresslzw"
msgid "LZW encoding"
msgstr "LZW-enkodering"
#. 5cYFM
-#: svtools/uiconfig/ui/graphicexport.ui:886
+#: svtools/uiconfig/ui/graphicexport.ui:918
msgctxt "graphicexport|extended_tip|compresslzw"
msgid "LZW compression is the compression of a file into a smaller file using a table-based lookup algorithm."
msgstr "LZW-kompressie kompakteer 'n lêer in 'n kleiner lêer met behulp van 'n tabel-gebaseerde opsoekalgoritme."
#. vXGXe
-#: svtools/uiconfig/ui/graphicexport.ui:897
+#: svtools/uiconfig/ui/graphicexport.ui:929
msgctxt "graphicexport|compressnone"
msgid "None"
msgstr "Geen"
#. kW3QD
-#: svtools/uiconfig/ui/graphicexport.ui:906
+#: svtools/uiconfig/ui/graphicexport.ui:938
msgctxt "graphicexport|extended_tip|compressnone"
msgid "Specifies that you do not wish to use compression."
msgstr "Spesifiseer dat geen kompressie gebruik word nie."
#. ghAqZ
-#: svtools/uiconfig/ui/graphicexport.ui:921
+#: svtools/uiconfig/ui/graphicexport.ui:953
msgctxt "graphicexport|label20"
msgid "Compression"
msgstr "Kompressie"
#. LmAeC
-#: svtools/uiconfig/ui/graphicexport.ui:960
+#: svtools/uiconfig/ui/graphicexport.ui:992
msgctxt "graphicexport|label4"
msgid "Information"
msgstr "Inligting"
diff --git a/source/af/svx/messages.po b/source/af/svx/messages.po
index 4b4969b6ea7..9b5f506c71e 100644
--- a/source/af/svx/messages.po
+++ b/source/af/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: 2021-03-29 16:03+0200\n"
-"PO-Revision-Date: 2021-03-30 09:34+0000\n"
+"POT-Creation-Date: 2021-04-27 17:03+0200\n"
+"PO-Revision-Date: 2021-04-28 11:49+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/af/>\n"
"Language: af\n"
@@ -5744,7 +5744,7 @@ msgstr "Animasies"
#: include/svx/strings.hrc:1035
msgctxt "RID_GALLERYSTR_THEME_BULLETS"
msgid "Bullets"
-msgstr "Koeëltjies"
+msgstr "Kolparagrawe"
#. MwX9z
#: include/svx/strings.hrc:1036
@@ -14264,883 +14264,883 @@ msgid "P_arallel"
msgstr "Parallel"
#. nEw4G
-#: svx/uiconfig/ui/docking3deffects.ui:291
+#: svx/uiconfig/ui/docking3deffects.ui:286
msgctxt "docking3deffects|diagonalft"
msgid "R_ounded edges"
msgstr "Geronde rante"
#. MozLP
-#: svx/uiconfig/ui/docking3deffects.ui:305
+#: svx/uiconfig/ui/docking3deffects.ui:300
msgctxt "docking3deffects|scaleddepthft"
msgid "_Scaled depth"
msgstr "Geskaleerde diepte"
#. uK3Fv
-#: svx/uiconfig/ui/docking3deffects.ui:319
+#: svx/uiconfig/ui/docking3deffects.ui:314
msgctxt "docking3deffects|angleft"
msgid "_Rotation angle"
msgstr "Rotasiehoek"
#. 2YAH9
-#: svx/uiconfig/ui/docking3deffects.ui:333
+#: svx/uiconfig/ui/docking3deffects.ui:328
msgctxt "docking3deffects|depthft"
msgid "_Depth"
msgstr "Diepte"
#. Mk8WM
-#: svx/uiconfig/ui/docking3deffects.ui:351
+#: svx/uiconfig/ui/docking3deffects.ui:346
msgctxt "docking3deffects|extended_tip|diagonal"
msgid "Enter the amount by which you want to round the corners of the selected 3D object."
msgstr "Voer in die persentasie in waarmee u die hoeke van die geselekteerde 3D-objek wil afrond."
#. W4Agm
-#: svx/uiconfig/ui/docking3deffects.ui:369
+#: svx/uiconfig/ui/docking3deffects.ui:364
msgctxt "docking3deffects|extended_tip|scaleddepth"
msgid "Enter the amount by which to increase or decrease the area of the front side of the selected 3D object."
msgstr "Voer in hoeveel persentasie waarmee die voorkant van die gekose 3D-voorwerp vergroot of verklein moet word."
#. zHDZb
-#: svx/uiconfig/ui/docking3deffects.ui:388
+#: svx/uiconfig/ui/docking3deffects.ui:383
msgctxt "docking3deffects|extended_tip|angle"
msgid "Enter the angle in degrees to rotate the selected 3D rotation object."
msgstr "Voer in, die hoek in grade waarmee die gekose 3D-objek geroteer moet word."
#. 8x6QY
-#: svx/uiconfig/ui/docking3deffects.ui:407
+#: svx/uiconfig/ui/docking3deffects.ui:402
msgctxt "docking3deffects|extended_tip|depth"
msgid "Enter the extrusion depth for the selected 3D object. This option is not valid for 3D rotation objects."
msgstr "Voer in extrusie diepte vir die geselekteerde 3D-voorwerp. Hierdie opsie geld nie vir 3D-rotasie objekte nie."
#. LKo3e
-#: svx/uiconfig/ui/docking3deffects.ui:422
+#: svx/uiconfig/ui/docking3deffects.ui:417
msgctxt "docking3deffects|label1"
msgid "Geometry"
msgstr "Geometrie"
#. b7NAE
-#: svx/uiconfig/ui/docking3deffects.ui:453
+#: svx/uiconfig/ui/docking3deffects.ui:448
msgctxt "docking3deffects|label6"
msgid "_Horizontal"
msgstr "Horisontaal"
#. 9HFzC
-#: svx/uiconfig/ui/docking3deffects.ui:467
+#: svx/uiconfig/ui/docking3deffects.ui:462
msgctxt "docking3deffects|label7"
msgid "_Vertical"
msgstr "Vertikaal"
#. eECGL
-#: svx/uiconfig/ui/docking3deffects.ui:486
+#: svx/uiconfig/ui/docking3deffects.ui:481
msgctxt "docking3deffects|extended_tip|veri"
msgid "Enter the number of vertical segments to use in the selected 3D rotation object"
msgstr "Voer in die aantal vertikale segmente, waarin die geselekteerde roterende 3D-objek vertoon moet word."
#. zDoUt
-#: svx/uiconfig/ui/docking3deffects.ui:504
+#: svx/uiconfig/ui/docking3deffects.ui:499
msgctxt "docking3deffects|extended_tip|hori"
msgid "Enter the number of horizontal segments to use in the selected 3D rotation object."
msgstr "Voer in die aantal horisontale segmente, waarin die geselekteerde 3D-rotasie-objek vertoon moet word."
#. G67Pd
-#: svx/uiconfig/ui/docking3deffects.ui:519
+#: svx/uiconfig/ui/docking3deffects.ui:514
msgctxt "docking3deffects|label10"
msgid "Segments"
msgstr "Segmente"
#. uGbYJ
-#: svx/uiconfig/ui/docking3deffects.ui:570
+#: svx/uiconfig/ui/docking3deffects.ui:565
msgctxt "docking3deffects|objspecific|tooltip_text"
msgid "Object-Specific"
msgstr "Objekspesifiek"
#. 6Eqby
-#: svx/uiconfig/ui/docking3deffects.ui:575
+#: svx/uiconfig/ui/docking3deffects.ui:570
msgctxt "docking3deffects|extended_tip|objspecific"
msgid "Renders the 3D surface according to the shape of the object. For example, a circular shape is rendered with a spherical surface."
msgstr "Vertoon die 3D-oppervlak volgens die objekvorm. Die oppervlak van 'n ronde objek word dus bolvormig voorgestel."
#. Fc9DB
-#: svx/uiconfig/ui/docking3deffects.ui:589
+#: svx/uiconfig/ui/docking3deffects.ui:584
msgctxt "docking3deffects|flat|tooltip_text"
msgid "Flat"
msgstr "Plat"
#. MgFbn
-#: svx/uiconfig/ui/docking3deffects.ui:594
+#: svx/uiconfig/ui/docking3deffects.ui:589
msgctxt "docking3deffects|extended_tip|flat"
msgid "Renders the 3D surface as polygons."
msgstr "Vertoon die oppervlak van die 3D-objek as veelhoeke."
#. aLmTz
-#: svx/uiconfig/ui/docking3deffects.ui:608
+#: svx/uiconfig/ui/docking3deffects.ui:603
msgctxt "docking3deffects|spherical|tooltip_text"
msgid "Spherical"
msgstr "Sferies"
#. Ant38
-#: svx/uiconfig/ui/docking3deffects.ui:613
+#: svx/uiconfig/ui/docking3deffects.ui:608
msgctxt "docking3deffects|extended_tip|spherical"
msgid "Renders a smooth 3D surface."
msgstr "Skep 'n gladde 3D-oppervlak."
#. a9hYr
-#: svx/uiconfig/ui/docking3deffects.ui:627
+#: svx/uiconfig/ui/docking3deffects.ui:622
msgctxt "docking3deffects|invertnormals|tooltip_text"
msgid "Invert Normals"
msgstr "Normaal omgekeerd"
#. mbsm2
-#: svx/uiconfig/ui/docking3deffects.ui:632
+#: svx/uiconfig/ui/docking3deffects.ui:627
msgctxt "docking3deffects|extended_tip|invertnormals"
msgid "Inverts the light source."
msgstr "Draai om die ligbron."
#. kBScz
-#: svx/uiconfig/ui/docking3deffects.ui:646
+#: svx/uiconfig/ui/docking3deffects.ui:641
msgctxt "docking3deffects|doublesidedillum|tooltip_text"
msgid "Double-Sided Illumination"
msgstr "Tweesydige beligting"
#. Du7J2
-#: svx/uiconfig/ui/docking3deffects.ui:651
+#: svx/uiconfig/ui/docking3deffects.ui:646
msgctxt "docking3deffects|extended_tip|doublesidedillum"
msgid "Lights the object from the outside and the inside. To use an ambient light source, click this button, and then click the Invert Normals button."
msgstr "Die objek word van buite en van binne verlig. Om die omgewingslig te gebruik, klik hier en klik dan op die \"Invert Normals\"-knoppie."
#. Jq33F
-#: svx/uiconfig/ui/docking3deffects.ui:665
+#: svx/uiconfig/ui/docking3deffects.ui:660
msgctxt "docking3deffects|doublesided|tooltip_text"
msgid "Double-Sided"
msgstr "Dubbelsydig"
#. KhQUE
-#: svx/uiconfig/ui/docking3deffects.ui:670
+#: svx/uiconfig/ui/docking3deffects.ui:665
msgctxt "docking3deffects|extended_tip|doublesided"
msgid "Closes the shape of a 3D object that was created by extruding a freeform line (Convert - To 3D)."
msgstr "Sluit die vorm van 'n 3D-objek wat geskep is deur 'n vryhand-lyn (\"Convert → To 3D\")."
#. 2xzfy
-#: svx/uiconfig/ui/docking3deffects.ui:694
+#: svx/uiconfig/ui/docking3deffects.ui:689
msgctxt "docking3deffects|label11"
msgid "Normals"
msgstr "Normale"
#. XjqvC
-#: svx/uiconfig/ui/docking3deffects.ui:723
+#: svx/uiconfig/ui/docking3deffects.ui:718
msgctxt "docking3deffects|to3d|tooltip_text"
msgid "Convert to 3D"
msgstr "Omset na 3D"
#. jGHSC
-#: svx/uiconfig/ui/docking3deffects.ui:727
+#: svx/uiconfig/ui/docking3deffects.ui:722
msgctxt "docking3deffects|extended_tip|to3d"
msgid "Use this icon to convert a selected 2D object to a 3D object."
msgstr "Met hierdie simbool omskep u 'n geselekteerde 2D-objek in 'n 3D-objek."
#. v5fdY
-#: svx/uiconfig/ui/docking3deffects.ui:741
+#: svx/uiconfig/ui/docking3deffects.ui:736
msgctxt "docking3deffects|tolathe|tooltip_text"
msgid "Convert to Rotation Object"
msgstr "Omskakel na rotasie-objek"
#. 3tj7D
-#: svx/uiconfig/ui/docking3deffects.ui:745
+#: svx/uiconfig/ui/docking3deffects.ui:740
msgctxt "docking3deffects|extended_tip|tolathe"
msgid "Click here to convert a selected 2D object to a 3D rotation object."
msgstr "Klik om 'n geselekteerde 2D-objek na 'n 3D-rotasie-objek om te skakel."
#. Tk7Vb
-#: svx/uiconfig/ui/docking3deffects.ui:759
+#: svx/uiconfig/ui/docking3deffects.ui:754
msgctxt "docking3deffects|perspective|tooltip_text"
msgid "Perspective On/Off"
msgstr "Perspektief aan/af-skakel"
#. S27FV
-#: svx/uiconfig/ui/docking3deffects.ui:797
+#: svx/uiconfig/ui/docking3deffects.ui:792
msgctxt "docking3deffects|preview-atkobject"
msgid "3D Preview"
msgstr "3D Voorskou"
#. snUGf
-#: svx/uiconfig/ui/docking3deffects.ui:830
+#: svx/uiconfig/ui/docking3deffects.ui:825
msgctxt "tp_3D_SceneIllumination|CTL_LIGHT_PREVIEW|tooltip_text"
msgid "Light Preview"
msgstr "Ligte Voorskou"
#. c86Xg
-#: svx/uiconfig/ui/docking3deffects.ui:835
+#: svx/uiconfig/ui/docking3deffects.ui:830
msgctxt "docking3deffects|lightpreview-atkobject"
msgid "Color Light Preview"
msgstr "Ligte Kleure Voorskou"
#. ysdwL
-#: svx/uiconfig/ui/docking3deffects.ui:922
+#: svx/uiconfig/ui/docking3deffects.ui:917
msgctxt "docking3deffects|label8"
msgid "_Mode"
msgstr "Modus"
#. BW2hR
-#: svx/uiconfig/ui/docking3deffects.ui:937
+#: svx/uiconfig/ui/docking3deffects.ui:932
msgctxt "docking3deffects|mode"
msgid "Flat"
msgstr "Plat"
#. 6Esbf
-#: svx/uiconfig/ui/docking3deffects.ui:938
+#: svx/uiconfig/ui/docking3deffects.ui:933
msgctxt "docking3deffects|mode"
msgid "Phong"
msgstr "Phong"
#. D6L7i
-#: svx/uiconfig/ui/docking3deffects.ui:939
+#: svx/uiconfig/ui/docking3deffects.ui:934
msgctxt "docking3deffects|mode"
msgid "Gouraud"
msgstr "Gouraud"
#. oq9Aj
-#: svx/uiconfig/ui/docking3deffects.ui:943
+#: svx/uiconfig/ui/docking3deffects.ui:938
msgctxt "docking3deffects|extended_tip|mode"
msgid "Select the shading method that you want to use. Flat shading assigns a single color to a single polygon on the surface of the object. Gouraud shading blends colors across the polygons. Phong shading averages the color of each pixel based on the pixels that surround it, and requires the most processing power."
msgstr "Kies die gewenste skadu-metode. Met plat skaduwee word elke veelhoek op die objek se oppervlak 'n enkele kleur toegeken. In die Gouraud-metode word die kleure van die veelhoeke gemeng. Die Phong-skadu-metode bereken die gemiddelde waarde vir elke pixel uit die kleure van die omliggende pixels en benodig die meeste berekeningstyd."
#. fEdS2
-#: svx/uiconfig/ui/docking3deffects.ui:958
+#: svx/uiconfig/ui/docking3deffects.ui:953
msgctxt "docking3deffects|label12"
msgid "Shading"
msgstr "Skakering"
#. QiGD2
-#: svx/uiconfig/ui/docking3deffects.ui:994
+#: svx/uiconfig/ui/docking3deffects.ui:989
msgctxt "docking3deffects|extended_tip|slant"
msgid "Enter an angle from 0 to 90 degrees for casting the shadow."
msgstr "Voer in 'n waarde van 0 tot 90 grade, as die hoek tussen die objek vir die beoogde skadu."
#. 4yMr6
-#: svx/uiconfig/ui/docking3deffects.ui:1013
+#: svx/uiconfig/ui/docking3deffects.ui:1008
msgctxt "docking3deffects|shadow|tooltip_text"
msgid "3D Shadowing On/Off"
msgstr "3-D-Skaduwees aan/af"
#. uPZTo
-#: svx/uiconfig/ui/docking3deffects.ui:1017
+#: svx/uiconfig/ui/docking3deffects.ui:1012
msgctxt "docking3deffects|extended_tip|shadow"
msgid "Adds or removes a shadow from the selected 3D object."
msgstr "Maak of verwyder 'n skaduwee op die gekose 3D-objek."
#. sT4FD
-#: svx/uiconfig/ui/docking3deffects.ui:1032
+#: svx/uiconfig/ui/docking3deffects.ui:1027
msgctxt "docking3deffects|slantft"
msgid "S_urface angle"
msgstr "O_ppervlaktehoek"
#. kczsC
-#: svx/uiconfig/ui/docking3deffects.ui:1055
+#: svx/uiconfig/ui/docking3deffects.ui:1050
msgctxt "docking3deffects|label13"
msgid "Shadow"
msgstr "Skadu"
#. 84Xfy
-#: svx/uiconfig/ui/docking3deffects.ui:1092
+#: svx/uiconfig/ui/docking3deffects.ui:1087
msgctxt "docking3deffects|extended_tip|focal"
msgid "Enter the focal length of the camera, where a small value corresponds to a \"fisheye\" lens, and a large value to a telephoto lens."
msgstr "Voer in die fokale lengte (f-stop) van die kamera. Kleiner waardes skep 'n \"vis-oog-effek\", groter waardes 'n \"tele-effek\"."
#. QDWn9
-#: svx/uiconfig/ui/docking3deffects.ui:1110
+#: svx/uiconfig/ui/docking3deffects.ui:1105
msgctxt "docking3deffects|extended_tip|distance"
msgid "Enter the distance to leave between the camera and the center of the selected object."
msgstr "Voer in die afstand tussen die kamera en die middelpunt van die gekose objek."
#. MHwmD
-#: svx/uiconfig/ui/docking3deffects.ui:1123
+#: svx/uiconfig/ui/docking3deffects.ui:1118
msgctxt "docking3deffects|label15"
msgid "_Focal length"
msgstr "Fokuslengte"
#. sqNyn
-#: svx/uiconfig/ui/docking3deffects.ui:1137
+#: svx/uiconfig/ui/docking3deffects.ui:1132
msgctxt "docking3deffects|label14"
msgid "_Distance"
msgstr "Afstand"
#. xVYME
-#: svx/uiconfig/ui/docking3deffects.ui:1153
+#: svx/uiconfig/ui/docking3deffects.ui:1148
msgctxt "docking3deffects|label16"
msgid "Camera"
msgstr "Kamera"
#. GDAcC
-#: svx/uiconfig/ui/docking3deffects.ui:1185
+#: svx/uiconfig/ui/docking3deffects.ui:1180
msgctxt "docking3deffects|label17"
msgid "_Light source"
msgstr "Ligbron"
#. DNnED
-#: svx/uiconfig/ui/docking3deffects.ui:1209
+#: svx/uiconfig/ui/docking3deffects.ui:1204
msgctxt "docking3deffects|colorbutton1|tooltip_text"
msgid "Colors Dialog"
msgstr "Kleure dialoog"
#. fbmBv
-#: svx/uiconfig/ui/docking3deffects.ui:1214
+#: svx/uiconfig/ui/docking3deffects.ui:1209
msgctxt "docking3deffects|extended_tip|colorbutton1"
msgid "Select a color for the ambient light."
msgstr "Kies 'n kleur vir die omgewingsbeligting."
#. yWUfc
-#: svx/uiconfig/ui/docking3deffects.ui:1237
+#: svx/uiconfig/ui/docking3deffects.ui:1232
msgctxt "docking3deffects|extended_tip|ambientcolor"
msgid "Select a color for the ambient light."
msgstr "Kies 'n kleur vir die omgewingsbeligting."
#. nSELF
-#: svx/uiconfig/ui/docking3deffects.ui:1251
+#: svx/uiconfig/ui/docking3deffects.ui:1246
msgctxt "docking3deffects|colorbutton2|tooltip_text"
msgid "Colors Dialog"
msgstr "Kleure dialoog"
#. m2KFe
-#: svx/uiconfig/ui/docking3deffects.ui:1264
+#: svx/uiconfig/ui/docking3deffects.ui:1259
msgctxt "docking3deffects|label18"
msgid "_Ambient light"
msgstr "Omgewing lig"
#. m9fpD
-#: svx/uiconfig/ui/docking3deffects.ui:1286
+#: svx/uiconfig/ui/docking3deffects.ui:1281
msgctxt "docking3deffects|light1|tooltip_text"
msgid "Light Source 1"
msgstr "Ligbron 1"
#. 9QFz2
-#: svx/uiconfig/ui/docking3deffects.ui:1293
+#: svx/uiconfig/ui/docking3deffects.ui:1288
msgctxt "docking3deffects|extended_tip|light1"
msgid "Click twice to turn the light source on, and then select a color for the light from the list. If you want, you can also set the color of the surrounding light, by selecting a color from the Ambient light box."
msgstr "Klik twee keer om 'n lamp aan te skakel en kies dan 'n kleur uit die lys. U kan ook 'n kleur vir die omgewingslig kies in die Omgewingslig-veld."
#. 6VQpA
-#: svx/uiconfig/ui/docking3deffects.ui:1307
+#: svx/uiconfig/ui/docking3deffects.ui:1302
msgctxt "docking3deffects|light2|tooltip_text"
msgid "Light Source 2"
msgstr "Ligbron 2"
#. jwgPB
-#: svx/uiconfig/ui/docking3deffects.ui:1314
+#: svx/uiconfig/ui/docking3deffects.ui:1309
msgctxt "docking3deffects|extended_tip|light2"
msgid "Click twice to turn the light source on, and then select a color for the light from the list. If you want, you can also set the color of the surrounding light, by selecting a color from the Ambient light box."
msgstr "Klik twee keer om 'n lamp aan te skakel en kies dan 'n kleur uit die lys. U kan ook 'n kleur vir die omgewingslig kies in die Omgewingslig-veld."
#. H6ApW
-#: svx/uiconfig/ui/docking3deffects.ui:1328
+#: svx/uiconfig/ui/docking3deffects.ui:1323
msgctxt "docking3deffects|light3|tooltip_text"
msgid "Light Source 3"
msgstr "Ligbron 3"
#. sCqw6
-#: svx/uiconfig/ui/docking3deffects.ui:1335
+#: svx/uiconfig/ui/docking3deffects.ui:1330
msgctxt "docking3deffects|extended_tip|light3"
msgid "Click twice to turn the light source on, and then select a color for the light from the list. If you want, you can also set the color of the surrounding light, by selecting a color from the Ambient light box."
msgstr "Klik twee keer om 'n lamp aan te skakel en kies dan 'n kleur uit die lys. U kan ook 'n kleur vir die omgewingslig kies in die Omgewingslig-veld."
#. bFsp9
-#: svx/uiconfig/ui/docking3deffects.ui:1349
+#: svx/uiconfig/ui/docking3deffects.ui:1344
msgctxt "docking3deffects|light4|tooltip_text"
msgid "Light Source 4"
msgstr "Ligbron 4"
#. Vus8w
-#: svx/uiconfig/ui/docking3deffects.ui:1356
+#: svx/uiconfig/ui/docking3deffects.ui:1351
msgctxt "docking3deffects|extended_tip|light4"
msgid "Click twice to turn the light source on, and then select a color for the light from the list. If you want, you can also set the color of the surrounding light, by selecting a color from the Ambient light box."
msgstr "Klik twee keer om 'n lamp aan te skakel en kies dan 'n kleur uit die lys. U kan ook 'n kleur vir die omgewingslig kies in die Omgewingslig-veld."
#. umqpv
-#: svx/uiconfig/ui/docking3deffects.ui:1370
+#: svx/uiconfig/ui/docking3deffects.ui:1365
msgctxt "docking3deffects|light5|tooltip_text"
msgid "Light Source 5"
msgstr "Ligbron 5"
#. dESZk
-#: svx/uiconfig/ui/docking3deffects.ui:1377
+#: svx/uiconfig/ui/docking3deffects.ui:1372
msgctxt "docking3deffects|extended_tip|light5"
msgid "Click twice to turn the light source on, and then select a color for the light from the list. If you want, you can also set the color of the surrounding light, by selecting a color from the Ambient light box."
msgstr "Klik twee keer om 'n lamp aan te skakel en kies dan 'n kleur uit die lys. U kan ook 'n kleur vir die omgewingslig kies in die Omgewingslig-veld."
#. EJ5pS
-#: svx/uiconfig/ui/docking3deffects.ui:1391
+#: svx/uiconfig/ui/docking3deffects.ui:1386
msgctxt "docking3deffects|light6|tooltip_text"
msgid "Light Source 6"
msgstr "Lig bron 6"
#. CgMts
-#: svx/uiconfig/ui/docking3deffects.ui:1398
+#: svx/uiconfig/ui/docking3deffects.ui:1393
msgctxt "docking3deffects|extended_tip|light6"
msgid "Click twice to turn the light source on, and then select a color for the light from the list. If you want, you can also set the color of the surrounding light, by selecting a color from the Ambient light box."
msgstr "Klik twee keer om 'n lamp aan te skakel en kies dan 'n kleur uit die lys. U kan ook 'n kleur vir die omgewingslig kies in die Omgewingslig-veld."
#. RxBpE
-#: svx/uiconfig/ui/docking3deffects.ui:1412
+#: svx/uiconfig/ui/docking3deffects.ui:1407
msgctxt "docking3deffects|light7|tooltip_text"
msgid "Light Source 7"
msgstr "Lig bron 7"
#. LJ3Lp
-#: svx/uiconfig/ui/docking3deffects.ui:1419
+#: svx/uiconfig/ui/docking3deffects.ui:1414
msgctxt "docking3deffects|extended_tip|light7"
msgid "Click twice to turn the light source on, and then select a color for the light from the list. If you want, you can also set the color of the surrounding light, by selecting a color from the Ambient light box."
msgstr "Klik twee keer om 'n lamp aan te skakel en kies dan 'n kleur uit die lys. U kan ook 'n kleur vir die omgewingslig kies in die Omgewingslig-veld."
#. BrqqJ
-#: svx/uiconfig/ui/docking3deffects.ui:1433
+#: svx/uiconfig/ui/docking3deffects.ui:1428
msgctxt "docking3deffects|light8|tooltip_text"
msgid "Light Source 8"
msgstr "Lig bron 8"
#. 7GZgb
-#: svx/uiconfig/ui/docking3deffects.ui:1440
+#: svx/uiconfig/ui/docking3deffects.ui:1435
msgctxt "docking3deffects|extended_tip|light8"
msgid "Click twice to turn the light source on, and then select a color for the light from the list. If you want, you can also set the color of the surrounding light, by selecting a color from the Ambient light box."
msgstr "Klik twee keer om 'n lamp aan te skakel en kies dan 'n kleur uit die lys. U kan ook 'n kleur vir die omgewingslig kies in die Omgewingslig-veld."
#. FN3e6
-#: svx/uiconfig/ui/docking3deffects.ui:1465
+#: svx/uiconfig/ui/docking3deffects.ui:1460
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 1 color"
msgstr "Lig 1 Kleur"
#. djVxQ
-#: svx/uiconfig/ui/docking3deffects.ui:1475
+#: svx/uiconfig/ui/docking3deffects.ui:1470
msgctxt "docking3deffects|extended_tip|lightcolor1"
msgid "Select a color for the current light source."
msgstr "Kies 'n kleur vir die huidige ligbron."
#. EBVTG
-#: svx/uiconfig/ui/docking3deffects.ui:1489
+#: svx/uiconfig/ui/docking3deffects.ui:1484
msgctxt "docking3deffects|lightcolor2|tooltip_text"
msgid "Light 2 color"
msgstr "Lig 2 Kleur"
#. wiDjj
-#: svx/uiconfig/ui/docking3deffects.ui:1508
+#: svx/uiconfig/ui/docking3deffects.ui:1503
msgctxt "docking3deffects|lightcolor3|tooltip_text"
msgid "Light 3 color"
msgstr "Lig 3 Kleur"
#. zZSLi
-#: svx/uiconfig/ui/docking3deffects.ui:1527
+#: svx/uiconfig/ui/docking3deffects.ui:1522
msgctxt "docking3deffects|lightcolor4|tooltip_text"
msgid "Light 4 color"
msgstr "Lig 4 Kleur"
#. bPGBH
-#: svx/uiconfig/ui/docking3deffects.ui:1546
+#: svx/uiconfig/ui/docking3deffects.ui:1541
msgctxt "docking3deffects|lightcolor5|tooltip_text"
msgid "Light 5 color"
msgstr "Lig 5 Kleur"
#. mCg85
-#: svx/uiconfig/ui/docking3deffects.ui:1565
+#: svx/uiconfig/ui/docking3deffects.ui:1560
msgctxt "docking3deffects|lightcolor6|tooltip_text"
msgid "Light 6 color"
msgstr "Lig 6 Kleur"
#. Lj2HV
-#: svx/uiconfig/ui/docking3deffects.ui:1584
+#: svx/uiconfig/ui/docking3deffects.ui:1579
msgctxt "docking3deffects|lightcolor7|tooltip_text"
msgid "Light 7 color"
msgstr "Kleur Lig 7"
#. aNZDv
-#: svx/uiconfig/ui/docking3deffects.ui:1603
+#: svx/uiconfig/ui/docking3deffects.ui:1598
msgctxt "docking3deffects|lightcolor8|tooltip_text"
msgid "Light 8 color"
msgstr "Kleur Lig 8"
#. HqaQ2
-#: svx/uiconfig/ui/docking3deffects.ui:1636
+#: svx/uiconfig/ui/docking3deffects.ui:1631
msgctxt "docking3deffects|label19"
msgid "Illumination"
msgstr "Verligting"
#. BrBDG
-#: svx/uiconfig/ui/docking3deffects.ui:1667
+#: svx/uiconfig/ui/docking3deffects.ui:1662
msgctxt "docking3deffects|label20"
msgid "_Type"
msgstr "Soor_t"
#. txLj4
-#: svx/uiconfig/ui/docking3deffects.ui:1684
+#: svx/uiconfig/ui/docking3deffects.ui:1679
msgctxt "docking3deffects|label22"
msgid "_Mode"
msgstr "Modus"
#. pPQLp
-#: svx/uiconfig/ui/docking3deffects.ui:1701
+#: svx/uiconfig/ui/docking3deffects.ui:1696
msgctxt "docking3deffects|label23"
msgid "_Projection X"
msgstr "_Projeksie X"
#. xcs3h
-#: svx/uiconfig/ui/docking3deffects.ui:1719
+#: svx/uiconfig/ui/docking3deffects.ui:1714
msgctxt "docking3deffects|label24"
msgid "P_rojection Y"
msgstr "P_rojeksie Y"
#. bxSBA
-#: svx/uiconfig/ui/docking3deffects.ui:1737
+#: svx/uiconfig/ui/docking3deffects.ui:1732
msgctxt "docking3deffects|label25"
msgid "_Filtering"
msgstr "_Filtrering"
#. Gq2zg
-#: svx/uiconfig/ui/docking3deffects.ui:1754
+#: svx/uiconfig/ui/docking3deffects.ui:1749
msgctxt "docking3deffects|textype|tooltip_text"
msgid "Black & White"
msgstr "Swart/wit"
#. S5ACF
-#: svx/uiconfig/ui/docking3deffects.ui:1762
+#: svx/uiconfig/ui/docking3deffects.ui:1757
msgctxt "docking3deffects|extended_tip|textype"
msgid "Converts the texture to black and white."
msgstr "Skakel om die tekstuur na swart en wit."
#. rfdVf
-#: svx/uiconfig/ui/docking3deffects.ui:1776
+#: svx/uiconfig/ui/docking3deffects.ui:1771
msgctxt "docking3deffects|texcolor|tooltip_text"
msgid "Color"
msgstr "Kleur"
#. dkTiY
-#: svx/uiconfig/ui/docking3deffects.ui:1784
+#: svx/uiconfig/ui/docking3deffects.ui:1779
msgctxt "docking3deffects|extended_tip|texcolor"
msgid "Converts the texture to color."
msgstr "Die tekstuur word na kleur omgeskakel."
#. aqP2z
-#: svx/uiconfig/ui/docking3deffects.ui:1798
+#: svx/uiconfig/ui/docking3deffects.ui:1793
msgctxt "docking3deffects|texreplace|tooltip_text"
msgid "Only Texture"
msgstr "Slegs Tekstuur"
#. hMAv6
-#: svx/uiconfig/ui/docking3deffects.ui:1806
+#: svx/uiconfig/ui/docking3deffects.ui:1801
msgctxt "docking3deffects|extended_tip|texreplace"
msgid "Applies the texture without shading."
msgstr "Die tekstuur word sonder skaduwee aangebring."
#. HCKdG
-#: svx/uiconfig/ui/docking3deffects.ui:1820
+#: svx/uiconfig/ui/docking3deffects.ui:1815
msgctxt "docking3deffects|texmodulate|tooltip_text"
msgid "Texture and Shading"
msgstr "Tekstuur en Skakering"
#. 3g4zG
-#: svx/uiconfig/ui/docking3deffects.ui:1828
+#: svx/uiconfig/ui/docking3deffects.ui:1823
msgctxt "docking3deffects|extended_tip|texmodulate"
msgid "Applies the texture with shading. To define the shading options for the texture, click the Shading button in this dialog."
msgstr "Die tekstuur word met skaduwee aangebring. Klik op die Voorkoms-ikoon in hierdie dialoog om die skadu-opsies vir die tekstuur te stel."
#. 65J8K
-#: svx/uiconfig/ui/docking3deffects.ui:1842
+#: svx/uiconfig/ui/docking3deffects.ui:1837
msgctxt "docking3deffects|texobjx|tooltip_text"
msgid "Object-Specific"
msgstr "Objek-Spesifiek"
#. y9Kai
-#: svx/uiconfig/ui/docking3deffects.ui:1850
+#: svx/uiconfig/ui/docking3deffects.ui:1845
msgctxt "docking3deffects|extended_tip|texobjx"
msgid "Automatically adjusts the texture based on the shape and size of the object."
msgstr "Die tekstuur word outomaties aangepas na die vorm en grootte van die objek."
#. iTKyD
-#: svx/uiconfig/ui/docking3deffects.ui:1864
+#: svx/uiconfig/ui/docking3deffects.ui:1859
msgctxt "docking3deffects|texparallelx|tooltip_text"
msgid "Parallel"
msgstr "P_arallel"
#. SjaUF
-#: svx/uiconfig/ui/docking3deffects.ui:1872
+#: svx/uiconfig/ui/docking3deffects.ui:1867
msgctxt "docking3deffects|extended_tip|texparallelx"
msgid "Applies the texture parallel to the horizontal axis."
msgstr "Die tekstuur word parallel met die X-as aangebring."
#. MhgUE
-#: svx/uiconfig/ui/docking3deffects.ui:1886
+#: svx/uiconfig/ui/docking3deffects.ui:1881
msgctxt "docking3deffects|texcirclex|tooltip_text"
msgid "Circular"
msgstr "Sirkelvormig"
#. pfLqS
-#: svx/uiconfig/ui/docking3deffects.ui:1895
+#: svx/uiconfig/ui/docking3deffects.ui:1890
msgctxt "docking3deffects|extended_tip|texcirclex"
msgid "Wraps the horizontal axis of the texture pattern around a sphere."
msgstr "Die X-as van die tekstuur-patroon word bolvormig om die voorwerp beklee."
#. E9Gy6
-#: svx/uiconfig/ui/docking3deffects.ui:1909
+#: svx/uiconfig/ui/docking3deffects.ui:1904
msgctxt "docking3deffects|texobjy|tooltip_text"
msgid "Object-Specific"
msgstr "Objek-Spesifiek"
#. Li9zf
-#: svx/uiconfig/ui/docking3deffects.ui:1917
+#: svx/uiconfig/ui/docking3deffects.ui:1912
msgctxt "docking3deffects|extended_tip|texobjy"
msgid "Automatically adjusts the texture based on the shape and size of the object."
msgstr "Die tekstuur-patroon word automaties aangepas na die objek se grootte en vorm."
#. 5B84a
-#: svx/uiconfig/ui/docking3deffects.ui:1931
+#: svx/uiconfig/ui/docking3deffects.ui:1926
msgctxt "docking3deffects|texparallely|tooltip_text"
msgid "Parallel"
msgstr "P_arallel"
#. UuRg4
-#: svx/uiconfig/ui/docking3deffects.ui:1939
+#: svx/uiconfig/ui/docking3deffects.ui:1934
msgctxt "docking3deffects|extended_tip|texparallely"
msgid "Applies the texture parallel to the vertical axis."
msgstr "Die tekstuur word parallel aan die Y-as beklee."
#. h5iQh
-#: svx/uiconfig/ui/docking3deffects.ui:1953
+#: svx/uiconfig/ui/docking3deffects.ui:1948
msgctxt "docking3deffects|texcircley|tooltip_text"
msgid "Circular"
msgstr "Sirkelvormig"
#. FyRf5
-#: svx/uiconfig/ui/docking3deffects.ui:1961
+#: svx/uiconfig/ui/docking3deffects.ui:1956
msgctxt "docking3deffects|extended_tip|texcircley"
msgid "Wraps the vertical axis of the texture pattern around a sphere."
msgstr "Beklee die Y-as van die tekspatroon, sferies om die objek."
#. cKvPt
-#: svx/uiconfig/ui/docking3deffects.ui:1975
+#: svx/uiconfig/ui/docking3deffects.ui:1970
msgctxt "docking3deffects|texfilter|tooltip_text"
msgid "Filtering On/Off"
msgstr "Filtrering aan/af"
#. mMhpy
-#: svx/uiconfig/ui/docking3deffects.ui:1983
+#: svx/uiconfig/ui/docking3deffects.ui:1978
msgctxt "docking3deffects|extended_tip|texfilter"
msgid "Blurs the texture slightly to remove unwanted speckles."
msgstr "Die tekstuur is effens vervaag om ongewenste vlekke te verwyder."
#. GKiZx
-#: svx/uiconfig/ui/docking3deffects.ui:2007
+#: svx/uiconfig/ui/docking3deffects.ui:2002
msgctxt "docking3deffects|label21"
msgid "Textures"
msgstr "Teksture"
#. fYX37
-#: svx/uiconfig/ui/docking3deffects.ui:2038
+#: svx/uiconfig/ui/docking3deffects.ui:2033
msgctxt "docking3deffects|label26"
msgid "_Favorites"
msgstr "_Gunsteling"
#. mNa7V
-#: svx/uiconfig/ui/docking3deffects.ui:2054
+#: svx/uiconfig/ui/docking3deffects.ui:2049
msgctxt "docking3deffects|label27"
msgid "_Object color"
msgstr "_Objekkleur"
#. rGGJC
-#: svx/uiconfig/ui/docking3deffects.ui:2068
+#: svx/uiconfig/ui/docking3deffects.ui:2063
msgctxt "docking3deffects|label29"
msgid "_Illumination color"
msgstr "_Beligtingskleur"
#. UmpFS
-#: svx/uiconfig/ui/docking3deffects.ui:2093
+#: svx/uiconfig/ui/docking3deffects.ui:2088
msgctxt "docking3deffects|extended_tip|objcolor"
msgid "Select the color that you want to apply to the object."
msgstr "Klik op die kleur wat u vir die objek wil hê."
#. 8ufuo
-#: svx/uiconfig/ui/docking3deffects.ui:2117
+#: svx/uiconfig/ui/docking3deffects.ui:2112
msgctxt "docking3deffects|extended_tip|illumcolor"
msgid "Select the color to illuminate the object."
msgstr "Kies die kleur vir beligting van die objek."
#. EeS7C
-#: svx/uiconfig/ui/docking3deffects.ui:2131
+#: svx/uiconfig/ui/docking3deffects.ui:2126
msgctxt "docking3deffects|favorites"
msgid "User-defined"
msgstr "Gebruiker-gedefinieerd"
#. RcCQG
-#: svx/uiconfig/ui/docking3deffects.ui:2132
+#: svx/uiconfig/ui/docking3deffects.ui:2127
msgctxt "docking3deffects|favorites"
msgid "Metal"
msgstr "Metaal"
#. JxUiT
-#: svx/uiconfig/ui/docking3deffects.ui:2133
+#: svx/uiconfig/ui/docking3deffects.ui:2128
msgctxt "docking3deffects|favorites"
msgid "Gold"
msgstr "Goud"
#. Mnmop
-#: svx/uiconfig/ui/docking3deffects.ui:2134
+#: svx/uiconfig/ui/docking3deffects.ui:2129
msgctxt "docking3deffects|favorites"
msgid "Chrome"
msgstr "Chroom"
#. fa9bg
-#: svx/uiconfig/ui/docking3deffects.ui:2135
+#: svx/uiconfig/ui/docking3deffects.ui:2130
msgctxt "docking3deffects|favorites"
msgid "Plastic"
msgstr "Plastiek"
#. WGUwt
-#: svx/uiconfig/ui/docking3deffects.ui:2136
+#: svx/uiconfig/ui/docking3deffects.ui:2131
msgctxt "docking3deffects|favorites"
msgid "Wood"
msgstr "Hout"
#. KDxBg
-#: svx/uiconfig/ui/docking3deffects.ui:2143
+#: svx/uiconfig/ui/docking3deffects.ui:2138
msgctxt "docking3deffects|extended_tip|favorites"
msgid "Select a predefined color scheme, or select User-defined to define a custom color scheme."
msgstr "Kies een van die vooraf gedefinieerde kleurskemas of definieer u eie met behulp van \"Custom\"."
#. AndqG
-#: svx/uiconfig/ui/docking3deffects.ui:2158
+#: svx/uiconfig/ui/docking3deffects.ui:2153
msgctxt "docking3deffects|colorbutton3|tooltip_text"
msgid "Colors Dialog"
msgstr "Kleure-Dialoog"
#. BT3GD
-#: svx/uiconfig/ui/docking3deffects.ui:2162
+#: svx/uiconfig/ui/docking3deffects.ui:2157
msgctxt "docking3deffects|extended_tip|colorbutton3"
msgid "Select the color to illuminate the object."
msgstr "Kies die kleur vir beligting van die objek."
#. tsEoC
-#: svx/uiconfig/ui/docking3deffects.ui:2176
+#: svx/uiconfig/ui/docking3deffects.ui:2171
msgctxt "docking3deffects|colorbutton4|tooltip_text"
msgid "Colors Dialog"
msgstr "Kleure-Dialoog"
#. RWxeM
-#: svx/uiconfig/ui/docking3deffects.ui:2190
+#: svx/uiconfig/ui/docking3deffects.ui:2185
msgctxt "docking3deffects|label28"
msgid "Material"
msgstr "Materiaal"
#. wY3tE
-#: svx/uiconfig/ui/docking3deffects.ui:2221
+#: svx/uiconfig/ui/docking3deffects.ui:2216
msgctxt "docking3deffects|label30"
msgid "_Color"
msgstr "_Kleur"
#. ngqfq
-#: svx/uiconfig/ui/docking3deffects.ui:2235
+#: svx/uiconfig/ui/docking3deffects.ui:2230
msgctxt "docking3deffects|label31"
msgid "I_ntensity"
msgstr "I_ntensiteit"
#. TAoRf
-#: svx/uiconfig/ui/docking3deffects.ui:2260
+#: svx/uiconfig/ui/docking3deffects.ui:2255
msgctxt "docking3deffects|extended_tip|speccolor"
msgid "Select the color that you want the object to reflect."
msgstr "Kies 'n kleur vir die objek se weerkaatsing."
#. 8fdJB
-#: svx/uiconfig/ui/docking3deffects.ui:2274
+#: svx/uiconfig/ui/docking3deffects.ui:2269
msgctxt "docking3deffects|colorbutton5|tooltip_text"
msgid "Colors Dialog"
msgstr "Kleure-Dialoog"
#. GjQ2i
-#: svx/uiconfig/ui/docking3deffects.ui:2278
+#: svx/uiconfig/ui/docking3deffects.ui:2273
msgctxt "docking3deffects|extended_tip|colorbutton5"
msgid "Enter the intensity of the specular effect."
msgstr "Voer in die ligintensiteit vir die hoogtepunt."
#. tcm3D
-#: svx/uiconfig/ui/docking3deffects.ui:2295
+#: svx/uiconfig/ui/docking3deffects.ui:2290
msgctxt "docking3deffects|extended_tip|intensity"
msgid "Enter the intensity of the specular effect."
msgstr "Voer in die ligintensiteit vir die hoogtepunt."
#. L8GqV
-#: svx/uiconfig/ui/docking3deffects.ui:2311
+#: svx/uiconfig/ui/docking3deffects.ui:2306
msgctxt "docking3deffects|label32"
msgid "Specular"
msgstr "Glansend"
#. Qkzsq
-#: svx/uiconfig/ui/docking3deffects.ui:2334
+#: svx/uiconfig/ui/docking3deffects.ui:2329
msgctxt "docking3deffects|assign|tooltip_text"
msgid "Assign"
msgstr "Aanwys"
#. cjrJ9
-#: svx/uiconfig/ui/docking3deffects.ui:2347
+#: svx/uiconfig/ui/docking3deffects.ui:2342
msgctxt "docking3deffects|update|tooltip_text"
msgid "Update"
msgstr "Bywerk"
#. AgKU4
-#: svx/uiconfig/ui/docking3deffects.ui:2362
+#: svx/uiconfig/ui/docking3deffects.ui:2357
msgctxt "docking3deffects|material|tooltip_text"
msgid "Material"
msgstr "Materiaal"
#. xN7Sr
-#: svx/uiconfig/ui/docking3deffects.ui:2366
+#: svx/uiconfig/ui/docking3deffects.ui:2361
msgctxt "docking3deffects|extended_tip|material"
msgid "Changes the coloring of the selected 3D object."
msgstr "Wysig die kleur van die geselekteerde 3D objek."
#. 3Av3h
-#: svx/uiconfig/ui/docking3deffects.ui:2380
+#: svx/uiconfig/ui/docking3deffects.ui:2375
msgctxt "docking3deffects|texture|tooltip_text"
msgid "Textures"
msgstr "Teksture"
#. DVwWG
-#: svx/uiconfig/ui/docking3deffects.ui:2384
+#: svx/uiconfig/ui/docking3deffects.ui:2379
msgctxt "docking3deffects|extended_tip|texture"
msgid "Sets the properties of the surface texture for the selected 3D object. This feature is only available after you apply a surface texture to the selected object. To quickly apply a surface texture, open the Gallery, hold down Shift+Ctrl, and then drag an image onto the selected 3D object."
msgstr "Hier definieer u die tekstuur-eienskappe van die gekose 3D-objek. Hierdie funksie is slegs beskikbaar vir objekte met 'n aangewende tekstuur. Om 'n tekstuur vinnig toe te ken, open die \"Gallery, Shift + Ctrl\" ingedruk en trek een van die grafika na die geselekteerde 3D-objek."
#. J4WKj
-#: svx/uiconfig/ui/docking3deffects.ui:2398
+#: svx/uiconfig/ui/docking3deffects.ui:2393
msgctxt "docking3deffects|light|tooltip_text"
msgid "Illumination"
msgstr "Verligting"
#. 9WEJD
-#: svx/uiconfig/ui/docking3deffects.ui:2402
+#: svx/uiconfig/ui/docking3deffects.ui:2397
msgctxt "docking3deffects|extended_tip|light"
msgid "Define the light source for the selected 3D object."
msgstr "Definieer die ligbron vir die geselekteerde 3D-objek hier."
#. ctHgb
-#: svx/uiconfig/ui/docking3deffects.ui:2416
+#: svx/uiconfig/ui/docking3deffects.ui:2411
msgctxt "docking3deffects|representation|tooltip_text"
msgid "Shading"
msgstr "Skakering"
#. HF3KP
-#: svx/uiconfig/ui/docking3deffects.ui:2420
+#: svx/uiconfig/ui/docking3deffects.ui:2415
msgctxt "docking3deffects|extended_tip|representation"
msgid "Sets the shading and shadow options for the selected 3D object."
msgstr "Hier definieer u die vertonings- en skadu-opsies vir die gekose 3D-objek."
#. HxxSF
-#: svx/uiconfig/ui/docking3deffects.ui:2434
+#: svx/uiconfig/ui/docking3deffects.ui:2429
msgctxt "docking3deffects|geometry|tooltip_text"
msgid "Geometry"
msgstr "Geometrie"
#. h4c39
-#: svx/uiconfig/ui/docking3deffects.ui:2438
+#: svx/uiconfig/ui/docking3deffects.ui:2433
msgctxt "docking3deffects|extended_tip|geometry"
msgid "Adjusts the shape of the selected 3D object. You can only modify the shape of a 3D object that was created by converting a 2D object. To convert a 2D object to 3D, select the object, right-click, and then choose Convert - To 3D, or Convert - To 3D Rotation Object."
msgstr "Om die vorm van die geselekteerde 3D-objek te verander. Slegs die vorm van 3D-objekte wat deur die omskakeling van 2D-objekte geskep word, kan verander word. Om 'n 2D-objek na 3D te omskep, kies die objek, regtermuis-kliek en kies dan \"Omskep in 3D\" of \"Omskep → 3D Rotasie Objek\"."
#. 4D9WF
-#: svx/uiconfig/ui/docking3deffects.ui:2455
+#: svx/uiconfig/ui/docking3deffects.ui:2450
msgctxt "docking3deffects|extended_tip|Docking3DEffects"
msgid "Specifies the properties of 3D object(s) in the current document or converts a 2D object to 3D."
msgstr "Stel die eienskappe van 3D-objek in die huidige dokument of skakel 'n 2D-objek om na 'n 3D-objek."
diff --git a/source/af/sw/messages.po b/source/af/sw/messages.po
index 2e8f96d79f9..e13b82ad532 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: 2021-04-12 12:07+0200\n"
-"PO-Revision-Date: 2021-04-07 14:16+0000\n"
+"POT-Creation-Date: 2021-04-27 17:03+0200\n"
+"PO-Revision-Date: 2021-04-28 11:49+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/af/>\n"
"Language: af\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: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1560976448.000000\n"
#. v3oJv
@@ -2329,12 +2329,12 @@ msgctxt "STR_APPLY_EXTENDEDTIP"
msgid "Applies all modifications without closing dialog. Values are saved and cannot be reverted with Reset."
msgstr "Pas alle wysigings toe sonder om die dialoog te sluit. Waardes word gestoor en kan nie met Herstel teruggestel word nie."
-#. MvGmf
+#. FezFo
#. Format names
#: sw/inc/strings.hrc:38
msgctxt "STR_POOLCHR_STANDARD"
-msgid "Default Character Style"
-msgstr "Verstek Karakter Styl"
+msgid "No Character Style"
+msgstr "Geen karakterstyl"
#. iVg2a
#: sw/inc/strings.hrc:39
@@ -2370,7 +2370,7 @@ msgstr "Nommeringsimbole"
#: sw/inc/strings.hrc:44
msgctxt "STR_POOLCHR_BULLET_LEVEL"
msgid "Bullets"
-msgstr "Koeëlpunt paragrawe"
+msgstr "Kolparagrawe"
#. HsfNg
#: sw/inc/strings.hrc:45
@@ -4428,25 +4428,25 @@ msgstr "Installeer asb. die koppelteken vir gebiedskema \"%1\"."
#: sw/inc/strings.hrc:407
msgctxt "STR_HIDDEN_CHANGES"
msgid "Track Changes"
-msgstr ""
+msgstr "Opname van Wysigings"
#. DcXvE
#: sw/inc/strings.hrc:408
msgctxt "STR_HIDDEN_CHANGES_DETAIL"
msgid "Document contains tracked changes and recording is enabled."
-msgstr ""
+msgstr "Dokument bevat opgetekende wysigings en byhou is geaktiveer."
#. zxuEu
#: sw/inc/strings.hrc:409
msgctxt "STR_HIDDEN_CHANGES_DETAIL2"
msgid "Recording of changes is enabled."
-msgstr ""
+msgstr "Opname van veranderings is geaktiveer."
#. BH7Ud
#: sw/inc/strings.hrc:410
msgctxt "STR_HIDDEN_CHANGES_DETAIL3"
msgid "Document contains tracked changes."
-msgstr ""
+msgstr "Dokument bevat opgeneemde wysigings."
#. MEN2d
#. Undo
@@ -10978,6 +10978,18 @@ msgctxt "autotext|extended_tip|AutoTextDialog"
msgid "Creates, edits, or inserts AutoText. You can store formatted text, text with graphics, tables, and fields as AutoText. To quickly insert AutoText, type the shortcut for the AutoText in your document, and then press F3."
msgstr "Skep, wysig of voeg in AutoText. U kan geformateerde teks, teks met grafika, tabelle en velde as outo-teks stoor. Om AutoText vinnig in te voeg, voer die onderskeie AutoText-kortskakels in u dokument in en druk dan F3."
+#. XKQvW
+#: sw/uiconfig/swriter/ui/bibliofragment.ui:45
+msgctxt "bibliofragment|browse"
+msgid "Browse..."
+msgstr "Rondkyk..."
+
+#. ni4Mj
+#: sw/uiconfig/swriter/ui/bibliofragment.ui:68
+msgctxt "bibliofragment|pagecb"
+msgid "Page"
+msgstr "Bladsy"
+
#. bBcSd
#: sw/uiconfig/swriter/ui/bibliographyentry.ui:8
msgctxt "bibliographyentry|BibliographyEntryDialog"
@@ -11816,7 +11828,7 @@ msgstr "Voer die teks in wat vir die hiperskakel vertoon moet word."
#: sw/uiconfig/swriter/ui/charurlpage.ui:156
msgctxt "charurlpage|urlpb"
msgid "Browse..."
-msgstr "Blaai..."
+msgstr "Rondkyk..."
#. 4276D
#: sw/uiconfig/swriter/ui/charurlpage.ui:163
@@ -13142,7 +13154,7 @@ msgstr "Skep 'n DDE-skakel. Merk hierdie veld en voer dan in die gewenste DDE-op
#: sw/uiconfig/swriter/ui/editsectiondialog.ui:309
msgctxt "editsectiondialog|file"
msgid "Browse..."
-msgstr "Blaai..."
+msgstr "Rondkyk..."
#. YSbbe
#: sw/uiconfig/swriter/ui/editsectiondialog.ui:316
@@ -13886,7 +13898,7 @@ msgstr "Beskikb_are databasisse"
#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147
msgctxt "exchangedatabases|browse"
msgid "Browse..."
-msgstr "Blaai..."
+msgstr "Rondkyk..."
#. HvR9A
#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155
@@ -14106,7 +14118,7 @@ msgstr "Voeg databasislêer by"
#: sw/uiconfig/swriter/ui/flddbpage.ui:326
msgctxt "flddbpage|browse"
msgid "Browse..."
-msgstr "Blaai..."
+msgstr "Rondkyk..."
#. FnCPc
#: sw/uiconfig/swriter/ui/flddbpage.ui:332
@@ -14829,151 +14841,151 @@ msgid "Endnotes"
msgstr "Eindnote"
#. FHaCH
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:61
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:59
msgctxt "footnoteareapage|maxheightpage"
msgid "_Not larger than page area"
msgstr "_Nie groter as bladsy-area nie"
#. GSJFc
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:72
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:69
msgctxt "footnoteareapage|extended_tip|maxheightpage"
msgid "Automatically adjusts the height of the footnote area depending on the number of footnotes."
msgstr "Pas die hoogte van die voetnootarea outomaties aan, afhangende van die aantal voetnotas."
#. FA6CC
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:84
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:81
msgctxt "footnoteareapage|maxheight"
msgid "Maximum footnote _height"
msgstr "Maksimum _hoogte vir voetnote"
#. bC7yH
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:97
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:93
msgctxt "footnoteareapage|extended_tip|maxheight"
msgid "Sets a maximum height for the footnote area. Enable this option, then enter the height."
msgstr "Spesifiseer 'n maksimum hoogte vir die voetnootarea. Merk hierdie blokkie en voer dan die hoogte in."
#. YKAGh
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:111
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:106
msgctxt "footnoteareapage|label3"
msgid "Space to text"
msgstr "Spasie tot by teks"
#. 3gM96
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:133
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:127
msgctxt "footnoteareapage|extended_tip|spacetotext"
msgid "Enter the amount of space to leave between the bottom page margin and the first line of text in the footnote area."
msgstr "Voer die hoeveelheid spasie in wat tussen die onderkant van die bladsy en die eerste reël teks in die voetnootarea moet agterbly."
#. BEuKg
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:157
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:150
msgctxt "footnoteareapage|extended_tip|maxheightsb"
msgid "Enter the maximum height for the footnote area."
msgstr "Voer die maksimum hoogte van die voetnootarea in."
#. G6Dar
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:172
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:165
msgctxt "footnoteareapage|label1"
msgid "Footnote Area"
msgstr "Voetnoot-area"
#. nD6YA
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:207
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:197
msgctxt "footnoteareapage|label4"
msgid "_Position"
msgstr "_Posisie"
#. fzkPB
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:222
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:211
msgctxt "footnoteareapage|label5"
msgid "_Style"
msgstr "_Styl"
#. 7X5cr
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:237
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:225
msgctxt "footnoteareapage|label6"
msgid "_Thickness"
msgstr "Dik_te"
#. myPFY
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:252
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:239
msgctxt "footnoteareapage|label7"
msgid "_Color"
msgstr "_Kleur"
#. xdT9F
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:267
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:253
msgctxt "footnoteareapage|label8"
msgid "_Length"
msgstr "_Lengte"
#. F3nWG
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:282
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:267
msgctxt "footnoteareapage|label9"
msgid "_Spacing to footnote contents"
msgstr "_Spasiëring tot by inhoud van voetnoot"
#. uZuEN
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:299
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:283
msgctxt "footnoteareapage|position"
msgid "Left"
msgstr "Links"
#. dqnpa
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:300
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:284
msgctxt "footnoteareapage|position"
msgid "Centered"
msgstr "Middel"
#. eMfVA
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:301
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:285
msgctxt "footnoteareapage|position"
msgid "Right"
msgstr "Regs"
#. WGvV6
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:305
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:289
msgctxt "footnoteareapage|extended_tip|position"
msgid "Select the horizontal alignment for the line that separates the main text from the footnote area."
msgstr "Kies die horisontale belyning vir die skeidslyn tussen die teks en die voetnootarea."
#. sD8YC
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:329
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:312
msgctxt "footnoteareapage|extended_tip|style"
msgid "Select the formatting style for the separator line. If you do not want a separator line, choose \"None\"."
msgstr "Spesifiseer die formaat van die skeidslyn. Kies \"Geen\" as u nie 'n skeidslyn wil hê nie."
#. aHwK5
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:353
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:335
msgctxt "footnoteareapage|extended_tip|color"
msgid "Select the color of the separator line."
msgstr "Kies die kleur van die Skeidslyn."
#. vJxuj
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:373
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:354
msgctxt "footnoteareapage|extended_tip|length"
msgid "Enter the length of the separator line as a percentage of the page width area."
msgstr "Voer die lengte in van die skeidslyn as 'n persentasie van die bladsy wydte."
#. FBKJE
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:394
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:374
msgctxt "footnoteareapage|extended_tip|spacingtocontents"
msgid "Enter the amount of space to leave between the separator line and the first line of the footnote area."
msgstr "Voer die hoeveelheid spasie in wat tussen die skeidslyn en die eerste reël van die voetnootarea moet oorbly."
#. Fnt7q
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:415
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:394
msgctxt "footnoteareapage|extended_tip|thickness"
msgid "Select the thickness of the separator line."
msgstr "Kies die dikte van die skeidslyn."
#. bUbrX
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:430
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:409
msgctxt "footnoteareapage|label2"
msgid "Separator Line"
msgstr "Skeilyn"
#. vxKGo
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:445
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:424
msgctxt "footnoteareapage|extended_tip|FootnoteAreaPage"
msgid "Specifies the layout options for footnotes, including the line that separates the footnote from the main body of document."
msgstr "Spesifiseer die uitlegopsies vir voetnote. Dit sluit die skeidslyn tussen die voetnoot en die hoofstuk van die dokument in."
@@ -15855,277 +15867,277 @@ msgid "Relat_ive to"
msgstr "Relat_ief tot"
#. H3kKU
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:110
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:109
msgctxt "frmtypepage|extended_tip|relwidth"
msgid "Calculates the width of the selected object as a percentage of the width of the page text area."
msgstr "Hierdie opsie bereken die breedte van die geselekteerde objek as 'n persentasie van die wydte van die bladsy-teksarea."
#. CDRCF
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:126
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:125
msgctxt "frmtypepage|extended_tip|relwidthrelation"
msgid "Decides what 100% width means: either text area (excluding margins) or the entire page (including margins)."
msgstr "Beslis wat 100% wydte behels: of teksgebied (kantlyne uitgesluit) of die hele bladsy (kantlyne ingesluit)."
#. LVvrB
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:137
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:136
msgctxt "frmtypepage|autowidth"
msgid "AutoSize"
msgstr "Outomatiese grootte"
#. br57s
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:147
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:145
msgctxt "frmtypepage|extended_tip|autowidth"
msgid "Automatically adjusts the width or height of a frame to match the contents of the frame. If you want, you can specify a minimum width or minimum height for the frame."
msgstr "Pas die wydte of hoogte van 'n raam outomaties aan sodat dit by die inhoud van die raam pas. As u wil, kan u 'n minimum wydte of minimum hoogte vir die raam gee."
#. TNaFa
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:167
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:165
msgctxt "frmtypepage|heightft"
msgid "H_eight"
msgstr "Hoogt_e"
#. Rvr7b
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:181
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:179
msgctxt "frmtypepage|autoheightft"
msgid "H_eight (at least)"
msgstr "Hoogt_e (ten minste)"
#. nAbJb
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:207
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:205
msgctxt "frmtypepage|extended_tip|height"
msgid "Enter the height that you want for the selected object."
msgstr "Voer die gewenste hoogte vir die geselekteerde objek in."
#. uN2DT
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:218
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:216
msgctxt "frmtypepage|relheight"
msgid "Re_lative to"
msgstr "Re_latief tot"
#. 6BmoJ
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:228
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:225
msgctxt "frmtypepage|extended_tip|relheight"
msgid "Calculates the height of the selected object as a percentage of the height of the page text area."
msgstr "Hierdie opsie bereken die hoogte van die geselekteerde objek as 'n persentasie van die hoogte van die bladsy teksarea."
#. rgwPm
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:244
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:241
msgctxt "frmtypepage|extended_tip|relheightrelation"
msgid "Decides what 100% height means: either text area (excluding margins) or the entire page (including margins)."
msgstr "Beslis wat 100% hoogte behels: of die teksarea (uitgesluit kantlyne) of die hele bladsy (kantlyne ingesluit)."
#. U2yc9
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:255
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:252
msgctxt "frmtypepage|autoheight"
msgid "AutoSize"
msgstr "Outomatiese grootte"
#. X7XFK
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:265
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:261
msgctxt "frmtypepage|extended_tip|autoheight"
msgid "Automatically adjusts the width or height of a frame to match the contents of the frame. If you want, you can specify a minimum width or minimum height for the frame."
msgstr "Pas die wydte of hoogte van 'n raam outomaties aan sodat dit by die inhoud van die raam pas. As u wil, kan u 'n minimum wydte of minimum hoogte vir die raam gee."
#. htCBL
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:277
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:273
msgctxt "frmtypepage|ratio"
msgid "_Keep ratio"
msgstr "Be_hou verhouding"
#. RGWEJ
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:286
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:281
msgctxt "frmtypepage|extended_tip|ratio"
msgid "Maintains the height and width ratio when you change the width or the height setting."
msgstr "Behou die hoogte en wydte in verhouding, wanneer u of die hoogte of die wydte verstel."
#. rMhep
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:298
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:293
msgctxt "frmtypepage|origsize"
msgid "_Original Size"
msgstr "_Oorspronklike grootte"
#. 4ZHrz
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:306
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:301
msgctxt "frmtypepage|extended_tip|origsize"
msgid "Resets the size settings of the selected object to the original values."
msgstr "Herstel die grootte verstellings van die geselekteerde objek nan die oorspronklike waardes."
#. Z2CJB
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:322
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:317
msgctxt "frmtypepage|label2"
msgid "Size"
msgstr "Grootte"
#. EwYPL
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:353
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:348
msgctxt "frmtypepage|topage"
msgid "To _page"
msgstr "Aan _bladsy"
#. bnxYw
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:363
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:357
msgctxt "frmtypepage|extended_tip|topage"
msgid "Anchors the selection to the current page."
msgstr "Anker die seleksie aan die huidige bladsy."
#. MMqAf
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:374
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:368
msgctxt "frmtypepage|topara"
msgid "To paragrap_h"
msgstr "Aan para_graaf"
#. zuY6M
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:384
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:377
msgctxt "frmtypepage|extended_tip|topara"
msgid "Anchors the selection to the current paragraph."
msgstr "Anker die huidige seleksie aan die huidige paragraaf."
#. yX6rK
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:395
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:388
msgctxt "frmtypepage|tochar"
msgid "To cha_racter"
msgstr "Aan ka_rakter"
#. CKgCn
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:405
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:397
msgctxt "frmtypepage|extended_tip|tochar"
msgid "Anchors the selection to a character."
msgstr "Anker die seleksie aan 'n karakter posisie."
#. C9xQY
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:416
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:408
msgctxt "frmtypepage|aschar"
msgid "_As character"
msgstr "_As karakter"
#. idwGi
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:426
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:417
msgctxt "frmtypepage|extended_tip|aschar"
msgid "Anchors the selection as character. The height of the current line is resized to match the height of the selection."
msgstr "Anker die seleksie as 'n karakter posisie. Die hoogte van die huidige lyn word aangepas na die hoogte van die seleksie."
#. TGg8f
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:437
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:428
msgctxt "frmtypepage|toframe"
msgid "To _frame"
msgstr "Aa_n raam"
#. 3DgCP
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:457
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:447
msgctxt "frmtypepage|label1"
msgid "Anchor"
msgstr "Anker"
#. d4jxE
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:486
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:476
msgctxt "frmtypepage|lbPreview"
msgid "Preview"
msgstr "Voorskou"
#. 7RCJH
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:523
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:513
msgctxt "frmtypepage|horiposft"
msgid "Hori_zontal"
msgstr "Hori_sontaal"
#. ytvmN
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:537
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:527
msgctxt "frmtypepage|horibyft"
msgid "b_y"
msgstr "by"
#. EEXr7
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:551
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:541
msgctxt "frmtypepage|vertbyft"
msgid "by"
msgstr "by"
#. NW7Se
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:565
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:555
msgctxt "frmtypepage|horitoft"
msgid "_to"
msgstr "na"
#. jg9kn
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:584
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:574
msgctxt "frmtypepage|extended_tip|byhori"
msgid "Enter the amount of space to leave between the left edge of the selected object and the reference point that you select in the To box."
msgstr "Voer die afstand in om te laat tussen die linkersy van die geselekteerde objek en die verwysingspunt wat u in die Aan-veld selekteer."
#. ATVDy
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:599
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:589
msgctxt "frmtypepage|extended_tip|horianchor"
msgid "Select the reference point for the selected horizontal alignment option."
msgstr "Kies die verwysingspunt vir die geselekteerde horisontale belyningsopsie."
#. Mzkkm
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:614
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:604
msgctxt "frmtypepage|extended_tip|horipos"
msgid "Select the horizontal alignment option for the object."
msgstr "Selekteer \"horisontale belyning\" as opsie vir die objek."
#. jATQG
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:627
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:617
msgctxt "frmtypepage|vertposft"
msgid "_Vertical"
msgstr "_Vertikaal"
#. mcsH8
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:643
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:633
msgctxt "frmtypepage|extended_tip|vertpos"
msgid "Select the vertical alignment option for the object."
msgstr "Selekteer \"vertikale belyning\" as opsie vir die objek."
#. BcA3U
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:661
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:651
msgctxt "frmtypepage|extended_tip|byvert"
msgid "Enter the amount of space to leave between the top edge of the selected object and the reference point that you select in the To box."
msgstr "Voer die afstand om te laat tussen die bokant van die geselekteerde objek en die verwysingspunt geselekteer met die \"Aan\"-veld."
#. nJyJE
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:674
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:664
msgctxt "frmtypepage|verttoft"
msgid "t_o"
msgstr "na"
#. Aw5J8
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:690
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:680
msgctxt "frmtypepage|extended_tip|vertanchor"
msgid "Select the reference point for the selected vertical alignment option."
msgstr "Kies die verwysingspunt vir die geselekteerde vertikale belyning opsie."
#. WwDCp
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:701
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:691
msgctxt "frmtypepage|mirror"
msgid "_Mirror on even pages"
msgstr "Spieël_beeld op ewe bladsye"
#. Nftff
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:710
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:700
msgctxt "frmtypepage|extended_tip|mirror"
msgid "Reverses the current horizontal alignment settings on even pages."
msgstr "Herstel die huidige horisontale belyningsopsies op ewe bladsye."
#. PFJMP
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:722
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:712
msgctxt "frmtypepage|followtextflow"
msgid "Keep inside text boundaries"
msgstr "Hou binne teks grense"
#. 55hUf
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:731
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:721
msgctxt "frmtypepage|extended_tip|followtextflow"
msgid "Keeps the selected object within the layout boundaries of the text that the object is anchored to. To place the selected object anywhere in your document, do not select this option."
msgstr "Hou die geselekteerde objek binne die uitleggrense van die teks waaraan die objek geanker is. Om die geselekteerde objek op enige plek in die dokument te plaas, moet hierdie opsie nie gekies word nie."
#. cAiUp
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:747
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:737
msgctxt "frmtypepage|label11"
msgid "Position"
msgstr "Posisie"
#. DHEeZ
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:761
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:751
msgctxt "frmtypepage|extended_tip|FrameTypePage"
msgid "Specifies the size and the position of the selected object or frame on a page."
msgstr "Bepaal die grootte en posisie van die geselekteerde objek of raam op 'n bladsy."
@@ -20060,20 +20072,26 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr "Open die \"Sjabloon Selekteerder\"-dialoog."
-#. PVPDB
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+#. qieQK
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
msgctxt "mmselectpage|extended_tip|datasourcewarning"
-msgid "Data source of the current document is not registered."
-msgstr "Databron van die huidige dokument is nie geregistreer nie."
+msgid "Data source of the current document is not registered. Please exchange database."
+msgstr "Die huidige dokument se databron is nie geregistreer. Verwissel databasis asseblief."
+
+#. QcsgV
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:202
+msgctxt "mmselectpage|extended_tip|exchangedatabase"
+msgid "Exchange Database..."
+msgstr "Uitruil Databasis..."
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Kies begindokument vir die massapos"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:235
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr "Spesifiseer die dokument wat gebruik moet word as basis vir die epos saamvoegdokument."
@@ -20631,391 +20649,391 @@ msgid "New User Index"
msgstr "Nuwe gebruikersindeks"
#. pyNZP
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3145
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3173
msgctxt "WriterNotebookbar|FileMenuButton"
msgid "_File"
msgstr "_Lêer"
#. uFrkV
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3164
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3192
msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Help"
#. QC5EA
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3219
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3247
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr "~Lêer"
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4526
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4554
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Tuis"
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4642
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Tuis"
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5794
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5822
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Voeg _in"
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5902
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5930
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Voeg ~in"
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6996
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7024
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "Uit~leg"
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7082
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7110
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "Uit~leg"
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7813
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7841
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Verwysing_s"
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7898
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7926
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Verwysing~s"
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8835
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8863
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "He_rsien"
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8921
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8949
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "He~rsien"
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9791
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9819
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Aansig"
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9877
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9905
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Vertoon Merker"
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11085
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabel"
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11142
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11170
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabel"
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12317
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12435
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "_Beeld"
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12416
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12534
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "~Beeld"
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13780
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13898
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "T_eken"
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13890
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14008
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "T~eken"
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14785
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14903
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objek"
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14871
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14989
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objek"
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15677
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15795
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15784
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15902
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16229
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16347
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Druk"
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16312
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16430
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Druk"
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17265
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Vo_rm"
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17232
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17350
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Vo~rm"
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17289
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17407
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "Uitbreiding"
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17481
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Uitbreiding"
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18343
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18461
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Nu_tsbalk"
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18428
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18546
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "Nu~tsgoed"
#. guA3a
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3112
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3140
msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr "Lêer"
#. PU9ct
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3161
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3189
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr "Lêer"
#. McDEQ
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4705
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4733
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr "Begin"
#. MSVBh
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4757
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4785
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr "Begin"
#. zveKA
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5851
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5879
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr "Voeg _in"
#. CDXv3
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5906
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5934
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr "Invoeg"
#. a5p4d
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6704
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6732
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr "Uitleg"
#. TbQMa
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6756
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6784
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr "Uitleg"
#. R5zY7
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7521
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7549
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Verwysing_s"
#. iEmZn
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7572
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7600
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr "Verwysing"
#. jYD7j
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8412
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8440
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr "He_rsien"
#. Lbj5B
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8464
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8492
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr "He~rsien"
#. 35kA2
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9146
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9174
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr "_Aansig"
#. ZGh8C
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9198
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9226
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr "~Vertoon Merker"
#. W5JNf
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10546
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10574
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr "T_abel"
#. UBApt
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10598
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10626
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr "Tabel"
#. fDEwj
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11979
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12007
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Im_age"
msgstr "Beeld"
#. ekWoX
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12032
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12060
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr "Beeld"
#. 8eQN8
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13460
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13488
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "T_eken"
#. FBf68
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13515
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13543
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr "Teken"
#. DoVwy
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14581
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14609
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Objek"
#. JXKiY
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14637
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14665
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr "Objek"
#. q8wnS
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15402
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15430
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "_Media"
#. 7HDt3
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15458
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15486
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr "Media"
#. vSDok
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16135
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Druk"
#. goiqQ
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16190
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr "Druk"
#. EBGs5
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:17619
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:17647
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr "Vorm"
#. EKA8X
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:17674
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:17702
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr "Vorm"
#. 8SvE5
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:17754
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:17782
msgctxt "notebookbar_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr "Uitbreiding"
#. WH5NR
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:17812
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:17840
msgctxt "notebookbar_compact|ExtensionLabel"
msgid "E~xtension"
msgstr "Uitbreiding"
#. 8fhwb
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:18845
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:18873
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "Nu_tsbalk"
#. kpc43
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:18897
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:18925
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr "Nu~tsgoed"
@@ -24505,7 +24523,7 @@ msgstr "Makro"
#: sw/uiconfig/swriter/ui/picturepage.ui:35
msgctxt "picturepage|browse"
msgid "Browse..."
-msgstr "Blaai..."
+msgstr "Rondkyk..."
#. wtHPx
#: sw/uiconfig/swriter/ui/picturepage.ui:41
@@ -25805,7 +25823,7 @@ msgstr "_Afdeling"
#: sw/uiconfig/swriter/ui/sectionpage.ui:244
msgctxt "sectionpage|selectfile"
msgid "Browse..."
-msgstr "Blaai..."
+msgstr "Rondkyk..."
#. XjJAi
#: sw/uiconfig/swriter/ui/sectionpage.ui:252
diff --git a/source/af/vcl/messages.po b/source/af/vcl/messages.po
index 8962d2e286f..33aee3b28de 100644
--- a/source/af/vcl/messages.po
+++ b/source/af/vcl/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-04-06 14:47+0200\n"
+"POT-Creation-Date: 2021-04-27 17:04+0200\n"
"PO-Revision-Date: 2021-04-07 14:15+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/af/>\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: Weblate 4.4.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1547709865.000000\n"
#. k5jTM
@@ -2065,373 +2065,373 @@ msgid "Prints the entire document."
msgstr "Druk die hele dokument."
#. pYtbq
-#: vcl/uiconfig/ui/printdialog.ui:532
+#: vcl/uiconfig/ui/printdialog.ui:531
msgctxt "printdialog|rbPageRange"
msgid "_Pages:"
msgstr "_Bladsye:"
#. azXfE
-#: vcl/uiconfig/ui/printdialog.ui:544
+#: vcl/uiconfig/ui/printdialog.ui:543
msgctxt "printdialog|extended_tip|rbRangePages"
msgid "Prints only the pages or slides that you specify in the Pages box."
msgstr "Druk slegs die bladsye of transparante wat u in die bladsye-vakkie spesifiseer."
#. 786QC
-#: vcl/uiconfig/ui/printdialog.ui:559
+#: vcl/uiconfig/ui/printdialog.ui:558
msgctxt "printdialog|pagerange"
msgid "e.g.: 1, 3-5, 7, 9"
msgstr "bv.: 1, 3-5, 7, 9"
#. FTtLK
-#: vcl/uiconfig/ui/printdialog.ui:563
+#: vcl/uiconfig/ui/printdialog.ui:562
msgctxt "printdialog|extended_tip|pagerange"
msgid "To print a range of pages, use a format like 3-6. To print single pages, use a format like 7;9;11. You can print a combination of page ranges and single pages, by using a format like 3-6;8;10;12."
msgstr "Om byvoorbeeld 'n reeks bladsye te druk, voer 3-6 in. Gebruik byvoorbeeld 7; 9; 11 om individuele bladsye te druk. U kan 'n kombinasie van bladsyreekse en enkele bladsye druk deur byvoorbeeld 3-6; 8; 10; 12 in te voer."
#. Z5kiB
-#: vcl/uiconfig/ui/printdialog.ui:574
+#: vcl/uiconfig/ui/printdialog.ui:573
msgctxt "printdialog|rbRangeSelection"
msgid "_Selection"
msgstr "_Seleksie"
#. UKYwM
-#: vcl/uiconfig/ui/printdialog.ui:594
+#: vcl/uiconfig/ui/printdialog.ui:592
msgctxt "printdialog|includeevenodd"
msgid "Include:"
msgstr "Sluit In:"
#. XmeFL
-#: vcl/uiconfig/ui/printdialog.ui:611
+#: vcl/uiconfig/ui/printdialog.ui:609
msgctxt "printdialog|liststore3"
msgid "Odd and Even Pages"
msgstr "Onewe en ewe Bladsye"
#. 49y67
-#: vcl/uiconfig/ui/printdialog.ui:612
+#: vcl/uiconfig/ui/printdialog.ui:610
msgctxt "printdialog|liststore3"
msgid "Odd Pages"
msgstr "Onewe Bladsye"
#. 6CkPE
-#: vcl/uiconfig/ui/printdialog.ui:613
+#: vcl/uiconfig/ui/printdialog.ui:611
msgctxt "printdialog|liststore3"
msgid "Even Pages"
msgstr "Ewe Bladsye"
#. wn2kB
-#: vcl/uiconfig/ui/printdialog.ui:643
+#: vcl/uiconfig/ui/printdialog.ui:641
msgctxt "printdialog|fromwhich"
msgid "_From which print:"
msgstr "_Druk vanaf:"
#. Cuc2u
-#: vcl/uiconfig/ui/printdialog.ui:668
+#: vcl/uiconfig/ui/printdialog.ui:666
msgctxt "printdialog|labelpapersides"
msgid "Paper _sides:"
msgstr "_Bladsy kante:"
#. SYxRJ
-#: vcl/uiconfig/ui/printdialog.ui:684
+#: vcl/uiconfig/ui/printdialog.ui:682
msgctxt "printdialog|liststore4"
msgid "Print on one side (simplex)"
msgstr "Druk op een kant (simpleks)"
#. hCZPg
-#: vcl/uiconfig/ui/printdialog.ui:685
+#: vcl/uiconfig/ui/printdialog.ui:683
msgctxt "printdialog|liststore4"
msgid "Print on both sides (duplex long edge)"
msgstr "Druk op beide kante (Dupleks, beide Kante)"
#. iqr9C
-#: vcl/uiconfig/ui/printdialog.ui:686
+#: vcl/uiconfig/ui/printdialog.ui:684
msgctxt "printdialog|liststore4"
msgid "Print on both sides (duplex short edge)"
msgstr "Druk op beide kante (dupleks kort sye)"
#. CKpgL
-#: vcl/uiconfig/ui/printdialog.ui:690
+#: vcl/uiconfig/ui/printdialog.ui:688
msgctxt "printdialog|extended_tip|sidesbox"
msgid "If the printer is capable of duplex printing it's possible to choose between using only one side of the paper or both."
msgstr "Sou die drukker in staat wees om aan beide kante te druk, is dit moontlik om te kies tussen een- of dubbel-kant drukwerk."
#. AVv6D
-#: vcl/uiconfig/ui/printdialog.ui:704
+#: vcl/uiconfig/ui/printdialog.ui:702
msgctxt "printdialog|labelcopies"
msgid "_Number of copies:"
msgstr "_Aantal Kopieë:"
#. NwD7S
-#: vcl/uiconfig/ui/printdialog.ui:727
+#: vcl/uiconfig/ui/printdialog.ui:725
msgctxt "printdialog|extended_tip|copycount"
msgid "Enter the number of copies that you want to print."
msgstr "Voer die aantal kopieë in wat gedruk moet word."
#. BT4nY
-#: vcl/uiconfig/ui/printdialog.ui:741
+#: vcl/uiconfig/ui/printdialog.ui:739
msgctxt "printdialog|cbPrintOrder"
msgid "Order:"
msgstr "Ry volgorde:"
#. vwjVt
-#: vcl/uiconfig/ui/printdialog.ui:754
+#: vcl/uiconfig/ui/printdialog.ui:752
msgctxt "printdialog|reverseorder"
msgid "Print in _reverse order"
msgstr "Druk in omgekeerde orde"
#. svd2Q
-#: vcl/uiconfig/ui/printdialog.ui:763
+#: vcl/uiconfig/ui/printdialog.ui:761
msgctxt "printdialog|extended_tip|reverseorder"
msgid "Check to print pages in reverse order."
msgstr "Merk die vakkie om bladsye in omgekeerde volgorde te druk."
#. G6QEr
-#: vcl/uiconfig/ui/printdialog.ui:780
+#: vcl/uiconfig/ui/printdialog.ui:778
msgctxt "printdialog|collate"
msgid "_Collate"
msgstr "_Sorteer-orde"
#. kR6bA
-#: vcl/uiconfig/ui/printdialog.ui:788
+#: vcl/uiconfig/ui/printdialog.ui:786
msgctxt "printdialog|extended_tip|collate"
msgid "Preserves the page order of the original document."
msgstr "Behou die bladsy volgorde van die oorspronklike dokument."
#. GZrpG
-#: vcl/uiconfig/ui/printdialog.ui:818
+#: vcl/uiconfig/ui/printdialog.ui:816
msgctxt "printdialog|singlejobs"
msgid "Create separate print jobs for collated output"
msgstr "Skep afsonderlike druk take vir saamgestelde uitvoer"
#. X4Am9
-#: vcl/uiconfig/ui/printdialog.ui:826
+#: vcl/uiconfig/ui/printdialog.ui:824
msgctxt "printdialog|extended_tip|collate"
msgid "Check to not rely on the printer to create collated copies but create a print job for each copy instead."
msgstr "Merk om nie op die drukker staat te maak vir die skepping van saamgestelde kopieë, eerder dat u 'n druktaak vir elke kopie skep."
#. 2MdHu
-#: vcl/uiconfig/ui/printdialog.ui:847
+#: vcl/uiconfig/ui/printdialog.ui:845
msgctxt "printdialog|rangeexpander"
msgid "_More"
msgstr "_Meer"
#. ehfCG
-#: vcl/uiconfig/ui/printdialog.ui:863
+#: vcl/uiconfig/ui/printdialog.ui:861
msgctxt "printdialog|label2"
msgid "Range and Copies"
msgstr "Omvang en kopieë"
#. CBLet
-#: vcl/uiconfig/ui/printdialog.ui:902
+#: vcl/uiconfig/ui/printdialog.ui:900
msgctxt "printdialog|labelorientation"
msgid "Orientation:"
msgstr "Oriëntasie:"
#. U4byk
-#: vcl/uiconfig/ui/printdialog.ui:917
+#: vcl/uiconfig/ui/printdialog.ui:915
msgctxt "printdialog|labelsize"
msgid "Paper size:"
msgstr "Papier grootte:"
#. X9iBj
-#: vcl/uiconfig/ui/printdialog.ui:934
+#: vcl/uiconfig/ui/printdialog.ui:932
msgctxt "printdialog|liststore3"
msgid "Automatic"
msgstr "Outomaties"
#. vaWZE
-#: vcl/uiconfig/ui/printdialog.ui:935
+#: vcl/uiconfig/ui/printdialog.ui:933
msgctxt "printdialog|liststore3"
msgid "Portrait"
msgstr "Portret"
#. Qnpje
-#: vcl/uiconfig/ui/printdialog.ui:936
+#: vcl/uiconfig/ui/printdialog.ui:934
msgctxt "printdialog|liststore3"
msgid "Landscape"
msgstr "Landskap"
#. PkAo9
-#: vcl/uiconfig/ui/printdialog.ui:940
+#: vcl/uiconfig/ui/printdialog.ui:938
msgctxt "printdialog|extended_tip|pageorientationbox"
msgid "Select the orientation of the paper."
msgstr "Kies die papieroriëntasie."
#. DSFv2
-#: vcl/uiconfig/ui/printdialog.ui:956
+#: vcl/uiconfig/ui/printdialog.ui:954
msgctxt "printdialog|extended_tip|papersizebox"
msgid "Set the paper size you would like to use. The preview will show how the document would look on a paper of the given size."
msgstr "Stel die papier grootte wat u verkies. Die voorskou toon hoe die dokument gaan lyk op die gekose papiergrootte."
#. EZdsx
-#: vcl/uiconfig/ui/printdialog.ui:991
+#: vcl/uiconfig/ui/printdialog.ui:989
msgctxt "printdialog|pagespersheetbtn"
msgid "Pages per sheet:"
msgstr "Bladsye per vel:"
#. ok8Lw
-#: vcl/uiconfig/ui/printdialog.ui:1005
+#: vcl/uiconfig/ui/printdialog.ui:1003
msgctxt "printdialog|extended_tip|pagespersheetbtn"
msgid "Print multiple pages per sheet of paper."
msgstr "Druk meerdere bladsye op een vel papier."
#. DKP5g
-#: vcl/uiconfig/ui/printdialog.ui:1046
+#: vcl/uiconfig/ui/printdialog.ui:1044
msgctxt "printdialog|liststore1"
msgid "Custom"
msgstr "Doelgemaak"
#. duVEo
-#: vcl/uiconfig/ui/printdialog.ui:1053
+#: vcl/uiconfig/ui/printdialog.ui:1051
msgctxt "printdialog|extended_tip|pagespersheetbox"
msgid "Select how many pages to print per sheet of paper."
msgstr "Kies hoeveel bladsye om te druk per vel papier."
#. 65WWt
-#: vcl/uiconfig/ui/printdialog.ui:1066
+#: vcl/uiconfig/ui/printdialog.ui:1064
msgctxt "printdialog|pagespersheettxt"
msgid "Pages:"
msgstr "Bladsye:"
#. X8bjE
-#: vcl/uiconfig/ui/printdialog.ui:1086
+#: vcl/uiconfig/ui/printdialog.ui:1084
msgctxt "printdialog|extended_tip|pagerows"
msgid "Select number of rows."
msgstr "Selekteer die aantal rye."
#. DM5aX
-#: vcl/uiconfig/ui/printdialog.ui:1098
+#: vcl/uiconfig/ui/printdialog.ui:1096
msgctxt "printdialog|by"
msgid "by"
msgstr "by"
#. Z2EDz
-#: vcl/uiconfig/ui/printdialog.ui:1117
+#: vcl/uiconfig/ui/printdialog.ui:1115
msgctxt "printdialog|extended_tip|pagecols"
msgid "Select number of columns."
msgstr "Selekteer die aantal kolomme."
#. szcD7
-#: vcl/uiconfig/ui/printdialog.ui:1129
+#: vcl/uiconfig/ui/printdialog.ui:1127
msgctxt "printdialog|pagemargintxt1"
msgid "Margin:"
msgstr "Kantlyn:"
#. QxE58
-#: vcl/uiconfig/ui/printdialog.ui:1148
+#: vcl/uiconfig/ui/printdialog.ui:1146
msgctxt "printdialog|extended_tip|pagemarginsb"
msgid "Select margin between individual pages on each sheet of paper."
msgstr "Selekteer die marge tussen individuele bladsye op 'n vel papier."
#. iGg2m
-#: vcl/uiconfig/ui/printdialog.ui:1161
+#: vcl/uiconfig/ui/printdialog.ui:1159
msgctxt "printdialog|pagemargintxt2"
msgid "between pages"
msgstr "tussen bladsye"
#. oryuw
-#: vcl/uiconfig/ui/printdialog.ui:1172
+#: vcl/uiconfig/ui/printdialog.ui:1170
msgctxt "printdialog|sheetmargintxt1"
msgid "Distance:"
msgstr "Afstand:"
#. EDFnW
-#: vcl/uiconfig/ui/printdialog.ui:1191
+#: vcl/uiconfig/ui/printdialog.ui:1189
msgctxt "printdialog|extended_tip|sheetmarginsb"
msgid "Select margin between the printed pages and paper edge."
msgstr "Selekteer die marge tussen gedrukte bladsye en papierrand."
#. XhfvB
-#: vcl/uiconfig/ui/printdialog.ui:1204
+#: vcl/uiconfig/ui/printdialog.ui:1202
msgctxt "printdialog|sheetmargintxt2"
msgid "to sheet border"
msgstr "na kant van papier"
#. AGWe3
-#: vcl/uiconfig/ui/printdialog.ui:1217
+#: vcl/uiconfig/ui/printdialog.ui:1215
msgctxt "printdialog|labelorder"
msgid "Order:"
msgstr "Volgorde:"
#. psAku
-#: vcl/uiconfig/ui/printdialog.ui:1234
+#: vcl/uiconfig/ui/printdialog.ui:1232
msgctxt "printdialog|liststore2"
msgid "Left to right, then down"
msgstr "Links na regs, dan af"
#. fnfLt
-#: vcl/uiconfig/ui/printdialog.ui:1235
+#: vcl/uiconfig/ui/printdialog.ui:1233
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then right"
msgstr "Bo na onder, dan regs"
#. y6nZE
-#: vcl/uiconfig/ui/printdialog.ui:1236
+#: vcl/uiconfig/ui/printdialog.ui:1234
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then left"
msgstr "Bo na onder, dan links"
#. PteTg
-#: vcl/uiconfig/ui/printdialog.ui:1237
+#: vcl/uiconfig/ui/printdialog.ui:1235
msgctxt "printdialog|liststore2"
msgid "Right to left, then down"
msgstr "Regs na links, dan af"
#. DvF8r
-#: vcl/uiconfig/ui/printdialog.ui:1241
+#: vcl/uiconfig/ui/printdialog.ui:1239
msgctxt "printdialog|extended_tip|orderbox"
msgid "Select order in which pages are to be printed."
msgstr "Selekter die volgorde waarin bladsye gedruk word."
#. QG59F
-#: vcl/uiconfig/ui/printdialog.ui:1253
+#: vcl/uiconfig/ui/printdialog.ui:1251
msgctxt "printdialog|bordercb"
msgid "Draw a border around each page"
msgstr "Teken ’n raam rondom elke bladsy"
#. 8aAGu
-#: vcl/uiconfig/ui/printdialog.ui:1262
+#: vcl/uiconfig/ui/printdialog.ui:1260
msgctxt "printdialog|extended_tip|bordercb"
msgid "Check to draw a border around each page."
msgstr "Merk die vakkie vir omranding van elke bladsy."
#. Yo4xV
-#: vcl/uiconfig/ui/printdialog.ui:1274
+#: vcl/uiconfig/ui/printdialog.ui:1272
msgctxt "printdialog|brochure"
msgid "Brochure"
msgstr "Brosjure"
#. JMA7A
-#: vcl/uiconfig/ui/printdialog.ui:1302
+#: vcl/uiconfig/ui/printdialog.ui:1300
msgctxt "printdialog|collationpreview"
msgid "Collation preview"
msgstr "Sorteer orde voorskou"
#. dePkB
-#: vcl/uiconfig/ui/printdialog.ui:1307
+#: vcl/uiconfig/ui/printdialog.ui:1305
msgctxt "printdialog|extended_tip|orderpreview"
msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look."
msgstr "Wysig die bladsyrangskikking soos dit op elke blad gedruk moet word. Die voorskou toon die finale bladuitleg."
#. fCjdq
-#: vcl/uiconfig/ui/printdialog.ui:1329
+#: vcl/uiconfig/ui/printdialog.ui:1327
msgctxt "printdialog|layoutexpander"
msgid "M_ore"
msgstr "M_eer"
#. rCBA5
-#: vcl/uiconfig/ui/printdialog.ui:1345
+#: vcl/uiconfig/ui/printdialog.ui:1343
msgctxt "printdialog|label3"
msgid "Page Layout"
msgstr "Bladuitleg"
#. A2iC5
-#: vcl/uiconfig/ui/printdialog.ui:1368
+#: vcl/uiconfig/ui/printdialog.ui:1366
msgctxt "printdialog|generallabel"
msgid "General"
msgstr "Algemeen"
#. CzGM4
-#: vcl/uiconfig/ui/printdialog.ui:1420
+#: vcl/uiconfig/ui/printdialog.ui:1418
msgctxt "printdialog|extended_tip|PrintDialog"
msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document."
msgstr "Druk die huidige: hele dokument of seleksie- of gespesifiseerde-bladsy(/)e. U kan ook die drukopsies vir die huidige dokument spesifiseer."
diff --git a/source/af/writerperfect/messages.po b/source/af/writerperfect/messages.po
index b4d0812bfc9..b462885982f 100644
--- a/source/af/writerperfect/messages.po
+++ b/source/af/writerperfect/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: 2021-03-23 11:46+0100\n"
-"PO-Revision-Date: 2021-01-26 17:37+0000\n"
+"PO-Revision-Date: 2021-04-28 11:49+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/writerperfectmessages/af/>\n"
"Language: af\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: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1548063239.000000\n"
#. DXXuk
@@ -241,7 +241,7 @@ msgstr "Titelbeeld:"
#: writerperfect/uiconfig/ui/exportepub.ui:442
msgctxt "exportepub|coverbutton"
msgid "Browse..."
-msgstr "Blaai..."
+msgstr "Rondkyk..."
#. 3tfAE
#: writerperfect/uiconfig/ui/exportepub.ui:456
@@ -253,7 +253,7 @@ msgstr "Media Vouer:"
#: writerperfect/uiconfig/ui/exportepub.ui:481
msgctxt "exportepub|mediabutton"
msgid "Browse..."
-msgstr "Blaai..."
+msgstr "Rondkyk..."
#. yFjyH
#: writerperfect/uiconfig/ui/exportepub.ui:497
diff --git a/source/am/chart2/messages.po b/source/am/chart2/messages.po
index 2a277a3ae9e..e796765a158 100644
--- a/source/am/chart2/messages.po
+++ b/source/am/chart2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:01+0200\n"
+"POT-Creation-Date: 2021-04-27 17:02+0200\n"
"PO-Revision-Date: 2021-03-21 05:37+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/chart2messages/am/>\n"
@@ -1388,217 +1388,217 @@ msgid "_Series name"
msgstr "የ _ተከታታይ ስም"
#. 8bEui
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:268
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:267
msgctxt "dlg_DataLabel|extended_tip|CB_DATA_SERIES_NAME"
msgid "Shows the data series name in the label."
msgstr "የ ተከታታይ ዳታ ስም በ ምልክት ውስጥ ማሳያ"
#. mFeMA
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:289
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:288
msgctxt "dlg_DataLabel|label1"
msgid "Text Attributes"
msgstr "የ ጽሁፍ ባህሪዎች"
#. FDBQW
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:323
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:322
msgctxt "dlg_DataLabel|FT_LABEL_PLACEMENT"
msgid "Place_ment"
msgstr "አቀማ_መጥ"
#. RBvRC
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:339
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:338
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Best fit"
msgstr "በ ጥሩ ልክ"
#. CFGTS
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:340
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:339
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Center"
msgstr "መሀከል"
#. kxNDG
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:341
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:340
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Above"
msgstr "ከ ላይ"
#. dnhiD
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:342
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:341
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Top left"
msgstr "ከ ላይ በ ግራ በኩል"
#. TGuEk
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:343
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:342
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Left"
msgstr "በ ግራ"
#. eUxTR
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:344
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:343
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Bottom left"
msgstr "ከ ታች በ ግራ በኩል"
#. CGQj7
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:345
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:344
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Below"
msgstr "ከ ታች"
#. UJ7uQ
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:346
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:345
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Bottom right"
msgstr "ከ ታች በ ቀኝ በኩል"
#. nEFuG
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:347
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:346
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Right"
msgstr "ከ ታች በ ቀኝ በኩል"
#. NQCGE
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:348
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:347
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Top right"
msgstr "ከ ላይ በቀኝ በኩል"
#. UagUt
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:349
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:348
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Inside"
msgstr "ውስጥ"
#. y25DL
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:350
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:349
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Outside"
msgstr "ውጪ"
#. 3HjyB
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:351
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:350
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Near origin"
msgstr "ዋናው አጠገብ"
#. TMEug
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:355
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:354
msgctxt "dlg_DataLabel|extended_tip|LB_LABEL_PLACEMENT"
msgid "Selects the placement of data labels relative to the objects."
msgstr "ከ እቃው አንጻር የ ዳታ ምልክቶች አቀማመጥ ቦታ መምረጫ"
#. NvbuM
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:368
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:367
msgctxt "dlg_DataLabel|FT_TEXT_SEPARATOR"
msgid "_Separator"
msgstr "_መለያያ"
#. m8qsr
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:384
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:383
msgctxt "dlg_DataLabel|liststoreSEPARATOR"
msgid "Space"
msgstr "ክፍተት"
#. d6M3S
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:385
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:384
msgctxt "dlg_DataLabel|liststoreSEPARATOR"
msgid "Comma"
msgstr "ኮማ"
#. HUBkD
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:386
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:385
msgctxt "dlg_DataLabel|liststoreSEPARATOR"
msgid "Semicolon"
msgstr "ሴሚኮለን"
#. 3CaCX
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:387
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:386
msgctxt "dlg_DataLabel|liststoreSEPARATOR"
msgid "New line"
msgstr "አዲስ መስመር"
#. CAtwB
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:388
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:387
msgctxt "dlg_DataLabel|liststoreSEPARATOR"
msgid "Period"
msgstr "ጊዜ"
#. 8Z3DJ
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:392
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:391
msgctxt "dlg_DataLabel|extended_tip|LB_TEXT_SEPARATOR"
msgid "Selects the separator between multiple text strings for the same object."
msgstr "ለ ተመረጠው እቃ በ በርካታ የ ጽሁፍ ሀረጎች መካከል መለያያ መምረጫ"
#. oEFpN
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:407
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:406
msgctxt "dlg_DataLabel|label1"
msgid "Attribute Options"
msgstr "የ መለያ ምርጫዎች"
#. gE7CA
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:459
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:458
msgctxt "dlg_DataLabel|extended_tip|CT_DIAL"
msgid "Click in the dial to set the text orientation for the data labels."
msgstr "ይጫኑ በ መቆጣጠሪያው ላይ የ ጽሁፍ አቅጣጫ ለ ማሰናዳት"
#. MjCoG
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:480
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:479
msgctxt "dlg_DataLabel|extended_tip|NF_LABEL_DEGREES"
msgid "Enter the counterclockwise rotation angle for the data labels."
msgstr "ለ ዳታ ምልክቶች ከ ቀኝ ወደ ግራ ማዞሪያ አንግል ያስገቡ"
#. Jhjwb
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:494
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:493
msgctxt "dlg_DataLabel|FT_LABEL_DEGREES"
msgid "_Degrees"
msgstr "_ዲግሪዎች"
#. vtVy2
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:519
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:518
msgctxt "dlg_DataLabel|FT_LABEL_TEXTDIR"
msgid "Te_xt direction"
msgstr "የ ጽ_ሁፍ አቅጣጫ"
#. tjcHp
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:536
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:535
msgctxt "dlg_DataLabel|extended_tip|LB_LABEL_TEXTDIR"
msgid "Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled."
msgstr "ለ አንቀጽ የ ጽሁፍ አቅጣጫ ይወስኑ ለ ውስብስብ ጽሁፍ እቅድ (CTL). ይህ ገጽታ የሚኖረው የ ውስብስብ ጽሁፍ እቅድ ድጋፍን ሲያስችሉ ነው"
#. xpAEz
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:559
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:558
msgctxt "dlg_DataLabel|label2"
msgid "Rotate Text"
msgstr "ጽሁፍ ማዞሪያ"
#. NpD8D
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:588
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:587
msgctxt "dlg_DataLabel|CB_CUSTOM_LEADER_LINES"
msgid "_Connect displaced data labels to data points"
msgstr "_አገናኝ የተለያዩ የ ዳታ ምልክቶች ወደ ዳታ ነጥብ:"
#. MJdmK
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:596
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:595
msgctxt "dlg_DataLabel|extended_tip|CB_CUSTOM_LEADER_LINES"
msgid "Draws a line connecting the data labels to the data points"
msgstr "የ ዳታ ምልክቶች ወደ ዳታ ነጥብ አገናኝ መስመር መሳያ:"
#. UKVF9
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:612
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:611
msgctxt "dlg_DataLabel|label3"
msgid "Leader Lines"
msgstr "ቀዳሚ መስመሮች"
#. 2cE35
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:642
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:641
msgctxt "dlg_DataLabel|extended_tip|dlg_DataLabel"
msgid "Opens the Data Labels dialog, which enables you to set the data labels."
msgstr "መክፈቻ የ ዳታ ምልክቶች ንግግር፡ የ ዳታ ምልክቶች ማሰናዳት ያስችሎታል"
#. bt7D7
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:661
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:660
msgctxt "dlg_DataLabel|extended_tip|dlg_DataLabels"
msgid "Opens the Data Labels dialog, which enables you to set the data labels."
msgstr "መክፈቻ የ ዳታ ምልክቶች ንግግር፡ የ ዳታ ምልክቶች ማሰናዳት ያስችሎታል"
@@ -3704,211 +3704,211 @@ msgid "_Series name"
msgstr "_ተከታታይ ስም"
#. 3tWYv
-#: chart2/uiconfig/ui/tp_DataLabel.ui:200
+#: chart2/uiconfig/ui/tp_DataLabel.ui:199
msgctxt "tp_DataLabel|extended_tip|CB_DATA_SERIES_NAME"
msgid "Shows the data series name in the label."
msgstr "የ ዳታ ተከታታይ ስም በ ምልክት ላይ ማሳያ"
#. 3BZrx
-#: chart2/uiconfig/ui/tp_DataLabel.ui:221
+#: chart2/uiconfig/ui/tp_DataLabel.ui:220
msgctxt "tp_DataLabel|label1"
msgid "Text Attributes"
msgstr "የ ጽሁፍ ባህሪዎች"
#. 2MNGz
-#: chart2/uiconfig/ui/tp_DataLabel.ui:255
+#: chart2/uiconfig/ui/tp_DataLabel.ui:254
msgctxt "tp_DataLabel|FT_LABEL_PLACEMENT"
msgid "Place_ment"
msgstr "አቀማ_መጥ"
#. L2MYb
-#: chart2/uiconfig/ui/tp_DataLabel.ui:271
+#: chart2/uiconfig/ui/tp_DataLabel.ui:270
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Best fit"
msgstr "በ ጥሩ ልክ"
#. ba7eW
-#: chart2/uiconfig/ui/tp_DataLabel.ui:272
+#: chart2/uiconfig/ui/tp_DataLabel.ui:271
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Center"
msgstr "መሀከል"
#. nW5vs
-#: chart2/uiconfig/ui/tp_DataLabel.ui:273
+#: chart2/uiconfig/ui/tp_DataLabel.ui:272
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Above"
msgstr "ከ ላይ"
#. gW9Aa
-#: chart2/uiconfig/ui/tp_DataLabel.ui:274
+#: chart2/uiconfig/ui/tp_DataLabel.ui:273
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Top left"
msgstr "ከ ላይ በ ግራ በኩል"
#. UQBcJ
-#: chart2/uiconfig/ui/tp_DataLabel.ui:275
+#: chart2/uiconfig/ui/tp_DataLabel.ui:274
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Left"
msgstr "በ ግራ"
#. CVw6x
-#: chart2/uiconfig/ui/tp_DataLabel.ui:276
+#: chart2/uiconfig/ui/tp_DataLabel.ui:275
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Bottom left"
msgstr "ከ ታች በ ግራ በኩል"
#. EF7Qb
-#: chart2/uiconfig/ui/tp_DataLabel.ui:277
+#: chart2/uiconfig/ui/tp_DataLabel.ui:276
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Below"
msgstr "ከ ታች"
#. bdAYf
-#: chart2/uiconfig/ui/tp_DataLabel.ui:278
+#: chart2/uiconfig/ui/tp_DataLabel.ui:277
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Bottom right"
msgstr "ከ ታች በ ቀኝ በኩል"
#. kHGEs
-#: chart2/uiconfig/ui/tp_DataLabel.ui:279
+#: chart2/uiconfig/ui/tp_DataLabel.ui:278
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Right"
msgstr "በ ቀኝ"
#. GFkmP
-#: chart2/uiconfig/ui/tp_DataLabel.ui:280
+#: chart2/uiconfig/ui/tp_DataLabel.ui:279
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Top right"
msgstr "ከ ላይ በ ቀኝ በኩል"
#. KFZhx
-#: chart2/uiconfig/ui/tp_DataLabel.ui:281
+#: chart2/uiconfig/ui/tp_DataLabel.ui:280
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Inside"
msgstr "ውስጥ"
#. BJm6w
-#: chart2/uiconfig/ui/tp_DataLabel.ui:282
+#: chart2/uiconfig/ui/tp_DataLabel.ui:281
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Outside"
msgstr "ውጪ"
#. XGkMi
-#: chart2/uiconfig/ui/tp_DataLabel.ui:283
+#: chart2/uiconfig/ui/tp_DataLabel.ui:282
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Near origin"
msgstr "ዋናው አጠገብ"
#. vq2Bf
-#: chart2/uiconfig/ui/tp_DataLabel.ui:287
+#: chart2/uiconfig/ui/tp_DataLabel.ui:286
msgctxt "tp_DataLabel|extended_tip|LB_LABEL_PLACEMENT"
msgid "Selects the placement of data labels relative to the objects."
msgstr "ከ እቃው አንጻር የ ዳታ ምልክቶች አቀማመጥ ቦታ መምረጫ"
#. GqA8C
-#: chart2/uiconfig/ui/tp_DataLabel.ui:300
+#: chart2/uiconfig/ui/tp_DataLabel.ui:299
msgctxt "tp_DataLabel|FT_TEXT_SEPARATOR"
msgid "_Separator"
msgstr "_መለያያ"
#. oPhGH
-#: chart2/uiconfig/ui/tp_DataLabel.ui:316
+#: chart2/uiconfig/ui/tp_DataLabel.ui:315
msgctxt "tp_DataLabel|liststoreSEPARATOR"
msgid "Space"
msgstr "ክፍተት"
#. fR4fG
-#: chart2/uiconfig/ui/tp_DataLabel.ui:317
+#: chart2/uiconfig/ui/tp_DataLabel.ui:316
msgctxt "tp_DataLabel|liststoreSEPARATOR"
msgid "Comma"
msgstr "ኮማ"
#. 5baF4
-#: chart2/uiconfig/ui/tp_DataLabel.ui:318
+#: chart2/uiconfig/ui/tp_DataLabel.ui:317
msgctxt "tp_DataLabel|liststoreSEPARATOR"
msgid "Semicolon"
msgstr "ሴሚኮለን"
#. 8MGkQ
-#: chart2/uiconfig/ui/tp_DataLabel.ui:319
+#: chart2/uiconfig/ui/tp_DataLabel.ui:318
msgctxt "tp_DataLabel|liststoreSEPARATOR"
msgid "New line"
msgstr "አዲስ መስመር"
#. bpmiF
-#: chart2/uiconfig/ui/tp_DataLabel.ui:320
+#: chart2/uiconfig/ui/tp_DataLabel.ui:319
msgctxt "tp_DataLabel|liststoreSEPARATOR"
msgid "Period"
msgstr "ነጥብ"
#. jjR8u
-#: chart2/uiconfig/ui/tp_DataLabel.ui:324
+#: chart2/uiconfig/ui/tp_DataLabel.ui:323
msgctxt "tp_DataLabel|extended_tip|LB_TEXT_SEPARATOR"
msgid "Selects the separator between multiple text strings for the same object."
msgstr "ለ ተመረጠው እቃ በ በርካታ የ ጽሁፍ ሀረጎች መካከል መለያያ መምረጫ"
#. mFEKm
-#: chart2/uiconfig/ui/tp_DataLabel.ui:339
+#: chart2/uiconfig/ui/tp_DataLabel.ui:338
msgctxt "tp_DataLabel|label1"
msgid "Attribute Options"
msgstr "የ መለያ ምርጫዎች"
#. avLCL
-#: chart2/uiconfig/ui/tp_DataLabel.ui:391
+#: chart2/uiconfig/ui/tp_DataLabel.ui:390
msgctxt "tp_DataLabel|extended_tip|CT_DIAL"
msgid "Click in the dial to set the text orientation for the data labels."
msgstr "ይጫኑ በ መቆጣጠሪያው ላይ የ ጽሁፍ አቅጣጫ ለ ማሰናዳት"
#. eKwUH
-#: chart2/uiconfig/ui/tp_DataLabel.ui:412
+#: chart2/uiconfig/ui/tp_DataLabel.ui:411
msgctxt "tp_DataLabel|extended_tip|NF_LABEL_DEGREES"
msgid "Enter the counterclockwise rotation angle for the data labels."
msgstr "ለ ዳታ ምልክቶች ከ ቀኝ ወደ ግራ ማዞሪያ አንግል ያስገቡ"
#. VArif
-#: chart2/uiconfig/ui/tp_DataLabel.ui:426
+#: chart2/uiconfig/ui/tp_DataLabel.ui:425
msgctxt "tp_DataLabel|FT_LABEL_DEGREES"
msgid "_Degrees"
msgstr "_ዲግሪዎች"
#. zdP7E
-#: chart2/uiconfig/ui/tp_DataLabel.ui:451
+#: chart2/uiconfig/ui/tp_DataLabel.ui:450
msgctxt "tp_DataLabel|FT_LABEL_TEXTDIR"
msgid "Te_xt direction"
msgstr "የጽ_ሁፍ አቅጣጫ"
#. MYXZo
-#: chart2/uiconfig/ui/tp_DataLabel.ui:468
+#: chart2/uiconfig/ui/tp_DataLabel.ui:467
msgctxt "tp_DataLabel|extended_tip|LB_LABEL_TEXTDIR"
msgid "Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled."
msgstr "ለ አንቀጽ የ ጽሁፍ አቅጣጫ ይወስኑ ለ ውስብስብ ጽሁፍ እቅድ (CTL). ይህ ገጽታ የሚኖረው የ ውስብስብ ጽሁፍ እቅድ ድጋፍን ሲያስችሉ ነው"
#. PKnKk
-#: chart2/uiconfig/ui/tp_DataLabel.ui:491
+#: chart2/uiconfig/ui/tp_DataLabel.ui:490
msgctxt "tp_DataLabel|label2"
msgid "Rotate Text"
msgstr "ጽሁፍ ማዞሪያ"
#. wBzcx
-#: chart2/uiconfig/ui/tp_DataLabel.ui:520
+#: chart2/uiconfig/ui/tp_DataLabel.ui:519
msgctxt "tp_DataLabel|CB_CUSTOM_LEADER_LINES"
msgid "_Connect displaced data labels to data points"
msgstr ""
#. BXobT
-#: chart2/uiconfig/ui/tp_DataLabel.ui:528
+#: chart2/uiconfig/ui/tp_DataLabel.ui:527
msgctxt "tp_DataLabel|extended_tip|CB_CUSTOM_LEADER_LINES"
msgid "Draws a line connecting the data labels to the data points"
msgstr ""
#. MBFBB
-#: chart2/uiconfig/ui/tp_DataLabel.ui:544
+#: chart2/uiconfig/ui/tp_DataLabel.ui:543
msgctxt "tp_DataLabel|label3"
msgid "Leader Lines"
msgstr "ቀዳሚ መስመር"
#. iDheE
-#: chart2/uiconfig/ui/tp_DataLabel.ui:574
+#: chart2/uiconfig/ui/tp_DataLabel.ui:573
msgctxt "tp_DataLabel|extended_tip|tp_DataLabel"
msgid "Opens the Data Labels dialog, which enables you to set the data labels."
msgstr "መክፈቻ የ ዳታ ምልክቶች ንግግር፡ የ ዳታ ምልክቶች ማሰናዳት ያስችሎታል"
diff --git a/source/am/cui/messages.po b/source/am/cui/messages.po
index ea1bc46d377..f0e8b0c7f37 100644
--- a/source/am/cui/messages.po
+++ b/source/am/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: 2021-04-12 12:05+0200\n"
+"POT-Creation-Date: 2021-04-27 17:02+0200\n"
"PO-Revision-Date: 2021-03-14 21:36+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/am/>\n"
@@ -402,870 +402,900 @@ msgctxt "RID_SVXSTR_RENAME_TOOLBAR"
msgid "Rename Toolbar"
msgstr "እቃ መደርደሪያ እንደገና መሰየሚያ"
-#. GN45E
+#. GsaZE
+#: cui/inc/strings.hrc:70
+msgctxt "RID_SVXSTR_ALL_COMMANDS"
+msgid "All Commands"
+msgstr ""
+
+#. A7cUy
#: cui/inc/strings.hrc:71
+msgctxt "RID_SVXSTR_TABBED"
+msgid "Tabbed"
+msgstr ""
+
+#. xqrfE
+#: cui/inc/strings.hrc:72
+msgctxt "RID_SVXSTR_TABBED_COMPACT"
+msgid "Tabbed Compact"
+msgstr ""
+
+#. fLLH2
+#: cui/inc/strings.hrc:73
+msgctxt "RID_SVXSTR_GROUPEDBAR"
+msgid "Groupedbar"
+msgstr ""
+
+#. AnFxX
+#: cui/inc/strings.hrc:74
+msgctxt "RID_SVXSTR_GROUPEDBAR_COMPACT"
+msgid "Groupedbar Compact"
+msgstr ""
+
+#. GN45E
+#: cui/inc/strings.hrc:76
msgctxt "RID_SVXSTR_HYPDLG_CLOSEBUT"
msgid "Close"
msgstr "መዝጊያ"
#. dkH9d
-#: cui/inc/strings.hrc:72
+#: cui/inc/strings.hrc:77
msgctxt "RID_SVXSTR_HYPDLG_MACROACT1"
msgid "Mouse over object"
msgstr "አይጥ በእቃዎች ላይ"
#. 4QYHe
-#: cui/inc/strings.hrc:73
+#: cui/inc/strings.hrc:78
msgctxt "RID_SVXSTR_HYPDLG_MACROACT2"
msgid "Trigger hyperlink"
msgstr "hyperlink ማስነሻ"
#. WMQPj
-#: cui/inc/strings.hrc:74
+#: cui/inc/strings.hrc:79
msgctxt "RID_SVXSTR_HYPDLG_MACROACT3"
msgid "Mouse leaves object"
msgstr "አይጥ እቃዎችን ሲተው"
#. E8XCn
-#: cui/inc/strings.hrc:75
+#: cui/inc/strings.hrc:80
msgctxt "RID_SVXSTR_HYPDLG_NOVALIDFILENAME"
msgid "Please type in a valid file name."
msgstr "እባክዎን ዋጋ ያለው ስም ይጻፉ"
#. ES4Pj
-#: cui/inc/strings.hrc:76
+#: cui/inc/strings.hrc:81
msgctxt "RID_SVXSTR_HYPERDLG_FORM_BUTTON"
msgid "Button"
msgstr "ቁልፍ"
#. MPHHF
-#: cui/inc/strings.hrc:77
+#: cui/inc/strings.hrc:82
msgctxt "RID_SVXSTR_HYPERDLG_FROM_TEXT"
msgid "Text"
msgstr "ጽሁፍ"
#. 9nkb2
-#: cui/inc/strings.hrc:78
+#: cui/inc/strings.hrc:83
msgctxt "RID_SVXSTR_HYPERDLG_QUERYOVERWRITE"
msgid "The file already exists. Overwrite?"
msgstr "ፋይሉ ቀደም ሲል ነበር ደርቤ ልጻፍበት?"
#. smWax
-#: cui/inc/strings.hrc:80
+#: cui/inc/strings.hrc:85
msgctxt "RID_SVXSTR_SELECT_FILE_IFRAME"
msgid "Select File for Floating Frame"
msgstr "ይምረጡ ፋይል ለማንሳፈፊያ ጠርዝ"
#. F74rR
-#: cui/inc/strings.hrc:81
+#: cui/inc/strings.hrc:86
msgctxt "RID_SVXSTR_ALLFUNCTIONS"
msgid "All commands"
msgstr "ሁሉንም ትእዛዞች"
#. EeB6i
-#: cui/inc/strings.hrc:82
+#: cui/inc/strings.hrc:87
msgctxt "RID_SVXSTR_MACROS"
msgid "Macros"
msgstr "ማክሮስ"
#. mkEjQ
-#: cui/inc/strings.hrc:83
+#: cui/inc/strings.hrc:88
msgctxt "RID_SVXSTR_MYMACROS"
msgid "My Macros"
msgstr "የ እኔ ማክሮስ"
#. Cv5m8
-#: cui/inc/strings.hrc:84
+#: cui/inc/strings.hrc:89
msgctxt "RID_SVXSTR_PRODMACROS"
msgid "%PRODUCTNAME Macros"
msgstr "%PRODUCTNAME ማክሮስ"
#. RGCGW
-#: cui/inc/strings.hrc:85
+#: cui/inc/strings.hrc:90
msgctxt "RID_SVXSTR_NOMACRODESC"
msgid "There is no description available for this macro."
msgstr "ለዚህ ማክሮ ምንም መግለጫ አልተገኘም"
#. AFniE
-#: cui/inc/strings.hrc:86
+#: cui/inc/strings.hrc:91
msgctxt "RID_SVXSTR_SELECTOR_RUN"
msgid "Run"
msgstr "ማስኬጃ"
#. whwAN
-#: cui/inc/strings.hrc:87
+#: cui/inc/strings.hrc:92
msgctxt "RID_SVXSTR_ROW"
msgid "Insert Rows"
msgstr "ረድፎች ማስገቢያ"
#. Su38S
#. tdf#119293 Labels depending on row/col
-#: cui/inc/strings.hrc:89
+#: cui/inc/strings.hrc:94
msgctxt "RID_SVXSTR_INSERTROW_BEFORE"
msgid "Above selection"
msgstr "ከ ምርጫው በላይ"
#. oBHui
-#: cui/inc/strings.hrc:90
+#: cui/inc/strings.hrc:95
msgctxt "RID_SVXSTR_INSERTROW_AFTER"
msgid "Below selection"
msgstr "ከ ምርጫው በታች"
#. c8nou
-#: cui/inc/strings.hrc:91
+#: cui/inc/strings.hrc:96
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr "ከ የምወዳቸው ውስጥ ማስወገጃ"
#. XpjRm
-#: cui/inc/strings.hrc:92
+#: cui/inc/strings.hrc:97
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr "የ ጎደሉ ባህሪዎች"
#. 7tBGT
-#: cui/inc/strings.hrc:93
+#: cui/inc/strings.hrc:98
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr "ወደ የምወደው መጨመሪያ"
#. AvBBC
#. PPI is pixel per inch, %1 is a number
-#: cui/inc/strings.hrc:95
+#: cui/inc/strings.hrc:100
msgctxt "RID_SVXSTR_PPI"
msgid "(%1 PPI)"
msgstr "(%1 PPI)"
#. thimC
-#: cui/inc/strings.hrc:96
+#: cui/inc/strings.hrc:101
msgctxt "RID_SVXSTR_COL"
msgid "Insert Columns"
msgstr "አምዶች ማስገቢያ"
#. AgqiD
#. tdf#119293 Labels depending on row/col
-#: cui/inc/strings.hrc:98
+#: cui/inc/strings.hrc:103
msgctxt "RID_SVXSTR_INSERTCOL_BEFORE"
msgid "Before selection"
msgstr "ከ ምርጫው በፊት"
#. nXnb3
-#: cui/inc/strings.hrc:99
+#: cui/inc/strings.hrc:104
msgctxt "RID_SVXSTR_INSERTCOL_AFTER"
msgid "After selection"
msgstr "ከ ምርጫው በኋላ"
#. QrFJZ
-#: cui/inc/strings.hrc:100
+#: cui/inc/strings.hrc:105
msgctxt "RID_SVXSTR_AUTO_ENTRY"
msgid "Automatic"
msgstr "ራሱ በራሱ"
#. X9CWA
-#: cui/inc/strings.hrc:101
+#: cui/inc/strings.hrc:106
msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
msgid "Link"
msgstr "አገናኝ"
#. QCgnw
-#: cui/inc/strings.hrc:102
+#: cui/inc/strings.hrc:107
msgctxt "RID_SVXSTR_LOADACCELCONFIG"
msgid "Load Keyboard Configuration"
msgstr "የ ፊደል ገበታ ማዋቀሪያ መጫኛ"
#. eWQoY
-#: cui/inc/strings.hrc:103
+#: cui/inc/strings.hrc:108
msgctxt "RID_SVXSTR_SAVEACCELCONFIG"
msgid "Save Keyboard Configuration"
msgstr "የ ፊደል ገበታ ማዋቀሪያ ማስቀመጫ"
#. ggFZE
-#: cui/inc/strings.hrc:104
+#: cui/inc/strings.hrc:109
msgctxt "RID_SVXSTR_FILTERNAME_CFG"
msgid "Configuration (*.cfg)"
msgstr "ማዋቀሪያ (*.cfg)"
#. DigQB
-#: cui/inc/strings.hrc:105
+#: cui/inc/strings.hrc:110
msgctxt "RID_SVXSTR_HYPDLG_ERR_LERR_NOENTRIES"
msgid "Targets do not exist in the document."
msgstr "ዒላማዎቹ በሰነዱ ውስጥ አልተገኙም"
#. pCbRV
-#: cui/inc/strings.hrc:106
+#: cui/inc/strings.hrc:111
msgctxt "RID_SVXSTR_HYPDLG_ERR_LERR_DOCNOTOPEN"
msgid "Couldn't open the document."
msgstr "ሰነዱን መክፈት አልተቻለም"
#. zAUfq
-#: cui/inc/strings.hrc:107
+#: cui/inc/strings.hrc:112
msgctxt "RID_SVXSTR_EDITHINT"
msgid "[Enter text here]"
msgstr "[ጽሑፍ እዚህ ያስገቡ]"
#. ResDx
-#: cui/inc/strings.hrc:108
+#: cui/inc/strings.hrc:113
msgctxt "RID_SVXSTR_HANGUL"
msgid "Hangul"
msgstr "Hangul"
#. 3t3AC
-#: cui/inc/strings.hrc:109
+#: cui/inc/strings.hrc:114
msgctxt "RID_SVXSTR_HANJA"
msgid "Hanja"
msgstr "Hanja"
#. 88dts
-#: cui/inc/strings.hrc:110
+#: cui/inc/strings.hrc:115
msgctxt "RID_SVXSTR_BASICMACROS"
msgid "BASIC Macros"
msgstr "መሰረታዊ ማክሮስ"
#. XKYHn
-#: cui/inc/strings.hrc:111
+#: cui/inc/strings.hrc:116
msgctxt "RID_SVXSTR_GROUP_STYLES"
msgid "Styles"
msgstr "ዘዴዎች"
#. hFEBv
-#: cui/inc/strings.hrc:113
+#: cui/inc/strings.hrc:118
msgctxt "RID_SVXSTR_EVENT_STARTAPP"
msgid "Start Application"
msgstr "መተግበሪያውን ማስጀመሪያ"
#. 6tUvx
-#: cui/inc/strings.hrc:114
+#: cui/inc/strings.hrc:119
msgctxt "RID_SVXSTR_EVENT_CLOSEAPP"
msgid "Close Application"
msgstr "መተግበሪያውን መዝጊያ"
#. 6NsQz
-#: cui/inc/strings.hrc:115
+#: cui/inc/strings.hrc:120
msgctxt "RID_SVXSTR_EVENT_NEWDOC"
msgid "New Document"
msgstr "አዲስ ሰነድ"
#. G6b2e
-#: cui/inc/strings.hrc:116
+#: cui/inc/strings.hrc:121
msgctxt "RID_SVXSTR_EVENT_CLOSEDOC"
msgid "Document closed"
msgstr "ሰነዱ ተዘግቷል"
#. yvsTa
-#: cui/inc/strings.hrc:117
+#: cui/inc/strings.hrc:122
msgctxt "RID_SVXSTR_EVENT_PREPARECLOSEDOC"
msgid "Document is going to be closed"
msgstr "ሰነዱ ሊዘጋ ነው"
#. DKpfj
-#: cui/inc/strings.hrc:118
+#: cui/inc/strings.hrc:123
msgctxt "RID_SVXSTR_EVENT_OPENDOC"
msgid "Open Document"
msgstr "ሰነድ መክፈቻ"
#. DTDDm
-#: cui/inc/strings.hrc:119
+#: cui/inc/strings.hrc:124
msgctxt "RID_SVXSTR_EVENT_SAVEDOC"
msgid "Save Document"
msgstr "ሰነድ ማስቀመጫ"
#. Trc82
-#: cui/inc/strings.hrc:120
+#: cui/inc/strings.hrc:125
msgctxt "RID_SVXSTR_EVENT_SAVEASDOC"
msgid "Save Document As"
msgstr "ሰነዱን ማስቀመጫ እንደ"
#. GCbZt
-#: cui/inc/strings.hrc:121
+#: cui/inc/strings.hrc:126
msgctxt "RID_SVXSTR_EVENT_SAVEDOCDONE"
msgid "Document has been saved"
msgstr "ሰነዱ ተቀምጧል"
#. mYtMa
-#: cui/inc/strings.hrc:122
+#: cui/inc/strings.hrc:127
msgctxt "RID_SVXSTR_EVENT_SAVEASDOCDONE"
msgid "Document has been saved as"
msgstr "ሰነዱ ተቀምጧል እንደ"
#. t8F8W
-#: cui/inc/strings.hrc:123
+#: cui/inc/strings.hrc:128
msgctxt "RID_SVXSTR_EVENT_ACTIVATEDOC"
msgid "Activate Document"
msgstr "ሰነዱን ማስነሻ"
#. T7QE3
-#: cui/inc/strings.hrc:124
+#: cui/inc/strings.hrc:129
msgctxt "RID_SVXSTR_EVENT_DEACTIVATEDOC"
msgid "Deactivate Document"
msgstr "ሰነዱን ማቦዘኛ"
#. AQXyC
-#: cui/inc/strings.hrc:125
+#: cui/inc/strings.hrc:130
msgctxt "RID_SVXSTR_EVENT_PRINTDOC"
msgid "Print Document"
msgstr "ሰነዱን ማተሚያ"
#. 8uXuz
-#: cui/inc/strings.hrc:126
+#: cui/inc/strings.hrc:131
msgctxt "RID_SVXSTR_EVENT_MODIFYCHANGED"
msgid "'Modified' status was changed"
msgstr "'ተሻሽሏል' ሁኔታው ተቀይሯል"
#. 5CKDG
-#: cui/inc/strings.hrc:127
+#: cui/inc/strings.hrc:132
msgctxt "RID_SVXSTR_EVENT_MAILMERGE"
msgid "Printing of form letters started"
msgstr "በ ደብዳቤዎች ፎርም ማተም ጀምሯል"
#. AZ2io
-#: cui/inc/strings.hrc:128
+#: cui/inc/strings.hrc:133
msgctxt "RID_SVXSTR_EVENT_MAILMERGE_END"
msgid "Printing of form letters finished"
msgstr "በ ደብዳቤዎች ፎርም ማተም ጨርሷል"
#. dHtbz
-#: cui/inc/strings.hrc:129
+#: cui/inc/strings.hrc:134
msgctxt "RID_SVXSTR_EVENT_FIELDMERGE"
msgid "Merging of form fields started"
msgstr "የ ፎርም ሜዳዎችን ማዋሀድ ጀምሯል"
#. uGCdD
-#: cui/inc/strings.hrc:130
+#: cui/inc/strings.hrc:135
msgctxt "RID_SVXSTR_EVENT_FIELDMERGE_FINISHED"
msgid "Merging of form fields finished"
msgstr "የ ፎርም ሜዳዎችን ማዋሀድ ጨርሷል"
#. srLLa
-#: cui/inc/strings.hrc:131
+#: cui/inc/strings.hrc:136
msgctxt "RID_SVXSTR_EVENT_PAGECOUNTCHANGE"
msgid "Changing the page count"
msgstr "የ ገጽ መቁጠሪያ በ መቀየር ላይ"
#. AsuQF
-#: cui/inc/strings.hrc:132
+#: cui/inc/strings.hrc:137
msgctxt "RID_SVXSTR_EVENT_SUBCOMPONENT_OPENED"
msgid "Loaded a sub component"
msgstr "ንዑስ አካላት ተጭነዋል"
#. Gf22f
-#: cui/inc/strings.hrc:133
+#: cui/inc/strings.hrc:138
msgctxt "RID_SVXSTR_EVENT_SUBCOMPONENT_CLOSED"
msgid "Closed a sub component"
msgstr "ንዑስ አካላት ተዘግተዋል"
#. QayEb
-#: cui/inc/strings.hrc:134
+#: cui/inc/strings.hrc:139
msgctxt "RID_SVXSTR_EVENT_APPROVEPARAMETER"
msgid "Fill parameters"
msgstr "ደንቦች መሙያ"
#. mL59X
-#: cui/inc/strings.hrc:135
+#: cui/inc/strings.hrc:140
msgctxt "RID_SVXSTR_EVENT_ACTIONPERFORMED"
msgid "Execute action"
msgstr "ተግባር መፈጸሚያ"
#. KtHBE
-#: cui/inc/strings.hrc:136
+#: cui/inc/strings.hrc:141
msgctxt "RID_SVXSTR_EVENT_AFTERUPDATE"
msgid "After updating"
msgstr "ከተሻሻለ በኋላ"
#. b6CCj
-#: cui/inc/strings.hrc:137
+#: cui/inc/strings.hrc:142
msgctxt "RID_SVXSTR_EVENT_BEFOREUPDATE"
msgid "Before updating"
msgstr "ከመሻሻሉ በፊት"
#. KTBcp
-#: cui/inc/strings.hrc:138
+#: cui/inc/strings.hrc:143
msgctxt "RID_SVXSTR_EVENT_APPROVEROWCHANGE"
msgid "Before record action"
msgstr "ከመዝገቡ ተግባር በፊት"
#. Fhyio
-#: cui/inc/strings.hrc:139
+#: cui/inc/strings.hrc:144
msgctxt "RID_SVXSTR_EVENT_ROWCHANGE"
msgid "After record action"
msgstr "ከመዝገቡ ተግባር በኋላ"
#. PmJgM
-#: cui/inc/strings.hrc:140
+#: cui/inc/strings.hrc:145
msgctxt "RID_SVXSTR_EVENT_CONFIRMDELETE"
msgid "Confirm deletion"
msgstr "ማጥፋቱን ያረጋግጡ"
#. gcREA
-#: cui/inc/strings.hrc:141
+#: cui/inc/strings.hrc:146
msgctxt "RID_SVXSTR_EVENT_ERROROCCURRED"
msgid "Error occurred"
msgstr "ስህተት ተፈጥሯል"
#. oAwDt
-#: cui/inc/strings.hrc:142
+#: cui/inc/strings.hrc:147
msgctxt "RID_SVXSTR_EVENT_ADJUSTMENTVALUECHANGED"
msgid "While adjusting"
msgstr "በማስተካከል ላይ እንዳለ"
#. AyfwP
-#: cui/inc/strings.hrc:143
+#: cui/inc/strings.hrc:148
msgctxt "RID_SVXSTR_EVENT_FOCUSGAINED"
msgid "When receiving focus"
msgstr "ትኩረት በሚያገኝበት ጊዜ"
#. BD96B
-#: cui/inc/strings.hrc:144
+#: cui/inc/strings.hrc:149
msgctxt "RID_SVXSTR_EVENT_FOCUSLOST"
msgid "When losing focus"
msgstr "ትኩረት በሚያጣበት ጊዜ"
#. wEhfE
-#: cui/inc/strings.hrc:145
+#: cui/inc/strings.hrc:150
msgctxt "RID_SVXSTR_EVENT_ITEMSTATECHANGED"
msgid "Item status changed"
msgstr "የ እቃው ሁኔታ ተቀይሯል"
#. FRW7b
-#: cui/inc/strings.hrc:146
+#: cui/inc/strings.hrc:151
msgctxt "RID_SVXSTR_EVENT_KEYTYPED"
msgid "Key pressed"
msgstr "ቁልፍ ተጭነዋል"
#. 4kZCD
-#: cui/inc/strings.hrc:147
+#: cui/inc/strings.hrc:152
msgctxt "RID_SVXSTR_EVENT_KEYUP"
msgid "Key released"
msgstr "ቁልፍ ለቀዋል"
#. ZiS2D
-#: cui/inc/strings.hrc:148
+#: cui/inc/strings.hrc:153
msgctxt "RID_SVXSTR_EVENT_LOADED"
msgid "When loading"
msgstr "በመጫን ላይ እንዳለ"
#. vEjAG
-#: cui/inc/strings.hrc:149
+#: cui/inc/strings.hrc:154
msgctxt "RID_SVXSTR_EVENT_RELOADING"
msgid "Before reloading"
msgstr "እንደገና ከ መጫኑ በፊት"
#. 5FvrE
-#: cui/inc/strings.hrc:150
+#: cui/inc/strings.hrc:155
msgctxt "RID_SVXSTR_EVENT_RELOADED"
msgid "When reloading"
msgstr "እንደገና በሚጫን ጊዜ"
#. CDcYt
-#: cui/inc/strings.hrc:151
+#: cui/inc/strings.hrc:156
msgctxt "RID_SVXSTR_EVENT_MOUSEDRAGGED"
msgid "Mouse moved while key pressed"
msgstr "አይጡ ተንቀሳቅሷል ቁልፉን በመጫን ላይ እንዳሉ"
#. CPpyk
-#: cui/inc/strings.hrc:152
+#: cui/inc/strings.hrc:157
msgctxt "RID_SVXSTR_EVENT_MOUSEENTERED"
msgid "Mouse inside"
msgstr "አይጥ ውስጥ"
#. 4hGfp
-#: cui/inc/strings.hrc:153
+#: cui/inc/strings.hrc:158
msgctxt "RID_SVXSTR_EVENT_MOUSEEXITED"
msgid "Mouse outside"
msgstr "አይጥ ውጪ"
#. QEuWr
-#: cui/inc/strings.hrc:154
+#: cui/inc/strings.hrc:159
msgctxt "RID_SVXSTR_EVENT_MOUSEMOVED"
msgid "Mouse moved"
msgstr "አይጡ ተንቀሳቅሷል"
#. 8YA3S
-#: cui/inc/strings.hrc:155
+#: cui/inc/strings.hrc:160
msgctxt "RID_SVXSTR_EVENT_MOUSEPRESSED"
msgid "Mouse button pressed"
msgstr "የአይጥ ቁልፍ ተጭነዋል"
#. RMuJe
-#: cui/inc/strings.hrc:156
+#: cui/inc/strings.hrc:161
msgctxt "RID_SVXSTR_EVENT_MOUSERELEASED"
msgid "Mouse button released"
msgstr "የአይጥ ቁልፍ ለቅቀዋል"
#. 5iPHQ
-#: cui/inc/strings.hrc:157
+#: cui/inc/strings.hrc:162
msgctxt "RID_SVXSTR_EVENT_POSITIONING"
msgid "Before record change"
msgstr "መዝገቡ ከመቀየሩ በፊት"
#. yrBiz
-#: cui/inc/strings.hrc:158
+#: cui/inc/strings.hrc:163
msgctxt "RID_SVXSTR_EVENT_POSITIONED"
msgid "After record change"
msgstr "መዝገቡ ከተቀየረ በኋላ"
#. bdBH4
-#: cui/inc/strings.hrc:159
+#: cui/inc/strings.hrc:164
msgctxt "RID_SVXSTR_EVENT_RESETTED"
msgid "After resetting"
msgstr "እንደ ነበር ከ ተመለሰ በኋላ"
#. eVsFk
-#: cui/inc/strings.hrc:160
+#: cui/inc/strings.hrc:165
msgctxt "RID_SVXSTR_EVENT_APPROVERESETTED"
msgid "Prior to reset"
msgstr "እንደ ነበር ከ መመለሱ በፊት"
#. 2oAoV
-#: cui/inc/strings.hrc:161
+#: cui/inc/strings.hrc:166
msgctxt "RID_SVXSTR_EVENT_APPROVEACTIONPERFORMED"
msgid "Approve action"
msgstr "ተግባሩን ማጽደቂያ"
#. hQAzK
-#: cui/inc/strings.hrc:162
+#: cui/inc/strings.hrc:167
msgctxt "RID_SVXSTR_EVENT_SUBMITTED"
msgid "Before submitting"
msgstr "ከማስገባትዎ በፊት"
#. CFPSo
-#: cui/inc/strings.hrc:163
+#: cui/inc/strings.hrc:168
msgctxt "RID_SVXSTR_EVENT_TEXTCHANGED"
msgid "Text modified"
msgstr "ጽሑፉ ተሻሽሏል"
#. 2ADMH
-#: cui/inc/strings.hrc:164
+#: cui/inc/strings.hrc:169
msgctxt "RID_SVXSTR_EVENT_UNLOADING"
msgid "Before unloading"
msgstr "ከ መውረዱ በፊት"
#. F8BL3
-#: cui/inc/strings.hrc:165
+#: cui/inc/strings.hrc:170
msgctxt "RID_SVXSTR_EVENT_UNLOADED"
msgid "When unloading"
msgstr "በሚወርድበት ጊዜ"
#. M6fPe
-#: cui/inc/strings.hrc:166
+#: cui/inc/strings.hrc:171
msgctxt "RID_SVXSTR_EVENT_CHANGED"
msgid "Changed"
msgstr "ተቀይሯል"
#. gZyVB
-#: cui/inc/strings.hrc:167
+#: cui/inc/strings.hrc:172
msgctxt "RID_SVXSTR_EVENT_CREATEDOC"
msgid "Document created"
msgstr "ሰነዱ ተፈጥሯል"
#. BcPDW
-#: cui/inc/strings.hrc:168
+#: cui/inc/strings.hrc:173
msgctxt "RID_SVXSTR_EVENT_LOADDOCFINISHED"
msgid "Document loading finished"
msgstr "ሰነዱ መጫኑን ጨርሷል"
#. ir7AQ
-#: cui/inc/strings.hrc:169
+#: cui/inc/strings.hrc:174
msgctxt "RID_SVXSTR_EVENT_SAVEDOCFAILED"
msgid "Saving of document failed"
msgstr "ሰነዱን ማስቀመጥ አልተቻለም"
#. BFtTF
-#: cui/inc/strings.hrc:170
+#: cui/inc/strings.hrc:175
msgctxt "RID_SVXSTR_EVENT_SAVEASDOCFAILED"
msgid "'Save as' has failed"
msgstr "'ማስቀመጥ' አልተቻለም እንደ"
#. N9e6u
-#: cui/inc/strings.hrc:171
+#: cui/inc/strings.hrc:176
msgctxt "RID_SVXSTR_EVENT_COPYTODOC"
msgid "Storing or exporting copy of document"
msgstr "የሰነዱን ኮፒ በማስቀመጥ ወይም በመላክ ላይ"
#. okb9H
-#: cui/inc/strings.hrc:172
+#: cui/inc/strings.hrc:177
msgctxt "RID_SVXSTR_EVENT_COPYTODOCDONE"
msgid "Document copy has been created"
msgstr "የሰነዱ ኮፒ ተፈጥሯል"
#. DrYTY
-#: cui/inc/strings.hrc:173
+#: cui/inc/strings.hrc:178
msgctxt "RID_SVXSTR_EVENT_COPYTODOCFAILED"
msgid "Creating of document copy failed"
msgstr "የሰነዱን ኮፒ መፍጠር አልተቻለም"
#. BBJJQ
-#: cui/inc/strings.hrc:174
+#: cui/inc/strings.hrc:179
msgctxt "RID_SVXSTR_EVENT_VIEWCREATED"
msgid "View created"
msgstr "የተፈጠረውን መመልከቻ"
#. XN9Az
-#: cui/inc/strings.hrc:175
+#: cui/inc/strings.hrc:180
msgctxt "RID_SVXSTR_EVENT_PREPARECLOSEVIEW"
msgid "View is going to be closed"
msgstr "መመልከቻው ሊዘጋ ነው"
#. a9qty
-#: cui/inc/strings.hrc:176
+#: cui/inc/strings.hrc:181
msgctxt "RID_SVXSTR_EVENT_CLOSEVIEW"
msgid "View closed"
msgstr "የተዘጋውን መመልከቻ"
#. dDunN
-#: cui/inc/strings.hrc:177
+#: cui/inc/strings.hrc:182
msgctxt "RID_SVXSTR_EVENT_TITLECHANGED"
msgid "Document title changed"
msgstr "የ ሰነዱ አርእስት ተቀይሯል"
#. 6D6BS
-#: cui/inc/strings.hrc:178
+#: cui/inc/strings.hrc:183
msgctxt "RID_SVXSTR_EVENT_SELECTIONCHANGED"
msgid "Selection changed"
msgstr "ምርጫው ተቀይሯል"
#. XArW3
-#: cui/inc/strings.hrc:179
+#: cui/inc/strings.hrc:184
msgctxt "RID_SVXSTR_EVENT_DOUBLECLICK"
msgid "Double click"
msgstr "ሁለት ጊዜ ይጫኑ"
#. oDkyz
-#: cui/inc/strings.hrc:180
+#: cui/inc/strings.hrc:185
msgctxt "RID_SVXSTR_EVENT_RIGHTCLICK"
msgid "Right click"
msgstr "በ ቀኝ ይጫኑ"
#. tVSz9
-#: cui/inc/strings.hrc:181
+#: cui/inc/strings.hrc:186
msgctxt "RID_SVXSTR_EVENT_CALCULATE"
msgid "Formulas calculated"
msgstr "መቀመሪያ ተሰልቷል"
#. ESxTQ
-#: cui/inc/strings.hrc:182
+#: cui/inc/strings.hrc:187
msgctxt "RID_SVXSTR_EVENT_CONTENTCHANGED"
msgid "Content changed"
msgstr "የተቀየሩ ይዞታዎች"
#. Zimeo
-#: cui/inc/strings.hrc:184
+#: cui/inc/strings.hrc:189
msgctxt "RID_STR_SEARCH_ANYWHERE"
msgid "anywhere in the field"
msgstr "በ ሜዳው ማናቸውም ቦታ"
#. qCKMY
-#: cui/inc/strings.hrc:185
+#: cui/inc/strings.hrc:190
msgctxt "RID_STR_SEARCH_BEGINNING"
msgid "beginning of field"
msgstr "በ ሜዳው መጀመሪያ"
#. CKVTF
-#: cui/inc/strings.hrc:186
+#: cui/inc/strings.hrc:191
msgctxt "RID_STR_SEARCH_END"
msgid "end of field"
msgstr "የ ሜዳ መጨረሻ"
#. FZwxu
-#: cui/inc/strings.hrc:187
+#: cui/inc/strings.hrc:192
msgctxt "RID_STR_SEARCH_WHOLE"
msgid "entire field"
msgstr "በ ሜዳው ሙሉ"
#. AFUFs
-#: cui/inc/strings.hrc:188
+#: cui/inc/strings.hrc:193
msgctxt "RID_STR_FROM_TOP"
msgid "From top"
msgstr "ከ ላይ"
#. FBDbX
-#: cui/inc/strings.hrc:189
+#: cui/inc/strings.hrc:194
msgctxt "RID_STR_FROM_BOTTOM"
msgid "From bottom"
msgstr "ከ ታች በኩል"
#. brdgV
-#: cui/inc/strings.hrc:190
+#: cui/inc/strings.hrc:195
msgctxt "RID_STR_SEARCH_NORECORD"
msgid "No records corresponding to your data found."
msgstr "ከ እርስዎ ዳታ ጋር የሚመሳሰል ምንም አይነት መዝገብ አልተገኘም"
#. VkTjA
-#: cui/inc/strings.hrc:191
+#: cui/inc/strings.hrc:196
msgctxt "RID_STR_SEARCH_GENERAL_ERROR"
msgid "An unknown error occurred. The search could not be finished."
msgstr "ያልታወቀ ስህተት ተፈጥሯል: ፍለጋውን መጨረስ አልተቻለም"
#. jiQdw
-#: cui/inc/strings.hrc:192
+#: cui/inc/strings.hrc:197
msgctxt "RID_STR_OVERFLOW_FORWARD"
msgid "Overflow, search continued at the beginning"
msgstr "ሞልቶ ፈሰሰ: መፈለጊያ ከ መጀመሪያው ጀምሮ ቀጥሏል"
#. EzK3y
-#: cui/inc/strings.hrc:193
+#: cui/inc/strings.hrc:198
msgctxt "RID_STR_OVERFLOW_BACKWARD"
msgid "Overflow, search continued at the end"
msgstr "ሞልቶ ፈሰሰ: መፈለጊያ እስከ መጨረሻው ድረስ ቀጥሏል"
#. zwiat
-#: cui/inc/strings.hrc:194
+#: cui/inc/strings.hrc:199
msgctxt "RID_STR_SEARCH_COUNTING"
msgid "counting records"
msgstr "መዝገቦችን በመቁጠር ላይ"
#. 7cVWa
-#: cui/inc/strings.hrc:196
+#: cui/inc/strings.hrc:201
msgctxt "RID_SVXSTR_GALLERY_NOFILES"
msgid "<No Files>"
msgstr "<ፋይሎች የሉም>"
#. AnJUu
-#: cui/inc/strings.hrc:197
+#: cui/inc/strings.hrc:202
msgctxt "RID_SVXSTR_GALLERYPROPS_OBJECT"
msgid "Object;Objects"
msgstr "እቃ ;እቃዎች"
#. GQXSM
-#: cui/inc/strings.hrc:198
+#: cui/inc/strings.hrc:203
msgctxt "RID_SVXSTR_GALLERY_READONLY"
msgid "(read-only)"
msgstr "(ለንባብ ብቻ)"
#. sAwgA
-#: cui/inc/strings.hrc:199
+#: cui/inc/strings.hrc:204
msgctxt "RID_SVXSTR_GALLERY_ALLFILES"
msgid "<All Files>"
msgstr "<ሁሉም ፋይሎች>"
#. YkCky
-#: cui/inc/strings.hrc:200
+#: cui/inc/strings.hrc:205
msgctxt "RID_SVXSTR_GALLERY_ID_EXISTS"
msgid "This ID already exists..."
msgstr "ይህ መለያ ቀደም ሲል ነበር ..."
#. w3AUk
-#: cui/inc/strings.hrc:202
+#: cui/inc/strings.hrc:207
msgctxt "RID_MULTIPATH_DBL_ERR"
msgid "The path %1 already exists."
msgstr "መንገዱ %1 ቀደም ሲል ነበር"
#. 54BsS
-#: cui/inc/strings.hrc:203
+#: cui/inc/strings.hrc:208
msgctxt "RID_SVXSTR_ARCHIVE_TITLE"
msgid "Select Archives"
msgstr "ማህደሮች ይምረጡ"
#. NDB5V
-#: cui/inc/strings.hrc:204
+#: cui/inc/strings.hrc:209
msgctxt "RID_SVXSTR_ARCHIVE_HEADLINE"
msgid "Archives"
msgstr "ማህደሮች"
#. ffPAq
-#: cui/inc/strings.hrc:205
+#: cui/inc/strings.hrc:210
msgctxt "RID_SVXSTR_MULTIFILE_DBL_ERR"
msgid "The file %1 already exists."
msgstr "ፋይሉ %1 ቀደም ሲል ነበር"
#. 5FyxP
-#: cui/inc/strings.hrc:206
+#: cui/inc/strings.hrc:211
msgctxt "RID_SVXSTR_ADD_IMAGE"
msgid "Add Image"
msgstr "ምስል መጨመሪያ"
#. eUzGk
-#: cui/inc/strings.hrc:208
+#: cui/inc/strings.hrc:213
msgctxt "RID_SVXSTR_ONE_PASSWORD_MISMATCH"
msgid "The confirmation password did not match the password. Set the password again by entering the same password in both boxes."
msgstr "የ ማረጋገጫው መግቢያ ቃል ከ መግቢያ ቃሉ ጋር አይመሳሰልም: የ መግቢያ ቃል እንደገና ያሰናዱ በሁለቱም ሳጥኖች ውስጥ አንድ አይነት የመግቢያ ቃል ያስገቡ"
#. mN9jE
-#: cui/inc/strings.hrc:209
+#: cui/inc/strings.hrc:214
msgctxt "RID_SVXSTR_TWO_PASSWORDS_MISMATCH"
msgid "The confirmation passwords did not match the original passwords. Set the passwords again."
msgstr "የ ማረጋገጫው መግቢያ ቃል ከ ዋናው መግቢያ ቃሉ ጋር አይመሳሰልም: የ መግቢያ ቃል እንደገና ያሰናዱ"
#. 48ez3
-#: cui/inc/strings.hrc:210
+#: cui/inc/strings.hrc:215
msgctxt "RID_SVXSTR_INVALID_STATE_FOR_OK_BUTTON"
msgid "Please enter a password to open or to modify, or check the open read-only option to continue."
msgstr "እባክዎን የ መግቢያ ቃል ያስገቡ ለ መክፈት ወይንም ለ ማሻሽል ወይንም ለ መቀጠል ለ ንባብ ብቻ ምርጫዎችን ይመርምሩ"
#. aAbAN
-#: cui/inc/strings.hrc:211
+#: cui/inc/strings.hrc:216
msgctxt "RID_SVXSTR_INVALID_STATE_FOR_OK_BUTTON_V2"
msgid "Set the password by entering the same password in both boxes."
msgstr "የ መግቢያ ቃል ያሰናዱ በሁለቱም ሳጥኖች ውስጥ አንድ አይነት የመግቢያ ቃል ያስገቡ"
#. ZXcFw
-#: cui/inc/strings.hrc:212
+#: cui/inc/strings.hrc:217
msgctxt "RID_SVXSTR_PASSWORD_LEN_INDICATOR"
msgid "Password length limit of %1 reached"
msgstr "የ መግቢያ ቃል እርዝመት መጠን ከ %1 ደርሷል:"
#. Fko49
-#: cui/inc/strings.hrc:214
+#: cui/inc/strings.hrc:219
msgctxt "STR_AUTOLINK"
msgid "Automatic"
msgstr "ራሱ በራሱ"
#. WYHFb
-#: cui/inc/strings.hrc:215
+#: cui/inc/strings.hrc:220
msgctxt "STR_MANUALLINK"
msgid "Manual"
msgstr "በእጅ"
#. PFN4j
-#: cui/inc/strings.hrc:216
+#: cui/inc/strings.hrc:221
msgctxt "STR_BROKENLINK"
msgid "Not available"
msgstr "ዝግጁ አይደለም"
#. 5ymS3
-#: cui/inc/strings.hrc:217
+#: cui/inc/strings.hrc:222
msgctxt "STR_CLOSELINKMSG"
msgid "Are you sure you want to remove the selected link?"
msgstr "በእርግጥ የተመረጠውን አገናኝ ማስወገድ ይፈልጋሉ?"
#. wyMwT
-#: cui/inc/strings.hrc:218
+#: cui/inc/strings.hrc:223
msgctxt "STR_CLOSELINKMSG_MULTI"
msgid "Are you sure you want to remove the selected link?"
msgstr "በእርግጥ የተመረጠውን አገናኝ ማስወገድ ይፈልጋሉ?"
#. CN74h
-#: cui/inc/strings.hrc:219
+#: cui/inc/strings.hrc:224
msgctxt "STR_WAITINGLINK"
msgid "Waiting"
msgstr "በመጠበቅ ላይ"
#. QJKgF
-#: cui/inc/strings.hrc:221
+#: cui/inc/strings.hrc:226
msgctxt "RID_SVXSTR_SAVE_SCREENSHOT_AS"
msgid "Save Screenshot As..."
msgstr "ማስቀመጫ የ መመልከቻ ፎቶ እንደ..."
#. CAaFf
#. $(ROW) can be a number or the caption of the row in quotes
-#: cui/inc/strings.hrc:224
+#: cui/inc/strings.hrc:229
msgctxt "RID_SVXSTR_DIAGRAM_ROW"
msgid "Data Series $(ROW)"
msgstr "ተከታታይ ዳታ $(ROW)"
#. HzhXp
-#: cui/inc/strings.hrc:226
+#: cui/inc/strings.hrc:231
msgctxt "RID_SVXSTR_YES"
msgid "Yes"
msgstr "አዎ"
#. RuQiB
-#: cui/inc/strings.hrc:227
+#: cui/inc/strings.hrc:232
msgctxt "RID_SVXSTR_NO"
msgid "No"
msgstr "አይ"
#. irLeD
-#: cui/inc/strings.hrc:229
+#: cui/inc/strings.hrc:234
msgctxt "STR_LINKEDDOC_DOESNOTEXIST"
msgid ""
"The file\n"
@@ -1277,7 +1307,7 @@ msgstr ""
"አልተገኘም"
#. iQYnX
-#: cui/inc/strings.hrc:230
+#: cui/inc/strings.hrc:235
msgctxt "STR_LINKEDDOC_NO_SYSTEM_FILE"
msgid ""
"The file\n"
@@ -1289,7 +1319,7 @@ msgstr ""
"በአካባቢ የፋይል ስርአት ውስጥ አልተገኘም"
#. 4PaJ2
-#: cui/inc/strings.hrc:231
+#: cui/inc/strings.hrc:236
msgctxt "STR_NAME_CONFLICT"
msgid ""
"The name '$file$' is already used for another database.\n"
@@ -1299,163 +1329,163 @@ msgstr ""
"እባክዎን የተለየ ስም ይምረጡ"
#. KFB7q
-#: cui/inc/strings.hrc:232
+#: cui/inc/strings.hrc:237
msgctxt "RID_SVXSTR_QUERY_DELETE_CONFIRM"
msgid "Do you want to delete the entry?"
msgstr "ማስገቢያውን ማጥፋት ይፈልጋሉ?"
#. gg9gD
-#: cui/inc/strings.hrc:234
+#: cui/inc/strings.hrc:239
msgctxt "RID_SVXSTR_DELQUERY"
msgid "Do you want to delete the following object?"
msgstr "የሚቀጥለውን እቃ ማጥፋት ይፈልጋሉ?"
#. 42ivC
-#: cui/inc/strings.hrc:235
+#: cui/inc/strings.hrc:240
msgctxt "RID_SVXSTR_DELQUERY_TITLE"
msgid "Confirm Deletion"
msgstr "ማጥፋቱን ያረጋግጡ"
#. kn5KE
-#: cui/inc/strings.hrc:236
+#: cui/inc/strings.hrc:241
msgctxt "RID_SVXSTR_DELFAILED"
msgid "The selected object could not be deleted."
msgstr "የተመረጠውን እቃ ማጥፋት አይቻልም"
#. T7T8x
-#: cui/inc/strings.hrc:237
+#: cui/inc/strings.hrc:242
msgctxt "RID_SVXSTR_DELFAILED_TITLE"
msgid "Error Deleting Object"
msgstr "ስህተት እቃውን በማጥፋት ላይ"
#. SCgXy
-#: cui/inc/strings.hrc:238
+#: cui/inc/strings.hrc:243
msgctxt "RID_SVXSTR_CREATEFAILED"
msgid "The object could not be created."
msgstr "እቃውን መፍጠር አልተቻለም"
#. TmiCU
-#: cui/inc/strings.hrc:239
+#: cui/inc/strings.hrc:244
msgctxt "RID_SVXSTR_CREATEFAILEDDUP"
msgid " Object with the same name already exists."
msgstr " እቃው በዚህ ስም ቀደም ሲል ነበር"
#. ffc5M
-#: cui/inc/strings.hrc:240
+#: cui/inc/strings.hrc:245
msgctxt "RID_SVXSTR_CREATEFAILED_TITLE"
msgid "Error Creating Object"
msgstr "ስህተት እቃውን በመፍጠር ላይ"
#. hpB8B
-#: cui/inc/strings.hrc:241
+#: cui/inc/strings.hrc:246
msgctxt "RID_SVXSTR_RENAMEFAILED"
msgid "The object could not be renamed."
msgstr "እቃውን እንደገና መሰየም አይቻልም"
#. eevjm
-#: cui/inc/strings.hrc:242
+#: cui/inc/strings.hrc:247
msgctxt "RID_SVXSTR_RENAMEFAILED_TITLE"
msgid "Error Renaming Object"
msgstr "ስህተት እቃውን እንደገና በ መሰየም ላይ"
#. fTHFY
-#: cui/inc/strings.hrc:243
+#: cui/inc/strings.hrc:248
msgctxt "RID_SVXSTR_ERROR_TITLE"
msgid "%PRODUCTNAME Error"
msgstr "%PRODUCTNAME ስህተት"
#. e6BgS
-#: cui/inc/strings.hrc:244
+#: cui/inc/strings.hrc:249
msgctxt "RID_SVXSTR_ERROR_LANG_NOT_SUPPORTED"
msgid "The scripting language %LANGUAGENAME is not supported."
msgstr "የ ጽሁፍ ቋንቋው %LANGUAGENAME የ ተደገፈ አይደለም"
#. EUek9
-#: cui/inc/strings.hrc:245
+#: cui/inc/strings.hrc:250
msgctxt "RID_SVXSTR_ERROR_RUNNING"
msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr "ስህተት ተፈጥሯል በማስኬድ ላይ እንዳለ %LANGUAGENAME script %SCRIPTNAME."
#. KVQAh
-#: cui/inc/strings.hrc:246
+#: cui/inc/strings.hrc:251
msgctxt "RID_SVXSTR_EXCEPTION_RUNNING"
msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr "የተለየ ሁኔታ ተፈጥሯል በማስኬድ ላይ እንዳለ %LANGUAGENAME script %SCRIPTNAME."
#. 5bFCQ
-#: cui/inc/strings.hrc:247
+#: cui/inc/strings.hrc:252
msgctxt "RID_SVXSTR_ERROR_AT_LINE"
msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
msgstr "ስህተት ተፈጥሯል በማስኬድ ላይ እንዳለ %LANGUAGENAME script %SCRIPTNAME በመስመር ላይ: %LINENUMBER."
#. KTptU
-#: cui/inc/strings.hrc:248
+#: cui/inc/strings.hrc:253
msgctxt "RID_SVXSTR_EXCEPTION_AT_LINE"
msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
msgstr "የተለየ ሁኔታ ተፈጥሯል በማስኬድ ላይ እንዳለ %LANGUAGENAME ጽሁፍ %SCRIPTNAME በ መስመር ላይ: %LINENUMBER."
#. BZDbp
-#: cui/inc/strings.hrc:249
+#: cui/inc/strings.hrc:254
msgctxt "RID_SVXSTR_FRAMEWORK_ERROR_RUNNING"
msgid "A Scripting Framework error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr "የ ጽሁፍ ክፈፍ ስራ ስህተት ተፈጥሯል %LANGUAGENAME ጽሁፍ %SCRIPTNAME."
#. AAghx
-#: cui/inc/strings.hrc:250
+#: cui/inc/strings.hrc:255
msgctxt "RID_SVXSTR_ERROR_TYPE_LABEL"
msgid "Type:"
msgstr "አይነት:"
#. GAsca
-#: cui/inc/strings.hrc:251
+#: cui/inc/strings.hrc:256
msgctxt "RID_SVXSTR_ERROR_MESSAGE_LABEL"
msgid "Message:"
msgstr "መልእክት:"
#. ZcxRY
-#: cui/inc/strings.hrc:253
+#: cui/inc/strings.hrc:258
msgctxt "RID_SVXSTR_CHG_MATH"
msgid "MathType to %PRODUCTNAME Math or reverse"
msgstr "MathType to %PRODUCTNAME ሂሳብ ወይንም ወደ ነበረበት መመለሻ"
#. Ttggs
-#: cui/inc/strings.hrc:254
+#: cui/inc/strings.hrc:259
msgctxt "RID_SVXSTR_CHG_WRITER"
msgid "WinWord to %PRODUCTNAME Writer or reverse"
msgstr "WinWord to %PRODUCTNAME መጻፊያ ወይንም ወደ ነበረበት መመለሻ"
#. ZJRKY
-#: cui/inc/strings.hrc:255
+#: cui/inc/strings.hrc:260
msgctxt "RID_SVXSTR_CHG_CALC"
msgid "Excel to %PRODUCTNAME Calc or reverse"
msgstr "Excel to %PRODUCTNAME ሰንጠረዥ ወይንም ወደ ነበረበት መመለሻ"
#. VmuND
-#: cui/inc/strings.hrc:256
+#: cui/inc/strings.hrc:261
msgctxt "RID_SVXSTR_CHG_IMPRESS"
msgid "PowerPoint to %PRODUCTNAME Impress or reverse"
msgstr "PowerPoint to %PRODUCTNAME ማስደነቂያ ወይንም ወደ ነበረበት መመለሻ"
#. sE8as
-#: cui/inc/strings.hrc:257
+#: cui/inc/strings.hrc:262
msgctxt "RID_SVXSTR_CHG_SMARTART"
msgid "SmartArt to %PRODUCTNAME shapes or reverse"
msgstr "SmartArt to %PRODUCTNAME ቅርጾች ወይንም ወደ ነበረበት መመለሻ"
#. AEgXY
-#: cui/inc/strings.hrc:258
+#: cui/inc/strings.hrc:263
msgctxt "RID_SVXSTR_CHG_VISIO"
msgid "Visio to %PRODUCTNAME Draw or reverse"
msgstr "Visio ወደ %PRODUCTNAME መሳያ ወይንም መገልበጫ:"
#. Zarkq
-#: cui/inc/strings.hrc:259
+#: cui/inc/strings.hrc:264
msgctxt "RID_SVXSTR_CHG_PDF"
msgid "PDF to %PRODUCTNAME Draw or reverse"
msgstr "PDF ወደ %PRODUCTNAME መሳያ ወይንም መገልነጫ:"
#. dDtDU
-#: cui/inc/strings.hrc:261
+#: cui/inc/strings.hrc:266
msgctxt "RID_SVXSTR_OPT_DOUBLE_DICTS"
msgid ""
"The specified name already exists.\n"
@@ -1465,7 +1495,7 @@ msgstr ""
"እባክዎን አዲስ ስም ያስገቡ"
#. kzhkA
-#: cui/inc/strings.hrc:262
+#: cui/inc/strings.hrc:267
msgctxt "RID_SVXSTR_OPT_INVALID_DICT_NAME"
msgid ""
"The specified name is invalid.\n"
@@ -1487,133 +1517,133 @@ msgstr ""
#. For example, adding "Grammar By" word "fund" to the new user
#. word "crowdfund", the spell checker will recognize "crowdfund"
#. with suffixes of "fund": "crowdfunding", "crowdfund's" etc.
-#: cui/inc/strings.hrc:277
+#: cui/inc/strings.hrc:282
msgctxt "RID_SVXSTR_OPT_GRAMMAR_BY"
msgid "~Grammar By"
msgstr "~ሰዋሰው በ"
#. LPb5d
-#: cui/inc/strings.hrc:278
+#: cui/inc/strings.hrc:283
msgctxt "STR_MODIFY"
msgid "~Replace"
msgstr "~መቀየሪያ"
#. anivV
-#: cui/inc/strings.hrc:279
+#: cui/inc/strings.hrc:284
msgctxt "RID_SVXSTR_CONFIRM_SET_LANGUAGE"
msgid "Do you want to change the '%1' dictionary language?"
msgstr "መቀየር ይፈልጋሉ '%1' የቋንቋውን መዝገበ ቃላት"
#. XEFrB
-#: cui/inc/strings.hrc:281
+#: cui/inc/strings.hrc:286
msgctxt "RID_SVXSTR_COLOR_CONFIG_DELETE"
msgid "Do you really want to delete the color scheme?"
msgstr "በእርግጥ የቀለም እቅዱን ማጥፋት ይፈልጋሉ?"
#. ybdED
-#: cui/inc/strings.hrc:282
+#: cui/inc/strings.hrc:287
msgctxt "RID_SVXSTR_COLOR_CONFIG_DELETE_TITLE"
msgid "Color Scheme Deletion"
msgstr "የ ቀለም እቅድ ማጥፊያ"
#. DoNBE
-#: cui/inc/strings.hrc:283
+#: cui/inc/strings.hrc:288
msgctxt "RID_SVXSTR_COLOR_CONFIG_SAVE1"
msgid "Save scheme"
msgstr "እቅዱን ማስቀመጫ"
#. tFrki
-#: cui/inc/strings.hrc:284
+#: cui/inc/strings.hrc:289
msgctxt "RID_SVXSTR_COLOR_CONFIG_SAVE2"
msgid "Name of color scheme"
msgstr "የ ቀለም ገጽታ ስም"
#. BAGbe
-#: cui/inc/strings.hrc:286
+#: cui/inc/strings.hrc:291
msgctxt "RID_SVXSTR_SPELL"
msgid "Spelling"
msgstr "ፊደል ማረሚያ"
#. uBohu
-#: cui/inc/strings.hrc:287
+#: cui/inc/strings.hrc:292
msgctxt "RID_SVXSTR_HYPH"
msgid "Hyphenation"
msgstr "ጭረት"
#. XGkt6
-#: cui/inc/strings.hrc:288
+#: cui/inc/strings.hrc:293
msgctxt "RID_SVXSTR_THES"
msgid "Thesaurus"
msgstr "ተመሳሳይ"
#. EFrDA
-#: cui/inc/strings.hrc:289
+#: cui/inc/strings.hrc:294
msgctxt "RID_SVXSTR_GRAMMAR"
msgid "Grammar"
msgstr "ሰዋሰው"
#. zbEv9
-#: cui/inc/strings.hrc:290
+#: cui/inc/strings.hrc:295
msgctxt "RID_SVXSTR_CAPITAL_WORDS"
msgid "Check uppercase words"
msgstr "መመርመሪያ በ ላይኛው ጉዳይ ፊደል የ ተጻፈ ቃላት"
#. BbDNe
-#: cui/inc/strings.hrc:291
+#: cui/inc/strings.hrc:296
msgctxt "RID_SVXSTR_WORDS_WITH_DIGITS"
msgid "Check words with numbers "
msgstr "ቃሎች ከ ቁጥር ጋር መመርመሪያ "
#. bPDyB
-#: cui/inc/strings.hrc:292
+#: cui/inc/strings.hrc:297
msgctxt "RID_SVXSTR_SPELL_SPECIAL"
msgid "Check special regions"
msgstr "መመርመሪያ የ ተለዩ አካባቢዎች"
#. XjifG
-#: cui/inc/strings.hrc:293
+#: cui/inc/strings.hrc:298
msgctxt "RID_SVXSTR_SPELL_AUTO"
msgid "Check spelling as you type"
msgstr "ፊደል ማረሚያ በሚጽፉ ጊዜ"
#. J3ENq
-#: cui/inc/strings.hrc:294
+#: cui/inc/strings.hrc:299
msgctxt "RID_SVXSTR_GRAMMAR_AUTO"
msgid "Check grammar as you type"
msgstr "መመርመሪያ ሰዋሰው በሚጽፉ ጊዜ"
#. f6v3L
-#: cui/inc/strings.hrc:295
+#: cui/inc/strings.hrc:300
msgctxt "RID_SVXSTR_NUM_MIN_WORDLEN"
msgid "Minimal number of characters for hyphenation: "
msgstr "አነስተኛ ቁጥር ለ ጭረት ባህሪዎች: "
#. BCrEf
-#: cui/inc/strings.hrc:296
+#: cui/inc/strings.hrc:301
msgctxt "RID_SVXSTR_NUM_PRE_BREAK"
msgid "Characters before line break: "
msgstr "ባህሪው ከ መስመር መጨረሻው በፊት: "
#. Kgioh
-#: cui/inc/strings.hrc:297
+#: cui/inc/strings.hrc:302
msgctxt "RID_SVXSTR_NUM_POST_BREAK"
msgid "Characters after line break: "
msgstr "ባህሪው ከ መስመር መጨረሻው በኋላ: "
#. AewrH
-#: cui/inc/strings.hrc:298
+#: cui/inc/strings.hrc:303
msgctxt "RID_SVXSTR_HYPH_AUTO"
msgid "Hyphenate without inquiry"
msgstr "ጭረት ሳይጠየቅ መፈጸሚያ"
#. qCKn9
-#: cui/inc/strings.hrc:299
+#: cui/inc/strings.hrc:304
msgctxt "RID_SVXSTR_HYPH_SPECIAL"
msgid "Hyphenate special regions"
msgstr "ጭረት የ ተለዩ አካባቢዎች"
#. weKUF
-#: cui/inc/strings.hrc:301
+#: cui/inc/strings.hrc:306
msgctxt "RID_SVXSTR_JRE_NOT_RECOGNIZED"
msgid ""
"The folder you selected does not contain a Java runtime environment.\n"
@@ -1623,7 +1653,7 @@ msgstr ""
"እባክዎን የተለየ ፎልደር ይምረጡ"
#. jFLdB
-#: cui/inc/strings.hrc:302
+#: cui/inc/strings.hrc:307
msgctxt "RID_SVXSTR_JRE_FAILED_VERSION"
msgid ""
"The Java runtime environment you selected is not the required version.\n"
@@ -1633,13 +1663,13 @@ msgstr ""
"እባክዎን የተለየ ፎልደር ይምረጡ"
#. 79uiz
-#: cui/inc/strings.hrc:303
+#: cui/inc/strings.hrc:308
msgctxt "RID_SVXSTR_JAVA_START_PARAM"
msgid "Edit Parameter"
msgstr "ደንብ ማረሚያ"
#. fsbAN
-#: cui/inc/strings.hrc:305
+#: cui/inc/strings.hrc:310
msgctxt "RID_SVXSTR_OPT_PROXYPORTS"
msgid ""
"Invalid value!\n"
@@ -1651,37 +1681,37 @@ msgstr ""
"ከፍተኛው ዋጋ ለ port number is 65535."
#. UCFD6
-#: cui/inc/strings.hrc:307
+#: cui/inc/strings.hrc:312
msgctxt "RID_SVXSTR_DESC_GRADIENT"
msgid "Please enter a name for the gradient:"
msgstr "እባክዎን ለአዲሱ gradient ስም ያስገቡ:"
#. UDvKR
-#: cui/inc/strings.hrc:308
+#: cui/inc/strings.hrc:313
msgctxt "RID_SVXSTR_DESC_NEW_BITMAP"
msgid "Please enter a name for the bitmap:"
msgstr "እባክዎን ለአዲሱ bitmap ስም ያስገቡ:"
#. QXqJD
-#: cui/inc/strings.hrc:309
+#: cui/inc/strings.hrc:314
msgctxt "RID_SVXSTR_DESC_EXT_BITMAP"
msgid "Please enter a name for the external bitmap:"
msgstr "እባክዎን ስም ያስገቡ ለውጪው bitmap:"
#. SrS6X
-#: cui/inc/strings.hrc:310
+#: cui/inc/strings.hrc:315
msgctxt "RID_SVXSTR_DESC_NEW_PATTERN"
msgid "Please enter a name for the pattern:"
msgstr "እባክዎን ለ አዲሱ ንድፍ ስም ያስገቡ:"
#. yD7AW
-#: cui/inc/strings.hrc:311
+#: cui/inc/strings.hrc:316
msgctxt "RID_SVXSTR_DESC_LINESTYLE"
msgid "Please enter a name for the line style:"
msgstr "እባክዎን ለ አዲሱ መስመር ዘዴ ስም ያስገቡ:"
#. FQDrh
-#: cui/inc/strings.hrc:312
+#: cui/inc/strings.hrc:317
msgctxt "RID_SVXSTR_ASK_CHANGE_LINESTYLE"
msgid ""
"The line style was modified without saving. \n"
@@ -1691,398 +1721,398 @@ msgstr ""
"የ ተመረጠውን የ መስመር ዘዴ ያሻሽሉ ወይንም አዲስ የ መስመር ዘዴ ይጨምሩ"
#. Z5Dkg
-#: cui/inc/strings.hrc:313
+#: cui/inc/strings.hrc:318
msgctxt "RID_SVXSTR_DESC_HATCH"
msgid "Please enter a name for the hatching:"
msgstr "እባክዎን ለ በርካታ መስመር ስም ያስገቡ:"
#. rvyBi
-#: cui/inc/strings.hrc:314
+#: cui/inc/strings.hrc:319
msgctxt "RID_SVXSTR_CHANGE"
msgid "Modify"
msgstr "ማሻሻያ"
#. ZDhBm
-#: cui/inc/strings.hrc:315
+#: cui/inc/strings.hrc:320
msgctxt "RID_SVXSTR_ADD"
msgid "Add"
msgstr "መጨመሪያ"
#. QgAFH
-#: cui/inc/strings.hrc:316
+#: cui/inc/strings.hrc:321
msgctxt "RID_SVXSTR_DESC_COLOR"
msgid "Please enter a name for the new color:"
msgstr "እባክዎን ለ አዲሱ ቀለም ስም ያስገቡ:"
#. GKnJR
-#: cui/inc/strings.hrc:317
+#: cui/inc/strings.hrc:322
msgctxt "RID_SVXSTR_TABLE"
msgid "Table"
msgstr "ሰንጠረዥ"
#. J6FBw
-#: cui/inc/strings.hrc:318
+#: cui/inc/strings.hrc:323
msgctxt "RID_SVXSTR_DESC_LINEEND"
msgid "Please enter a name for the new arrowhead:"
msgstr "እባክዎን ለ አዲሱ ቀስት ራስጌ ስም ያስገቡ:"
#. xD9BU
-#: cui/inc/strings.hrc:319
+#: cui/inc/strings.hrc:324
msgctxt "RID_SVXSTR_CHARNAME_NOSTYLE"
msgid "No %1"
msgstr "አይ %1"
#. GVkFG
-#: cui/inc/strings.hrc:320
+#: cui/inc/strings.hrc:325
msgctxt "RID_SVXSTR_CHARNAME_FAMILY"
msgid "Family:"
msgstr "ቤተሰብ:"
#. 6uDkp
-#: cui/inc/strings.hrc:321
+#: cui/inc/strings.hrc:326
msgctxt "RID_SVXSTR_CHARNAME_FONT"
msgid "Font:"
msgstr "ፊደል:"
#. KFXAV
-#: cui/inc/strings.hrc:322
+#: cui/inc/strings.hrc:327
msgctxt "RID_SVXSTR_CHARNAME_STYLE"
msgid "Style:"
msgstr "ዘዴ:"
#. gDu75
-#: cui/inc/strings.hrc:323
+#: cui/inc/strings.hrc:328
msgctxt "RID_SVXSTR_CHARNAME_TYPEFACE"
msgid "Typeface:"
msgstr "Typeface:"
#. BcWHA
-#: cui/inc/strings.hrc:324
+#: cui/inc/strings.hrc:329
msgctxt "RID_SVXSTR_USE_REPLACE"
msgid "Use replacement table"
msgstr "ሰንጠረዥ መቀየሪያ ይጠቀሙ"
#. L8BEE
-#: cui/inc/strings.hrc:325
+#: cui/inc/strings.hrc:330
msgctxt "RID_SVXSTR_CPTL_STT_WORD"
msgid "Correct TWo INitial CApitals"
msgstr "Words with TWo INitial CApitals"
#. p5h3s
-#: cui/inc/strings.hrc:326
+#: cui/inc/strings.hrc:331
msgctxt "RID_SVXSTR_CPTL_STT_SENT"
msgid "Capitalize first letter of every sentence"
msgstr "ሁሉንም አረፍተ ነገር በ አቢይ ፊደል መጀመሪያውን መጻፊያ"
#. prrWd
-#: cui/inc/strings.hrc:327
+#: cui/inc/strings.hrc:332
msgctxt "RID_SVXSTR_BOLD_UNDER"
msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
msgstr "ራሱ በራሱ *ማድመቂያ*: /ማዝመሚያ/: -በላዩ ላይ መሰረዣ- እና _ከ ስሩ ማስመሪያ_"
#. a89xT
-#: cui/inc/strings.hrc:328
+#: cui/inc/strings.hrc:333
msgctxt "RID_SVXSTR_NO_DBL_SPACES"
msgid "Ignore double spaces"
msgstr "ድርብ ክፍተት መተው"
#. qEA6h
-#: cui/inc/strings.hrc:329
+#: cui/inc/strings.hrc:334
msgctxt "RID_SVXSTR_DETECT_URL"
msgid "URL Recognition"
msgstr "URL Recognition"
#. JfySE
-#: cui/inc/strings.hrc:330
+#: cui/inc/strings.hrc:335
msgctxt "RID_SVXSTR_DASH"
msgid "Replace dashes"
msgstr "ዳሾችን መቀየሪያ"
#. u2BuA
-#: cui/inc/strings.hrc:331
+#: cui/inc/strings.hrc:336
msgctxt "RID_SVXSTR_CORRECT_ACCIDENTAL_CAPS_LOCK"
msgid "Correct accidental use of cAPS LOCK key"
msgstr "የ cAPS LOCK key በስህተት ሲጠቀሙ ማረሚያ"
#. GZqG9
-#: cui/inc/strings.hrc:332
+#: cui/inc/strings.hrc:337
msgctxt "RID_SVXSTR_NON_BREAK_SPACE"
msgid "Add non-breaking space before specific punctuation marks in French text"
msgstr "መጨመሪያ ምንም-ያልተሰበረ ክፍተት ከ ስርአተ ነጥብ በፊት ምልክት ማድረጊያ ለ ፈረንሳይኛ ጽሁፍ"
#. NDmW9
-#: cui/inc/strings.hrc:333
+#: cui/inc/strings.hrc:338
msgctxt "RID_SVXSTR_ORDINAL"
msgid "Format ordinal numbers suffixes (1st -> 1^st)"
msgstr "መደበኛ የ ቁጥር መድረሻ አቀራረብ (1st -> 1^st)"
#. 6oHuF
-#: cui/inc/strings.hrc:334
+#: cui/inc/strings.hrc:339
msgctxt "RID_SVXSTR_OLD_HUNGARIAN"
msgid "Transliterate to Old Hungarian if the text direction is from right to left"
msgstr ""
#. CNtDd
-#: cui/inc/strings.hrc:335
+#: cui/inc/strings.hrc:340
msgctxt "RID_SVXSTR_ANGLE_QUOTES"
msgid "Replace << and >> with angle quotes"
msgstr "መቀየሪያ << እና >> በ አንግል ጥቅስ ምልክት"
#. Rc6Zg
-#: cui/inc/strings.hrc:336
+#: cui/inc/strings.hrc:341
msgctxt "RID_SVXSTR_DEL_EMPTY_PARA"
msgid "Remove blank paragraphs"
msgstr "ባዶ አንቀጾችን ማስወገጃ"
#. F6HCc
-#: cui/inc/strings.hrc:337
+#: cui/inc/strings.hrc:342
msgctxt "RID_SVXSTR_USER_STYLE"
msgid "Replace Custom Styles"
msgstr "ዘዴዎች ማስተካከያ መቀየሪያ"
#. itDJG
-#: cui/inc/strings.hrc:338
+#: cui/inc/strings.hrc:343
msgctxt "RID_SVXSTR_BULLET"
msgid "Replace bullets with: %1"
msgstr "ነጥቦች መቀየሪያ በ: %1"
#. BvroE
#. To translators: %1 will be replaced with a percentage, e.g. "10%"
-#: cui/inc/strings.hrc:340
+#: cui/inc/strings.hrc:345
msgctxt "RID_SVXSTR_RIGHT_MARGIN"
msgid "Combine single line paragraphs if length greater than %1"
msgstr "ነጠላ መስመር አንቀጾችን መቀላቀያ እርዝመቱ ከዚህ በላይ ከሆነ %1"
#. M9kNQ
-#: cui/inc/strings.hrc:341
+#: cui/inc/strings.hrc:346
msgctxt "RID_SVXSTR_NUM"
msgid "Bulleted and numbered lists. Bullet symbol: %1"
msgstr "የ ነጥቦች እና ቁጥር የ ተሰጠው ዝርዝር: የ ነጥቦች ምልክት: %1"
#. BJVGT
-#: cui/inc/strings.hrc:342
+#: cui/inc/strings.hrc:347
msgctxt "RID_SVXSTR_BORDER"
msgid "Apply border"
msgstr "ድንበር መፈጸሚያ"
#. bXpcq
-#: cui/inc/strings.hrc:343
+#: cui/inc/strings.hrc:348
msgctxt "RID_SVXSTR_CREATE_TABLE"
msgid "Create table"
msgstr "ሰንጠረዥ መፍጠሪያ"
#. RvEBo
-#: cui/inc/strings.hrc:344
+#: cui/inc/strings.hrc:349
msgctxt "RID_SVXSTR_REPLACE_TEMPLATES"
msgid "Apply Styles"
msgstr "ዘዴዎች መፈጸሚያ"
#. 6MGUe
-#: cui/inc/strings.hrc:345
+#: cui/inc/strings.hrc:350
msgctxt "RID_SVXSTR_DEL_SPACES_AT_STT_END"
msgid "Delete spaces and tabs at beginning and end of paragraph"
msgstr "በ አንቀጾች መጀመሪያ እና መጨረሻ ክፍተቶችን እና tabs ን ማጥፊያ"
#. R9Kke
-#: cui/inc/strings.hrc:346
+#: cui/inc/strings.hrc:351
msgctxt "RID_SVXSTR_DEL_SPACES_BETWEEN_LINES"
msgid "Delete spaces and tabs at end and start of line"
msgstr "በ መስመር መጀመሪያ እና መጨረሻ ክፍተቶችን እና tabs ን ማጥፊያ"
#. GFpkR
-#: cui/inc/strings.hrc:347
+#: cui/inc/strings.hrc:352
msgctxt "RID_SVXSTR_CONNECTOR"
msgid "Connector"
msgstr "አገናኝ"
#. XDp8d
-#: cui/inc/strings.hrc:348
+#: cui/inc/strings.hrc:353
msgctxt "RID_SVXSTR_DIMENSION_LINE"
msgid "Dimension line"
msgstr "የ አቅጣጫ መስመር"
#. Mxt3D
-#: cui/inc/strings.hrc:349
+#: cui/inc/strings.hrc:354
msgctxt "RID_SVXSTR_STARTQUOTE"
msgid "Start Quote"
msgstr "የ ጥቅስ መጀመሪያ"
#. o8nY6
-#: cui/inc/strings.hrc:350
+#: cui/inc/strings.hrc:355
msgctxt "RID_SVXSTR_ENDQUOTE"
msgid "End Quote"
msgstr "የ ጥቅስ መጨረሻ"
#. cZX7G
-#: cui/inc/strings.hrc:352
+#: cui/inc/strings.hrc:357
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "ጥላ የለም"
#. bzAHG
-#: cui/inc/strings.hrc:353
+#: cui/inc/strings.hrc:358
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "ከ ታች በ ቀኝ በኩል ጥላ ማጥላት"
#. FjBGC
-#: cui/inc/strings.hrc:354
+#: cui/inc/strings.hrc:359
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "ከ ላይ በ ቀኝ በኩል ጥላ ማጥላት"
#. 5BkoC
-#: cui/inc/strings.hrc:355
+#: cui/inc/strings.hrc:360
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "ከ ታች በ ግራ በኩል ጥላ ማጥላት"
#. GYB8M
-#: cui/inc/strings.hrc:356
+#: cui/inc/strings.hrc:361
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "ከ ላይ በ ግራ በኩል ጥላ ማጥላት"
#. xTvak
-#: cui/inc/strings.hrc:357
+#: cui/inc/strings.hrc:362
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "የ ተፈረመው በ: %1"
#. Uc7wm
-#: cui/inc/strings.hrc:359
+#: cui/inc/strings.hrc:364
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "ሁሉንም ፋይሎች"
#. 8bnrf
-#: cui/inc/strings.hrc:361
+#: cui/inc/strings.hrc:366
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr "የ ተመዘገቡ ዳታቤዞች"
#. xySty
-#: cui/inc/strings.hrc:363
+#: cui/inc/strings.hrc:368
msgctxt "RID_SVXSTR_CANNOTCONVERTURL_ERR"
msgid "The URL <%1> cannot be converted to a filesystem path."
msgstr "ይህን URL <%1> ወደ ፋይል ስርአት መቀየር አይቻልም:"
#. WHVhx
-#: cui/inc/strings.hrc:365
+#: cui/inc/strings.hrc:370
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2021 LibreOffice contributors."
msgstr "Copyright © 2000–2021 LibreOffice contributors."
#. GesDU
-#: cui/inc/strings.hrc:366
+#: cui/inc/strings.hrc:371
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
#. WCnhx
-#: cui/inc/strings.hrc:367
+#: cui/inc/strings.hrc:372
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "ይህ ስርጭት የቀረበው በ %OOOVENDOR."
#. Lz9nx
-#: cui/inc/strings.hrc:368
+#: cui/inc/strings.hrc:373
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "የ ሊብሬ ቢሮ መሰረት OpenOffice.org ነው"
#. 9aeNR
-#: cui/inc/strings.hrc:369
+#: cui/inc/strings.hrc:374
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"
#. q5Myk
-#: cui/inc/strings.hrc:370
+#: cui/inc/strings.hrc:375
msgctxt "aboutdialog|uilocale"
msgid "UI: $LOCALE"
msgstr "UI: $LOCALE"
#. 3vXzF
-#: cui/inc/strings.hrc:372
+#: cui/inc/strings.hrc:377
msgctxt "optpathspage|editpaths"
msgid "Edit Paths: %1"
msgstr "መንገዶችን ማረሚያ: %1"
#. 8ZaCL
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Label"
msgstr "ምልክት"
#. GceL6
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Command"
msgstr "ትእዛዝ"
#. dRqYc
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Tooltip"
msgstr "ፍንጭ"
#. 3FZFt
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_QRCODEDATALONG"
msgid "The URL or text is too long for the current error correction level. Either shorten the text or decrease the correction level."
msgstr ""
#. AD8QJ
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_DELETEUSERCOLOR1"
msgid "You can only delete user-defined colors"
msgstr "እርስዎ ማጥፋት የሚችሉት በ ተጠቃሚ-የ ተገለጸውን ቀለም ብቻ ነው:"
#. 4LWGV
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_DELETEUSERCOLOR2"
msgid "Please select the color to delete"
msgstr "እባክዎን ማጥፋት የሚፈጉትን ቀለም ይምረጡ:"
#. FjQQ5
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLBUTTON"
msgid "Install"
msgstr "መግጠሚያ"
#. 2GUFq
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLEDBUTTON"
msgid "Installed"
msgstr "ተገጥሟል"
#. TmK5f
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLING"
msgid "Installing"
msgstr "በ መግጠም ላይ"
#. izdAK
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:390
msgctxt "RID_SVXSTR_ADDITIONS_SEARCHING"
msgid "Searching..."
msgstr "በ መፈለግ ላይ..."
#. HYT6K
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_ADDITIONS_LOADING"
msgid "Loading..."
msgstr "በ መጫን ላይ..."
#. 88Ect
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:392
msgctxt "RID_SVXSTR_ADDITIONS_DIALOG_TITLE_PREFIX"
msgid "Extensions"
msgstr "ተጨማሪዎች"
#. KTtQE
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:394
msgctxt "RID_SVXSTR_UI_APPLYALL"
msgid "Apply to %MODULE"
msgstr "መፈጸሚያ ወደ %MODULE"
@@ -8982,19 +9012,19 @@ msgid "Assigns macros to program events. The assigned macro runs automatically e
msgstr "ወደ ፕሮግራም ሁኔታዎች ማክሮስ መመደቢያ: የ ተመደበው ማክሮስ ራሱ በራሱ ሁኔታው ሲሟላ ይሄዳል "
#. BuBeE
-#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+#: cui/uiconfig/ui/fileextcheckdialog.ui:31
msgctxt "FileExtCheck|Checkbox"
msgid "_Perform check on startup"
msgstr ""
#. Bjfzv
-#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+#: cui/uiconfig/ui/fileextcheckdialog.ui:35
msgctxt "FileExtCheck|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
#. mGEv5
-#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+#: cui/uiconfig/ui/fileextcheckdialog.ui:63
msgctxt "FileExtCheckDialog|Ok_Button"
msgid "_OK"
msgstr ""
@@ -11976,50 +12006,26 @@ msgctxt "macroselectordialog|MacroSelectorDialog"
msgid "Macro Selector"
msgstr "የ Macro መራጭ"
-#. sgKzf
-#: cui/uiconfig/ui/macroselectordialog.ui:42
-msgctxt "macroselectordialog|add"
-msgid "Add"
-msgstr "መጨመሪያ"
-
#. fpfnw
-#: cui/uiconfig/ui/macroselectordialog.ui:135
+#: cui/uiconfig/ui/macroselectordialog.ui:108
msgctxt "macroselectordialog|helpmacro"
msgid "Select the library that contains the macro you want. Then select the macro under 'Macro name'."
msgstr "የሚፈልጉትን macro የያዘውን መጻህፍት ቤት ይምረጡ:፡ ከዚያም macro ይምረጡ ከ ስሙ ስር 'የ Macro ስም'."
-#. nVAE3
-#: cui/uiconfig/ui/macroselectordialog.ui:151
-msgctxt "macroselectordialog|helptoolbar"
-msgid "To add a command to a toolbar, select the category and then the command. Then drag the command to the Commands list of the Toolbars tab page in the Customize dialog."
-msgstr "ወደ እቃ መደርደሪያ ትእዛዝ ለ መጨመር: ምድብ ይምረጡ እና ትእዛዝ ክዚያም ትእዛዙን ይጎትቱ ወደ ትእዛዝ ዝርዝር ከ እቃ መደርደሪያ tab ገጽ ውስጥ ንግግር ማስተካከያ"
-
#. SuCLc
-#: cui/uiconfig/ui/macroselectordialog.ui:230
+#: cui/uiconfig/ui/macroselectordialog.ui:182
msgctxt "macroselectordialog|libraryft"
msgid "Library"
msgstr "መጻሕፍት ቤት"
-#. ah4q5
-#: cui/uiconfig/ui/macroselectordialog.ui:245
-msgctxt "macroselectordialog|categoryft"
-msgid "Category"
-msgstr "ምድብ"
-
#. QvKmS
-#: cui/uiconfig/ui/macroselectordialog.ui:318
+#: cui/uiconfig/ui/macroselectordialog.ui:243
msgctxt "macroselectordialog|macronameft"
msgid "Macro Name"
msgstr "የ Macro ስም"
-#. 2pAF6
-#: cui/uiconfig/ui/macroselectordialog.ui:334
-msgctxt "macroselectordialog|commandsft"
-msgid "Commands"
-msgstr "ትእዛዞች"
-
#. gsUCh
-#: cui/uiconfig/ui/macroselectordialog.ui:397
+#: cui/uiconfig/ui/macroselectordialog.ui:297
msgctxt "macroselectordialog|label1"
msgid "Description"
msgstr "መግለጫ"
@@ -17424,146 +17430,146 @@ msgid "Properties"
msgstr "ባህሪዎች"
#. FTBKZ
-#: cui/uiconfig/ui/paraindentspacing.ui:73
+#: cui/uiconfig/ui/paraindentspacing.ui:72
msgctxt "paraindentspacing|drawingareaWN_EXAMPLE-atkobject"
msgid "Example"
msgstr "ለምሳሌ"
#. saei7
-#: cui/uiconfig/ui/paraindentspacing.ui:115
+#: cui/uiconfig/ui/paraindentspacing.ui:113
msgctxt "paraindentspacing|labelFT_LEFTINDENT"
msgid "_Before text:"
msgstr "ከ ጽሁፍ _በፊት:"
#. iV7A5
-#: cui/uiconfig/ui/paraindentspacing.ui:129
+#: cui/uiconfig/ui/paraindentspacing.ui:127
msgctxt "paraindentspacing|labelFT_RIGHTINDENT"
msgid "After _text:"
msgstr "ከ _ጽሁፍ በኋላ:"
#. 396YJ
-#: cui/uiconfig/ui/paraindentspacing.ui:143
+#: cui/uiconfig/ui/paraindentspacing.ui:141
msgctxt "paraindentspacing|labelFT_FLINEINDENT"
msgid "_First line:"
msgstr "_መጀመሪያ መስመር:"
#. jwo9n
-#: cui/uiconfig/ui/paraindentspacing.ui:155
+#: cui/uiconfig/ui/paraindentspacing.ui:153
msgctxt "paraindentspacing|checkCB_AUTO"
msgid "_Automatic"
msgstr "_ራሱ በራሱ"
#. NE9g8
-#: cui/uiconfig/ui/paraindentspacing.ui:157
+#: cui/uiconfig/ui/paraindentspacing.ui:155
msgctxt "paraindentspacing|checkCB_AUTO|tooltip_text"
msgid "Indent paragraph automatically according to font size and line spacing."
msgstr ""
#. L9iw7
-#: cui/uiconfig/ui/paraindentspacing.ui:210
+#: cui/uiconfig/ui/paraindentspacing.ui:208
msgctxt "paraindentspacing|labelST_LINEDIST_ABS"
msgid "Fixed"
msgstr "የተወሰነ"
#. qwSsb
-#: cui/uiconfig/ui/paraindentspacing.ui:223
+#: cui/uiconfig/ui/paraindentspacing.ui:221
msgctxt "paraindentspacing|label1"
msgid "Indent"
msgstr "ማስረጊያ"
#. RMdgy
-#: cui/uiconfig/ui/paraindentspacing.ui:260
+#: cui/uiconfig/ui/paraindentspacing.ui:258
msgctxt "paraindentspacing|labelFT_TOPDIST"
msgid "Ab_ove paragraph:"
msgstr "ከ አንቀጽ በ _ላይ:"
#. mTi8C
-#: cui/uiconfig/ui/paraindentspacing.ui:274
+#: cui/uiconfig/ui/paraindentspacing.ui:272
msgctxt "paraindentspacing|labelFT_BOTTOMDIST"
msgid "Below _paragraph:"
msgstr "ከ _አንቀጽ በ ታች:"
#. AdWVr
-#: cui/uiconfig/ui/paraindentspacing.ui:319
+#: cui/uiconfig/ui/paraindentspacing.ui:317
msgctxt "paraindentspacing|checkCB_CONTEXTUALSPACING"
msgid "Do not add space between paragraphs of the same style"
msgstr ""
#. hWQWQ
-#: cui/uiconfig/ui/paraindentspacing.ui:338
+#: cui/uiconfig/ui/paraindentspacing.ui:336
msgctxt "paraindentspacing|labelFL_VERTALIGN"
msgid "Spacing"
msgstr "ክፍተት"
#. vuFhh
-#: cui/uiconfig/ui/paraindentspacing.ui:380
+#: cui/uiconfig/ui/paraindentspacing.ui:378
msgctxt "paraindentspacing|liststoreLB_LINEDIST"
msgid "Single"
msgstr "ነጠላ"
#. 5qPNL
-#: cui/uiconfig/ui/paraindentspacing.ui:381
+#: cui/uiconfig/ui/paraindentspacing.ui:379
msgctxt "paraindentspacing|liststoreLB_LINEDIST"
msgid "1.15 Lines"
msgstr "1.15 መስመሮች"
#. GxLCB
-#: cui/uiconfig/ui/paraindentspacing.ui:382
+#: cui/uiconfig/ui/paraindentspacing.ui:380
msgctxt "paraindentspacing|liststoreLB_LINEDIST"
msgid "1.5 Lines"
msgstr "1.5 መስመሮች"
#. cD4RR
-#: cui/uiconfig/ui/paraindentspacing.ui:383
+#: cui/uiconfig/ui/paraindentspacing.ui:381
msgctxt "paraindentspacing|liststoreLB_LINEDIST"
msgid "Double"
msgstr "ድርብ"
#. 98csB
-#: cui/uiconfig/ui/paraindentspacing.ui:384
+#: cui/uiconfig/ui/paraindentspacing.ui:382
msgctxt "paraindentspacing|liststoreLB_LINEDIST"
msgid "Proportional"
msgstr "ተመጣጣኝ"
#. XN6ri
-#: cui/uiconfig/ui/paraindentspacing.ui:385
+#: cui/uiconfig/ui/paraindentspacing.ui:383
msgctxt "paraindentspacing|liststoreLB_LINEDIST"
msgid "At least"
msgstr "ቢያንስ"
#. NYeFC
-#: cui/uiconfig/ui/paraindentspacing.ui:386
+#: cui/uiconfig/ui/paraindentspacing.ui:384
msgctxt "paraindentspacing|liststoreLB_LINEDIST"
msgid "Leading"
msgstr "ቀዳሚ"
#. 9fdqy
-#: cui/uiconfig/ui/paraindentspacing.ui:399
+#: cui/uiconfig/ui/paraindentspacing.ui:397
msgctxt "paraindentspacing|labelFT_LINEDIST"
msgid "of"
msgstr "ከ"
#. Bga6L
-#: cui/uiconfig/ui/paraindentspacing.ui:462
+#: cui/uiconfig/ui/paraindentspacing.ui:460
msgctxt "paraindentspacing|checkCB_REGISTER"
msgid "Activate page li_ne-spacing"
msgstr "የ ገጽ መስ_መር-ክፍተት ማስጀመሪያ"
#. uesRM
#. xdds
-#: cui/uiconfig/ui/paraindentspacing.ui:465
+#: cui/uiconfig/ui/paraindentspacing.ui:463
msgctxt "paraindentspacing|checkCB_REGISTER|tooltip_text"
msgid "Applies page line-spacing (register-true) if set for the Page Style."
msgstr ""
#. MwL9j
-#: cui/uiconfig/ui/paraindentspacing.ui:470
+#: cui/uiconfig/ui/paraindentspacing.ui:469
msgctxt "paraindentspacing|extended_tip|checkCB_REGISTER"
msgid "If page line-spacing is activated and the Page style uses page line-spacing, then this paragraph will align to an invisible vertical page grid, regardless of their font size, so that each line is the same height."
msgstr ""
#. GxJB6
-#: cui/uiconfig/ui/paraindentspacing.ui:486
+#: cui/uiconfig/ui/paraindentspacing.ui:485
msgctxt "paraindentspacing|labelFL_PROPERTIES"
msgid "Line Spacing"
msgstr "የ መስመር ክፍተት"
diff --git a/source/am/dictionaries/mn_MN.po b/source/am/dictionaries/mn_MN.po
new file mode 100644
index 00000000000..b53104d879a
--- /dev/null
+++ b/source/am/dictionaries/mn_MN.po
@@ -0,0 +1,23 @@
+#. extracted from dictionaries/mn_MN
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2021-04-27 17:02+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"
+
+#. UsF8V
+#: description.xml
+msgctxt ""
+"description.xml\n"
+"dispname\n"
+"description.text"
+msgid "Mongolian spelling and hyphenation dictionaries"
+msgstr ""
diff --git a/source/am/extensions/messages.po b/source/am/extensions/messages.po
index 24ff6d8dc7e..3a56e25348f 100644
--- a/source/am/extensions/messages.po
+++ b/source/am/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: 2021-02-22 17:16+0100\n"
+"POT-Creation-Date: 2021-04-27 17:02+0200\n"
"PO-Revision-Date: 2021-01-25 14:03+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/extensionsmessages/am/>\n"
@@ -3860,7 +3860,7 @@ msgid "User-defined field _3"
msgstr "በ ተጠቃሚ-የሚወሰነ ሜዳ _3"
#. x9s9K
-#: extensions/uiconfig/sbibliography/ui/generalpage.ui:880
+#: extensions/uiconfig/sbibliography/ui/generalpage.ui:910
msgctxt "generalpage|extended_tip|GeneralPage"
msgid "Insert, delete, edit, and organize records in the bibliography database."
msgstr "ማስገቢያ: ማጥፊያ: ማረሚያ: እና መዝገቦች ማደራጃ ለ ጽሁፎች ዝርዝር ዳታቤዝ "
diff --git a/source/am/extras/source/gallery/share.po b/source/am/extras/source/gallery/share.po
index 3aa4cf8e649..786ebd7f02f 100644
--- a/source/am/extras/source/gallery/share.po
+++ b/source/am/extras/source/gallery/share.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-06-22 17:23+0200\n"
+"POT-Creation-Date: 2021-04-27 17:02+0200\n"
"PO-Revision-Date: 2020-10-02 06:35+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://weblate.documentfoundation.org/projects/libo_ui-master/extrassourcegalleryshare/am/>\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: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1519741405.000000\n"
#. oG3Mq
@@ -34,6 +34,15 @@ msgctxt ""
msgid "Backgrounds"
msgstr "መደቦች"
+#. fVCP9
+#: gallery_names.ulf
+msgctxt ""
+"gallery_names.ulf\n"
+"bullets\n"
+"LngText.text"
+msgid "Bullets"
+msgstr ""
+
#. kuNKS
#: gallery_names.ulf
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/sbasic/shared.po b/source/am/helpcontent2/source/text/sbasic/shared.po
index bf7f293f641..773d33c88f7 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: 2021-04-06 14:45+0200\n"
+"POT-Creation-Date: 2021-04-27 17:02+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"
@@ -6163,15 +6163,6 @@ msgctxt ""
msgid "Meaning"
msgstr "ትርጉም"
-#. aAaQk
-#: 01170101.xhp
-msgctxt ""
-"01170101.xhp\n"
-"par_id3156199\n"
-"help.text"
-msgid "L"
-msgstr "L"
-
#. qAQoQ
#: 01170101.xhp
msgctxt ""
@@ -6181,15 +6172,6 @@ msgctxt ""
msgid "A text constant. This character cannot be modified by the user."
msgstr "የ ማይለዋወጥ ጽሁፍ: ይህ ባህሪ በ ተጠቃሚ ሊቀይር አይችልም"
-#. B9UEs
-#: 01170101.xhp
-msgctxt ""
-"01170101.xhp\n"
-"par_id3156016\n"
-"help.text"
-msgid "a"
-msgstr "a"
-
#. yEwjE
#: 01170101.xhp
msgctxt ""
@@ -6199,15 +6181,6 @@ msgctxt ""
msgid "The characters a-z can be entered here. If a capital letter is entered, it is automatically converted to a lowercase letter."
msgstr "እነዚህ ባህሪዎች a-z: እና 0-9 ማስገባት ይቻላል: አቢይ ባህሪዎችን ከ ገቡ ራሱ በራሱ ይቀየራል ወደ የ ታችኛው ጉዳይ ፊደሎች"
-#. 4G78g
-#: 01170101.xhp
-msgctxt ""
-"01170101.xhp\n"
-"par_id3148607\n"
-"help.text"
-msgid "A"
-msgstr "A"
-
#. Q86Zu
#: 01170101.xhp
msgctxt ""
@@ -6217,15 +6190,6 @@ msgctxt ""
msgid "The characters A-Z can be entered here. If a lowercase letter is entered, it is automatically converted to a capital letter"
msgstr "እነዚህ ባህሪዎች A-Z: እዚህ ማስገባት ይቻላል: የ ታችኛው ጉዳይ ፊደሎች ከ ገቡ ራሱ በራሱ ይቀየራል ወደ አቢይ ፊደሎች"
-#. BHyzL
-#: 01170101.xhp
-msgctxt ""
-"01170101.xhp\n"
-"par_id3149126\n"
-"help.text"
-msgid "c"
-msgstr "c"
-
#. tuUGC
#: 01170101.xhp
msgctxt ""
@@ -6235,15 +6199,6 @@ msgctxt ""
msgid "The characters a-z and 0-9 can be entered here. If a capital letter is entered, it is automatically converted to a lowercase letter."
msgstr "እነዚህ ባህሪዎች a-z: እና 0-9 ማስገባት ይቻላል: አቢይ ባህሪዎችን ከ ገቡ ራሱ በራሱ ይቀየራል ወደ ታችኛው ጉዳይ ፊደሎች"
-#. CPhFH
-#: 01170101.xhp
-msgctxt ""
-"01170101.xhp\n"
-"par_id3152870\n"
-"help.text"
-msgid "C"
-msgstr "C"
-
#. urwGP
#: 01170101.xhp
msgctxt ""
@@ -6253,15 +6208,6 @@ msgctxt ""
msgid "The characters a-z and 0-9 can be entered here. If a lowercase letter is entered, it is automatically converted to a capital letter"
msgstr "እነዚህ ባህሪዎች a-z: እና 0-9 እዚህ ማስገባት ይቻላል: የ ታችኛው ጉዳይ ፊደል ከ ገቡ ራሱ በራሱ ይቀየራል ወደ አቢይ ፊደሎች"
-#. Aqkhg
-#: 01170101.xhp
-msgctxt ""
-"01170101.xhp\n"
-"par_id3159230\n"
-"help.text"
-msgid "N"
-msgstr "N"
-
#. U4J7u
#: 01170101.xhp
msgctxt ""
@@ -6271,15 +6217,6 @@ msgctxt ""
msgid "Only the characters 0-9 can be entered."
msgstr "ከ 0-9 ያሉ ባህሪዎች ብቻ ማስገቢያ"
-#. wGGR7
-#: 01170101.xhp
-msgctxt ""
-"01170101.xhp\n"
-"par_id3149383\n"
-"help.text"
-msgid "x"
-msgstr "x"
-
#. Gpn4f
#: 01170101.xhp
msgctxt ""
@@ -6289,15 +6226,6 @@ msgctxt ""
msgid "All printable characters can be entered."
msgstr "ሁሉንም ሊታተም የሚችል ባህሪዎች ማስገባት ይችላሉ"
-#. 8vmjJ
-#: 01170101.xhp
-msgctxt ""
-"01170101.xhp\n"
-"par_id3146967\n"
-"help.text"
-msgid "X"
-msgstr "X"
-
#. SxFCq
#: 01170101.xhp
msgctxt ""
@@ -7846,14 +7774,14 @@ msgctxt ""
msgid "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/03000000.xhp\" name=\"Run-Time Functions\">Run-Time Functions</link></variable>"
msgstr "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/03000000.xhp\" name=\"Run-Time Functions\">የ ማስኬጃ-ጊዜ ተግባሮች</link></variable>"
-#. zPTqg
+#. Row63
#: 03000000.xhp
msgctxt ""
"03000000.xhp\n"
"par_id3148983\n"
"help.text"
-msgid "This section describes the Runtime Functions of <item type=\"productname\">%PRODUCTNAME</item> Basic."
-msgstr "ይህ ክፍል የሚገልጸው የ ተግባሮች ማስኬጃ ጊዜ ነው በ <item type=\"productname\">%PRODUCTNAME</item> Basic."
+msgid "This section describes the Runtime Functions of %PRODUCTNAME Basic."
+msgstr ""
#. YcBGc
#: 03010000.xhp
@@ -7945,59 +7873,32 @@ msgctxt ""
msgid "Displays a dialog box containing a message."
msgstr "መልእክቱን የያዘውን የንግግር ሳጥን ማሳያ"
-#. CkXFc
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"hd_id3153897\n"
-"help.text"
-msgid "Syntax:"
-msgstr "አገባብ:"
-
-#. 2FFy6
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3148664\n"
-"help.text"
-msgid "MsgBox Text As String [,Type As Integer [,Dialogtitle As String]] (As Statement) or MsgBox (Text As String [,Type As Integer [,Dialogtitle As String]]) (As Function)"
-msgstr "የ መልእክት ሳጥን ጽሁፍ እንደ ሀረግ [,ይጻፉ እንደ ኢንቲጀር [,የ ንግግር አርእስት እንደ ሀረግ]] (እንደ አረፍተ ነገር) ወይንም የ መልእክት ሳጥን (ጽሁፍ እንደ ሀረግ [,ይጻፉ እንደ ኢንቲጀር [,የ ንግግር አርእስት እንደ ሀረግ]]) (እንደ ተግባር)"
-
-#. mondB
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"hd_id3153361\n"
-"help.text"
-msgid "Parameter:"
-msgstr "ደንብ:"
-
-#. rAvFV
+#. 6pAvx
#: 03010101.xhp
msgctxt ""
"03010101.xhp\n"
"par_id3148798\n"
"help.text"
-msgid "<emph>Text</emph>: String expression displayed as a message in the dialog box. Line breaks can be inserted with Chr$(13)."
-msgstr "<emph>ጽሁፍ</emph>: የ ሀረግ መግለጫ የሚታየው እንደ መልእክት ነው በ ንግግር ሳጥ ውስጥ: የ መስመር መጨረሻ ማስገባት ይቻላል በ Chr$(13)."
+msgid "<emph>Prompt</emph>: String expression displayed as a message in the dialog box. Line breaks can be inserted with Chr$(13)."
+msgstr ""
-#. 5QBcb
+#. wNFv5
#: 03010101.xhp
msgctxt ""
"03010101.xhp\n"
"par_id3150769\n"
"help.text"
-msgid "<emph>DialogTitle</emph>: String expression displayed in the title bar of the dialog. If omitted, the title bar displays the name of the respective application."
-msgstr "<emph>የ ንግግር አርእስት</emph>: የ ሀረግ መግለጫ የሚታየው በ አርእስት መደርደሪያ ንግግር ላይ ነው: የማይታይ ከሆነ: የ አርእስት መደርደሪያ ስም ያሳያል እያንዳንዱን መተግበሪያ"
+msgid "<emph>Title</emph>: String expression displayed in the title bar of the dialog. If omitted, the title bar displays the name of the respective application."
+msgstr ""
-#. ZAZxw
+#. aC93y
#: 03010101.xhp
msgctxt ""
"03010101.xhp\n"
"par_id3147228\n"
"help.text"
-msgid "<emph>Type</emph>: Any integer expression that specifies the dialog type, as well as the number and type of buttons to display, and the icon type. <emph>Type</emph> represents a combination of bit patterns, that is, a combination of elements can be defined by adding their respective values:"
-msgstr "<emph>ይጻፉ</emph>: ማንኛውንም የ ኢንቲጀር መግለጫ የ ንግግር አይነት የሚገልጽ: እንዲሁም የ ቁጥር እና አይነት ቁልፎች ለ ማሳየት: እና የ ምልክት አይነት: <emph> አይነት </emph> የሚወክለው ጥምረት የ ቢት ድግግሞሽ ነው: እንዲሁም የ አካላቶች ጥምረት ማግኘት ይቻላል በ መጨመር ተገቢውን ዋጋዎች"
+msgid "<emph>Buttons</emph>: Any integer expression that specifies the dialog type, as well as the number and type of buttons to display, and the icon type. <emph>Buttons</emph> represents a combination of bit patterns, that is, a combination of elements can be defined by adding their respective values:"
+msgstr ""
#. xuEUm
#: 03010101.xhp
@@ -8143,15 +8044,6 @@ msgctxt ""
msgid "Third button in the dialog as default button."
msgstr "የ ሶስተኛ ቁልፍ በ ንግግር ውስጥ እንደ ነባር ቁልፍ"
-#. Cgq4r
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"hd_id3150715\n"
-"help.text"
-msgid "Example:"
-msgstr "ለምሳሌ:"
-
#. Pwqs5
#: 03010101.xhp
msgctxt ""
@@ -8215,33 +8107,6 @@ msgctxt ""
msgid "Displays a dialog box containing a message and returns a value."
msgstr "መልእክት የያዘውን የ ንግግር ሳጥን ማሳያ እና ዋጋ ይመልሳል"
-#. shERM
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Syntax:"
-msgstr "አገባብ:"
-
-#. BDrhF
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3154685\n"
-"help.text"
-msgid "MsgBox (Text As String [,Type As Integer [,Dialogtitle As String]])"
-msgstr "MsgBox (Text As String [,Type As Integer [,Dialogtitle As String]])"
-
-#. eSAEY
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"hd_id3153771\n"
-"help.text"
-msgid "Return value:"
-msgstr "ይመልሳል ዋጋ:"
-
#. KNkK6
#: 03010102.xhp
msgctxt ""
@@ -8251,204 +8116,6 @@ msgctxt ""
msgid "Integer"
msgstr "ኢንቲጀር"
-#. BGNzB
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"hd_id3153363\n"
-"help.text"
-msgid "Parameter:"
-msgstr "ደንብ:"
-
-#. gV5Zk
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3153727\n"
-"help.text"
-msgid "<emph>Text</emph>: String expression displayed as a message in the dialog box. Line breaks can be inserted with Chr$(13)."
-msgstr "<emph>ጽሁፍ</emph>: የ ሀረግ መግለጫ የሚታየው እንደ መልእክት ነው በ ንግግር ሳጥ ውስጥ: የ መስመር መጨረሻ ማስገባት ይቻላል በ Chr$(13)."
-
-#. zjMR8
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3147317\n"
-"help.text"
-msgid "<emph>DialogTitle</emph>: String expression displayed in the title bar of the dialog. If omitted, the name of the respective application is displayed."
-msgstr "<emph>የ ንግግር አርእስት</emph>: የ ሀረግ መግለጫ የሚታየው በ አርእስት መደርደሪያ ንግግር ላይ ነው: የማይታይ ከሆነ: የ አርእስት መደርደሪያ ስም ያሳያል እያንዳንዱን መተግበሪያ"
-
-#. DwjpW
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3153954\n"
-"help.text"
-msgid "<emph>Type</emph>: Any integer expression that specifies the dialog type and defines the number and type of buttons or icons displayed. <emph>Type</emph> represents a combination of bit patterns (dialog elements defined by adding the respective values):"
-msgstr "<emph>ይጻፉ</emph>: ማንኛውንም የ ኢንቲጀር መግለጫ የ ንግግር አይነት የሚገልጽ: እንዲሁም የ ቁጥር እና አይነት ቁልፎች ለ ማሳየት: እና የ ምልክት አይነት: <emph> አይነት </emph> የሚወክለው ጥምረት የ ቢት ድግግሞሽ ነው: (እንዲሁም የ አካላቶች ጥምረት ማግኘት ይቻላል በ መጨመር ተገቢውን ዋጋዎች):"
-
-#. VFF9E
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3154319\n"
-"help.text"
-msgid "<emph>Values</emph>"
-msgstr "<emph>ዋጋዎች</emph>"
-
-#. Bf6za
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id051220170241588881\n"
-"help.text"
-msgid "Named constant"
-msgstr "የ ተሰየመ መደበኛ"
-
-#. 77fDA
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id051220170241585541\n"
-"help.text"
-msgid "Integer value"
-msgstr "የ ኢንቲጀር ዋጋ"
-
-#. oGbBz
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id051220170241585124\n"
-"help.text"
-msgid "Definition"
-msgstr "መግለጫ"
-
-#. vymRc
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3147397\n"
-"help.text"
-msgid "Display OK button only."
-msgstr "እሺ ቁልፍ ብቻ ማሳያ"
-
-#. mRRGS
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3145646\n"
-"help.text"
-msgid "Display OK and Cancel buttons."
-msgstr "እሺ እና መሰረዣ ቁልፎች ማሳያ"
-
-#. dTHCd
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3149410\n"
-"help.text"
-msgid "Display Abort, Retry, and Ignore buttons."
-msgstr "ማቋረጫ: እንደገና መሞከሪያ: እና መተው ቁልፎች ማሳያ"
-
-#. ACrFj
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3151075\n"
-"help.text"
-msgid "Display Yes, No, and Cancel buttons."
-msgstr "አዎ አይ እና መሰረዣ ቁልፎች ማሳያ"
-
-#. GtCAu
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3153878\n"
-"help.text"
-msgid "Display Yes and No buttons."
-msgstr "አዎ እና አይ ቁልፎች ማሳያ"
-
-#. UREcH
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3155601\n"
-"help.text"
-msgid "Display Retry and Cancel buttons."
-msgstr "እንደገና መሞከሪያ እና መሰረዣ ቁልፎች ማሳያ"
-
-#. Fd4PG
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3150716\n"
-"help.text"
-msgid "Add the Stop icon to the dialog."
-msgstr "የ ማስቆሚያ ምልክት ወደ ንግግር መጨመሪያ"
-
-#. yfaDF
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3153837\n"
-"help.text"
-msgid "Add the Question icon to the dialog."
-msgstr "የ ጥያቄ ምልክት ወደ ንግግር መጨመሪያ"
-
-#. ANc5p
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3150751\n"
-"help.text"
-msgid "Add the Exclamation Point icon to the dialog."
-msgstr "የ ቃለ አጋኖ ምልክት ወደ ንግግር መጨመሪያ"
-
-#. AtuHu
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3146915\n"
-"help.text"
-msgid "Add the Information icon to the dialog."
-msgstr "የ መረጃ ምልክት ወደ ንግግር መጨመሪያ"
-
-#. gDmyx
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3145640\n"
-"help.text"
-msgid "First button in the dialog as default button."
-msgstr "የ መጀመሪያ ቁልፍ በ ንግግር ውስጥ እንደ ነባር ቁልፍ"
-
-#. JHgX7
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3153765\n"
-"help.text"
-msgid "Second button in the dialog as default button."
-msgstr "የ ሁለተኛ ቁልፍ በ ንግግር ውስጥ እንደ ነባር ቁልፍ"
-
-#. trCb5
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3153715\n"
-"help.text"
-msgid "Third button in the dialog as default button."
-msgstr "የ ሶስተኛ ቁልፍ በ ንግግር ውስጥ እንደ ነባር ቁልፍ"
-
-#. 5Bqjm
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3159267\n"
-"help.text"
-msgid "<emph>Return value:</emph>"
-msgstr "<emph>ይመልሳል ዋጋ:</emph>"
-
#. iFbrx
#: 03010102.xhp
msgctxt ""
@@ -8791,59 +8458,14 @@ msgctxt ""
msgid "The <emph>InputBox</emph> statement is a convenient method of entering text through a dialog. Confirm the input by clicking OK or pressing Return. The input is returned as the function return value. If you close the dialog with Cancel, <emph>InputBox</emph> returns a zero-length string (\"\")."
msgstr "የ <emph> ማስገቢያ ሳጥን </emph> አረፍተ ነገር ዝግጁ ዘዴ ነው ጽሁፍ በ ንግግር ውስጥ ለማስገባት: ያረጋግጡ ማስገቢያውን በ መጫን እሺ ወይንም መመለሻውን: ይህ ማስገቢያ ይመልሳል እንደ ተግባር ዋጋ: እርስዎ ንግግሩን ከዘጉ በ መሰረዣ <emph> ማስገቢያ ሳጥን </emph> ይመልሳል የ ዜሮ-እርዝመት ሀረግ (\"\")."
-#. a8Gwy
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"hd_id3152347\n"
-"help.text"
-msgid "Syntax:"
-msgstr "አገባብ:"
-
-#. iDCpG
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"par_id3159201\n"
-"help.text"
-msgid "InputBox (Msg As String[, Title As String[, Default As String[, x_pos As Integer, y_pos As Integer]]]])"
-msgstr "InputBox (Msg As String[, Title As String[, Default As String[, x_pos As Integer, y_pos As Integer]]]])"
-
-#. MCGaD
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"hd_id3150713\n"
-"help.text"
-msgid "Return value:"
-msgstr "ይመልሳል ዋጋ:"
-
-#. Mh8Z6
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"par_id3145090\n"
-"help.text"
-msgid "String"
-msgstr "ሐረግ"
-
-#. ahAy9
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"hd_id3149346\n"
-"help.text"
-msgid "Parameter:"
-msgstr "ደንብ:"
-
-#. nGChE
+#. G7eXr
#: 03010201.xhp
msgctxt ""
"03010201.xhp\n"
"par_id3153311\n"
"help.text"
-msgid "<emph>Msg</emph>: String expression displayed as the message in the dialog box."
-msgstr "<emph>መልእክት</emph>: የ ሀረግ መግለጫ የሚያሳየው እንደ መልእክት ነው በ ንግግር ሳጥን ውስጥ"
+msgid "<emph>Prompt</emph>: String expression displayed as the message in the dialog box."
+msgstr ""
#. 66zGG
#: 03010201.xhp
@@ -8863,41 +8485,41 @@ msgctxt ""
msgid "<emph>Default</emph>: String expression displayed in the text box as default if no other input is given."
msgstr "<emph>ነባር</emph>: ሀረግ መግለጫ ለማሳየት የ ጽሁፍ ሳጥን እንደ ነባር ሌላ ማስገቢያ ካልተሰጠ"
-#. FXvGM
+#. Cs49h
#: 03010201.xhp
msgctxt ""
"03010201.xhp\n"
"par_id3147573\n"
"help.text"
-msgid "<emph>x_pos</emph>: Integer expression that specifies the horizontal position of the dialog. The position is an absolute coordinate and does not refer to the window of the office application."
-msgstr "<emph>የ x_ቦታ </emph>: ኢንቲጀር መግለጫ የ ንግግር የ አግድም ቦታ የሚወስነው: ቦታው ፍጹም መገናኛ ነው: እና ወደ መስኮቱ አያመሳክርም ወደ ቢሮ መተግበሪያ"
+msgid "<emph>xPosTwips</emph>: Integer expression that specifies the horizontal position of the dialog. The position is an absolute coordinate and does not refer to the window of the office application."
+msgstr ""
-#. Y8wnD
+#. QyymW
#: 03010201.xhp
msgctxt ""
"03010201.xhp\n"
"par_id3156024\n"
"help.text"
-msgid "<emph>y_pos</emph>: Integer expression that specifies the vertical position of the dialog. The position is an absolute coordinate and does not refer to the window of the office application."
-msgstr "<emph>የ y_ቦታ</emph>: ኢንቲጀር መግለጫ የ ንግግር በ ቁመት ቦታ የሚወስነው: ቦታው ፍጹም ነው: እና ወደ መስኮቱ አያመሳክርም ወደ ቢሮ መተግበሪያ"
+msgid "<emph>yPosTwips</emph>: Integer expression that specifies the vertical position of the dialog. The position is an absolute coordinate and does not refer to the window of the office application."
+msgstr ""
-#. gy7PB
+#. 8pC7C
#: 03010201.xhp
msgctxt ""
"03010201.xhp\n"
"par_id3153897\n"
"help.text"
-msgid "If <emph>x_pos</emph> and <emph>y_pos</emph> are omitted, the dialog is centered on the screen. The position is specified in <link href=\"text/sbasic/shared/00000002.xhp#twips\" name=\"twips\">twips</link>."
-msgstr "የ <emph>x_ቦታ</emph> እና <emph>y_ቦታ</emph> የማይታይ ከሆነ: ንግግር መሀከል ላይ ይሆናል በ መመልከቻው ላይ: ቦታው የ ተወሰነው በ <link href=\"text/sbasic/shared/00000002.xhp#twips\" name=\"twips\">በ ኢንች አንድ ሀያኛ</link> ነው"
+msgid "If <emph>xPosTwips</emph> and <emph>yPosTwips</emph> are omitted, the dialog is centered on the screen. The position is specified in <link href=\"text/sbasic/shared/00000002.xhp#twips\" name=\"twips\">twips</link>."
+msgstr ""
-#. AMAJW
+#. Mh8Z6
#: 03010201.xhp
msgctxt ""
"03010201.xhp\n"
-"hd_id3149456\n"
+"par_id3145090\n"
"help.text"
-msgid "Example:"
-msgstr "ለምሳሌ:"
+msgid "String"
+msgstr "ሐረግ"
#. ebNwP
#: 03010201.xhp
diff --git a/source/am/helpcontent2/source/text/sbasic/shared/03.po b/source/am/helpcontent2/source/text/sbasic/shared/03.po
index e76b07d167b..b34c093948c 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: 2021-04-06 14:45+0200\n"
+"POT-Creation-Date: 2021-04-27 17:02+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"
@@ -61,6 +61,15 @@ msgctxt ""
msgid "This property is not available in Python."
msgstr ""
+#. 7KtXf
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id651551701041690\n"
+"help.text"
+msgid "This service is available from %PRODUCTNAME 7.2 onwards."
+msgstr ""
+
#. GXE45
#: avail_release.xhp
msgctxt ""
@@ -10942,6 +10951,2814 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open statement\">Open Statement</link>"
msgstr ""
+#. XQG8t
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"tit\n"
+"help.text"
+msgid "SFDocuments.Form service"
+msgstr ""
+
+#. kanuY
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"bm_id781582391760253\n"
+"help.text"
+msgid "<variable id=\"FormService\"><link href=\"text/sbasic/shared/03/sf_form.xhp\" name=\"SFDocuments.Form\"><literal>SFDocuments</literal>.<literal>Form</literal> service</link></variable>"
+msgstr ""
+
+#. LDpRB
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id931583589764919\n"
+"help.text"
+msgid "The <literal>Form</literal> service provides methods and properties to manage forms in %PRODUCTNAME documents. This service supports forms in Base, Calc and Writer documents and allows to:"
+msgstr ""
+
+#. U3zGB
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id381618172063851\n"
+"help.text"
+msgid "Open and activate forms."
+msgstr ""
+
+#. SC6Yb
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id261618172129782\n"
+"help.text"
+msgid "Navigate through records shown by the form."
+msgstr ""
+
+#. krQfB
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id281618172141607\n"
+"help.text"
+msgid "Get access to the controls inside the form."
+msgstr ""
+
+#. itKdZ
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id371618172155483\n"
+"help.text"
+msgid "Get access to subforms of a parent form."
+msgstr ""
+
+#. QcJ24
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id351616768789190\n"
+"help.text"
+msgid "The <literal>SFDocuments</literal>.<literal>Form</literal> service is available from %PRODUCTNAME 7.2 onwards."
+msgstr ""
+
+#. Ga5NU
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id451616765867881\n"
+"help.text"
+msgid "Forms are usually used in %PRODUCTNAME documents to create user interfaces connected to relational databases. Hence, the <literal>Form</literal> service provides quick access to the linked database through the <link href=\"text/sbasic/shared/03/sf_database.xhp\" name=\"SFDatabases.Database\"><literal>SFDatabases</literal>.<literal>Database</literal> service</link>."
+msgstr ""
+
+#. rGB5M
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id891598188164936\n"
+"help.text"
+msgid "The <literal>SFDocuments</literal>.<literal>Form</literal> service is closely related to the <link href=\"text/sbasic/shared/03/sf_formcontrol.xhp\" name=\"SFDocuments.FormControl\"><literal>SFDocuments</literal>.<literal>FormControl</literal> service.</link>"
+msgstr ""
+
+#. 3HUmh
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"hd_id161616766330804\n"
+"help.text"
+msgid "Definitions"
+msgstr ""
+
+#. VEC49
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id951618172906010\n"
+"help.text"
+msgid "Forms are usually created in Base documents, but they can be added to Writer and Calc documents as well. The way a <literal>FormDocument</literal> is handled depends on the %PRODUCTNAME component where it is stored."
+msgstr ""
+
+#. nKUdb
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id671618173380680\n"
+"help.text"
+msgid "In Base, each form you create using the <menuitem>Insert - Form</menuitem> functionality or through the <link href=\"text/shared/autopi/01090000.xhp\" name=\"FormWizard\">Form Wizard</link> is actually a <literal>FormDocument</literal> that can be handled with the <literal>Form</literal> service. Base documents can contain an unlimited number of form documents."
+msgstr ""
+
+#. kegBD
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id841618177362626\n"
+"help.text"
+msgid "Below is an example showing the hierarchy of all the elements involved in accessing forms and subforms in a Base document. Suppose you have a Base file named <literal>Employees.odb</literal> and inside it you created a form document to add new employees to the database. The form document contains a main form named <literal>EmployeeData</literal> that gives access to a table. There is also a subform <literal>WorksAtPlant</literal> that allows you to associate the new employee to one of the plants of the company."
+msgstr ""
+
+#. izkiB
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"bas_id151618176848874\n"
+"help.text"
+msgid "Employees.odb (Base document)"
+msgstr ""
+
+#. cz2fJ
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"bas_id941618176869485\n"
+"help.text"
+msgid "|-- EmployeeData (Main Form)"
+msgstr ""
+
+#. k8nxK
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id221618173444457\n"
+"help.text"
+msgid "A <literal>FormDocument</literal> can be seen as a set of forms that provide access to datasets such as database tables and queries from within %PRODUCTNAME documents. The names of forms and subforms inside a FormDocument can be accessed using the <link href=\"text/shared/02/01170600.xhp\" name=\"FormNavigator\">Form Navigator</link>."
+msgstr ""
+
+#. dKBXK
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id721618175731903\n"
+"help.text"
+msgid "In Calc documents, each sheet can contain a single <literal>FormDocument</literal>. A Writer document contains only one <literal>FormDocument</literal>, which is the document itself."
+msgstr ""
+
+#. AMFVt
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"hd_id851616767037521\n"
+"help.text"
+msgid "Forms and Subforms"
+msgstr ""
+
+#. GA63u
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id681616767265034\n"
+"help.text"
+msgid "A form document is composed of one or more forms which, in turn, may also contain any number of subforms. A Form is an abstract set of controls that are linked to a specified data source, which can be a database table, a query or a SQL <literal>SELECT</literal> statement."
+msgstr ""
+
+#. fDvBD
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id711618178831976\n"
+"help.text"
+msgid "In Calc and Writer documents, each form can be linked to datasets located in different databases. On the other hand, in Base documents the database contained in the document is common to all forms."
+msgstr ""
+
+#. wDfhy
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id191616837111507\n"
+"help.text"
+msgid "To invoke the <literal>SFDocuments</literal>.<literal>Form</literal> service refer to the methods <literal>Forms()</literal>, <literal>FormDocuments()</literal> and <literal>OpenFormDocument()</literal> of the <link href=\"text/sbasic/shared/03/sf_document.xhp\" name=\"SFDocuments\"><literal>SFDocuments</literal>.<literal>Document</literal></link> service"
+msgstr ""
+
+#. gs4KC
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"hd_id581582885621841\n"
+"help.text"
+msgid "Service invocation"
+msgstr ""
+
+#. KfjEA
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"hd_id991618179698545\n"
+"help.text"
+msgid "In Writer documents"
+msgstr ""
+
+#. Ju2Kj
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id51616767892693\n"
+"help.text"
+msgid "The code snippet below shows how to access the form named <literal>Form1</literal> that is inside the single <literal>FormDocument</literal> of a Writer file:"
+msgstr ""
+
+#. NFikt
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id531618179517628\n"
+"help.text"
+msgid "Forms can be accessed by their names or by their indices, as shown below:"
+msgstr ""
+
+#. 8PHy6
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id181618250546617\n"
+"help.text"
+msgid "If you try to access a <literal>FormDocument</literal> that is currently opened in <emph>Design Mode</emph> an exception will be raised."
+msgstr ""
+
+#. xNr3R
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"hd_id921618179792926\n"
+"help.text"
+msgid "In Calc documents"
+msgstr ""
+
+#. L3Wdt
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id481618179851104\n"
+"help.text"
+msgid "Each sheet in a Calc file is a single <literal>FormDocument</literal>. Hence, the <literal>Forms</literal> method requires two arguments, the first indicating the sheet name and the second specifying the form name."
+msgstr ""
+
+#. 2fB94
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"hd_id201618180055756\n"
+"help.text"
+msgid "In Base documents"
+msgstr ""
+
+#. Faenc
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id711616768164987\n"
+"help.text"
+msgid "A <literal>FormDocument</literal> inside a Base document is accessed by its name. The following example opens the form document named <literal>thisFormDocument</literal> and access the form <literal>MainForm</literal>:"
+msgstr ""
+
+#. pbtEM
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"bas_id271598171225874\n"
+"help.text"
+msgid "' The statement below is necessary only if the form hasn't been opened yet"
+msgstr ""
+
+#. EDADK
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"bas_id51616768358888\n"
+"help.text"
+msgid "' Or, alternatively, to access the form by its index ..."
+msgstr ""
+
+#. XXgZ3
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id991618249636036\n"
+"help.text"
+msgid "To perform any action on a form using the <literal>Form</literal> service, the <literal>FormDocument</literal> must have been opened either manually by the user or programmatically in a user script. The latter can be done in a variety of ways, such as by creating an instance of the <literal>Document</literal> service or by calling the methods <literal>OpenDocument</literal> (<literal>UI</literal> service) and <literal>OpenFormDocument</literal> (<literal>Document</literal> service)."
+msgstr ""
+
+#. DDerZ
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id11618180564274\n"
+"help.text"
+msgid "To access a given subform of a form use the <literal>SubForms</literal> method. Note that in the example below <literal>mySubForm</literal> is a new instance of the <literal>Form</literal> service."
+msgstr ""
+
+#. QFFzk
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"hd_id211618180379064\n"
+"help.text"
+msgid "In Form events"
+msgstr ""
+
+#. WBzCD
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id421616768529754\n"
+"help.text"
+msgid "To invoke the <literal>Form</literal> service when a form event takes place:"
+msgstr ""
+
+#. GueeT
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"hd_id651583668365757\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. 9LaxS
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id871583668386455\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. SpGw6
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id491583668386455\n"
+"help.text"
+msgid "Readonly"
+msgstr ""
+
+#. K7Bsy
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id271583668474014\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. ekeZU
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id401583668386455\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. wSC47
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id371583668519172\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. jJ2dL
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id771583668386455\n"
+"help.text"
+msgid "Specifies if the form allows to delete records."
+msgstr ""
+
+#. DBxgx
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id541583839708548\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. j5J3C
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id731583839708412\n"
+"help.text"
+msgid "Specifies if the form allows to add records."
+msgstr ""
+
+#. FCFEk
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id761584027709516\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. 8qCAE
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id971584027709752\n"
+"help.text"
+msgid "Specifies if the form allows to update records."
+msgstr ""
+
+#. VxAL4
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id31583839767743\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. CRA7v
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id111583839767195\n"
+"help.text"
+msgid "Specifies the hierarchical name of the Base Form containing the actual form."
+msgstr ""
+
+#. FehA2
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id771583839920487\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. V8tZX
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id451583839920858\n"
+"help.text"
+msgid "Specifies uniquely the current record of the form's underlying table, query or SQL statement."
+msgstr ""
+
+#. 3jDxi
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id571588333908716\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. 7NUo8
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id721588333908708\n"
+"help.text"
+msgid "Identifies the current record in the dataset being viewed on a form. If the row number is positive, the cursor moves to the given row number with respect to the beginning of the result set. Row count starts at 1. If the given row number is negative, the cursor moves to an absolute row position with respect to the end of the result set. Row -1 refers to the last row in the result set."
+msgstr ""
+
+#. FKDA7
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id501583774433513\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. eAsdX
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id151598177605296\n"
+"help.text"
+msgid "Specifies a subset of records to be displayed as a <literal>SQL</literal> <literal>WHERE</literal>-clause without the <literal>WHERE</literal> keyword."
+msgstr ""
+
+#. uyje5
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id271588334016191\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. FQDDW
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id251588334016874\n"
+"help.text"
+msgid "Specifies how records in a child subform are linked to records in its parent form."
+msgstr ""
+
+#. DMwPW
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id901616774153495\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 2EiCA
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id981616774153723\n"
+"help.text"
+msgid "Specifies how records in a child subform are linked to records in its parent form."
+msgstr ""
+
+#. ppCiD
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id501616774304840\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. kPfzG
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id461616774304497\n"
+"help.text"
+msgid "The name of the current form."
+msgstr ""
+
+#. vpBCA
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id751616774384451\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. ppErx
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id321616774384489\n"
+"help.text"
+msgid "Specifies in which order the records should be displayed as a <literal>SQL</literal> <literal>ORDER BY</literal> clause without the <literal>ORDER BY</literal> keywords."
+msgstr ""
+
+#. AGC5s
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id261616774918923\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. rjCpM
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id171616774918881\n"
+"help.text"
+msgid "The parent of the current form. It can be either a <literal>SFDocuments</literal>.<literal>Form</literal> or a <literal>SFDocuments</literal>.<literal>Document</literal> object."
+msgstr ""
+
+#. rLS8r
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id501616777650751\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. USDVC
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id91616777650933\n"
+"help.text"
+msgid "Specifies the source of the data, as a table name, a query name or a SQL statement."
+msgstr ""
+
+#. rtCsj
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id451598177924437\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. GxHLP
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id94159817792441\n"
+"help.text"
+msgid "UNO<br/>object"
+msgstr ""
+
+#. VYFDs
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id191598177924897\n"
+"help.text"
+msgid "The UNO object representing interactions with the form. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1form_1_1XForm.html\" name=\"XForm interface\">XForm</link> and <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1form_1_1component_1_1DataForm.html\" name=\"DataForm service\">DataForm</link> in the API documentation for detailed information."
+msgstr ""
+
+#. cwE3k
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"hd_id421612628828054\n"
+"help.text"
+msgid "Event properties"
+msgstr ""
+
+#. eTuoa
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id41612629140856\n"
+"help.text"
+msgid "The properties below return or set URI strings that define the script triggered by the event."
+msgstr ""
+
+#. fdses
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id961612628879819\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. DsQGQ
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id401612628879819\n"
+"help.text"
+msgid "ReadOnly"
+msgstr ""
+
+#. 5FemG
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id281612628879819\n"
+"help.text"
+msgid "Basic IDE Description"
+msgstr ""
+
+#. PgdP8
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id111612629836630\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. GAgms
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id1001612629836902\n"
+"help.text"
+msgid "Before record change"
+msgstr ""
+
+#. Mr9ns
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id291612629836294\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. DwhZn
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id62161262983683\n"
+"help.text"
+msgid "Fill parameters"
+msgstr ""
+
+#. DrMbU
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id81612629836634\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. eAJAN
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id881612629836744\n"
+"help.text"
+msgid "Prior to reset"
+msgstr ""
+
+#. Y9d6z
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id591612629836830\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. LKxEu
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id161612629836775\n"
+"help.text"
+msgid "Before record action"
+msgstr ""
+
+#. Zyx2S
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id891612629836630\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. 2HBeC
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id461612629836679\n"
+"help.text"
+msgid "Before submitting"
+msgstr ""
+
+#. 2fJrZ
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id131612629836291\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. BX4AH
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id151612629836151\n"
+"help.text"
+msgid "Confirm deletion"
+msgstr ""
+
+#. W9izF
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id211612629836725\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. pDvPB
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id361612629836624\n"
+"help.text"
+msgid "After record change"
+msgstr ""
+
+#. WprGG
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id311612629836481\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. Xn2CS
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id721612629836752\n"
+"help.text"
+msgid "Error occurred"
+msgstr ""
+
+#. B3zCy
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id981612629836116\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. L3Ac6
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id381612629836635\n"
+"help.text"
+msgid "When loading"
+msgstr ""
+
+#. 9Z9vv
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id711612629836704\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. XL4Js
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id35161262983642\n"
+"help.text"
+msgid "When reloading"
+msgstr ""
+
+#. P6DEi
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id44161677878329\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. ywCsh
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id661616778783899\n"
+"help.text"
+msgid "Before reloading"
+msgstr ""
+
+#. eGnRj
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id651616778529764\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. E6JUH
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id311616778529570\n"
+"help.text"
+msgid "After resetting"
+msgstr ""
+
+#. VDAk5
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id601616778529481\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. 99FfH
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id351616778529352\n"
+"help.text"
+msgid "After record action"
+msgstr ""
+
+#. CxndA
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id711616778529292\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. DTDCq
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id981616778529250\n"
+"help.text"
+msgid "When unloading"
+msgstr ""
+
+#. iWroa
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id521616778529932\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. pVPR9
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id511616778529291\n"
+"help.text"
+msgid "Before unloading"
+msgstr ""
+
+#. cTdFS
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id961618181634322\n"
+"help.text"
+msgid "To learn more about URI strings, refer to the <link href=\"https://wiki.openoffice.org/wiki/Documentation/DevGuide/Scripting/Scripting_Framework_URI_Specification\" name=\"URI specification\">Scripting Framework URI Specification</link>."
+msgstr ""
+
+#. bkBH8
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id921606472825856\n"
+"help.text"
+msgid "List of methods in the Form service"
+msgstr ""
+
+#. KwDij
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id871583933076448\n"
+"help.text"
+msgid "Sets the focus on the current <literal>Form</literal> instance. Returns <literal>True</literal> if focusing was successful."
+msgstr ""
+
+#. 9qj5F
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id81616858956290\n"
+"help.text"
+msgid "The behavior of the <literal>Activate</literal> method depends on the type of document where the form is located:"
+msgstr ""
+
+#. YVgyr
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id761616858967361\n"
+"help.text"
+msgid "<emph>In Writer documents:</emph> Sets the focus on that document."
+msgstr ""
+
+#. HKFTw
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id931616859010103\n"
+"help.text"
+msgid "<emph>In Calc documents:</emph> Sets the focus on the sheet to which the form belongs."
+msgstr ""
+
+#. 6jx5G
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id41616859019478\n"
+"help.text"
+msgid "<emph>In Base documents:</emph> Sets the focus on the <literal>FormDocument</literal> the <literal>Form</literal> refers to."
+msgstr ""
+
+#. J5C7y
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id921618228229529\n"
+"help.text"
+msgid "The following example assumes you want to activate the form named <literal>FormA</literal> located in <literal>Sheet1</literal> of the currently open Calc file. It first gets access to the document using the <literal>Document</literal> service and <literal>ThisComponent</literal> and then activates the form."
+msgstr ""
+
+#. 4EC5M
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"bas_id21618228468066\n"
+"help.text"
+msgid "'Gets hold of the form that will be activated"
+msgstr ""
+
+#. M2Wks
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"bas_id201618228487565\n"
+"help.text"
+msgid "'Activates the form"
+msgstr ""
+
+#. JxwJG
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id661618228523419\n"
+"help.text"
+msgid "To use the method Activate with other %PRODUCTNAME documents, read <link href=\"text/sbasic/shared/03/sf_form.xhp#ServiceInvocation\" name=\"FormServiceInvocation\">Service invocation</link> above."
+msgstr ""
+
+#. NQ629
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id81618228720782\n"
+"help.text"
+msgid "<literal>ThisComponent</literal> is valid for Calc and Writer documents. For Base documents use <literal>ThisDataBaseDocument</literal>."
+msgstr ""
+
+#. QznyJ
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id501616860541195\n"
+"help.text"
+msgid "Closes the form document containing the actual <literal>Form</literal> instance. The <literal>Form</literal> instance is disposed."
+msgstr ""
+
+#. CcCpD
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id611618229004669\n"
+"help.text"
+msgid "This method only closes form documents located in Base documents. If the form is stored in a Writer or Calc document, calling <literal>CloseFormDocument</literal> will have no effect."
+msgstr ""
+
+#. a8CxQ
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id161584541257982\n"
+"help.text"
+msgid "The value returned by the <literal>Controls</literal> method depends on the arguments provided:"
+msgstr ""
+
+#. qQAnX
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id421598179770993\n"
+"help.text"
+msgid "If the method is called <emph>without any arguments</emph>, then it returns the list of the controls contained in the form. Beware that the returned list does not contain any subform controls."
+msgstr ""
+
+#. SsiUX
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id81598185229301\n"
+"help.text"
+msgid "If the optional <literal>ControlName</literal> argument is provided, the method returns a <literal>FormControl</literal> class instance referring to the specified control."
+msgstr ""
+
+#. 7LRLD
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id1001584541257789\n"
+"help.text"
+msgid "<emph>ControlName</emph> : A valid control name as a case-sensitive string. If absent, the list of control names is returned as a zero-based array."
+msgstr ""
+
+#. unh4B
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id291616861407907\n"
+"help.text"
+msgid "Return a <link href=\"text/sbasic/shared/03/sf_database.xhp\" name=\"DBService\"><literal>SFDatabases</literal>.<literal>Database</literal></link> instance giving access to the execution of SQL commands on the database the current form is connected to and/or that is stored in the current Base document."
+msgstr ""
+
+#. nXEAh
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id991616861417207\n"
+"help.text"
+msgid "Each form in a <literal>FormDocument</literal> has its own database connection, except in Base documents where they all share the same connection."
+msgstr ""
+
+#. YeWdC
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id701616861134906\n"
+"help.text"
+msgid "<emph>User, Password</emph> : The login parameters (Default = \"\")."
+msgstr ""
+
+#. 83Jju
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id771616861842867\n"
+"help.text"
+msgid "The form cursor is positioned on the first record. Returns <literal>True</literal> if successful."
+msgstr ""
+
+#. rapRE
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id331616863143187\n"
+"help.text"
+msgid "The form cursor is positioned on the last record. Returns <literal>True</literal> if successful."
+msgstr ""
+
+#. HZELb
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id361616863143954\n"
+"help.text"
+msgid "The form cursor is positioned on the new record area. Returns <literal>True</literal> if successful."
+msgstr ""
+
+#. 2QwcR
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id541616863143461\n"
+"help.text"
+msgid "The form cursor is positioned on the next record. Returns <literal>True</literal> if successful."
+msgstr ""
+
+#. qRdTC
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id271616863582607\n"
+"help.text"
+msgid "<emph>Offset</emph> : The number of records to go forward (Default = 1)."
+msgstr ""
+
+#. e6huC
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id616168637945\n"
+"help.text"
+msgid "The form cursor is positioned on the previous record. Returns <literal>True</literal> if successful."
+msgstr ""
+
+#. m47xh
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id751616863794125\n"
+"help.text"
+msgid "<emph>Offset</emph> : The number of records to go backwards (Default = 1)."
+msgstr ""
+
+#. Kp4Wo
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id811616864216529\n"
+"help.text"
+msgid "Reloads the current data from the database and refreshes the form. The cursor is positioned on the first record. Returns <literal>True</literal> if successful."
+msgstr ""
+
+#. 5gBGr
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id891616864510614\n"
+"help.text"
+msgid "The value returned by the <literal>Subforms</literal> method depends on the arguments provided:"
+msgstr ""
+
+#. 4yG2j
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id951616864510585\n"
+"help.text"
+msgid "If the method is called <emph>without any arguments</emph>, then it returns the list of subforms contained in the current form or subform instance."
+msgstr ""
+
+#. aVZ57
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id591616864510445\n"
+"help.text"
+msgid "If the optional <literal>Subform</literal> argument is provided, the method returns a new <literal>SFDocuments</literal>.<literal>Form</literal> instance based on the specified form/subform name or index."
+msgstr ""
+
+#. jhmRo
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id341616864510747\n"
+"help.text"
+msgid "<emph>Subform</emph> : A subform stored in the current <literal>Form</literal> class instance given by its name or index."
+msgstr ""
+
+#. 8Cxxs
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id211618230389251\n"
+"help.text"
+msgid "When this argument is absent, the method returns a list of available subforms as a zero-based array. If the form has a single subform, you can set <literal>Subform = 0</literal> to get access to it."
+msgstr ""
+
+#. CfGgB
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"tit\n"
+"help.text"
+msgid "SFDocuments.FormControl service"
+msgstr ""
+
+#. vND8Z
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"bm_id781582391760253\n"
+"help.text"
+msgid "<variable id=\"FormControlService\"><link href=\"text/sbasic/shared/03/sf_formcontrol.xhp\" name=\"SFDocuments.FormControl service\"><literal>SFDocuments</literal>.<literal>FormControl</literal> service</link></variable>"
+msgstr ""
+
+#. XFkrG
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id931583589764919\n"
+"help.text"
+msgid "The <literal>FormControl</literal> service provides access to the controls that belong to a form, a subform or a table control of a <literal>FormDocument</literal>. Each instance of the <literal>FormControl</literal> service refers to a single control in the form. This service allows users to:"
+msgstr ""
+
+#. irNFC
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id451618771561326\n"
+"help.text"
+msgid "Get and set the properties of the control represented by the <literal>FormControl</literal> instance."
+msgstr ""
+
+#. S5aH9
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id601618771565183\n"
+"help.text"
+msgid "Access the current value displayed by the control."
+msgstr ""
+
+#. P5xzV
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id981618771567951\n"
+"help.text"
+msgid "Set the focus on the desired control."
+msgstr ""
+
+#. LUDRM
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id301616939922857\n"
+"help.text"
+msgid "To use the <literal>FormControl</literal> service in a particular form, subform or table control, all controls must have unique names."
+msgstr ""
+
+#. JMFEb
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id541618771629112\n"
+"help.text"
+msgid "Radio buttons that share the same group name must also have unique control names."
+msgstr ""
+
+#. mAwyv
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id51618771641273\n"
+"help.text"
+msgid "The main purpose of the <literal>FormControl</literal> service is setting and getting the properties and values displayed by the controls in a form."
+msgstr ""
+
+#. K2Bgc
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id81618774023346\n"
+"help.text"
+msgid "All controls have a <literal>Value</literal> property. However, its contents will vary according to the control type. For more information, read <link href=\"text/sbasic/shared/03/sf_formcontrol.xhp#hd_id81598540704978\" name=\"Value property\">The <literal>Value</literal> Property</link> below."
+msgstr ""
+
+#. kF29h
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id881618771651907\n"
+"help.text"
+msgid "It is also possible to format the controls via the <literal>XControlModel</literal> and <literal>XControlView</literal> properties."
+msgstr ""
+
+#. WEST9
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id891598188164936\n"
+"help.text"
+msgid "The <literal>SFDocuments.FormControl</literal> service is closely related to the <link href=\"text/sbasic/shared/03/sf_form.xhp\" name=\"Form service\"><literal>SFDocuments.Form</literal></link> service."
+msgstr ""
+
+#. rUEuw
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"hd_id581582885621841\n"
+"help.text"
+msgid "Service invocation"
+msgstr ""
+
+#. vbWXq
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id361598174756160\n"
+"help.text"
+msgid "The <literal>FormControl</literal><literal/> service is invoked from an existing <literal>Form</literal> service instance through its <literal>Controls</literal> method."
+msgstr ""
+
+#. FaP92
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id781618772761258\n"
+"help.text"
+msgid "To learn more about how to open a <literal>FormDocument</literal> and get access to its forms, refer to the <link href=\"text/sbasic/shared/03/sf_form.xhp\" name=\"Form service\">SFDocuments.Form</link> service help page."
+msgstr ""
+
+#. qeXCN
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id951598174966322\n"
+"help.text"
+msgid "Alternatively a <literal>FormControl</literal> instance can be retrieved via the <literal>SFDocuments.FormEvent</literal> service, which returns the <literal>SFDocuments.FormControl</literal> class instance that triggered the event."
+msgstr ""
+
+#. bSfxy
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"bas_id801598175242937\n"
+"help.text"
+msgid "' oControl now represents the instance of the FormControl class that triggered the current event"
+msgstr ""
+
+#. EgCtB
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id251598176312571\n"
+"help.text"
+msgid "Note that in previous examples, the prefix <literal>\"SFDocuments.\"</literal> may be omitted."
+msgstr ""
+
+#. 7gE8Y
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id951618773412097\n"
+"help.text"
+msgid "The <literal>FormEvent</literal> service is used exclusively to create instances of the <literal>SFDocuments.Form</literal> and <literal>SFDocuments.FormControl</literal> services when a form or control event takes place."
+msgstr ""
+
+#. AppFj
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"hd_id71598455687512\n"
+"help.text"
+msgid "Control types"
+msgstr ""
+
+#. ezcW8
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id851598455863395\n"
+"help.text"
+msgid "The <literal>FormControl</literal> service is available for the following control types:"
+msgstr ""
+
+#. BESBv
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"hd_id651583668365757\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. VrBfK
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id871583668386455\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. hDr9G
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id491583668386455\n"
+"help.text"
+msgid "Readonly"
+msgstr ""
+
+#. kWac7
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id271583668474014\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. dXwGN
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id291598538799794\n"
+"help.text"
+msgid "Applicable to"
+msgstr ""
+
+#. bEQWc
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id401583668386455\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. N3ejK
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id371583668519172\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. PszFp
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id771583668386455\n"
+"help.text"
+msgid "Specifies the action triggered when the button is clicked. Accepted values are: <literal>none</literal>, <literal>submitForm</literal>, <literal>resetForm</literal>, <literal>refreshForm</literal>, <literal>moveToFirst</literal>, <literal>moveToLast</literal>, <literal>moveToNext</literal>, <literal>moveToPrev</literal>, <literal>saveRecord</literal>, <literal>moveToNew</literal>, <literal>deleteRecord</literal>, <literal>undoRecord</literal>."
+msgstr ""
+
+#. fmzNT
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id541583839708548\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. 62Bud
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id731583839708412\n"
+"help.text"
+msgid "Specifies the text displayed by the control."
+msgstr ""
+
+#. nFFDY
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id411616942306677\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 8H6BR
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id461616942306745\n"
+"help.text"
+msgid "Specifies the rowset field mapped onto the current control."
+msgstr ""
+
+#. AJUH6
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id761584027709516\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. Enqxp
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id261598539120502\n"
+"help.text"
+msgid "All"
+msgstr ""
+
+#. FsCJK
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id971584027709752\n"
+"help.text"
+msgid "One of the control types listed above."
+msgstr ""
+
+#. DH84k
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id31583839767743\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. pRrwC
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id111583839767195\n"
+"help.text"
+msgid "Specifies whether a command button is the default OK button."
+msgstr ""
+
+#. 2dP2A
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id241616942739459\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. Sukx9
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id271616942739359\n"
+"help.text"
+msgid "Specifies the default value used to initialize a control in a new record."
+msgstr ""
+
+#. nFBUQ
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id771583839920487\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. fQYqd
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id891598539196786\n"
+"help.text"
+msgid "All (except HiddenControl)"
+msgstr ""
+
+#. MmDQ5
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id451583839920858\n"
+"help.text"
+msgid "Specifies if the control is accessible with the cursor."
+msgstr ""
+
+#. VDkDh
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id571588333908716\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. 8X3Ho
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id721588333908708\n"
+"help.text"
+msgid "Specifies the format used to display dates and times. It must be one of following strings:"
+msgstr ""
+
+#. 6CqCN
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id891598456980194\n"
+"help.text"
+msgid "For dates: \"Standard (short)\", \"Standard (short YY)\", \"Standard (short YYYY)\", \"Standard (long)\", \"DD/MM/YY\", \"MM/DD/YY\", \"YY/MM/DD\", \"DD/MM/YYYY\", \"MM/DD/YYYY\" , \"YYYY/MM/DD\", \"YY-MM-DD\", \"YYYY-MM-DD\"."
+msgstr ""
+
+#. f6gni
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id221598456991070\n"
+"help.text"
+msgid "For times: \"24h short\", \"24h long\", \"12h short\", \"12h long\"."
+msgstr ""
+
+#. RqjAh
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id501583774433513\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. E4aHX
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id151598177605296\n"
+"help.text"
+msgid "Returns the number of rows in a ListBox or a ComboBox."
+msgstr ""
+
+#. ApC5v
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id271588334016191\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. XQ3AV
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id251588334016874\n"
+"help.text"
+msgid "Specifies which item is selected in a ListBox or ComboBox. In case of multiple selection, the index of the first item is returned or only one item is set."
+msgstr ""
+
+#. 5DjjX
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id891616944120697\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. nNqW5
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id901616944120614\n"
+"help.text"
+msgid "Specifies the data contained in a ComboBox or a ListBox as a zero-based array of string values."
+msgstr ""
+
+#. rvVZ7
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id21616944586559\n"
+"help.text"
+msgid "Combined with <literal>ListSourceType</literal>, may also contain the name of a table, a query or a complete <literal>SQL</literal> statement."
+msgstr ""
+
+#. jqgF5
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id821616944631740\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. sqr2g
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id131616944631625\n"
+"help.text"
+msgid "Specifies the type of data contained in a combobox or a listbox."
+msgstr ""
+
+#. Fdm4C
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id881616944631341\n"
+"help.text"
+msgid "It must be one of the <link href=\"https://api.libreoffice.org/docs/idl/ref/ListSourceType_8idl_source.html\" name=\"ListSourceType\"><literal>com.sun.star.form.ListSourceType.*</literal></link> constants."
+msgstr ""
+
+#. BQ7JE
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id961598457655506\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. EV4jD
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id2159845765568\n"
+"help.text"
+msgid "Specifies if the control is read-only."
+msgstr ""
+
+#. CXDED
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id621598457951781\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. e7HnA
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id821598457951782\n"
+"help.text"
+msgid "Specifies whether the user can select multiple items in a listbox."
+msgstr ""
+
+#. TZuvX
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id351598458170114\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. AtLKa
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id151598539764402\n"
+"help.text"
+msgid "All"
+msgstr ""
+
+#. EuBGK
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id621598458170392\n"
+"help.text"
+msgid "The name of the control."
+msgstr ""
+
+#. SNTgh
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id161598458580581\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. CTjAM
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id181598539807426\n"
+"help.text"
+msgid "All"
+msgstr ""
+
+#. z8w8o
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id801598458580456\n"
+"help.text"
+msgid "Depending on the parent type, a form, a subform or a tablecontrol, returns the parent <literal>SFDocuments</literal>.<literal>Form</literal> or <literal>SFDocuments</literal>.<literal>FormControl</literal> class object instance."
+msgstr ""
+
+#. fyoXF
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id971598458773352\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. RnXeR
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id451598458773588\n"
+"help.text"
+msgid "Specifies the file name containing a bitmap or other type of graphic to be displayed on the control. The filename must comply with the <literal>FileNaming</literal> attribute of the <literal>ScriptForge.FileSystem</literal> service."
+msgstr ""
+
+#. PHBtj
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id251616946015886\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. oYA7V
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id91616946015258\n"
+"help.text"
+msgid "A control is said required when the underlying data must not contain a <literal>null</literal> value."
+msgstr ""
+
+#. NbTpX
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id781598516764550\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. Rv448
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id11159851676440\n"
+"help.text"
+msgid "Gives access to the text being displayed by the control."
+msgstr ""
+
+#. 7kxit
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id411598517275112\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. MNqBi
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id171598539985022\n"
+"help.text"
+msgid "All (except HiddenControl)"
+msgstr ""
+
+#. VXR9Y
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id651598517275384\n"
+"help.text"
+msgid "Specifies the text that appears as a tooltip when you hover the mouse pointer over the control."
+msgstr ""
+
+#. Awzep
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id821598517418463\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. 6S5EL
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id141598517418822\n"
+"help.text"
+msgid "Specifies if the checkbox control may appear dimmed (grayed) or not."
+msgstr ""
+
+#. mCQFz
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id701598517671373\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. mHxWu
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id1001598540024225\n"
+"help.text"
+msgid "This property depends on the current control type. Refer to <link href=\"text/sbasic/shared/03/sf_formcontrol.xhp#hd_id81598540704978\" name=\"Value property\">The <literal>Value</literal> property</link> for more information."
+msgstr ""
+
+#. ybVim
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id661598517730941\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. G52FE
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id761598540042290\n"
+"help.text"
+msgid "All (except HiddenControl)"
+msgstr ""
+
+#. 5juZG
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id881598517730836\n"
+"help.text"
+msgid "Specifies if the control is hidden or visible."
+msgstr ""
+
+#. FAYCA
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id451598177924437\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. UZ7ug
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id94159817792441\n"
+"help.text"
+msgid "UNO<br/>object"
+msgstr ""
+
+#. 65CSA
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id311598540066789\n"
+"help.text"
+msgid "All"
+msgstr ""
+
+#. 25EFH
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id191598177924897\n"
+"help.text"
+msgid "The UNO object representing the control model. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1XControlModel.html\" name=\"awt.XControlModel\">XControlModel</link> and <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1awt_1_1UnoControlModel.html\" name=\"awt.UnoControlModel\">UnoControlModel</link> in the API documentation for more information."
+msgstr ""
+
+#. FzDR6
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id811598178083501\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. Bdvyd
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id981598178083938\n"
+"help.text"
+msgid "UNO<br/>object"
+msgstr ""
+
+#. DFQ5P
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id551598540079329\n"
+"help.text"
+msgid "All"
+msgstr ""
+
+#. XahSM
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id731598178083442\n"
+"help.text"
+msgid "The UNO object representing the control view. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1XControl.html\" name=\"awt.XControl\">XControl</link> and <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1awt_1_1UnoControl.html\" name=\"awt.UnoControl\">UnoControl</link> in the API documentation for more information."
+msgstr ""
+
+#. pqsod
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"hd_id81598540704978\n"
+"help.text"
+msgid "The <variable id=\"ValueProperty\"><literal>Value</literal> property</variable>"
+msgstr ""
+
+#. PbEBw
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id10159854325492\n"
+"help.text"
+msgid "Control type"
+msgstr ""
+
+#. bsmCC
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id741598543254158\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. MWgHB
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id961598543254444\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. FLUGH
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id741598543254108\n"
+"help.text"
+msgid "Applicable to toggle buttons only."
+msgstr ""
+
+#. jpLCR
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id741598543254376\n"
+"help.text"
+msgid "Boolean or Integer"
+msgstr ""
+
+#. ErAZY
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id521598543254630\n"
+"help.text"
+msgid "0, False: not checked<br/>1, True: checked<br/>2: grayed out, don't know (applicable if <literal>TripleState</literal> is <literal>True</literal>)"
+msgstr ""
+
+#. 3frrW
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id331598543254947\n"
+"help.text"
+msgid "The selected value, as a String. The <literal>ListIndex</literal> property is an alternate option to access the index of the selected value."
+msgstr ""
+
+#. faEEm
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id5159854325443\n"
+"help.text"
+msgid "Numeric"
+msgstr ""
+
+#. VyagB
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id971598543254757\n"
+"help.text"
+msgid "A file name formatted in accordance with the <literal>FileNaming</literal> property of the <literal>ScriptForge.FileSystem</literal> service"
+msgstr ""
+
+#. CaGtr
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id221598543254760\n"
+"help.text"
+msgid "String or Numeric"
+msgstr ""
+
+#. gtxJY
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id42159854325422\n"
+"help.text"
+msgid "String or array of strings"
+msgstr ""
+
+#. kBH32
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id601598543254780\n"
+"help.text"
+msgid "The selected row(s) as a single string or an array of strings. Only a single value can be set. If the box is linked to a database, this property gets or sets the underlying data. Otherwise it gets or sets the data being displayed."
+msgstr ""
+
+#. f7EZX
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id461598543254909\n"
+"help.text"
+msgid "Numeric"
+msgstr ""
+
+#. DrhU9
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id851598543254624\n"
+"help.text"
+msgid "Each button has its own name. Multiple RadioButton controls are linked together when they share the same group name. If a RadioButton is set to <literal>True</literal>, the other related buttons are automatically set to <literal>False</literal>"
+msgstr ""
+
+#. WEsqT
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id531598543254869\n"
+"help.text"
+msgid "Numeric"
+msgstr ""
+
+#. LxeLY
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id21598543254994\n"
+"help.text"
+msgid "Must be within the predefined bounds"
+msgstr ""
+
+#. mpoa7
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id951616947400919\n"
+"help.text"
+msgid "Numeric"
+msgstr ""
+
+#. x6ZLt
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id48161694740085\n"
+"help.text"
+msgid "Must be within the predefined bounds"
+msgstr ""
+
+#. UZLYC
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id441598543254738\n"
+"help.text"
+msgid "The text appearing in the field"
+msgstr ""
+
+#. WBHoJ
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"hd_id421612628828054\n"
+"help.text"
+msgid "Event properties"
+msgstr ""
+
+#. tqnsA
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id41612629140856\n"
+"help.text"
+msgid "The properties below return or set URI strings that define the script triggered by the event."
+msgstr ""
+
+#. 7Azyz
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id961612628879819\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. N4btE
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id401612628879819\n"
+"help.text"
+msgid "ReadOnly"
+msgstr ""
+
+#. RXoDM
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id281612628879819\n"
+"help.text"
+msgid "Description as labeled in the Basic IDE"
+msgstr ""
+
+#. yhjPA
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id91612707166532\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. HVTKN
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id291612707166258\n"
+"help.text"
+msgid "Execute action"
+msgstr ""
+
+#. T5CTw
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id79161270716675\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. qs3LA
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id831612707166731\n"
+"help.text"
+msgid "While adjusting"
+msgstr ""
+
+#. vUbN6
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id301616948330694\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. PopWN
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id901616948330305\n"
+"help.text"
+msgid "Approve action"
+msgstr ""
+
+#. PmE7k
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id821616948330888\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. rjQCJ
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id111616948330257\n"
+"help.text"
+msgid "Prior to reset"
+msgstr ""
+
+#. octLi
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id271616948330553\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. D7yir
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id451616948330759\n"
+"help.text"
+msgid "Before updating"
+msgstr ""
+
+#. YM7Nt
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id71616948330769\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. pHG54
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id211616948330895\n"
+"help.text"
+msgid "Changed"
+msgstr ""
+
+#. UaRoN
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id121616948330654\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. tfW7M
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id2216169483303\n"
+"help.text"
+msgid "Error occurred"
+msgstr ""
+
+#. vDFhJ
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id111612629836630\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. NN9FK
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id1001612629836902\n"
+"help.text"
+msgid "When receiving focus"
+msgstr ""
+
+#. tLp7Y
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id291612629836294\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. DDcCF
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id62161262983683\n"
+"help.text"
+msgid "When losing focus"
+msgstr ""
+
+#. EBVQM
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id51612707354544\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. PLPUr
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id211612707354899\n"
+"help.text"
+msgid "Item status changed"
+msgstr ""
+
+#. zBci2
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id81612629836634\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. vPrAA
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id881612629836744\n"
+"help.text"
+msgid "Key pressed"
+msgstr ""
+
+#. 8cFqR
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id591612629836830\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. 6rrBt
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id161612629836775\n"
+"help.text"
+msgid "Key released"
+msgstr ""
+
+#. 7Pzmy
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id891612629836630\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. 2pMWG
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id461612629836679\n"
+"help.text"
+msgid "Mouse moved while key presses"
+msgstr ""
+
+#. SGYBr
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id131612629836291\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. AJGQd
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id151612629836151\n"
+"help.text"
+msgid "Mouse inside"
+msgstr ""
+
+#. 6cFkB
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id211612629836725\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. tfmtf
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id361612629836624\n"
+"help.text"
+msgid "Mouse outside"
+msgstr ""
+
+#. 6E7WA
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id311612629836481\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. CeNku
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id721612629836752\n"
+"help.text"
+msgid "Mouse moved"
+msgstr ""
+
+#. iSxsS
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id981612629836116\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. 9yirD
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id381612629836635\n"
+"help.text"
+msgid "Mouse button pressed"
+msgstr ""
+
+#. b6pFV
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id711612629836704\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. D5vXU
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id35161262983642\n"
+"help.text"
+msgid "Mouse button released"
+msgstr ""
+
+#. 9Ui2H
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id31616948666215\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. mdLSp
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id951616948666674\n"
+"help.text"
+msgid "After resetting"
+msgstr ""
+
+#. jb4at
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id811612707606330\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. m3Rb7
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id621612707606219\n"
+"help.text"
+msgid "Text modified"
+msgstr ""
+
+#. bfgkG
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id41616948721642\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. imn6B
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id311616948721872\n"
+"help.text"
+msgid "After updating"
+msgstr ""
+
+#. tcpN5
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id961618181634181\n"
+"help.text"
+msgid "To learn more about URI strings, refer to the <link href=\"https://wiki.openoffice.org/wiki/Documentation/DevGuide/Scripting/Scripting_Framework_URI_Specification\" name=\"URI specification\">Scripting Framework URI Specification</link>."
+msgstr ""
+
+#. RpNkd
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id891611613601554\n"
+"help.text"
+msgid "List of Methods in the FormControl Service"
+msgstr ""
+
+#. CKZDf
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id161584541257982\n"
+"help.text"
+msgid "This method is applicable only to controls of the <literal>TableControl</literal> type. The returned value depends on the arguments provided."
+msgstr ""
+
+#. GfVbh
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id701618777636827\n"
+"help.text"
+msgid "If the optional argument <literal>ControlName</literal> is absent, then a zero-based Array containing the names of all controls is returned."
+msgstr ""
+
+#. GyLgF
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id851618777715892\n"
+"help.text"
+msgid "On the other hand, if a <literal>ControlName</literal> is provided, the method returns a <literal>FormControl</literal> class instance corresponding to the specified control."
+msgstr ""
+
+#. F8FfM
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id1001584541257789\n"
+"help.text"
+msgid "<emph>ControlName</emph> : A valid control name as a case-sensitive string. If absent, the list of control names is returned as a zero-based array."
+msgstr ""
+
+#. F4Sdy
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"bas_id471618778075117\n"
+"help.text"
+msgid "' Returns an Array with the names of all controls in \"myTableControl\""
+msgstr ""
+
+#. YoHSo
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id931618778110273\n"
+"help.text"
+msgid "' Returns a FormControl class instance corresponding to \"myCheckBox\""
+msgstr ""
+
+#. CprjV
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id871583933076448\n"
+"help.text"
+msgid "Sets the focus on the control. Returns <literal>True</literal> if focusing was successful."
+msgstr ""
+
+#. LuxFE
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id151598178880227\n"
+"help.text"
+msgid "This method is often called from a form or control event."
+msgstr ""
+
+#. haAXC
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"hd_id141618777179310\n"
+"help.text"
+msgid "Additional examples"
+msgstr ""
+
+#. JopFS
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id331618777195723\n"
+"help.text"
+msgid "Below are two examples that illustrate the use of the <literal>FormControl</literal> service."
+msgstr ""
+
+#. 5iGmg
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id371618776324489\n"
+"help.text"
+msgid "The first example reads the current value in a ComboBox containing city names and writes it to a FixedTest control in a Form:"
+msgstr ""
+
+#. kz9SK
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id251618776614814\n"
+"help.text"
+msgid "The following code snippet can be used to process RadioButton controls that share the same group name. In this example, suppose there are three radio buttons with names <literal>optA</literal>, <literal>optB</literal> and <literal>optC</literal> and we wish to display the caption of the selected control."
+msgstr ""
+
#. VCRTD
#: sf_l10n.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/scalc/00.po b/source/am/helpcontent2/source/text/scalc/00.po
index b2c396db0d6..2a5a8c37945 100644
--- a/source/am/helpcontent2/source/text/scalc/00.po
+++ b/source/am/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-08 14:39+0100\n"
+"POT-Creation-Date: 2021-04-27 17:02+0200\n"
"PO-Revision-Date: 2021-01-25 14:07+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_help-master/textscalc00/am/>\n"
@@ -223,6 +223,15 @@ msgctxt ""
msgid "Open context menu for a sheet tab."
msgstr "ለ ወረቀት tab የ እገባብ ዝርዝር መክፈቻ"
+#. tVKSX
+#: 00000402.xhp
+msgctxt ""
+"00000402.xhp\n"
+"par_id831619443265443\n"
+"help.text"
+msgid "Choose <menuitem>Edit - Cell Protection</menuitem> to activate sheet protection with current cell protection settings."
+msgstr ""
+
#. cjzea
#: 00000403.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/scalc/01.po b/source/am/helpcontent2/source/text/scalc/01.po
index 1ae55222aac..4efa5f4b315 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: 2021-04-12 12:06+0200\n"
+"POT-Creation-Date: 2021-04-27 17:02+0200\n"
"PO-Revision-Date: 2020-12-31 12:36+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/am/>\n"
@@ -4948,15 +4948,6 @@ msgctxt ""
msgid "<emph>Weight</emph>"
msgstr ""
-#. BdjTH
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id41616246075884\n"
-"help.text"
-msgid ">600"
-msgstr ""
-
#. 4SkNQ
#: 04060101.xhp
msgctxt ""
@@ -5002,15 +4993,6 @@ msgctxt ""
msgid "<emph>Grade</emph>"
msgstr ""
-#. FsLvK
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id71616250414319\n"
-"help.text"
-msgid ">7"
-msgstr ""
-
#. hfPeb
#: 04060101.xhp
msgctxt ""
@@ -5074,24 +5056,6 @@ msgctxt ""
msgid "<emph>Age</emph>"
msgstr ""
-#. 5zWEA
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id411616252568693\n"
-"help.text"
-msgid ">=8"
-msgstr ""
-
-#. ceFqk
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id441616252573495\n"
-"help.text"
-msgid "<=10"
-msgstr ""
-
#. 6Dk9D
#: 04060101.xhp
msgctxt ""
@@ -5119,15 +5083,6 @@ msgctxt ""
msgid "<emph>Name</emph>"
msgstr ""
-#. uDvpq
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id251616253264022\n"
-"help.text"
-msgid "F*"
-msgstr ""
-
#. qBB4C
#: 04060101.xhp
msgctxt ""
@@ -5155,15 +5110,6 @@ msgctxt ""
msgid "<emph>Name</emph>"
msgstr ""
-#. PJCE2
-#: 04060101.xhp
-msgctxt ""
-"04060101.xhp\n"
-"par_id761616253649791\n"
-"help.text"
-msgid "[ABC].*"
-msgstr ""
-
#. NyqFV
#: 04060101.xhp
msgctxt ""
@@ -5173,13 +5119,13 @@ msgctxt ""
msgid "This simple example shows the use of regular expressions. For this example to work as intended, select to enable regular expressions at <link href=\"text/shared/optionen/01060500.xhp\" name=\"Spreadsheet - Calculate\"><switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME Calc - Calculate</menuitem></link>. With the above example database table and this search criteria area, insert the formula <item type=\"input\">=DCOUNT(A1:E10;;A12:A13)</item> into an empty cell elsewhere in the sheet to count how many of Joe’s guests have names that begin with the letters “A”, “B”, or “C”. The value 3 is returned (counting Andy, Betty, and Charles)."
msgstr ""
-#. jLLao
+#. KBZPC
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"bm_id3150882\n"
"help.text"
-msgid "<bookmark_value>DCOUNT function</bookmark_value> <bookmark_value>counting rows;with numeric values</bookmark_value>"
+msgid "<bookmark_value>DCOUNT function</bookmark_value><bookmark_value>counting rows;with numeric values</bookmark_value>"
msgstr ""
#. DLGGD
@@ -5236,13 +5182,13 @@ msgctxt ""
msgid "The same result is obtained if you use the formula <input>=DCOUNT(A1:E10; \"Distance\"; A12:E13)</input>, because all entries in the Distance column are numeric. However, if you use the formula <input>=DCOUNT(A1:E10; \"Name\"; A12:E13)</input>, the value 0 is returned because all entries in the Name column are non-numeric."
msgstr ""
-#. m4a6A
+#. tGFyD
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"bm_id3156123\n"
"help.text"
-msgid "<bookmark_value>DCOUNTA function</bookmark_value> <bookmark_value>records;counting in Calc databases</bookmark_value> <bookmark_value>counting rows;with numeric or alphanumeric values</bookmark_value>"
+msgid "<bookmark_value>DCOUNTA function</bookmark_value><bookmark_value>records;counting in Calc databases</bookmark_value><bookmark_value>counting rows;with numeric or alphanumeric values</bookmark_value>"
msgstr ""
#. aJdyL
@@ -5299,13 +5245,13 @@ msgctxt ""
msgid "The same result is obtained if you use the formula <input>=DCOUNTA(A1:E10; \"Distance\"; A12:E13)</input> or the formula <input>=DCOUNTA(A1:E10; \"Name\"; A12:E13)</input>. The latter case reflects that in contrast to DCOUNT, DCOUNTA counts both numeric and alphanumeric values in the column indicated by the <emph>DatabaseField</emph> argument."
msgstr ""
-#. ZFJzE
+#. GasLC
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"bm_id3147256\n"
"help.text"
-msgid "<bookmark_value>DGET function</bookmark_value> <bookmark_value>cell contents;searching in Calc databases</bookmark_value> <bookmark_value>searching;cell contents in Calc databases</bookmark_value>"
+msgid "<bookmark_value>DGET function</bookmark_value><bookmark_value>cell contents;searching in Calc databases</bookmark_value><bookmark_value>searching;cell contents in Calc databases</bookmark_value>"
msgstr ""
#. wj7ck
@@ -5371,13 +5317,13 @@ msgctxt ""
msgid "If you change the value in cell C13 to “10”, then the formula <input>=DGET(A1:E10; \"Name\"; A12:E13)</input> returns an invalid argument error (Err:502). The reflects that multiple records match the specified criterion (both Betty and Charles are age 10)."
msgstr ""
-#. umeGw
+#. rB9Ek
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"bm_id3149766\n"
"help.text"
-msgid "<bookmark_value>DMAX function</bookmark_value> <bookmark_value>maximum values in Calc databases</bookmark_value> <bookmark_value>searching;maximum values in columns</bookmark_value>"
+msgid "<bookmark_value>DMAX function</bookmark_value><bookmark_value>maximum values in Calc databases</bookmark_value><bookmark_value>searching;maximum values in columns</bookmark_value>"
msgstr ""
#. MDBf2
@@ -5434,13 +5380,13 @@ msgctxt ""
msgid "Insert the formula <input>=DMAX(A1:E10; \"Distance\"; A12:E13)</input> into an empty cell elsewhere in the sheet to find the maximum distance in meters that any of Joe’s party guests travel to school. The value 1200 is returned."
msgstr ""
-#. 5cyyS
+#. CnaXx
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"bm_id3159141\n"
"help.text"
-msgid "<bookmark_value>DMIN function</bookmark_value> <bookmark_value>minimum values in Calc databases</bookmark_value> <bookmark_value>searching;minimum values in columns</bookmark_value>"
+msgid "<bookmark_value>DMIN function</bookmark_value><bookmark_value>minimum values in Calc databases</bookmark_value><bookmark_value>searching;minimum values in columns</bookmark_value>"
msgstr ""
#. iGV4a
@@ -5497,13 +5443,13 @@ msgctxt ""
msgid "Insert the formula <input>=DMIN(A1:E10; \"Distance\"; A12:E13)</input> into an empty cell elsewhere in the sheet to find the minimum distance in meters that any of Joe’s party guests travel to school. The value 150 is returned."
msgstr ""
-#. WppQu
+#. XEu9j
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"bm_id3154274\n"
"help.text"
-msgid "<bookmark_value>DAVERAGE function</bookmark_value> <bookmark_value>averages; in Calc databases</bookmark_value> <bookmark_value>calculating;averages in Calc databases</bookmark_value>"
+msgid "<bookmark_value>DAVERAGE function</bookmark_value><bookmark_value>averages; in Calc databases</bookmark_value><bookmark_value>calculating;averages in Calc databases</bookmark_value>"
msgstr ""
#. dQciw
@@ -5560,13 +5506,13 @@ msgctxt ""
msgid "Insert the formula <input>=DAVERAGE(A1:E10; \"Distance\"; A12:E13)</input> into an empty cell elsewhere in the sheet to calculate the average distance in meters travelled to school by Joe’s party guests. The value 666.67 is returned."
msgstr ""
-#. B6fYC
+#. 6fcFr
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"bm_id3159269\n"
"help.text"
-msgid "<bookmark_value>DPRODUCT function</bookmark_value> <bookmark_value>multiplying;cell contents in Calc databases</bookmark_value>"
+msgid "<bookmark_value>DPRODUCT function</bookmark_value><bookmark_value>multiplying;cell contents in Calc databases</bookmark_value>"
msgstr ""
#. gvW9Q
@@ -5623,13 +5569,13 @@ msgctxt ""
msgid "Insert the formula <input>=DPRODUCT(A1:E10; \"Age\"; A12:E13)</input> into an empty cell elsewhere in the sheet to calculate the product of the ages in years of Joe’s party guests. The value 279417600 is returned."
msgstr ""
-#. QGMit
+#. KsVCV
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"bm_id3148462\n"
"help.text"
-msgid "<bookmark_value>DSTDEV function</bookmark_value> <bookmark_value>standard deviations in databases;based on a sample</bookmark_value>"
+msgid "<bookmark_value>DSTDEV function</bookmark_value><bookmark_value>standard deviations in databases;based on a sample</bookmark_value>"
msgstr ""
#. EvGNP
@@ -5695,13 +5641,13 @@ msgctxt ""
msgid "Insert the formula <input>=DSTDEV(A1:E10; \"Weight\"; A12:E13)</input> into an empty cell elsewhere in the sheet to calculate the sample standard deviation of the weights in kg of Joe’s party guests. The value 5.5 is returned."
msgstr ""
-#. A72yR
+#. VRXXy
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"bm_id3150429\n"
"help.text"
-msgid "<bookmark_value>DSTDEVP function</bookmark_value> <bookmark_value>standard deviations in databases;based on populations</bookmark_value>"
+msgid "<bookmark_value>DSTDEVP function</bookmark_value><bookmark_value>standard deviations in databases;based on populations</bookmark_value>"
msgstr ""
#. FpESx
@@ -5758,13 +5704,13 @@ msgctxt ""
msgid "Insert the formula <input>=DSTDEVP(A1:E10; \"Weight\"; A12:E13)</input> into an empty cell elsewhere in the sheet to calculate the population standard deviation of the weights in kg of Joe’s party guests. The value 5.18545 is returned."
msgstr ""
-#. gXoTJ
+#. Z2CTY
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"bm_id3154794\n"
"help.text"
-msgid "<bookmark_value>DSUM function</bookmark_value> <bookmark_value>calculating;sums in Calc databases</bookmark_value> <bookmark_value>sums;cells in Calc databases</bookmark_value>"
+msgid "<bookmark_value>DSUM function</bookmark_value><bookmark_value>calculating;sums in Calc databases</bookmark_value><bookmark_value>sums;cells in Calc databases</bookmark_value>"
msgstr ""
#. ybMg9
@@ -5821,13 +5767,13 @@ msgctxt ""
msgid "Insert the formula <input>=DSUM(A1:E10; \"Distance\"; A12:E13)</input> into an empty cell elsewhere in the sheet to find the total distance in meters that all of Joe’s party guests travel to school. The value 6000 is returned."
msgstr ""
-#. fbsJf
+#. YBFb7
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"bm_id3155614\n"
"help.text"
-msgid "<bookmark_value>DVAR function</bookmark_value> <bookmark_value>variances;based on samples</bookmark_value>"
+msgid "<bookmark_value>DVAR function</bookmark_value><bookmark_value>variances;based on samples</bookmark_value>"
msgstr ""
#. G6ZBW
@@ -5893,13 +5839,13 @@ msgctxt ""
msgid "Insert the formula <input>=DVAR(A1:E10; \"Distance\"; A12:E13)</input> into an empty cell elsewhere in the sheet to find the sample variance of the distances in meters that Joe’s party guests travel to school. The value 193125 is returned."
msgstr ""
-#. sGiDz
+#. 7FWS4
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"bm_id3153880\n"
"help.text"
-msgid "<bookmark_value>DVARP function</bookmark_value> <bookmark_value>variances;based on populations</bookmark_value>"
+msgid "<bookmark_value>DVARP function</bookmark_value><bookmark_value>variances;based on populations</bookmark_value>"
msgstr ""
#. XpcPC
@@ -14398,15 +14344,6 @@ msgctxt ""
msgid "<emph>Range</emph> is the range to which the criterion is to be applied."
msgstr ""
-#. 7FPaC
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3152062\n"
-"help.text"
-msgid "<emph>Criterion</emph> is the cell in which the search criterion is shown, or the search criterion itself. If the criterion is written into the formula, it has to be surrounded by double quotes."
-msgstr ""
-
#. FCxrw
#: 04060106.xhp
msgctxt ""
@@ -18790,32 +18727,32 @@ msgctxt ""
msgid "VLOOKUP"
msgstr "በ ቁመት መፈለጊያ"
-#. E5F2D
+#. qFEgu
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_id3149984\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SVERWEIS\">Vertical search with reference to adjacent cells to the right.</ahelp> This function checks if a specific value is contained in the first column of an array. The function then returns the value in the same row of the column named by <item type=\"literal\">Index</item>. If the <item type=\"literal\">Sorted</item> parameter is omitted or set to TRUE or one, it is assumed that the data is sorted in ascending order. In this case, if the exact <item type=\"literal\">SearchCriterion</item> is not found, the last value that is smaller than the criterion will be returned. If <item type=\"literal\">Sorted</item> is set to FALSE or zero, an exact match must be found, otherwise the error <emph>Error: Value Not Available</emph> will be the result. Thus with a value of zero the data does not need to be sorted in ascending order."
-msgstr "<ahelp hid=\"HID_FUNC_SVERWEIS\">በ ቁመት መፈለጊያ በ ማመሳከሪያ ወደ አጓዳኝ ክፍሎች በ ቀኝ በኩል: </ahelp> ይህ ተግባር ይመረምራል የ ተወሰነ ዋጋ ተይዞ እንደሆን በ መጀመሪያው አምድ ማዘጋጃ ውስጥ: ተግባሩ ይመልሳል ዋጋ በ ተመሳሳይ ረድፍ ለ ተሰየመው አምድ በ <item type=\"literal\"> ማውጫ </item> ውስጥ: ከሆነ የ <item type=\"literal\"> መለያ ደንብ </item> ደንብ ይደበቃል ወይንም ወደ እውነት ይሰናዳል ወይንም አንድ: ዳታው የ ተለየው እየጨመረ በሚሄድ መለያ ደንብ እንደሆነ ይታሰባል: ስለዚህ ትክክለኛው <item type=\"literal\"> መፈለጊያ መመዘኛ </item> አልተገኘም: የ መጨረሻው ዋጋ ከ መመዘኛው የሚያንስ ይመልሳል: ከሆነ <item type=\"literal\"> መለያ ደንብ </item> እንደ ሀሰት ይሰናዳል ወይንም ዜሮ ትክክለኛ ተመሳሳይ መገኘት አለበት: ያለ በለዚያ የ ስህተት <emph> ስህተት: ዋጋ ዝግጁ አይደለም </emph> ይሆናል ውጤቱ: ስለዚህ በ ዜሮ ዋጋ ዳታ መለየት አያስፈልግም እየጨመረ በሚሄድ መለያ ደንብ"
+msgid "<ahelp hid=\"HID_FUNC_SVERWEIS\">Vertical search with reference to adjacent cells to the right.</ahelp> This function checks if a specific value is contained in the first column of an array. The function then returns the value in the same row of the column named by <emph>Index</emph>. If the <emph>Sorted</emph> parameter is omitted or set to TRUE or one, it is assumed that the data is sorted in ascending order. In this case, if the exact <emph>Lookup</emph> is not found, the last value that is smaller than the criterion will be returned. If <emph>Sorted</emph> is set to FALSE or zero, an exact match must be found, otherwise the error <emph>Error: Value Not Available</emph> will be the result. Thus with a value of zero the data does not need to be sorted in ascending order."
+msgstr ""
-#. 8FhyJ
+#. j8RoY
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_id3150156\n"
"help.text"
-msgid "=VLOOKUP(SearchCriterion; Array; Index [; SortedRangeLookup])"
+msgid "=VLOOKUP(Lookup; Array; Index [; SortedRangeLookup])"
msgstr ""
-#. 7FsgG
+#. LDrCq
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_id3149289\n"
"help.text"
-msgid "<emph>SearchCriterion</emph> is the value searched for in the first column of the array."
-msgstr "<emph>መፈለጊያ መመዘኛ</emph> የሚፈለገው ዋጋ ነው ለ መጀመሪያው አምድ በ ማዘጋጃ ውስጥ"
+msgid "<emph>Lookup</emph> is the value of any type looked for in the first column of the array."
+msgstr ""
#. WFj5E
#: 04060109.xhp
@@ -18835,13 +18772,13 @@ msgctxt ""
msgid "<emph>Index</emph> is the number of the column in the array that contains the value to be returned. The first column has the number 1."
msgstr "<emph>ማውጫ</emph> የ አምድ ቁጥር ነው በ ማዘጋጃ ውስጥ ዋጋውን የያዘውን የሚመልስ: የ መጀመሪያው አምድ አለው ቁጥር 1."
-#. QV6iE
+#. qKRbD
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_id3151208\n"
"help.text"
-msgid "<emph>SortedRangeLookup</emph> is an optional parameter that indicates whether the first column in the array contains range boundaries instead of plain values. In this mode, the lookup returns the value in the row with first column having value equal to or less than SearchCriterion. E.g., it could contain dates when some tax value had been changed, and so the values represent starting dates of a period when a specific tax value was effective. Thus, searching for a date that is absent in the first array column, but falls between some existing boundary dates, would give the lower of them, allowing to find out the data being effective to the searched date. Enter the Boolean value FALSE or zero if the first column is not a range boundary list. When this parameter is TRUE or not given, the first column in the array <emph>must be sorted in ascending order</emph>. Sorted columns can be searched much faster and the function always returns a value, even if the search value was not matched exactly, if it is greater than the lowest value of the sorted list. In unsorted lists, the search value must be matched exactly. Otherwise the function will return #N/A with message: <emph>Error: Value Not Available</emph>."
+msgid "<emph>SortedRangeLookup</emph> is an optional parameter that indicates whether the first column in the array contains range boundaries instead of plain values. In this mode, the lookup returns the value in the row with first column having value equal to or less than <emph>Lookup</emph>. E.g., it could contain dates when some tax value had been changed, and so the values represent starting dates of a period when a specific tax value was effective. Thus, searching for a date that is absent in the first array column, but falls between some existing boundary dates, would give the lower of them, allowing to find out the data being effective to the searched date. Enter the Boolean value FALSE or zero if the first column is not a range boundary list. When this parameter is TRUE or not given, the first column in the array <emph>must be sorted in ascending order</emph>. Sorted columns can be searched much faster and the function always returns a value, even if the search value was not matched exactly, if it is greater than the lowest value of the sorted list. In unsorted lists, the search value must be matched exactly. Otherwise the function will return #N/A with message: <emph>Error: Value Not Available</emph>."
msgstr ""
#. fJQRf
@@ -19024,23 +18961,23 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_VERGLEICH\">Returns the relative position of an item in an array that matches a specified value.</ahelp> The function returns the position of the value found in the lookup_array as a number."
msgstr "<ahelp hid=\"HID_FUNC_VERGLEICH\">አንፃራዊ ቦታ ይመልሳል ለ እቃ ማዘጋጃ የ ተወሰነውን ዋጋ የሚመሳሰለውን </ahelp> ተግባር የሚመልሰው የ ተገኘውን ዋጋ ቦታ ነው: በ መፈለጊያ_ማዘጋጃ ውስጥ እንደ ቁጥር"
-#. FsB8G
+#. AKi9E
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_id3159152\n"
"help.text"
-msgid "MATCH(SearchCriterion; LookupArray [; Type])"
+msgid "MATCH(Search; LookupArray [; Type])"
msgstr ""
-#. BmVBr
+#. KZU4F
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_id3149336\n"
"help.text"
-msgid "<emph>SearchCriterion</emph> is the value which is to be searched for in the single-row or single-column array."
-msgstr "<emph>መፈለጊያ መመዘኛ</emph> የሚፈለገው ዋጋ ነው በ ነጠላ-ረድፍ ውስጥ ወይንም በ ነጠላ-አምድ ውስጥ ማዘጋጃ ነው"
+msgid "<emph>Search</emph> is the value which is to be searched for in the single-row or single-column array."
+msgstr ""
#. 9j4xw
#: 04060109.xhp
@@ -19285,23 +19222,23 @@ msgctxt ""
msgid "If LOOKUP cannot find the search criterion, it matches the largest value in the search vector that is less than or equal to the search criterion."
msgstr "በ ቁመት መፈለጊያ የ መፈለጊያ መመዘኛ ማግኘት አልቻለም: ትልቁን ዋጋ ያመሳስላል በ መፈለጊያ አቅጣጫ ውስጥ የሚያንሰውን ወይንም እኩል የሚሆነውን ከ መፈለጊያ መመዘኛ ጋር"
-#. 4nBA6
+#. sLcHB
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_id3154104\n"
"help.text"
-msgid "LOOKUP(SearchCriterion; SearchVector [; ResultVector])"
+msgid "LOOKUP(Lookup; SearchVector [; ResultVector])"
msgstr ""
-#. QdiFz
+#. yGLLE
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_id3150646\n"
"help.text"
-msgid "<emph>SearchCriterion</emph> is the value to be searched for; entered either directly or as a reference."
-msgstr "<emph>መፈለጊያ መመዘኛ</emph> የሚፈለገው ዋጋ ነው: በ ቀጥታ ወይንም እንደ ማመሳከሪያ ያስገቡት"
+msgid "<emph>Lookup</emph> is the value of any type to be looked for; entered either directly or as a reference."
+msgstr ""
#. tFDBC
#: 04060109.xhp
@@ -19519,13 +19456,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_WVERWEIS\">Searches for a value and reference to the cells below the selected area.</ahelp> This function verifies if the first row of an array contains a certain value. The function returns then the value in a row of the array, named in the <emph>Index</emph>, in the same column."
msgstr "<ahelp hid=\"HID_FUNC_WVERWEIS\">መፈለጊያ ዋጋ እና ማመሳከሪያ ከ ታች በኩል ላሉት ክፍሎች በ ተመረጠው ቦታ ውስጥ </ahelp> ይህ ተግባር ያረጋግጣል የ መጀመሪያው ረድፍ ማዘጋጃ የያዘውን አንዳንድ ዋጋዎች: ይህ ተግባር ይመልሳል ዋጋ በ ረድፍ ውስጥ ማዘጋጃ: የ ተሰየመውን በ <emph> ማውጫ </emph> በ ተመሳሳይ አምድ ውስጥ"
-#. y6is6
+#. NWzFA
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_id3146070\n"
"help.text"
-msgid "HLOOKUP(SearchCriterion; Array; Index [; SortedRangeLookup])"
+msgid "HLOOKUP(Lookup; Array; Index [; SortedRangeLookup])"
msgstr ""
#. nhwwF
@@ -23767,6 +23704,15 @@ msgctxt ""
msgid "<emph>Input</emph>: Any number of types (double&, char*, double*, char**, Cell area), where the <link href=\"text/scalc/01/04060112.xhp\" name=\"Cell area\">Cell area</link> is an array of types double array, string array, or cell array."
msgstr ""
+#. BJLCP
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"hd_id3150653\n"
+"help.text"
+msgid "GetFunctionCount()"
+msgstr "የ ተግባሮች መቁጠሪያ ያግኙ()"
+
#. Hs7Du
#: 04060112.xhp
msgctxt ""
@@ -23803,6 +23749,15 @@ msgctxt ""
msgid "<emph>Output</emph>: Reference to a variable, which is supposed to contain the number of Add-In functions. For example: If the Add-In provides 5 functions for $[officename] Calc, then nCount=5."
msgstr ""
+#. GFJes
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"hd_id3147476\n"
+"help.text"
+msgid "GetFunctionData()"
+msgstr "የ ዳታ ተግባር ያግኙ()"
+
#. MMvZL
#: 04060112.xhp
msgctxt ""
@@ -23884,6 +23839,15 @@ msgctxt ""
msgid "The pFuncName and pInternalName parameters are char arrays, which are implemented with size 256 in $[officename] Calc."
msgstr "የ ደንብ ተግባር ስም እና የ ደንብ የ ውስጥ ስም ደንቦች የ ባህሪ ማዘጋጃ ናቸው: የሚፈጸሙ በ 256 መጠን በ $[officename] ሰንጥረዥ ውስጥ"
+#. BDeUC
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"hd_id3148567\n"
+"help.text"
+msgid "GetParameterDescription()"
+msgstr "የ ደንብ መግለጫ ያግኙ()"
+
#. sF27k
#: 04060112.xhp
msgctxt ""
@@ -24919,14 +24883,14 @@ msgctxt ""
msgid "The Add-in functions are supplied by the <link href=\"text/sbasic/shared/calc_functions.xhp\" name=\"addinanalysis\">UNO <literal>com.sun.star.sheet.addin.Analysis</literal> service</link>."
msgstr ""
-#. fCaeG
+#. zKa2G
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"bm_id3153074\n"
"help.text"
-msgid "<bookmark_value>Bessel functions</bookmark_value>"
-msgstr "<bookmark_value>የ ቤሴል ተግባር</bookmark_value>"
+msgid "<bookmark_value>Bessel functions</bookmark_value> <bookmark_value>BESSELI function</bookmark_value>"
+msgstr ""
#. YpfCj
#: 04060115.xhp
@@ -25000,6 +24964,15 @@ msgctxt ""
msgid "=BESSELI(-1, 3), returns -0.022168424924332"
msgstr "=ቤሴልI(-1, 3), ይመልሳል -0.022168424924332"
+#. eDJhC
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"bm_id161618267677640\n"
+"help.text"
+msgid "<bookmark_value>BESSELJ function</bookmark_value>"
+msgstr ""
+
#. Cccmx
#: 04060115.xhp
msgctxt ""
@@ -25072,6 +25045,15 @@ msgctxt ""
msgid "=BESSELJ(-1, 3), returns -0.019563353982668"
msgstr "=ቤሴልJ(-1, 3), ይመልሳል -0.019563353982668"
+#. xVEFS
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"bm_id151618267791726\n"
+"help.text"
+msgid "<bookmark_value>BESSELK function</bookmark_value>"
+msgstr ""
+
#. jb2FF
#: 04060115.xhp
msgctxt ""
@@ -25144,6 +25126,15 @@ msgctxt ""
msgid "=BESSELK(0, 3), returns Err:502 – invalid argument (X=0)"
msgstr "=ቤሴልK(0, 3), ይመልሳል ስህተት:502 – ዋጋ የሌለው ክርክር (X=0)"
+#. PndsN
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"bm_id201618267836525\n"
+"help.text"
+msgid "<bookmark_value>BESSELY function</bookmark_value>"
+msgstr ""
+
#. 9PCdq
#: 04060115.xhp
msgctxt ""
@@ -32947,14 +32938,14 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_ZAEHLENWENN\">Returns the number of cells that meet with certain criteria within a cell range.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_ZAEHLENWENN\">የ ክፍሎች ቁጥር ይመልሳል መመዘኛውን የሚያሟሉ በ ክፍሎች መጠን ውስጥ </ahelp>"
-#. GxU5g
+#. ZS8Ej
#: 04060181.xhp
msgctxt ""
"04060181.xhp\n"
"par_id3164967\n"
"help.text"
-msgid "COUNTIF(Range; Criteria)"
-msgstr "በ ክፍል ቁጥር ውስጥ ሁኔታውን የሚያሟሉ(መጠን: መመዘኛ)"
+msgid "COUNTIF(Range; Criterion)"
+msgstr ""
#. sxGvB
#: 04060181.xhp
@@ -32965,15 +32956,6 @@ msgctxt ""
msgid "<emph>Range</emph> is the range to which the criteria are to be applied."
msgstr "<emph>መጠን</emph> መጠን ነው መመዘኛው የሚፈጸምበት"
-#. HvRLc
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3165000\n"
-"help.text"
-msgid "<emph>Criteria</emph> indicates the criteria in the form of a number, an expression or a character string. These criteria determine which cells are counted."
-msgstr ""
-
#. ZpDRv
#: 04060181.xhp
msgctxt ""
@@ -47941,23 +47923,41 @@ msgctxt ""
msgid "Protecting Sheet"
msgstr "ወረቀት መጠበቂያ"
-#. z8zCf
+#. du7pC
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"bm_id141619439455954\n"
+"help.text"
+msgid "<bookmark_value>insert rows;protected sheet</bookmark_value><bookmark_value>insert columns;protected sheet</bookmark_value><bookmark_value>delete columns;protected sheet</bookmark_value><bookmark_value>delete rows;protected sheet</bookmark_value><bookmark_value>protected sheet;insert columns</bookmark_value><bookmark_value>protected sheet;insert rows</bookmark_value><bookmark_value>protected sheet;delete rows</bookmark_value><bookmark_value>protected sheet;delete columns</bookmark_value><bookmark_value>protect;sheet</bookmark_value><bookmark_value>selection;in protected cells</bookmark_value>"
+msgstr ""
+
+#. ZFcP8
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
"hd_id3153087\n"
"help.text"
-msgid "Protecting Sheet"
-msgstr "ወረቀት መጠበቂያ"
+msgid "<variable id=\"ProtectingSheeth1\"><link href=\"text/scalc/01/06060100.xhp\" name=\"Protecting Sheet\">Protecting Sheet</link></variable>"
+msgstr ""
-#. HUFRu
+#. LcpD8
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
"par_id3148664\n"
"help.text"
-msgid "<variable id=\"tabelletext\"><ahelp hid=\".uno:Protect\">Protects the cells in the current sheet from being modified.</ahelp></variable> Choose <emph>Tools - Protect Sheet</emph> to open the <emph>Protect Sheet</emph> dialog in which you then specify sheet protection with or without a password."
-msgstr "<variable id=\"tabelletext\"><ahelp hid=\".uno:Protect\">በ አሁኑ ወረቀት ውስጥ ክፍሎች እንዳይሻሻሉ መጠበቂያ </ahelp></variable> ይምረጡ <emph> መሳሪያዎች - ወረቀት መጠበቂያ </emph> ለ መክፈት የ <emph> ወረቀት መጠበቂያ </emph> ንግግር እርስዎ የ ወረቀት መጠበቂያ በ መግቢያ ቃል ወይንም ያለ መግቢያ ቃል የሚወስኑበት"
+msgid "<variable id=\"tabelletext\"><ahelp hid=\".uno:Protect\">Protects the cells in the current sheet from being modified.</ahelp></variable>"
+msgstr ""
+
+#. YZ3HB
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id701619429750616\n"
+"help.text"
+msgid "Choose <emph>Tools - Protect Sheet</emph> to open the <emph>Protect Sheet</emph> dialog in which you then specify sheet protection with or without a password, and select the elements of the sheet to protect."
+msgstr ""
#. vFHpY
#: 06060100.xhp
@@ -47968,6 +47968,114 @@ msgctxt ""
msgid "To protect cells from further editing, the <emph>Protected</emph> check box must be checked on the <link href=\"text/scalc/01/05020600.xhp\" name=\"Format - Cells - Cell Protection\"><emph>Format - Cells - Cell Protection</emph></link> tab page or on the <emph>Format Cells</emph> context menu."
msgstr "ክፍሎች እንዳይሻሻሉ ለ መጠበቅ <emph> መጠበቂያ </emph> ምልክት ማድረጊያ ሳጥን ውስጥ ምልክት መደረግ አለበት <link href=\"text/scalc/01/05020600.xhp\" name=\"Format - Cells - Cell Protection\"><emph> አቀራረብ - ክፍሎች - ክፍል መጠበቂያ </emph></link> tab ገጽ ወይንም በ <emph> አቀራረብ - ክፍሎች </emph> አገባብ ዝርዝር ውስጥ"
+#. eUvfv
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"hd_id901619431276995\n"
+"help.text"
+msgid "Protect this sheet and contents of the protected cells"
+msgstr ""
+
+#. G5UKV
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id381619431285815\n"
+"help.text"
+msgid "Mark this checkbox to activate protection of sheet and cell contents."
+msgstr ""
+
+#. SFevC
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"hd_id31619431291108\n"
+"help.text"
+msgid "Password / Confirm"
+msgstr ""
+
+#. AaZQG
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id851619431300487\n"
+"help.text"
+msgid "Allows you to enter a password to protect the sheet from unauthorized changes. Confirm the password entered in the first box."
+msgstr ""
+
+#. WX7Gh
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"hd_id711619431316966\n"
+"help.text"
+msgid "Allow users of this sheet to"
+msgstr ""
+
+#. skcWB
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id41619431361278\n"
+"help.text"
+msgid "Select the elements to protect from user actions:"
+msgstr ""
+
+#. 9Mc4m
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id661619430257262\n"
+"help.text"
+msgid "<emph>Select protected cells</emph>: mark this checkbox to allow you to select protected cells. When the checkbox is unmarked, you cannot select protected cells, the cursor cannot enter in a protected range."
+msgstr ""
+
+#. UqBRQ
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id921619430295947\n"
+"help.text"
+msgid "<emph>Select unprotected cells</emph>: mark this checkbox to allow user to select unprotected cells. When the checkbox is unmarked, user cannot select unprotected cells, the cursor cannot enter in a unprotected cell or range."
+msgstr ""
+
+#. R6DuD
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id101619430333784\n"
+"help.text"
+msgid "<emph>Insert columns</emph>: Allow column insertions even when the sheet is protected. Note that when column insertions is enabled, you can insert columns even when the range to insert the new columns into contains protected cells which will get shifted after the insertion. Cells of the newly inserted columns inherit the Protection property of the range it belongs: when the new cell is inside a protected range, the cell is protected, and when it is in an unprotected range, the cell is unprotected."
+msgstr ""
+
+#. 36hCi
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id891619430338809\n"
+"help.text"
+msgid "<emph>Insert rows</emph>: Allow row insertions even when the sheet is protected. Note that when row insertions is enabled, you can insert rows even when the range to insert the new rows into contains protected cells which will get shifted after the insertion. Cells of the newly inserted rows inherit the Protection property of the range it belongs: when the new cell is inside a protected range it is protected, and when it is in an unprotected range, the cell is unprotected."
+msgstr ""
+
+#. hGXEq
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id311619430374686\n"
+"help.text"
+msgid "<emph>Delete columns</emph>: Allow column deletions. Note that column deletions are only allowed on unprotected cells."
+msgstr ""
+
+#. ebwLU
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id561619430376854\n"
+"help.text"
+msgid "<emph>Delete rows</emph>: Allow row deletions. Note that row deletions are only allowed on unprotected cells."
+msgstr ""
+
#. cE3Ff
#: 06060100.xhp
msgctxt ""
@@ -48004,14 +48112,41 @@ msgctxt ""
msgid "On the <emph>Tools - Protect Sheet</emph> menu, activate protection for the sheet. Effective immediately, only the cell range you selected in step 1 can be edited."
msgstr "በ <emph>መሳሪያዎች - ወረቀት መጠበቂያ</emph> ዝርዝር ውስጥ: የ ወረቀት መጠበቂያ ያስጀምሩ: ወዲያውኑ የሚፈጸም: እርስዎ የ መረጡት የ ክፍል መጠን በ ደረጃ 1 ብቻ ማረም ይቻላል"
-#. VfJA6
+#. JQWv7
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
"par_id3149566\n"
"help.text"
-msgid "To later change an unprotected area to a protected area, select the range. Next, on the <emph>Format - Cells - Cell Protection</emph> tab page, check the <emph>Protected</emph> box. Finally, choose the <emph>Tools - Protect Sheet</emph> menu. The previously editable range is now protected."
-msgstr "በኋላ ለ መቀየር የማይጠበቁ ቦታዎች ወደ የሚጠበቁ ቦታዎች: ይምረጡ መጠን: የሚቀጥለው በ <emph> አቀራረብ - ክፍሎች - ክፍል መጠበቂያ </emph> tab ገጽ ውስጥ: ይመርምሩ <emph> የሚጠበቅ </emph> ሳጥን ውስጥ: በ መጨረሻ: ይምረጡ <emph> መሳሪያዎች - ወረቀት መጠበቂያ </emph> ዝርዝር ውስጥ: ያለፈው የሚታረም መጠን አሁን ይጠበቃል"
+msgid "To later change an unprotected area to a protected area:"
+msgstr ""
+
+#. TzTnE
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id101619439013221\n"
+"help.text"
+msgid "Select the range of cells that will be protected."
+msgstr ""
+
+#. Cc2Tb
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id601619439028536\n"
+"help.text"
+msgid "On the <menuitem>Format - Cells - Cell Protection</menuitem> tab page, check the <emph>Protected</emph> box."
+msgstr ""
+
+#. EeKFF
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id641619439061892\n"
+"help.text"
+msgid "Choose the <menuitem>Tools - Protect Sheet</menuitem> menu. The previously editable range is now protected."
+msgstr ""
#. JaC9W
#: 06060100.xhp
@@ -48031,14 +48166,14 @@ msgctxt ""
msgid "If a sheet is protected, you will not be able to modify or delete any Cell Styles."
msgstr "ወረቀት የሚጠበቅ ከሆነ: እርስዎ ማሻሻል ወይንም ማጥፋት አይችሉም ማንኛውንም የ ክፍል ዘዴዎች"
-#. d39My
+#. WEsxm
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
"par_id3154656\n"
"help.text"
-msgid "A protected sheet or cell range can no longer be modified until this protection is disabled. To disable the protection, choose the <emph>Tools - Protect Sheet</emph> command. If no password was set, the sheet protection is immediately disabled. If the sheet was password protected, the <emph>Remove Protection</emph> dialog opens, where you must enter the password."
-msgstr "የሚጠበቅ ወረቀት ወይንም የ ክፍል መጠን ማሻሻል አይቻልም መጠበቂያ ካልተሰናከለ በስተቀር: መጠበቂያውን ለ ማሰናከል: ይምረጡ <emph> መሳሪያዎች - ወረቀት መጠበቂያ </emph> ትእዛዝ: ምንም የ መግቢያ ቃል ካልተሰናዳ: የ ወረቀት መጠበቂያው ወዲያውኑ ይሰናከላል: ወረቀቱ የሚጠበቅ ከሆነ: <emph> መጠበቂያ ማስወገጃ </emph> ንግግር ይከፈታል: እርስዎ የ መግቢያ ቃል የሚያስገቡበት"
+msgid "A protected sheet or cell range can no longer be modified until this protection is disabled, with the exceptions of the settings for columns and row of the <menuitem>Tools - Protect Sheet</menuitem> dialog. To disable the protection, choose the <menuitem>Tools - Protect Sheet</menuitem> command. If no password was set, the sheet protection is immediately disabled. If the sheet was password protected, the <emph>Remove Protection</emph> dialog opens, where you must enter the password."
+msgstr ""
#. scXrG
#: 06060100.xhp
@@ -48049,24 +48184,6 @@ msgctxt ""
msgid "Once saved, protected sheets can only be saved again by using the <emph>File - Save As</emph> command."
msgstr "አንዴ ከ ተቀመጠ: የሚጠበቅ ወረቀት ማስቀመጥ የሚቻለው ይህን በ መጠቀም ነው <emph>ፋይል - ማስቀመጫ እንደ</emph>ትእዛዝ"
-#. A4TcK
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"hd_id3150206\n"
-"help.text"
-msgid "<link href=\"text/shared/01/password_dlg.xhp\" name=\"Password\">Password (optional)</link>"
-msgstr "<link href=\"text/shared/01/password_dlg.xhp\" name=\"Password\">የ መግቢያ ቃል (በ ምርጫ)</link>"
-
-#. hBPMK
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id3152990\n"
-"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/protectsheetdlg/password1\">Allows you to enter a password to protect the sheet from unauthorized changes.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/protectsheetdlg/password1\">እርስዎን የ መግቢያ ቃል ማስገባት ያችችሎታል ወረቀቱን ለ መጠበቅ በ ድንገት ከ መቀየር </ahelp>"
-
#. Gr24z
#: 06060100.xhp
msgctxt ""
@@ -54835,13 +54952,13 @@ msgctxt ""
msgid "In all examples below, ranges for calculation contain the row #6, which is ignored because it contains text."
msgstr "በሁሉም ምሳሌዎች ከ ታች በኩል: መጠኖች ለ ድምር ማስሊያ የያዘው ረድፍ #6, ነው: ነገር ግን ተትቷል: ምክንያቱም የያዘው ጽሁፍ ነው:"
-#. 5DDEz
+#. YXQmf
#: ex_data_stat_func.xhp
msgctxt ""
"ex_data_stat_func.xhp\n"
"par_id961527953004850\n"
"help.text"
-msgid "<variable id=\"args\">Func_Range; Range1; Criterion1[; Range2; Criterion2][; … ; [Range127; Criterion127]]</variable>"
+msgid "<variable id=\"args\">Func_Range; Range1; Criterion[; Range2; Criterion2][; … ; [Range127; Criterion127]]</variable>"
msgstr ""
#. d8gmy
@@ -54871,13 +54988,103 @@ msgctxt ""
msgid "<emph>Range1</emph> – required argument. It is a range of cells, a name of a named range, or a label of a column or a row, to which the corresponding criterion is to be applied."
msgstr ""
-#. 3wJSR
+#. 45WHz
#: ex_data_stat_func.xhp
msgctxt ""
"ex_data_stat_func.xhp\n"
-"par_id23526994221948\n"
+"par_id621619279022341\n"
"help.text"
-msgid "<emph>Criterion1</emph> – required argument. A string expression representing a logical condition or a cell reference to such string expression. The expression can contain text, numbers, regular expressions or wildcards (<link href=\"text/shared/optionen/01060500.xhp#wildcards\" name=\"Wild cards\">if enabled in calculation options</link>)."
+msgid "<emph>Criterion</emph>: A criterion is a single cell Reference, Number or Text. It is used in comparisons with cell contents."
+msgstr ""
+
+#. m9EAG
+#: ex_data_stat_func.xhp
+msgctxt ""
+"ex_data_stat_func.xhp\n"
+"par_id731619279029255\n"
+"help.text"
+msgid "A reference to an empty cell is interpreted as the numeric value 0."
+msgstr ""
+
+#. iYNFV
+#: ex_data_stat_func.xhp
+msgctxt ""
+"ex_data_stat_func.xhp\n"
+"par_id31619279035359\n"
+"help.text"
+msgid "A matching expression can be:"
+msgstr ""
+
+#. fSoyL
+#: ex_data_stat_func.xhp
+msgctxt ""
+"ex_data_stat_func.xhp\n"
+"par_id171619279059462\n"
+"help.text"
+msgid "A Number or Logical value. A matching cell content equals the Number or Logical value."
+msgstr ""
+
+#. 7Hfq9
+#: ex_data_stat_func.xhp
+msgctxt ""
+"ex_data_stat_func.xhp\n"
+"par_id511619279076504\n"
+"help.text"
+msgid "A value beginning with a comparator (<, <=, =, >, >=, <>)."
+msgstr ""
+
+#. YEjSD
+#: ex_data_stat_func.xhp
+msgctxt ""
+"ex_data_stat_func.xhp\n"
+"par_id11619279168512\n"
+"help.text"
+msgid "For =, if the value is empty it matches empty cells."
+msgstr ""
+
+#. 39AJR
+#: ex_data_stat_func.xhp
+msgctxt ""
+"ex_data_stat_func.xhp\n"
+"par_id161619279207350\n"
+"help.text"
+msgid "For <>, if the value is empty it matches non-empty cells."
+msgstr ""
+
+#. 9xDer
+#: ex_data_stat_func.xhp
+msgctxt ""
+"ex_data_stat_func.xhp\n"
+"par_id271619279215695\n"
+"help.text"
+msgid "For <>, if the value is not empty it matches any cell content except the value, including empty cells."
+msgstr ""
+
+#. y2EGU
+#: ex_data_stat_func.xhp
+msgctxt ""
+"ex_data_stat_func.xhp\n"
+"par_id861619279223855\n"
+"help.text"
+msgid "<emph>Note:</emph> \"=0\" does not match empty cells."
+msgstr ""
+
+#. 2nrnV
+#: ex_data_stat_func.xhp
+msgctxt ""
+"ex_data_stat_func.xhp\n"
+"par_id51619279363954\n"
+"help.text"
+msgid "For = and <>, if the value is not empty and can not be interpreted as a Number type or one of its subtypes and the property <link href=\"text/shared/optionen/01060500.xhp\" name=\"s\">Search criteria = and <> must apply to whole cells</link> is checked, comparison is against the entire cell contents, if unchecked, comparison is against any subpart of the field that matches the criteria. For = and <>, if the value is not empty and can not be interpreted as a Number type or one of its subtypes applies."
+msgstr ""
+
+#. VG8wZ
+#: ex_data_stat_func.xhp
+msgctxt ""
+"ex_data_stat_func.xhp\n"
+"par_id801619279323556\n"
+"help.text"
+msgid "Other Text value. If the property <link href=\"text/shared/optionen/01060500.xhp\" name=\"s\">Search criteria = and <> must apply to whole cells</link> is true, the comparison is against the entire cell contents, if false, comparison is against any subpart of the field that matches the criteria. The expression can contain text, numbers, regular expressions or wildcards (<link href=\"text/shared/optionen/01060500.xhp#wildcards\" name=\"Wild cards\">if enabled in calculation options</link>)."
msgstr ""
#. sACAB
@@ -54889,14 +55096,14 @@ msgctxt ""
msgid "<emph>Range2</emph> – Optional. Range2 and all the following mean the same as Range1."
msgstr "<emph>መጠን2</emph> – በምርጫ: መጠን2 እና ሁሉም የሚቀጥለው ማለት ተመሳሳይ ነው ከ መጠን1. ጋር"
-#. NygMb
+#. FyA7p
#: ex_data_stat_func.xhp
msgctxt ""
"ex_data_stat_func.xhp\n"
"par_id317001803813193\n"
"help.text"
-msgid "<emph>Criterion2</emph> – Optional. Criterion2 and all the following mean the same as Criterion1."
-msgstr "<emph>መመዘኛ2</emph> – በ ምርጫ: መመዘኛ2 እና ሁሉም የሚቀጥለው መካከለኛ ተመሳሳይ ነው እንደ መመዘኛ1."
+msgid "<emph>Criterion2</emph> – Optional. Criterion2 and all the following mean the same as Criterion."
+msgstr ""
#. tzFDE
#: ex_data_stat_func.xhp
@@ -56176,15 +56383,6 @@ msgctxt ""
msgid "<emph>Range</emph> – required argument. An array, a name of named range or a label of a column or a row containing numbers for averaging or numbers or text for the condition."
msgstr "<emph>መጠን</emph> – አስፈላጊ ክርክር ነው: ማዘጋጃ: ስም ለ ተሰየመው መጠን ወይንም የ ምልክት አምድ ወይንም ረድፍ ቁጥሮቹን ለያዘው ለ መካከለኛ ወይንም ቁጥሮች ወይንም ጽሁፍ ለ ሁኔታው"
-#. tSkGD
-#: func_averageif.xhp
-msgctxt ""
-"func_averageif.xhp\n"
-"par_id24499731228013\n"
-"help.text"
-msgid "<emph>Criterion</emph> – required argument. A condition in the form of expression or a cell reference with expression that defines what cells should be used to calculate the mean. The expression can contain text, numbers, regular expressions (if enabled in calculation options) or wildcards (if enabled in calculation options)."
-msgstr "<emph>መመዘኛ</emph> – ክርክር ይፈልጋል: ሁኔታ በ አገላለጽ ፎርም ውስጥ ወይንም የ ክፍል መግለጫ ምን እንደሚያሰላ ለ አማካይ መግለጫ: መግለጫው ጽሁፍ: ቁጥር: መደበኛ አገላለጽ መያዝ ይችላል: (ከ ተጣበቀ በ ማስሊያ ምርጫ ውስጥ) ወይንም ሁለገብ (ካስቻሉ በ ስሌት ምርጫ ውስጥ)"
-
#. sDeiD
#: func_averageif.xhp
msgctxt ""
@@ -57346,14 +57544,14 @@ msgctxt ""
msgid "<bookmark_value>COUNTIFS function</bookmark_value> <bookmark_value>counting row;satisfying criteria</bookmark_value> <bookmark_value>counting column;satisfying criteria</bookmark_value>"
msgstr "<bookmark_value>መቁጠሪያ ከሆኑ ተግባር</bookmark_value> <bookmark_value>መቁጠሪያ ረድፍ: ከ ተሟላ መመዘኛው</bookmark_value> <bookmark_value>መቁጠሪያ አምድ: ከ ተሟላ መመዘኛው</bookmark_value>"
-#. NRDey
+#. wMH8u
#: func_countifs.xhp
msgctxt ""
"func_countifs.xhp\n"
"hd_id456845684568\n"
"help.text"
-msgid "<variable id=\"countifs_head\"><link href=\"text/scalc/01/func_countifs.xhp\">COUNTIFS</link></variable> function"
-msgstr "<variable id=\"countifs_head\"><link href=\"text/scalc/01/func_countifs.xhp\">መቁጠሪያ ከሆኑ</link></variable> ተግባር"
+msgid "<variable id=\"countifs_head\"><link href=\"text/scalc/01/func_countifs.xhp\">COUNTIFS</link></variable>"
+msgstr ""
#. pGTzr
#: func_countifs.xhp
@@ -57364,13 +57562,13 @@ msgctxt ""
msgid "<ahelp hid=\".\"><variable id=\"countifs_des\">Returns the count of cells that meet criteria in multiple ranges.</variable></ahelp>"
msgstr ""
-#. xRjyE
+#. fyEW6
#: func_countifs.xhp
msgctxt ""
"func_countifs.xhp\n"
"par_id27421466710275\n"
"help.text"
-msgid "COUNTIFS(Range1; Criterion1[; Range2; Criterion2][; ... ; [Range127; Criterion127]])"
+msgid "COUNTIFS(Range1; Criterion[; Range2; Criterion2][; ... ; [Range127; Criterion127]])"
msgstr ""
#. 2BB8K
@@ -63331,14 +63529,14 @@ msgctxt ""
msgid "<bookmark_value>SUMIFS function</bookmark_value> <bookmark_value>sum;satisfying conditions</bookmark_value>"
msgstr "<bookmark_value>ድምር ከሆነ ተግባር</bookmark_value> <bookmark_value>ድምር: ሁኔታዎች የሚያሟሉት</bookmark_value>"
-#. b5txh
+#. MpUwQ
#: func_sumifs.xhp
msgctxt ""
"func_sumifs.xhp\n"
"hd_id658866588665886\n"
"help.text"
-msgid "<variable id=\"sumifs_head\"><link href=\"text/scalc/01/func_sumifs.xhp\">SUMIFS</link></variable> function"
-msgstr "<variable id=\"sumifs_head\"><link href=\"text/scalc/01/func_sumifs.xhp\">ድምር ከሆነ</link></variable> ተግባር"
+msgid "<variable id=\"sumifs_head\"><link href=\"text/scalc/01/func_sumifs.xhp\">SUMIFS</link></variable>"
+msgstr ""
#. ZEdvF
#: func_sumifs.xhp
@@ -64717,13 +64915,13 @@ msgctxt ""
msgid "<item type=\"input\">=WEEKNUM(DATE(1995;1;1);1)</item> returns 1"
msgstr ""
-#. NHnKC
+#. ADL9J
#: func_weeknum.xhp
msgctxt ""
"func_weeknum.xhp\n"
"par_id3149792\n"
"help.text"
-msgid "<item type=\"input\">=WEEKNUM(DATE(1995;1;1);2)</item> returns 52. If the week starts on Monday, Sunday belongs to the last week of the previous year."
+msgid "<item type=\"input\">=WEEKNUM(DATE(1995;1;1);2)</item> returns 1. Using System 1, the week containing January 1 is the first week of the year."
msgstr ""
#. yBDGQ
diff --git a/source/am/helpcontent2/source/text/scalc/guide.po b/source/am/helpcontent2/source/text/scalc/guide.po
index 856ce3933c2..4c6e2ba72cb 100644
--- a/source/am/helpcontent2/source/text/scalc/guide.po
+++ b/source/am/helpcontent2/source/text/scalc/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: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-27 17:02+0200\n"
"PO-Revision-Date: 2020-04-16 16:16+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Amharic <https://weblate.documentfoundation.org/projects/libo_help-master/textscalcguide/am/>\n"
@@ -2023,14 +2023,14 @@ msgctxt ""
msgid "Apply the protection options."
msgstr "የ መጠበቂያ ምርጫ መፈጸሚያ"
-#. KZhvC
+#. yCZeB
#: cell_protect.xhp
msgctxt ""
"cell_protect.xhp\n"
"par_idN106C0\n"
"help.text"
-msgid "To protect the cells from being changed / viewed / printed according to your settings in the <emph>Format - Cells</emph> dialog, choose <item type=\"menuitem\">Tools - Protect Sheet</item>."
-msgstr "ለ መጠበቅ ክፍሎችን ከ መቀየር / መታየት / እንዳይታተሙ እንደ እርስዎ ማሰናጃ በ <emph> አቀራረብ - ክፍሎች </emph> ንግግር ውስጥ: ይምረጡ <item type=\"menuitem\"> መሳሪያዎች - ሰነድ መጠበቂያ - ወረቀት </item>"
+msgid "To protect the cells from being changed, viewed or printed according to your settings in the <emph>Format - Cells</emph> dialog, choose <link href=\"text/scalc/01/06060100.xhp\" name=\"Tools protect sheet\"><menuitem>Tools - Protect Sheet</menuitem></link>."
+msgstr ""
#. doYSo
#: cell_protect.xhp
diff --git a/source/am/helpcontent2/source/text/sdatabase.po b/source/am/helpcontent2/source/text/sdatabase.po
index 184264345ed..a260cf8e472 100644
--- a/source/am/helpcontent2/source/text/sdatabase.po
+++ b/source/am/helpcontent2/source/text/sdatabase.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-27 17:02+0200\n"
"PO-Revision-Date: 2021-01-25 14:07+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_help-master/textsdatabase/am/>\n"
@@ -4974,6 +4974,285 @@ msgctxt ""
msgid "<ahelp hid=\"dbaccess/ui/namematchingpage/none\">Clears all of the check boxes in the list.</ahelp>"
msgstr ""
+#. rxCsN
+#: 05040000.xhp
+msgctxt ""
+"05040000.xhp\n"
+"tit\n"
+"help.text"
+msgid "General"
+msgstr ""
+
+#. DmCQD
+#: 05040000.xhp
+msgctxt ""
+"05040000.xhp\n"
+"hd_id3149031\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/05040000.xhp\" name=\"General\">General</link>"
+msgstr ""
+
+#. 7ithV
+#: 05040100.xhp
+msgctxt ""
+"05040100.xhp\n"
+"tit\n"
+"help.text"
+msgid "General"
+msgstr ""
+
+#. 5uLP9
+#: 05040100.xhp
+msgctxt ""
+"05040100.xhp\n"
+"hd_id3153255\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/05040100.xhp\" name=\"General\">General</link>"
+msgstr ""
+
+#. LsG3R
+#: 05040100.xhp
+msgctxt ""
+"05040100.xhp\n"
+"par_id3157898\n"
+"help.text"
+msgid "When you create a database table as an administrator, you can use this tab to determine user access, and to edit the data or the table structure."
+msgstr ""
+
+#. CydBA
+#: 05040100.xhp
+msgctxt ""
+"05040100.xhp\n"
+"bm_id3152594\n"
+"help.text"
+msgid "<bookmark_value>access rights for database tables (Base)</bookmark_value><bookmark_value>tables in databases; access rights to (Base)</bookmark_value>"
+msgstr ""
+
+#. VFwEY
+#: 05040100.xhp
+msgctxt ""
+"05040100.xhp\n"
+"par_id3152594\n"
+"help.text"
+msgid "If you are not the administrator, you can use the <emph>General</emph> tab to view your access rights for the selected table."
+msgstr ""
+
+#. ZGqED
+#: 05040100.xhp
+msgctxt ""
+"05040100.xhp\n"
+"hd_id3145669\n"
+"help.text"
+msgid "Table name"
+msgstr ""
+
+#. hfNJd
+#: 05040100.xhp
+msgctxt ""
+"05040100.xhp\n"
+"par_id3147834\n"
+"help.text"
+msgid "Displays the name of the selected database table."
+msgstr ""
+
+#. mxdWQ
+#: 05040100.xhp
+msgctxt ""
+"05040100.xhp\n"
+"hd_id3156426\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. cGosS
+#: 05040100.xhp
+msgctxt ""
+"05040100.xhp\n"
+"par_id3154823\n"
+"help.text"
+msgid "Displays the type of database."
+msgstr ""
+
+#. jCSC3
+#: 05040100.xhp
+msgctxt ""
+"05040100.xhp\n"
+"hd_id3149095\n"
+"help.text"
+msgid "Location"
+msgstr ""
+
+#. GjS2M
+#: 05040100.xhp
+msgctxt ""
+"05040100.xhp\n"
+"par_id3153311\n"
+"help.text"
+msgid "Displays the complete path of the database table."
+msgstr ""
+
+#. gA9FG
+#: 05040100.xhp
+msgctxt ""
+"05040100.xhp\n"
+"hd_id3153528\n"
+"help.text"
+msgid "Read data"
+msgstr ""
+
+#. YB94i
+#: 05040100.xhp
+msgctxt ""
+"05040100.xhp\n"
+"par_id3163802\n"
+"help.text"
+msgid "<ahelp hid=\".\">Allows a user to read the data.</ahelp>"
+msgstr ""
+
+#. MFSk5
+#: 05040100.xhp
+msgctxt ""
+"05040100.xhp\n"
+"hd_id3150355\n"
+"help.text"
+msgid "Insert data"
+msgstr ""
+
+#. XFubg
+#: 05040100.xhp
+msgctxt ""
+"05040100.xhp\n"
+"par_id3149398\n"
+"help.text"
+msgid "<ahelp hid=\".\">Allows a user to insert new data.</ahelp>"
+msgstr ""
+
+#. EW2bD
+#: 05040100.xhp
+msgctxt ""
+"05040100.xhp\n"
+"hd_id3155420\n"
+"help.text"
+msgid "Change data"
+msgstr ""
+
+#. U9WwE
+#: 05040100.xhp
+msgctxt ""
+"05040100.xhp\n"
+"par_id3158430\n"
+"help.text"
+msgid "<ahelp hid=\".\">Allows a user to change data.</ahelp>"
+msgstr ""
+
+#. DqoTz
+#: 05040100.xhp
+msgctxt ""
+"05040100.xhp\n"
+"hd_id3149516\n"
+"help.text"
+msgid "Delete data"
+msgstr ""
+
+#. VRspq
+#: 05040100.xhp
+msgctxt ""
+"05040100.xhp\n"
+"par_id3155449\n"
+"help.text"
+msgid "<ahelp hid=\".\">Allows a user to delete data.</ahelp>"
+msgstr ""
+
+#. WAXNP
+#: 05040100.xhp
+msgctxt ""
+"05040100.xhp\n"
+"hd_id3145674\n"
+"help.text"
+msgid "Change table structure"
+msgstr ""
+
+#. NAwCj
+#: 05040100.xhp
+msgctxt ""
+"05040100.xhp\n"
+"par_id3153146\n"
+"help.text"
+msgid "<ahelp hid=\".\">Allows a user to change the table structure.</ahelp>"
+msgstr ""
+
+#. rTzQj
+#: 05040100.xhp
+msgctxt ""
+"05040100.xhp\n"
+"hd_id3143270\n"
+"help.text"
+msgid "Definition"
+msgstr ""
+
+#. zAByc
+#: 05040100.xhp
+msgctxt ""
+"05040100.xhp\n"
+"par_id3154897\n"
+"help.text"
+msgid "<ahelp hid=\".\">Allows the user to delete the table structure.</ahelp>"
+msgstr ""
+
+#. gFhhG
+#: 05040100.xhp
+msgctxt ""
+"05040100.xhp\n"
+"hd_id3153126\n"
+"help.text"
+msgid "Modify references"
+msgstr ""
+
+#. qx3NS
+#: 05040100.xhp
+msgctxt ""
+"05040100.xhp\n"
+"par_id3159399\n"
+"help.text"
+msgid "<ahelp hid=\".\">Allows the user to modify the defined references, for example, to enter new relations for the table or to delete existing relations.</ahelp>"
+msgstr ""
+
+#. 2sbVx
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. EwUEa
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"hd_id3109850\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/05040200.xhp\" name=\"Description\">Description</link>"
+msgstr ""
+
+#. h4VES
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"hd_id3157898\n"
+"help.text"
+msgid "Table description"
+msgstr ""
+
+#. ABb4R
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"par_id3154422\n"
+"help.text"
+msgid "<ahelp hid=\".\">Displays the description for the selected table.</ahelp>"
+msgstr ""
+
#. cLmBi
#: main.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/00.po b/source/am/helpcontent2/source/text/shared/00.po
index 5f117f03c5b..a6c45383ffb 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: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-27 17:02+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"
@@ -2248,22 +2248,31 @@ msgctxt ""
msgid "Direct and Style Formatting"
msgstr "በ ቀጥታ እና የ ዘዴዎች አቀራረብ"
-#. MxsZg
+#. DCSZA
+#: 00000005.xhp
+msgctxt ""
+"00000005.xhp\n"
+"par_id431619103899855\n"
+"help.text"
+msgid "A style is a set of formatting atributes, grouped and identified by a name (the style name). When you apply a style to an object, the object is formatted with the set of attributes of the style. Several objects of same nature can have the same style. As consequence, when you change the set of formatting attributes of the style, all objects associated with the style also change their formatting attributes accordingly. Use styles to uniformly format a large set of paragraphs, cells, and objects and better manage the formatting of documents."
+msgstr ""
+
+#. GDMrG
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
"par_id3159254\n"
"help.text"
-msgid "If you format a document without Styles, it is referred to as \"direct\" formatting. This means modifying text or other objects, such as frames or tables, by applying various attributes directly. The format applies only to the selected area and all changes must be made separately. Styles, on the other hand, are not applied to the text directly, but rather are defined in the Styles window and then applied. One advantage is that when you change a Style, all parts of the document to which that Style is assigned are modified at the same time."
-msgstr "እርስዎ ያለ ዘዴዎች ሰነድ ካቀረቡ እንደ: \"በ ቀጥታ\" አቀራረብ: ይህ ማለት ጽሁፍ ማሻሻል ወይንም ሌሎች እቃዎች: እንደ ክፈፎች ወይንም ሰንጠረዦች: በ ቀጥታ በ ተለያዩ መለያዎች መፈጸም ነው: አቀራረብ የሚፈጸመው ለ ተመረጠው ቦታ እና ለ ሁሉም ለውጦች ለየብቻ መፈጸም አለበት: ዘዴዎች በ ሌላ አነጋገር: በ ጽሁፍ ላይ በ ቀጥታ አይፈጸሙም: ነገር ግን ይገለጻሉ በ ዘዴዎች እና አቀራረብ መስኮት ውስጥ እና ይፈጸማሉ: አንዱ ጥቅም እርስዎ ዘዴዎችን በሚቀይሩ ጊዜ: ዘዴው የ ተፈጸመበት ሁሉም አካል በ ሰነድ ውስጥ በ ተመሳሳይ ጊዜ ይሻሻላል"
+msgid "When you do not use styles, and apply formatting attributes to parts of text directly, this is called Direct formatting (also called manual formatting). The formatting is applied only to the selected area of the document. If the document has several paragraphs, frames, or any other object, you apply direct formatting on each object. Direct formatting is available with the Format menu and with the Formatting toolbar."
+msgstr ""
-#. QTCDE
+#. KeiAC
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id3147287\n"
+"par_id971619105747398\n"
"help.text"
-msgid "You can remove direct formatting from your document by selecting the entire text with the shortcut keys <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+A</keycode> and then choosing <menuitem>Format - Clear Direct Formatting</menuitem>."
+msgid "A direct formatting attribute applied on a object overrides the corresponding attribute of the style applied to the object."
msgstr ""
#. aUcVk
diff --git a/source/am/helpcontent2/source/text/shared/01.po b/source/am/helpcontent2/source/text/shared/01.po
index ea4ae4295a0..83566a6ba5f 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: 2021-04-06 14:45+0200\n"
+"POT-Creation-Date: 2021-04-27 17:02+0200\n"
"PO-Revision-Date: 2020-03-18 16:16+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Amharic <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/am/>\n"
@@ -4381,14 +4381,14 @@ msgctxt ""
msgid "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Print</link>"
msgstr "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">ማተሚያ</link>"
-#. XhtpZ
+#. 3xkrS
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
"par_id3146946\n"
"help.text"
-msgid "<variable id=\"druckentext\"><ahelp hid=\".uno:Print\">Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document.</ahelp></variable> The printing options can vary according to the printer and the operating system that you use."
-msgstr "<variable id=\"druckentext\"><ahelp hid=\".uno:Print\">የ አሁኑን ሰነድ ማተሚያ: ምርጫ ወይንም እርስዎ መወሰን የሚፈልጉትን ገጽ: እርስዎ እንዲሁም ማስገባት ይችላሉ የ ማተሚያ ምርጫ ለ አሁኑ ሰነድ </ahelp></variable> የ ማተሚያ ምርጫ ይለያያል እንደ ማተሚያው እና እርስዎ እንደሚጠቀሙት የ መስሪያ ስርአት አይነት"
+msgid "<variable id=\"druckentext\"><ahelp hid=\".uno:Print\">Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document.</ahelp> </variable> The printing options can vary according to the printer and the operating system that you use."
+msgstr ""
#. Y8AZi
#: 01130000.xhp
@@ -4507,40 +4507,76 @@ msgctxt ""
msgid "<ahelp hid=\".\">The preview shows how each sheet of paper will look. You can browse through all sheets of paper with the buttons below the preview.</ahelp>"
msgstr ""
-#. sdc3k
+#. bkEuD
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id691619139072776\n"
+"help.text"
+msgid "Preview checkbox"
+msgstr ""
+
+#. FbBW7
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"par_id3150776\n"
+"help.text"
+msgid "<ahelp hid=\".\">Turn on or off display of the print preview.</ahelp>"
+msgstr ""
+
+#. VupTf
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id931619139079209\n"
+"help.text"
+msgid "Preview navigation box"
+msgstr ""
+
+#. uGPRE
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
"par_id3150773\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the number of page to be shown in the preview.</ahelp>"
+msgid "<ahelp hid=\".\">Enter the number of page to be shown in the preview in the box or use the arrow buttons to display pages in the preview.</ahelp>"
msgstr ""
-#. AmhC3
+#. Zg7aE
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
"par_id3150774\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows preview of the next page.</ahelp>"
+msgid "<ahelp hid=\".\"><widget>🡆</widget> Shows preview of the next page.</ahelp>"
msgstr ""
-#. E4ddj
+#. fAR3e
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"par_id131619140182489\n"
+"help.text"
+msgid "<widget>⯮</widget> Shows preview of the last page."
+msgstr ""
+
+#. Ge5HC
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
"par_id3150775\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows preview of the previous page.</ahelp>"
+msgid "<ahelp hid=\".\"><widget>🡄</widget> Shows preview of the previous page.</ahelp>"
msgstr ""
-#. jNFvv
+#. mBis5
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
-"par_id3150776\n"
+"par_id711619140188690\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Turn on or off display of the print preview.</ahelp>"
+msgid "<widget>⯬</widget> Shows preview of the first page."
msgstr ""
#. y5JqS
@@ -4561,554 +4597,1238 @@ msgctxt ""
msgid "On the <emph>General</emph> tab page, you find the most important control elements for printing. You can define which contents of your document are to be printed. You can select the printer and open the <emph>Printer Settings</emph> dialog."
msgstr ""
-#. b64Z5
+#. 5cGHt
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
-"par_id2\n"
+"hd_id861619196034872\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to print colors and objects that are inserted to the background of the page, which you have specified under <emph>Format - Page - Background</emph>.</ahelp>"
+msgid "Printer"
msgstr ""
-#. jqcyB
+#. 5hiFP
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
-"par_id4\n"
+"par_id3149511\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether the graphics and drawings or OLE objects of your text document are printed.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ንድፎች እና ስእሎች ወይንም የ OLE እቃዎች በ እርስዎ የ ጽሁፍ ሰነድ ላይ የ ገቡ ይታተሙ እንደሆን መወሰኛ</ahelp>"
+msgid "<ahelp hid=\".\">The list box shows the installed printers. Click the printer to use for the current print job.</ahelp>"
+msgstr ""
-#. grHGN
+#. 9CQRU
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
-"par_id6\n"
+"hd_id111619248846947\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enable this option to print text that is marked as hidden.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ይህን ምርጫ ያስችሉ እንደ የ ተደበቀ ምልክት የ ተደረገበትን ጽሁፍ ለ ማተም</ahelp>"
+msgid "Status"
+msgstr ""
-#. BBwiN
+#. Kfwra
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
-"par_id8\n"
+"par_id42\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enable this option to print text placeholders. Disable this option to leave the text placeholders blank in the printout.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ይህን ምርጫ ያስችሉ ለማተም ቦታ ያዢ ጽሁፍ: ይህን ምርጫ ያሰናክሉ ቦታ ያዢ ጽሁፍ ባዶ ለ መተው በ ህትመቱ ላይ</ahelp>"
+msgid "<ahelp hid=\".\">Shows the availability of the selected printer.</ahelp>"
+msgstr ""
-#. Ci8Lf
+#. vEyiG
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
-"par_id10\n"
+"hd_id851619198158428\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether the form control fields of the text document are printed.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">የ ፎርም መቆጣጠሪያ ሜዳዎች በ ጽሁፍ ሰነድ ውስጥ ይታተሙ እንደሆን መወሰኛ</ahelp>"
+msgid "Properties"
+msgstr ""
-#. y9r3D
+#. ZMfYb
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
-"par_id12\n"
+"par_id3156113\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to always print text in black.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ሁልጊዜ ጽሁፍ በ ጥቁር እንደሚታተም መወሰኛ</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <emph>Printer Properties</emph> dialog. The printer properties vary according to the printer that you select.</ahelp>"
+msgstr ""
-#. DyEuF
+#. TXTqq
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
-"par_id14\n"
+"hd_id301619196931584\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">If this option is enabled automatically inserted blank pages are printed. This is best if you are printing double-sided. For example, in a book, a \"chapter\" paragraph style has been set to always start with an odd numbered page. If the previous chapter ends on an odd page, %PRODUCTNAME inserts an even numbered blank page. This option controls whether to print that even numbered page.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ይህ ምርጫ ካስቻሉ ራሱ በራሱ የ ገባ ባዶ ገጽ ይታተማል: ይህ ጥሩ የሚሆነው እርስዎ ሁለት-በኩል የሆነ ሲያትሙ ነው: ለምሳሌ: መጽሐፍ: \"ምእራፍ\" የ አንቀጽ ዘዴ ተሰናድቷል ሁልጊዜ በ ጎዶሎ ገጽች እንዲጀምር: ቀደም ያለው ምእራፍ በ ጎዶሎ ገጽ ላይ ጨርሶ ከሆነ: %PRODUCTNAME ሌላ መኡሉ ቁጥር ባዶ ገጽ ያስገባል: ይህ ምርጫ ይቆጣጠራል ለ ማተም የ ሙሉ ቁጥር ገጽ</ahelp>"
+msgid "Range and copies"
+msgstr ""
-#. CAvd2
+#. CjmAo
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
-"par_id16\n"
+"hd_id411619223685491\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specify where to print comments (if any).</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">አስተያየት የት እንደሚታተም መወሰኛ (አስተያየት ካለ).</ahelp>"
+msgid "All pages"
+msgstr ""
-#. nigeb
+#. REG4m
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
-"par_id20\n"
+"par_id3149164\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether you want the name of the document to be included in the printout.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">የ ሰነዱ ስም በ እርስዎ የ ጽሁፍ ሰነድ በ ህተመቱ ላይ ይካተት እንደሆን መወሰኛ</ahelp>"
+msgid "<ahelp hid=\".\">Prints the entire document.</ahelp>"
+msgstr ""
-#. AZhWR
+#. miCEv
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
-"par_id22\n"
+"hd_id471619223699982\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to include the contents of the <emph>Commands</emph> window at the bottom of the printout.</ahelp>"
+msgid "Pages"
msgstr ""
-#. FghRx
+#. TzCg9
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
-"par_id24\n"
+"par_id3152944\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Applies a thin border to the formula area in the printout.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ቀጭን የ መስመር ድንበር በ መቀመሪያ ቦታ መክበቢያ በሚታተመው ወረቀት ላይ መፈጸሚያ</ahelp>"
+msgid "<ahelp hid=\".\">Prints only the pages or slides that you specify in the <emph>Pages</emph> box.</ahelp>"
+msgstr ""
-#. 47CRF
+#. qBArg
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
-"par_id26\n"
+"hd_id991619223714871\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Prints the formula without adjusting the current font size.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">የ አሁኑን የ ፊደል መጠን ምንም ሳይስተካከል መቀመሪያ ማተሚያ</ahelp>"
+msgid "Selection"
+msgstr ""
-#. JUD9q
+#. Abtm6
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
-"par_id28\n"
+"par_id3150244\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Adjusts the formula to the page format used in the printout.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">መቀመሪያ ማስተካከያ በ ገጹ አቀራረብ ልክ በሚታተመው ወረቀት ላይ መፈጸሚያ</ahelp>"
+msgid "<ahelp hid=\".\">Prints only the selected area(s) or object(s) in the current document.</ahelp>"
+msgstr ""
-#. ixz2F
+#. T9g4h
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
-"par_id30\n"
+"par_id3146848\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Reduces or enlarges the size of the printed formula by a specified factor.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">መቀነሻ ወይንም መጨመሪያ በሚታተመው መቀመሪያ የተወሰነ መጠን መፈጸሚያ </ahelp>"
+msgid "<ahelp hid=\".\">To print a range of pages, use a format like <item type=\"input\">3-6</item>. To print single pages, use a format like <item type=\"input\">7;9;11</item>. You can print a combination of page ranges and single pages, by using a format like <item type=\"input\">3-6;8;10;12</item>.</ahelp>"
+msgstr ""
-#. f5ZER
+#. cWoxT
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
-"par_id32\n"
+"hd_id461619223744867\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Reduces or enlarges the size of the printed formula by a specified factor.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">መቀነሻ ወይንም መጨመሪያ በሚታተመው መቀመሪያ የተወሰነ መጠን መፈጸሚያ </ahelp>"
+msgid "Include"
+msgstr ""
-#. R3jDW
+#. gaieA
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
-"par_id34\n"
+"par_id271619217217310\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">If checked empty pages that have no cell contents or draw objects are not printed.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ምልክት ከ ተደረገ ባዶ ገጾች ምንም የ ክፍል ይዞታ የሌላቸው ወይንም የ ስእል እቃዎች የሌላቸው አይታተሙም</ahelp>"
+msgid "Select the subset of pages to print. Possible values are:"
+msgstr ""
-#. VDGTG
+#. JKSDi
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
-"par_id35\n"
+"par_id911619217484736\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the source of sheet content to be printed.</ahelp>"
+msgid "<emph>Even pages</emph>:"
msgstr ""
-#. BZzxW
+#. sXLHa
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
-"par_id3149164\n"
+"par_id3152945\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Prints the entire document.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ጠቅላላ ሰነዱን ማተሚያ</ahelp>"
+msgid "<ahelp hid=\".\">Prints only even numbered pages or slides.</ahelp>"
+msgstr ""
-#. x5fVs
+#. RJUdz
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
-"par_id3152944\n"
+"par_id41619217998664\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Prints only the pages or slides that you specify in the <emph>Pages</emph> box.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">የሚታተሙት ገጾች ወይንም ተንሸራታቾች እርስዎ የወሰኑዋቸው ብቻ ናቸው በ <emph>ገጾች</emph> ሳጥን ውስጥ</ahelp>"
+msgid "<emph>Odd pages</emph>:"
+msgstr ""
-#. MCGtx
+#. xkay5
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
-"par_id3152945\n"
+"par_id3152946\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Prints only even numbered pages or slides.</ahelp>"
+msgid "<ahelp hid=\".\">Prints only odd numbered pages or slides.</ahelp>"
msgstr ""
-#. pWnF3
+#. oYaBB
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
-"par_id3152946\n"
+"par_id171619218364989\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Prints only odd numbered pages or slides.</ahelp>"
+msgid "<emph>Odd and even pages</emph>:"
msgstr ""
-#. NipVQ
+#. fevn9
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
-"par_id3150244\n"
+"par_id421619222542753\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Prints only the selected area(s) or object(s) in the current document.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">በ አሁኑ ሰነድ ውስጥ የተመረጠውን ቦታ(ዎች) ወይንም አቃ(ዎች) ብቻ ማተሚያ</ahelp>"
+msgid "Prints the entire document."
+msgstr ""
-#. HbwoN
+#. 4EEe3
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
-"par_id3146848\n"
+"hd_id881619225348934\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">To print a range of pages, use a format like <item type=\"input\">3-6</item>. To print single pages, use a format like <item type=\"input\">7;9;11</item>. You can print a combination of page ranges and single pages, by using a format like <item type=\"input\">3-6;8;10;12</item>.</ahelp>"
+msgid "From which"
msgstr ""
-#. CcvgB
+#. 8bGAj
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
-"par_id3150772\n"
+"par_id35\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">If the printer is capable of duplex printing it's possible to choose between using only one side of the paper or both.</ahelp>"
+msgid "<ahelp hid=\".\">Select the source of sheet content to be printed.</ahelp> Possible valuer are <emph>Print all sheets</emph> and <emph>Print selected sheets</emph>."
msgstr ""
-#. QGUzM
+#. fGCJk
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
-"par_id38\n"
+"hd_id681619223767221\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Check to not rely on the printer to create collated copies but create a print job for each copy instead.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">በ ማተሚያው ላይ አይተማመኑ: ኮፒዎች ለ መፍጠር እያንዳንዱን ኮፒ በ ማተሚያ ያትሙ </ahelp>"
+msgid "Paper sides"
+msgstr ""
-#. 6BvGF
+#. KPPih
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
-"par_id40\n"
+"par_id3150772\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Check to print pages in reverse order.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ገጾችን በ ግልባጭ ደንብ ለማተም ምልክት ያድርጉ</ahelp>"
+msgid "<ahelp hid=\".\">If the printer is capable of duplex printing it's possible to choose between using only one side of the paper or both.</ahelp>"
+msgstr ""
-#. 5TfKf
+#. cnnat
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id851619223781119\n"
+"help.text"
+msgid "Number of copies"
+msgstr ""
+
+#. qCXzM
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
"par_id3145069\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the number of copies that you want to print.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ማተም የሚፈልጉትን የ ኮፒ ቁጥር ያስገቡ</ahelp>"
+msgid "<ahelp hid=\".\">Enter the number of copies that you want to print.</ahelp>"
+msgstr ""
-#. P7LiR
+#. rLgis
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id931619223793984\n"
+"help.text"
+msgid "Collate"
+msgstr ""
+
+#. 8NLFW
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
"par_id3150865\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Preserves the page order of the original document.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">የ ገጾችን ደንብ በ ዋናው ሰነድ መሰረት መጠበቂያ</ahelp>"
+msgid "<ahelp hid=\".\">Preserves the page order of the original document.</ahelp>"
+msgstr ""
-#. crVz4
+#. Um8wH
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
-"par_id3156113\n"
+"hd_id681619223806762\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the <emph>Printer Properties</emph> dialog. The printer properties vary according to the printer that you select.</ahelp>"
+msgid "Create separated prints jobs for collated output"
msgstr ""
-#. RGAxb
+#. AzCAN
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
-"par_id42\n"
+"par_id38\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows the availability of the selected printer.</ahelp>"
+msgid "<ahelp hid=\".\">Check to not rely on the printer to create collated copies but create a print job for each copy instead.</ahelp>"
msgstr ""
-#. gaGCz
+#. GLMNy
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
-"par_id3149511\n"
+"hd_id741619223818619\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">The list box shows the installed printers. Click the printer to use for the current print job. Click the <emph>Properties</emph> button to change some of the printer properties.</ahelp>"
+msgid "Print in reverse order"
msgstr ""
-#. 3yLDU
+#. PqdCW
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
-"par_id46\n"
+"par_id40\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the Brochure option to print the document in brochure format.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ይምረጡ የ Brochure ምርጫ ሰነድ ለማተም በ brochure አቀራረብ </ahelp>"
+msgid "<ahelp hid=\".\">Check to print pages in reverse order.</ahelp>"
+msgstr ""
-#. ntHGB
+#. RbXJE
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
-"par_id50\n"
+"hd_id0818200912285112\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Check to draw a border around each page.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">በ እያንዳንዱ ገጽ ዙሪያ ድንበር እንዲሳል ምልክት ያድርጉ</ahelp>"
+msgid "Page Layout"
+msgstr "የ ገጽ እቅድ"
-#. 8dYfU
+#. AERDJ
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
-"par_id52\n"
+"par_id0818200912285150\n"
+"help.text"
+msgid "The <emph>Page Layout</emph> section can be used to save some sheets of paper by printing several pages onto each sheet of paper. You define the arrangement and size of output pages on the physical paper."
+msgstr ""
+
+#. eYRqB
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"par_id0818200904164735\n"
+"help.text"
+msgid "<ahelp hid=\".\">Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look.</ahelp>"
+msgstr ""
+
+#. nVr7X
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"par_id0818200904102987\n"
+"help.text"
+msgid "For some document types, you can choose to print a brochure."
+msgstr "ለ አንዳንድ የ ሰነድ አይነቶች: እርስዎ መምረጥ ይችላሉ እንደ brochure ለማተም"
+
+#. nC9sR
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id671619223836561\n"
+"help.text"
+msgid "Paper size"
+msgstr ""
+
+#. BhLDa
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"par_id67\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select order in which pages are to be printed.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ለማተም የ ገጾች ቅደም ተከተል ይምረጡ</ahelp>"
+msgid "<ahelp hid=\".\">Set the paper size you would like to use. The preview will show how the document would look on a paper of the given size.</ahelp>"
+msgstr ""
-#. GnLH5
+#. t4E2n
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id761619223624028\n"
+"help.text"
+msgid "Orientation"
+msgstr ""
+
+#. kYfn6
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
"par_id54\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the orientation of the paper.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ለ አዲሱ እቃ መደርደሪያ ቦታ ያስገቡ</ahelp>"
+msgid "<ahelp hid=\".\">Select the orientation of the paper.</ahelp> Possible values are <emph>Portrait</emph> and <emph>Landscape</emph>."
+msgstr ""
-#. GDPyv
+#. f9QFr
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
-"par_id56\n"
+"hd_id361619224024788\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select margin between the printed pages and paper edge.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">በሚታተመው ገጽ እና በ ወረቀቱ ጠርዝ መካከል የሚኖረውን የ መስመር ስፋት ይምረጡ</ahelp>"
+msgid "Pages per sheet"
+msgstr ""
-#. kDE4q
+#. j5XaE
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
-"par_id58\n"
+"par_id66\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select margin between individual pages on each sheet of paper.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ለ እያንዳንዱ በሚታተመው ገጽ እና በ ወረቀቱ ጠርዝ መካከል የሚኖረውን የ መስመር ስፋት ይምረጡ</ahelp>"
+msgid "<ahelp hid=\".\">Print multiple pages per sheet of paper.</ahelp>"
+msgstr ""
-#. c3YXh
+#. 9GdoC
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"par_id64\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select how many pages to print per sheet of paper.</ahelp> When the number of pages is set to <emph>Custom</emph>, then the following settings shows:"
+msgstr ""
+
+#. FjtoQ
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id601619252410880\n"
+"help.text"
+msgid "Pages"
+msgstr ""
+
+#. GFW9D
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
"par_id60\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select number of rows.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">የ ረድፎች ቁጥር ይምረጡ</ahelp>"
+msgid "<ahelp hid=\".\">Select number of rows.</ahelp>"
+msgstr ""
-#. vFDCD
+#. LLnTE
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id171619252415823\n"
+"help.text"
+msgid "By"
+msgstr ""
+
+#. SwKoG
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
"par_id62\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select number of columns.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">የ አምዶች ቁጥር ይምረጡ</ahelp>"
+msgid "<ahelp hid=\".\">Select number of columns.</ahelp>"
+msgstr ""
-#. dCGix
+#. UWUeY
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
-"par_id64\n"
+"hd_id821619252526953\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select how many pages to print per sheet of paper.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ምን ያህል ተንሸራታች በ ገጽ ውስጥ እንደሚታተም ይምረጡ</ahelp>"
+msgid "Margin"
+msgstr ""
-#. sDfwy
+#. CNbo4
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
-"par_id66\n"
+"par_id56\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select margin between the printed pages and paper edge.</ahelp>"
+msgstr ""
+
+#. 3DJq7
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id571619252531670\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Print multiple pages per sheet of paper.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">በርካታ ገጾች በ ወረቀቱ ላይ ማተሚያ</ahelp>"
+msgid "Distance"
+msgstr ""
-#. gG4q6
+#. KLGHJ
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
-"par_id67\n"
+"par_id58\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select margin between individual pages on each sheet of paper.</ahelp>"
+msgstr ""
+
+#. uA962
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id361619224237112\n"
+"help.text"
+msgid "Order"
+msgstr ""
+
+#. wbSAY
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"par_id52\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select order in which pages are to be printed.</ahelp>"
+msgstr ""
+
+#. YZyuh
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id441619224400473\n"
+"help.text"
+msgid "Draw a border on each page"
+msgstr ""
+
+#. u2CAQ
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"par_id50\n"
+"help.text"
+msgid "<ahelp hid=\".\">Check to draw a border around each page.</ahelp>"
+msgstr ""
+
+#. 4pXmQ
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id721619225074805\n"
+"help.text"
+msgid "Brochure"
+msgstr ""
+
+#. AAxay
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"par_id46\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select the Brochure option to print the document in brochure format.</ahelp>"
+msgstr ""
+
+#. pXDQy
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id301619226508197\n"
+"help.text"
+msgid "%PRODUCTNAME Writer"
+msgstr ""
+
+#. kL5L3
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id151619228134803\n"
+"help.text"
+msgid "Contents"
+msgstr ""
+
+#. dmGqR
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id281619228113353\n"
+"help.text"
+msgid "Page Background"
+msgstr ""
+
+#. zHjsd
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"par_id2\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies whether to print colors and objects that are inserted to the background of the page, which you have specified under <emph>Format - Page - Background</emph>.</ahelp>"
+msgstr ""
+
+#. XFGTG
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id901619228194194\n"
+"help.text"
+msgid "Images and other graphic objects"
+msgstr ""
+
+#. EdPqS
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"par_id4\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies whether the graphics and drawings or OLE objects of your text document are printed.</ahelp>"
+msgstr ""
+
+#. EnnB3
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id611619228309367\n"
+"help.text"
+msgid "Hidden text"
+msgstr ""
+
+#. u6pRd
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"par_id6\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enable this option to print text that is marked as hidden.</ahelp>"
+msgstr ""
+
+#. zzL7D
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id191619228341147\n"
+"help.text"
+msgid "Text placeholders"
+msgstr ""
+
+#. nzAik
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"par_id8\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enable this option to print text placeholders. Disable this option to leave the text placeholders blank in the printout.</ahelp>"
+msgstr ""
+
+#. Z4n9R
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id331619228370432\n"
+"help.text"
+msgid "Form controls"
+msgstr ""
+
+#. PNxji
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"par_id10\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies whether the form control fields of the text document are printed.</ahelp>"
+msgstr ""
+
+#. CRYB6
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id471619228416830\n"
+"help.text"
+msgid "Comments"
+msgstr ""
+
+#. e6uax
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"par_id16\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specify where to print comments (if any).</ahelp>"
+msgstr ""
+
+#. APiC3
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id321619228471188\n"
+"help.text"
+msgid "Color"
+msgstr ""
+
+#. 3DMF7
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id541619228499071\n"
+"help.text"
+msgid "Print text in black"
+msgstr ""
+
+#. axxMA
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"par_id12\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Set the paper size you would like to use. The preview will show how the document would look on a paper of the given size.</ahelp>"
+msgid "<ahelp hid=\".\">Specifies whether to always print text in black.</ahelp>"
msgstr ""
-#. aM7kK
+#. LibL9
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id161619228522978\n"
+"help.text"
+msgid "Pages"
+msgstr ""
+
+#. XFLzA
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id281619228561327\n"
+"help.text"
+msgid "Print automatically inserted blank pages"
+msgstr ""
+
+#. CJP6W
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"par_id14\n"
+"help.text"
+msgid "<ahelp hid=\".\">If this option is enabled automatically inserted blank pages are printed. This is best if you are printing double-sided. For example, in a book, a \"chapter\" paragraph style has been set to always start with an odd numbered page. If the previous chapter ends on an odd page, %PRODUCTNAME inserts an even numbered blank page. This option controls whether to print that even numbered page.</ahelp>"
+msgstr ""
+
+#. ZuEDx
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id871619229199189\n"
+"help.text"
+msgid "%PRODUCTNAME Calc"
+msgstr ""
+
+#. BfvLp
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id621619229204878\n"
+"help.text"
+msgid "Pages"
+msgstr ""
+
+#. BJyDF
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id631619229209903\n"
+"help.text"
+msgid "Suppress output of empty pages"
+msgstr ""
+
+#. bgYTe
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"par_id34\n"
+"help.text"
+msgid "<ahelp hid=\".\">If checked empty pages that have no cell contents or draw objects are not printed.</ahelp>"
+msgstr ""
+
+#. pEqzQ
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id121619249312306\n"
+"help.text"
+msgid "%PRODUCTNAME Impress"
+msgstr ""
+
+#. NNAg6
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id191619249318059\n"
+"help.text"
+msgid "Document"
+msgstr ""
+
+#. HCE3W
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id151619249336236\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. siLoT
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
"par_id68\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select which parts of the document should be printed.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">የ ሰነዱ የትኛው ክፍል እንደሚታተም ይምረጡ</ahelp>"
+msgid "<ahelp hid=\".\">Select which parts of the document should be printed.</ahelp>"
+msgstr ""
+
+#. ENzUv
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id481619249411436\n"
+"help.text"
+msgid "Slides per page"
+msgstr ""
-#. GxBJz
+#. jCCGW
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
"par_id70\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select how many slides to print per page.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ምን ያህል ተንሸራታች በ ገጽ ውስጥ እንደሚታተም ይምረጡ</ahelp>"
+msgid "<ahelp hid=\".\">Select how many slides to print per page.</ahelp>"
+msgstr ""
-#. i82Sz
+#. UMABP
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id551619249466371\n"
+"help.text"
+msgid "Order"
+msgstr ""
+
+#. EFRwZ
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
"par_id72\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specify how to arrange slides on the printed page.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ምን ያህል ተንሸራታች በ ገጽ ውስጥ እንደሚታተም ይምረጡ</ahelp>"
+msgid "<ahelp hid=\".\">Specify how to arrange slides on the printed page.</ahelp>"
+msgstr ""
+
+#. EaCD6
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id381619249533203\n"
+"help.text"
+msgid "Contents"
+msgstr ""
+
+#. pPE9M
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id51619249550596\n"
+"help.text"
+msgid "Slide name"
+msgstr ""
-#. WwZMV
+#. HXyPD
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
"par_id74\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to print the page name of a document.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">የ ሰነዱ ገጽ ስም ይታተም እንደሆን መወሰኛ</ahelp>"
+msgid "<ahelp hid=\".\">Specifies whether to print the page name of a document.</ahelp>"
+msgstr ""
-#. MGEfC
+#. yo7rN
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id301619249622789\n"
+"help.text"
+msgid "Date and time"
+msgstr ""
+
+#. EAB8Q
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
"par_id76\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to print the current date and time.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">የ ዛሬ ቀን እና ሰአት ይታተም እንደሆን መወሰኛ</ahelp>"
+msgid "<ahelp hid=\".\">Specifies whether to print the current date and time.</ahelp>"
+msgstr ""
-#. 6GWDF
+#. eNaEf
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id161619249643209\n"
+"help.text"
+msgid "Hidden pages"
+msgstr ""
+
+#. n8vJH
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
"par_id78\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to print the pages that are currently hidden.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">የ ተደበቁ ገጾች ይታተሙ እንደሆን መወሰኛ</ahelp>"
+msgid "<ahelp hid=\".\">Specifies whether to print the pages that are currently hidden.</ahelp>"
+msgstr ""
+
+#. bvwT2
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id891619249661371\n"
+"help.text"
+msgid "Color"
+msgstr ""
+
+#. pnfBm
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id781619249791597\n"
+"help.text"
+msgid "Original colors"
+msgstr ""
-#. Rwqfi
+#. pXcAY
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
"par_id80\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies to print in original colors.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">በ ዋናው ቀለም ይታተም እንደሆን መወሰኛ</ahelp>"
+msgid "<ahelp hid=\".\">Specifies to print in original colors.</ahelp>"
+msgstr ""
-#. VNMu2
+#. ofUbA
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id281619249798140\n"
+"help.text"
+msgid "Grayscale"
+msgstr ""
+
+#. A4gn3
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
"par_id82\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies to print colors as grayscale.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ቀለሞች በ ጥቁር እና ነጭ ይታተሙ እንደሆን መወሰኛ</ahelp>"
+msgid "<ahelp hid=\".\">Specifies to print colors as grayscale.</ahelp>"
+msgstr ""
+
+#. XSFDN
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id191619249805910\n"
+"help.text"
+msgid "Black and white"
+msgstr ""
-#. BKmbG
+#. TToES
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
"par_id84\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies to print colors as black and white.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ቀለሞች በ ጥቁር እና ነጭ ይታተሙ እንደሆን መወሰኛ</ahelp>"
+msgid "<ahelp hid=\".\">Specifies to print colors as black and white.</ahelp>"
+msgstr ""
-#. 5PvmX
+#. wEhtB
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id841619249950074\n"
+"help.text"
+msgid "Size"
+msgstr ""
+
+#. sBQ47
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
"par_id86\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specify how to scale slides in the printout.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ተንሸራታች በ ገጽ ውስጥ እንዴት እንደሚመጠን መወሰኛ</ahelp>"
+msgid "<ahelp hid=\".\">Specify how to scale slides in the printout.</ahelp>"
+msgstr ""
-#. s3Nsf
+#. jDBFB
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id961619249977935\n"
+"help.text"
+msgid "Original size"
+msgstr ""
+
+#. VqWUF
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
"par_id88\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies that you do not want to further scale pages when printing.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">እርስዎ ተጨማሪ የ ገጽ መመጠኛ ለ ማተሚያ እንደማይፈልጉ መወሰኛ</ahelp>"
+msgid "<ahelp hid=\".\">Specifies that you do not want to further scale pages when printing.</ahelp>"
+msgstr ""
-#. FFAHN
+#. YwpHU
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id881619250251781\n"
+"help.text"
+msgid "Fit to printable page"
+msgstr ""
+
+#. 29T6Y
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
"par_id90\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to scale down objects that are beyond the margins of the current printer so they fit on the paper in the printer.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ይወስኑ እቃዎች ይመጠኑ ከ አሁኑ ማተሚያ መስመር ውጪ የሆኑ በ ማተሚያው ወረቀት ልክ እንዲሆን </ahelp>"
+msgid "<ahelp hid=\".\">Specifies whether to scale down objects that are beyond the margins of the current printer so they fit on the paper in the printer.</ahelp>"
+msgstr ""
-#. vMYjm
+#. 2JXtq
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id251619250401542\n"
+"help.text"
+msgid "Distribute on multiple sheets of paper"
+msgstr ""
+
+#. L9mDm
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"par_id651619261328941\n"
+"help.text"
+msgid "Prints a large format document, such as a poster or banner, by distributing the document page across multiple sheets of paper. The distribution option calculates how many sheets of paper are needed. You can then piece together the sheets."
+msgstr ""
+
+#. b4DKX
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id361619250241828\n"
+"help.text"
+msgid "Tile sheet of paper with repeated slides"
+msgstr ""
+
+#. xeGdL
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
"par_id92\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies that pages are to be printed in tiled format. If the pages or slides are smaller than the paper, several pages or slides will be printed on one page of paper.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ገጾቹ የሚታተሙት በ ድርድር አቀራረብ መሆኑን ይወስኑ: ገጾቹ ወይንም ተንሸራታቾቹ ከ ወረቀቱ አነስተኛ ከሆነ: በርካታ ገጾች ወይንም ተንሸራታቾች በ አንድ ገጽ ላይ ይታተማሉ </ahelp>"
+msgid "<ahelp hid=\".\">Specifies that pages are to be printed in tiled format. If the pages or slides are smaller than the paper, repeat the pages or slides on one sheet of paper.</ahelp>"
+msgstr ""
-#. HZSPA
+#. bqBAq
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
-"hd_id0818200912285074\n"
+"hd_id331619250751054\n"
"help.text"
-msgid "%PRODUCTNAME Writer / Calc / Impress / Draw / Math"
-msgstr "%PRODUCTNAME መጻፊያ / ሰንጠረዥ / ማስደነቂያ / መሳያ / ሂሳብ"
+msgid "%PRODUCTNAME Draw"
+msgstr ""
-#. X5Rpt
+#. AFDk9
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
-"par_id0818200912285019\n"
+"hd_id571619250850474\n"
"help.text"
-msgid "The tab page with the same name as the current application can be used to define the contents, color, size, and pages to be printed. You define settings that are specific to the current document type."
-msgstr "የ tab ገጽ በ ተመሳሳይ ስም እንደ አሁኑ መተግበሪያ መጠቀም ይቻላል ለ መግለጽ ይዞታዎችን: ቀለም: መጠን እና ገጾችን የሚታተመውን: እርስዎ ለ አሁኑ ሰነድ የ ተወሰነ መግለጫ ያሰናዱ"
+msgid "Contents"
+msgstr ""
-#. RbXJE
+#. DXT5F
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
-"hd_id0818200912285112\n"
+"hd_id551619250976409\n"
"help.text"
-msgid "Page Layout"
-msgstr "የ ገጽ እቅድ"
+msgid "Page name"
+msgstr ""
-#. AERDJ
+#. nEBGA
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
-"par_id0818200912285150\n"
+"par_id74d\n"
"help.text"
-msgid "The <emph>Page Layout</emph> section can be used to save some sheets of paper by printing several pages onto each sheet of paper. You define the arrangement and size of output pages on the physical paper."
+msgid "<ahelp hid=\".\">Specifies whether to print the page name of a document.</ahelp>"
msgstr ""
-#. eYRqB
+#. s3pqB
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
-"par_id0818200904164735\n"
+"hd_id301619249624789\n"
"help.text"
-msgid "<ahelp hid=\".\">Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look.</ahelp>"
+msgid "Date and time"
msgstr ""
-#. nVr7X
+#. Pv7FE
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
-"par_id0818200904102987\n"
+"par_id76d\n"
"help.text"
-msgid "For some document types, you can choose to print a brochure."
-msgstr "ለ አንዳንድ የ ሰነድ አይነቶች: እርስዎ መምረጥ ይችላሉ እንደ brochure ለማተም"
+msgid "<ahelp hid=\".\">Specifies whether to print the current date and time.</ahelp>"
+msgstr ""
+
+#. HWosa
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id701619228767584\n"
+"help.text"
+msgid "%PRODUCTNAME Math"
+msgstr ""
+
+#. pEHHB
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id211619228847233\n"
+"help.text"
+msgid "Contents"
+msgstr ""
+
+#. fFkuh
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id231619228825239\n"
+"help.text"
+msgid "Title"
+msgstr ""
+
+#. qi7gG
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"par_id20\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies whether you want the name of the document to be included in the printout.</ahelp>"
+msgstr ""
+
+#. jHaEZ
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id881619228869444\n"
+"help.text"
+msgid "Formula text"
+msgstr ""
+
+#. Dsf8x
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"par_id22\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies whether to include the contents of the <emph>Commands</emph> window at the bottom of the printout.</ahelp>"
+msgstr ""
+
+#. 3KzTB
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id881619228899408\n"
+"help.text"
+msgid "Borders"
+msgstr ""
+
+#. oWquw
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"par_id24\n"
+"help.text"
+msgid "<ahelp hid=\".\">Applies a thin border to the formula area in the printout.</ahelp>"
+msgstr ""
+
+#. gCfBu
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id611619228924916\n"
+"help.text"
+msgid "Size"
+msgstr ""
+
+#. CwNL2
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id121619228944470\n"
+"help.text"
+msgid "Original size"
+msgstr ""
+
+#. i9ApX
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"par_id26\n"
+"help.text"
+msgid "<ahelp hid=\".\">Prints the formula without adjusting the current font size.</ahelp>"
+msgstr ""
+
+#. QCwXG
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id651619228968578\n"
+"help.text"
+msgid "Fit to page"
+msgstr ""
+
+#. R9DFL
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"par_id28\n"
+"help.text"
+msgid "<ahelp hid=\".\">Adjusts the formula to the page format used in the printout.</ahelp>"
+msgstr ""
+
+#. kGS5A
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"hd_id741619228989979\n"
+"help.text"
+msgid "Scaling"
+msgstr ""
+
+#. FCDXz
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"par_id30\n"
+"help.text"
+msgid "<ahelp hid=\".\">Reduces or enlarges the size of the printed formula by a specified factor.</ahelp>"
+msgstr ""
+
+#. 4EBb8
+#: 01130000.xhp
+msgctxt ""
+"01130000.xhp\n"
+"par_id32\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the scale factor for scaling the formula.</ahelp>"
+msgstr ""
#. vXCZ9
#: 01130000.xhp
@@ -14749,14 +15469,14 @@ msgctxt ""
msgid "Clear Direct Formatting"
msgstr "በ ቀጥታ አቀራረብ ማጽጃ"
-#. 4nCsV
+#. PLGwn
#: 05010000.xhp
msgctxt ""
"05010000.xhp\n"
"bm_id3157959\n"
"help.text"
-msgid "<bookmark_value>formatting; undoing when writing</bookmark_value><bookmark_value>hyperlinks; deleting</bookmark_value><bookmark_value>deleting; hyperlinks</bookmark_value><bookmark_value>cells;resetting formats</bookmark_value>"
-msgstr "<bookmark_value>አቀራረብ; መተው በሚጽፉ ጊዜ</bookmark_value><bookmark_value>hyperlinks; ማጥፊያ</bookmark_value><bookmark_value>ማጥፊያ; hyperlinks</bookmark_value><bookmark_value>ክፍሎች;እንደ ነበር መመለሻ አቀራረብ</bookmark_value>"
+msgid "<bookmark_value>formatting; undoing when writing</bookmark_value><bookmark_value>paragraph;clear direct formatting</bookmark_value><bookmark_value>format;clear direct formatting</bookmark_value><bookmark_value>direct formatting;clear</bookmark_value><bookmark_value>hyperlinks; deleting</bookmark_value><bookmark_value>deleting; hyperlinks</bookmark_value><bookmark_value>cells;resetting formats</bookmark_value>"
+msgstr ""
#. y96Dt
#: 05010000.xhp
@@ -14785,23 +15505,32 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CHART\"></caseinline><defaultinline>Direct formatting is formatting that you applied without using styles, such as setting bold typeface by clicking the <emph>Bold</emph> icon.</defaultinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CHART\"></caseinline><defaultinline>በቀጥታ አቀራረብ እርስዎ የሚፈጽሙት አቀራረብ ነው ዘዴዎችን ሳይጠቀሙ: እንደ ማድመቂያ አይነት በ መጫን የ <emph>ማድመቂያ</emph> ምልክት</defaultinline></switchinline>"
-#. KAK6k
+#. 2Fe4j
#: 05010000.xhp
msgctxt ""
"05010000.xhp\n"
"par_id671594846326658\n"
"help.text"
-msgid "Applied character styles will not be affected by Clear Direct Formatting, only direct formatting applied on top of the character styles. To remove formatting applied by a character style, reapply the <emph>Default</emph> character style."
+msgid "Applied styles (paragraph, character, and other types) are not affected by <emph>Clear Direct Formatting</emph>, only direct formatting applied on top of the styles. To remove formatting applied by a character or paragraph style, reapply the corresponding <emph>Default</emph> style."
msgstr ""
-#. h42SA
+#. RcqAz
#: 05010000.xhp
msgctxt ""
"05010000.xhp\n"
"par_id3157959\n"
"help.text"
-msgid "To stop applying a direct format, such as underlining, while you type new text at the end of a line, press Shift+Ctrl+X."
-msgstr "በ ቀጥታ አቀራረብ መፈጸሚያን ለማስቆም: እንደ ከስሩ ማስመር አይነት: እርስዎ አዲስ ጽሁፍ በሚጽፉ ጊዜ በ መስመሩ መጨረሻ ላይ: ይጫኑ Shift+Ctrl+X."
+msgid "To stop applying a direct format, such as underlining, while you type new text at the end of a line, press <keycode>Shift+Ctrl+X</keycode>."
+msgstr ""
+
+#. BsVyF
+#: 05010000.xhp
+msgctxt ""
+"05010000.xhp\n"
+"par_id91619108534060\n"
+"help.text"
+msgid "Bullets and numbering are properties of lists. <emph>Clear Direct Formatting</emph> does not clear directly formatted bullets and numbering found in a paragraph. To remove the bullet and numbering applied directly to a paragraph, use the <emph>Toggle Unordered List</emph>, the <emph>Togle Ordered List</emph> or the <emph>No List</emph> icons on the Formatting toolbar."
+msgstr ""
#. rQFC8
#: 05020000.xhp
@@ -41704,14 +42433,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Adds new icons to the list of icons. You see a file open dialog that imports the selected icon or icons into the internal icon directory of %PRODUCTNAME.</ahelp>"
msgstr "<ahelp hid=\".\">አዲስ ምልክቶች መጨመሪያ ወደ ዝርዝር ምልክቶች: ለ እርስዎ ይታያል የ ፋይል መክፈቻ ንግግር የሚያመጣ የ ተመረጡ ምልክቶች ወይንም ምልክቶች ወደ ውስጣዊ ምልክት ዳይሬክቶሪ በ %PRODUCTNAME.</ahelp>"
-#. mYBQN
+#. 3qKnr
#: 06140402.xhp
msgctxt ""
"06140402.xhp\n"
"par_idN10575\n"
"help.text"
-msgid "You can only import icons that are in the PNG file format and that are 16x16 or 26x26 pixels in size."
-msgstr "እርስዎ ማምጣት የሚችሉት ምልክቶች የ PNG ፋይል አቀራረብ እና መጠናቸው 16x16 ወይንም 26x26 ፒክስል ብቻ ነው"
+msgid "You can only import icons that are in the PNG file format and that are 16 × 16 or 24 × 24 pixels in size."
+msgstr ""
#. RLa8G
#: 06140402.xhp
@@ -46582,6 +47311,15 @@ msgctxt ""
msgid "<ahelp hid=\"desktop/ui/extensionmanager/ExtensionManagerDialog\">The Extension Manager adds, removes, disables, enables, and updates %PRODUCTNAME extensions.</ahelp>"
msgstr "<ahelp hid=\"desktop/ui/extensionmanager/ExtensionManagerDialog\">የ ተጨማሪ አስተዳዳሪ መጨመሪያ: ይጨምራል: ያስወግዳል: ያሰናክላል: እና ያሻሽላል %PRODUCTNAME ተጨማሪዎች </ahelp>"
+#. DaSEM
+#: packagemanager.xhp
+msgctxt ""
+"packagemanager.xhp\n"
+"par_id941619265371175\n"
+"help.text"
+msgid "For security reasons, the installation and removal of extensions are controlled by settings in the <link href=\"text/shared/optionen/expertconfig.xhp\" name=\"expert configuration\">Expert Configuration</link>. By default, installation and removal are enabled."
+msgstr ""
+
#. AEioS
#: packagemanager.xhp
msgctxt ""
@@ -49525,6 +50263,15 @@ msgctxt ""
msgid "Specifies the security options of the exported PDF file."
msgstr ""
+#. oeCcJ
+#: ref_pdf_export_security.xhp
+msgctxt ""
+"ref_pdf_export_security.xhp\n"
+"par_id251619267385242\n"
+"help.text"
+msgid "The restrictions that limit copying, editing or printing depend on the reader software to obey them, so the security they provide is limited."
+msgstr ""
+
#. ENhob
#: ref_pdf_export_security.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/02.po b/source/am/helpcontent2/source/text/shared/02.po
index 5e66d8144fe..d818e99d6d9 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: 2021-03-23 11:44+0100\n"
+"POT-Creation-Date: 2021-04-27 17:02+0200\n"
"PO-Revision-Date: 2020-02-05 07:21+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Amharic <https://weblate.documentfoundation.org/projects/libo_help-master/textshared02/am/>\n"
@@ -9079,14 +9079,14 @@ msgctxt ""
msgid "Forms are created based on a database table or database query. They display the data in a visually pleasant fashion and can be used to enter data or edit data."
msgstr "ፎርም የሚፈጠረው የ ዳታቤዝ ሰንጠረዥ መሰረት ባደረገ ነው ወይንም የ ዳታቤዝ ጥያቄ: ዳታ ያሳያሉ ስለዚህ እርስዎ ዳታ ማስገባት ወይንም ዳታ ማረም ይችላሉ"
-#. APwnu
+#. zDRfS
#: 01170203.xhp
msgctxt ""
"01170203.xhp\n"
"par_id3147094\n"
"help.text"
-msgid "<variable id=\"wozu\">If you require a form that can refer to the data in a table or query and can additionally display data from another table, you should create a subform. </variable> For example, this subform can be a text box that displays the data of another database table."
-msgstr "<variable id=\"wozu\">እርስዎ ከፈለጉ ፎርም የሚያመሳክር ዳታ በ ሰንጠረዥ ውስጥ እና በ ተጨማሪ ዳታ የሚያሳይ ከ ሌላ ሰንጠረዥ ውስጥ: እርስዎ ንዑስ ፎርም መፍጠር አለብዎት </variable> ለምሳሌ: ይህ ንዑስ ፎርም የ ጽሁፍ ሳጥን ሊሆን ይችላል: የ ሌላ ዳታቤዝ ሰንጠረዥ ዳታ የሚያሳይ"
+msgid "<variable id=\"wozu\">If you require a form that can refer to the data in a table or query and can additionally display data from another table, you should create a subform.</variable> For example, this subform can be a text box that displays the data of another database table."
+msgstr ""
#. XHd6U
#: 01170203.xhp
diff --git a/source/am/helpcontent2/source/text/shared/explorer/database.po b/source/am/helpcontent2/source/text/shared/explorer/database.po
index a18482c70c8..1c9e6f2864d 100644
--- a/source/am/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/am/helpcontent2/source/text/shared/explorer/database.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-27 17:03+0200\n"
"PO-Revision-Date: 2018-12-10 01:28+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,285 +16,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1544405296.000000\n"
-#. rxCsN
-#: 05040000.xhp
-msgctxt ""
-"05040000.xhp\n"
-"tit\n"
-"help.text"
-msgid "General"
-msgstr "ባጠቃላይ"
-
-#. 9CBQW
-#: 05040000.xhp
-msgctxt ""
-"05040000.xhp\n"
-"hd_id3149031\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/05040000.xhp\" name=\"General\">General</link>"
-msgstr "<link href=\"text/shared/explorer/database/05040000.xhp\" name=\"General\">ባጠቃላይ</link>"
-
-#. 7ithV
-#: 05040100.xhp
-msgctxt ""
-"05040100.xhp\n"
-"tit\n"
-"help.text"
-msgid "General"
-msgstr "ባጠቃላይ"
-
-#. CGWNP
-#: 05040100.xhp
-msgctxt ""
-"05040100.xhp\n"
-"hd_id3153255\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/05040100.xhp\" name=\"General\">General</link>"
-msgstr "<link href=\"text/shared/explorer/database/05040100.xhp\" name=\"General\">ባጠቃላይ</link>"
-
-#. LsG3R
-#: 05040100.xhp
-msgctxt ""
-"05040100.xhp\n"
-"par_id3157898\n"
-"help.text"
-msgid "When you create a database table as an administrator, you can use this tab to determine user access, and to edit the data or the table structure."
-msgstr "እርስዎ የ ዳታቤዝ በሚፈጥሩ ጊዜ እንደ አስተዳዳሪ: እርስዎ ይህን መጠቀም ይችላሉ tab ተጠቃሚ መድረሻ ለ መወሰን: እና ዳታ ለማረም ወይንም የ ሰንጠረዥ አካል"
-
-#. CydBA
-#: 05040100.xhp
-msgctxt ""
-"05040100.xhp\n"
-"bm_id3152594\n"
-"help.text"
-msgid "<bookmark_value>access rights for database tables (Base)</bookmark_value><bookmark_value>tables in databases; access rights to (Base)</bookmark_value>"
-msgstr "<bookmark_value>መድረሻ ፍቃድ ለ ዳታቤዝ ሰንጠረዥ (ቤዝ)</bookmark_value><bookmark_value>ሰንጠረዥ ዳታቤዝ ውስጥ: መድረሻ ፍቃድ ወደ (ቤዝ)</bookmark_value>"
-
-#. VFwEY
-#: 05040100.xhp
-msgctxt ""
-"05040100.xhp\n"
-"par_id3152594\n"
-"help.text"
-msgid "If you are not the administrator, you can use the <emph>General</emph> tab to view your access rights for the selected table."
-msgstr "እርስዎ አስተዳዳሪ ካልሆኑ: እርስዎ መጠቀም ይችላሉ የ <emph>ባጠቃላይ</emph>tab የ እርስዎን ፍቃድ ለ መመልከት ለ ተመረጠው ሰንጠረዥ"
-
-#. ZGqED
-#: 05040100.xhp
-msgctxt ""
-"05040100.xhp\n"
-"hd_id3145669\n"
-"help.text"
-msgid "Table name"
-msgstr "የ ሰንጠረዡ ስም"
-
-#. hfNJd
-#: 05040100.xhp
-msgctxt ""
-"05040100.xhp\n"
-"par_id3147834\n"
-"help.text"
-msgid "Displays the name of the selected database table."
-msgstr "የ ተመረጠውን የ ዳታቤዝ ሰንጠረዥ ስም ማሳያ"
-
-#. mxdWQ
-#: 05040100.xhp
-msgctxt ""
-"05040100.xhp\n"
-"hd_id3156426\n"
-"help.text"
-msgid "Type"
-msgstr "አይነት"
-
-#. cGosS
-#: 05040100.xhp
-msgctxt ""
-"05040100.xhp\n"
-"par_id3154823\n"
-"help.text"
-msgid "Displays the type of database."
-msgstr "የ ዳታቤዝ አይነት ማሳያ"
-
-#. jCSC3
-#: 05040100.xhp
-msgctxt ""
-"05040100.xhp\n"
-"hd_id3149095\n"
-"help.text"
-msgid "Location"
-msgstr "አካባቢ"
-
-#. GjS2M
-#: 05040100.xhp
-msgctxt ""
-"05040100.xhp\n"
-"par_id3153311\n"
-"help.text"
-msgid "Displays the complete path of the database table."
-msgstr "የ ዳታቤዝ ሰንጠረዥ ሙሉ መንገድ ማሳያ"
-
-#. gA9FG
-#: 05040100.xhp
-msgctxt ""
-"05040100.xhp\n"
-"hd_id3153528\n"
-"help.text"
-msgid "Read data"
-msgstr "ዳታ ማንበቢያ"
-
-#. YB94i
-#: 05040100.xhp
-msgctxt ""
-"05040100.xhp\n"
-"par_id3163802\n"
-"help.text"
-msgid "<ahelp hid=\".\">Allows a user to read the data.</ahelp>"
-msgstr "<ahelp hid=\".\">ተጠቃሚው ዳታውን እንዲያነብ ያስችለዋል</ahelp>"
-
-#. MFSk5
-#: 05040100.xhp
-msgctxt ""
-"05040100.xhp\n"
-"hd_id3150355\n"
-"help.text"
-msgid "Insert data"
-msgstr "ዳታ ማስገቢያ"
-
-#. XFubg
-#: 05040100.xhp
-msgctxt ""
-"05040100.xhp\n"
-"par_id3149398\n"
-"help.text"
-msgid "<ahelp hid=\".\">Allows a user to insert new data.</ahelp>"
-msgstr "<ahelp hid=\".\">ተጠቃሚውን አዲስ ዳታ ለማስገባት ያስችለዋል</ahelp>"
-
-#. EW2bD
-#: 05040100.xhp
-msgctxt ""
-"05040100.xhp\n"
-"hd_id3155420\n"
-"help.text"
-msgid "Change data"
-msgstr "ዳታ መቀየሪያ"
-
-#. U9WwE
-#: 05040100.xhp
-msgctxt ""
-"05040100.xhp\n"
-"par_id3158430\n"
-"help.text"
-msgid "<ahelp hid=\".\">Allows a user to change data.</ahelp>"
-msgstr "<ahelp hid=\".\">ተጠቃሚውን ዳታ ለመቀየር ያስችለዋል</ahelp>"
-
-#. DqoTz
-#: 05040100.xhp
-msgctxt ""
-"05040100.xhp\n"
-"hd_id3149516\n"
-"help.text"
-msgid "Delete data"
-msgstr "ዳታ ማጥፊያ"
-
-#. VRspq
-#: 05040100.xhp
-msgctxt ""
-"05040100.xhp\n"
-"par_id3155449\n"
-"help.text"
-msgid "<ahelp hid=\".\">Allows a user to delete data.</ahelp>"
-msgstr "<ahelp hid=\".\">ተጠቃሚውን ዳታ ለማጥፋት ያስችለዋል</ahelp>"
-
-#. WAXNP
-#: 05040100.xhp
-msgctxt ""
-"05040100.xhp\n"
-"hd_id3145674\n"
-"help.text"
-msgid "Change table structure"
-msgstr "የ ሰንጠረዥ አካል መቀየሪያ"
-
-#. NAwCj
-#: 05040100.xhp
-msgctxt ""
-"05040100.xhp\n"
-"par_id3153146\n"
-"help.text"
-msgid "<ahelp hid=\".\">Allows a user to change the table structure.</ahelp>"
-msgstr "<ahelp hid=\".\">ተጠቃሚውን የ ሰንጠረዥ አካል መቀየሪያ ያስችለዋል</ahelp>"
-
-#. rTzQj
-#: 05040100.xhp
-msgctxt ""
-"05040100.xhp\n"
-"hd_id3143270\n"
-"help.text"
-msgid "Definition"
-msgstr "መግለጫ"
-
-#. zAByc
-#: 05040100.xhp
-msgctxt ""
-"05040100.xhp\n"
-"par_id3154897\n"
-"help.text"
-msgid "<ahelp hid=\".\">Allows the user to delete the table structure.</ahelp>"
-msgstr "<ahelp hid=\".\">ተጠቃሚውን የ ሰንጠረዥ አካል ማጥፋት ያስችለዋል</ahelp>"
-
-#. gFhhG
-#: 05040100.xhp
-msgctxt ""
-"05040100.xhp\n"
-"hd_id3153126\n"
-"help.text"
-msgid "Modify references"
-msgstr "ማመሳከሪያዎችን ማሻሻያ"
-
-#. qx3NS
-#: 05040100.xhp
-msgctxt ""
-"05040100.xhp\n"
-"par_id3159399\n"
-"help.text"
-msgid "<ahelp hid=\".\">Allows the user to modify the defined references, for example, to enter new relations for the table or to delete existing relations.</ahelp>"
-msgstr "<ahelp hid=\".\">ተጠቃሚውን የ ተገለጸውን ማመሳከሪያ እንዲያሻሽል ማስቻያ: ለምሳሌ: አዲስ ግንኙነት ለማስገባት ለ ሰንጠረዥ ወይንም ለማጥፋት የ ነበረውን ግንኙነት </ahelp>"
-
-#. 2sbVx
-#: 05040200.xhp
-msgctxt ""
-"05040200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Description"
-msgstr "መግለጫ"
-
-#. rGuxt
-#: 05040200.xhp
-msgctxt ""
-"05040200.xhp\n"
-"hd_id3109850\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/05040200.xhp\" name=\"Description\">Description</link>"
-msgstr "<link href=\"text/shared/explorer/database/05040200.xhp\" name=\"Description\">መግለጫ</link>"
-
-#. h4VES
-#: 05040200.xhp
-msgctxt ""
-"05040200.xhp\n"
-"hd_id3157898\n"
-"help.text"
-msgid "Table description"
-msgstr "የሰንጠረዥ መግለጫ"
-
-#. ABb4R
-#: 05040200.xhp
-msgctxt ""
-"05040200.xhp\n"
-"par_id3154422\n"
-"help.text"
-msgid "<ahelp hid=\".\">Displays the description for the selected table.</ahelp>"
-msgstr "<ahelp hid=\".\">የ ተመረጠውን ሰንጠረዥ መግለጫ ማሳያ </ahelp>"
-
#. jpgRA
#: 11000002.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/guide.po b/source/am/helpcontent2/source/text/shared/guide.po
index f4d0d5b0b17..bfd84483e36 100644
--- a/source/am/helpcontent2/source/text/shared/guide.po
+++ b/source/am/helpcontent2/source/text/shared/guide.po