summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/inspection/XObjectInspectorModel.idl
blob: 73be7fafd48b6c5cab5965b15dbf641aeab0cb36 (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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
/*************************************************************************
 *
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * Copyright 2008 by Sun Microsystems, Inc.
 *
 * OpenOffice.org - a multi-platform office productivity suite
 *
 * $RCSfile: XObjectInspectorModel.idl,v $
 * $Revision: 1.6 $
 *
 * This file is part of OpenOffice.org.
 *
 * OpenOffice.org is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License version 3
 * only, as published by the Free Software Foundation.
 *
 * OpenOffice.org is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License version 3 for more details
 * (a copy is included in the LICENSE file that accompanied this code).
 *
 * You should have received a copy of the GNU Lesser General Public License
 * version 3 along with OpenOffice.org.  If not, see
 * <http://www.openoffice.org/license.html>
 * for a copy of the LGPLv3 License.
 *
 ************************************************************************/

#ifndef __com_sun_star_inspection_XObjectInspectorModel_idl__
#define __com_sun_star_inspection_XObjectInspectorModel_idl__

#ifndef __com_sun_star_uno_XInterface_idl__
#include <com/sun/star/uno/XInterface.idl>
#endif
#ifndef __com_sun_star_inspection_PropertyCategoryDescriptor_idl__
#include <com/sun/star/inspection/PropertyCategoryDescriptor.idl>
#endif

//=============================================================================
module com {  module sun {  module star {  module inspection {

interface XPropertyHandler;

//-----------------------------------------------------------------------------
/** describes the model of an <type>ObjectInspector</type>

    @see ObjectInspector

    @since OOo 2.0.3
*/
interface XObjectInspectorModel
{
    /** describes a set of factories for creating <type>XPropertyHandler</type>s

        <p>Every element of the sequence must contain information to create a
        <type>XPropertyHandler</type> instance. Two ways are currently supported:
        <ul>
            <li>A sevice name:</br>
                If a sequence element contains a string, this string is interpreted
                as service name, and an <type scope="com::sun::star::lang">XMultiComponentFactory</type>
                is asked to create an instance of this service.</li>
            <li>A factory:<br/>
                If a sequence element contains an instance implementing the
                <type scope="com::sun::star::lang">XSingleComponentFactory</type> interface, this factory
                is used to create a property handler.</li>
        </ul></p>

        <p>This attribute is usually only evaluated by the <type>ObjectInspector</type> instance
        which the model is currently bound to.</p>

        <p>The order of factories is important: If two property handlers declare themself responsible
        for the same property, the one whose factory is listed <strong>last</strong> wins. Also,
        if a handler <code>B</code> wants to supersede a property of another handler <code>A</code>,
        <code>A</code>'s factory must precede the factory of <code>B</code>.</p>

        @see XPropertyHandler::getSupportedProperties
        @see XPropertyHandler::getSupersededProperties
    */
    [attribute, readonly] sequence< any > HandlerFactories;

    /** describes the property categories used by the property handlers.

        <p>Properties can be sorted into different categories, described by the <member>LineDescriptor::Category</member>
        attribute, which is filled in <member>XPropertyHandler::describePropertyLine</member>
        method of your property handler.<br/>
        Those names provided by the handlers are programmatic names. All other information
        about categories is part of the <type>PropertyCategoryDescriptor</type>, and
        <member>describeCategories</member> assembles information about all categories which
        all property handlers provided by the model use.</p>

        @return
            a sequence of category descriptors. Their relative ordering also describes
            the relative ordering of the categories in the <type>ObjectInspector</type>'s
            user interface.<br/>
            The sequence must not contain two entries with the same programmatic name.<br/>
            <br/>
            The model implementation might return an empty sequence here, in this case, the ObjectInspector
            automatically builds its category information from the categories provided by the
            property handlers.
        @see PropertyCategoryDescriptor
        @see LineDescriptor::Category
    */
    sequence< PropertyCategoryDescriptor > describeCategories();

    /** retrieves an index in a global property ordering, for a given property name

        <p>In the user interface of an ObjectInspector, single properties are represented by
        single lines, and those lines are displayed successively. To determine an order of
        the property lines, the inspector model can associate an "order index" with each property.
        The <type>ObjectInspector</type> will then sort the property lines in a way that they
        have the same relative ordering as the "order indexes" of their properties.</p>

        <p>Note that the concrete value the model returns for a given property does not
        matter. All what matters is that if you want a certain property <code>Foo</code>
        to be displayed after another property <code>Bar</code>, then the order index
        of <code>Foo</code> should be greater than the order index of <code>Bar</code>.

        <p>If for two different properties the same order index is returned, the
        <type>ObjectInspector</type> will assume the order in which those properties
        were provided by the respective property handler
        (<member>XPropertyHandler::getSupportedProperties</member>).<br/>
        If two such properties originate from different handlers, they will be ordered according
        to the order of the handlers, as provided in the <member>HandlerFactories</member> attribute.</p>

        @param PropertyName
            the property whose global order index should be retrieved
        @return
            the global order index of <arg>PropertyName</arg>.
    */
    long    getPropertyOrderIndex( [in] string PropertyName );

    /** indicates that the object inspector should have a help section.

        <p>The object inspector displays lines of property/values, optionally grouped
        into categories, as described by the property handlers.<br/>
        Additionally, the inspector can optionally display a section dedicated to help
        texts. Clients could use this section to display context-sensitive help, for
        instance short texts explaining the currently selected property.</p>

        @since OOo 2.2
    */
    [attribute, readonly] boolean HasHelpSection;

    /** denotes the minimum number of lines of text to be reserved for the help
        section.

        <p>This property is ignored by the <type>ObjectInspector</type> if
        <member>HasHelpSection</member> is <FALSE/>.</p>

        <p>The layout of the <type>ObjectInspector</type> is undefined if
        <member>MinHelpTextLines</member> is larger than
        <member>MaxHelpTextLines</member>.</p>

        @since OOo 2.2
    */
    [attribute, readonly] long MinHelpTextLines;

    /** denotes the maximum number of lines of text to be reserved for the help
        section.

        <p>This property is ignored by the <type>ObjectInspector</type> if
        <member>HasHelpSection</member> is <FALSE/>.</p>

        <p>The layout of the <type>ObjectInspector</type> is undefined if
        <member>MaxHelpTextLines</member> is smaller than
        <member>MinHelpTextLines</member>.</p>

        @since OOo 2.2
    */
    [attribute, readonly] long MaxHelpTextLines;

    /** determines whether the object inspector's UI should be read-only.

        <p>In this case, the user is able to browse through all properties, but cannot
        change any of them.</p>

        <p>In a read-only object inspector, the property controls are readonly or
        disabled themself, and the primary and secondary buttons of a property line
        are both disabled.</p>

        @see XPropertyControl
        @see LineDescriptor
    */
    [attribute, bound] boolean IsReadOnly;
};

//=============================================================================

}; }; }; };

#endif


0b6d1e06f579d12a22eb1ad805c99c'>source/es/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/es/helpcontent2/source/text/scalc/01.po22
-rw-r--r--source/es/helpcontent2/source/text/schart/01.po6
-rw-r--r--source/es/helpcontent2/source/text/sdatabase.po44
-rw-r--r--source/es/helpcontent2/source/text/shared.po4
-rw-r--r--source/es/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/es/helpcontent2/source/text/shared/01.po42
-rw-r--r--source/es/helpcontent2/source/text/shared/02.po12
-rw-r--r--source/es/helpcontent2/source/text/shared/guide.po20
-rw-r--r--source/es/helpcontent2/source/text/simpress.po4
-rw-r--r--source/es/helpcontent2/source/text/simpress/02.po44
-rw-r--r--source/es/helpcontent2/source/text/swriter.po4
-rw-r--r--source/es/helpcontent2/source/text/swriter/01.po28
-rw-r--r--source/es/helpcontent2/source/text/swriter/02.po10
-rw-r--r--source/es/helpcontent2/source/text/swriter/guide.po16
-rw-r--r--source/es/instsetoo_native/inc_openoffice/windows/msi_languages.po14
-rw-r--r--source/es/officecfg/registry/data/org/openoffice/Office/UI.po30
-rw-r--r--source/es/sfx2/messages.po56
-rw-r--r--source/es/svx/messages.po16
-rw-r--r--source/es/sw/messages.po12
-rw-r--r--source/et/helpcontent2/source/auxiliary.po6
-rw-r--r--source/et/sfx2/messages.po50
-rw-r--r--source/eu/helpcontent2/source/auxiliary.po6
-rw-r--r--source/eu/helpcontent2/source/text/sbasic/shared.po194
-rw-r--r--source/eu/helpcontent2/source/text/sbasic/shared/03.po176
-rw-r--r--source/eu/helpcontent2/source/text/scalc/01.po400
-rw-r--r--source/eu/helpcontent2/source/text/shared/01.po62
-rw-r--r--source/eu/helpcontent2/source/text/shared/guide.po32
-rw-r--r--source/eu/helpcontent2/source/text/swriter/01.po42
-rw-r--r--source/eu/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/eu/sc/messages.po8
-rw-r--r--source/eu/sfx2/messages.po50
-rw-r--r--source/eu/svtools/messages.po6
-rw-r--r--source/eu/sw/messages.po8
-rw-r--r--source/fa/sfx2/messages.po50
-rw-r--r--source/fi/cui/messages.po8
-rw-r--r--source/fi/dbaccess/messages.po4
-rw-r--r--source/fi/desktop/messages.po6
-rw-r--r--source/fi/editeng/messages.po4
-rw-r--r--source/fi/extensions/messages.po4
-rw-r--r--source/fi/helpcontent2/source/auxiliary.po6
-rw-r--r--source/fi/helpcontent2/source/text/shared/01.po4
-rw-r--r--source/fi/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/fi/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po8
-rw-r--r--source/fi/readlicense_oo/docs.po8
-rw-r--r--source/fi/reportdesign/messages.po4
-rw-r--r--source/fi/sc/messages.po4
-rw-r--r--source/fi/sd/messages.po4
-rw-r--r--source/fi/sfx2/messages.po56
-rw-r--r--source/fi/starmath/messages.po4
-rw-r--r--source/fi/svtools/messages.po4
-rw-r--r--source/fi/sw/messages.po161
-rw-r--r--source/fi/uui/messages.po10
-rw-r--r--source/fi/wizards/source/resources.po4
-rw-r--r--source/fr/helpcontent2/source/auxiliary.po6
-rw-r--r--source/fr/helpcontent2/source/text/scalc/guide.po16
-rw-r--r--source/fr/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/fr/sfx2/messages.po50
-rw-r--r--source/fr/sw/messages.po4
-rw-r--r--source/fur/sfx2/messages.po50
-rw-r--r--source/fy/sfx2/messages.po50
-rw-r--r--source/ga/sfx2/messages.po50
-rw-r--r--source/gd/sfx2/messages.po50
-rw-r--r--source/gl/desktop/messages.po4
-rw-r--r--source/gl/helpcontent2/source/auxiliary.po8
-rw-r--r--source/gl/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/gl/sfx2/messages.po50
-rw-r--r--source/gl/svx/messages.po6
-rw-r--r--source/gu/helpcontent2/source/auxiliary.po6
-rw-r--r--source/gu/sfx2/messages.po50
-rw-r--r--source/gug/helpcontent2/source/auxiliary.po8
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/guide.po6
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/python.po14
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/shared.po32
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/shared/02.po12
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/gug/helpcontent2/source/text/scalc/01.po22
-rw-r--r--source/gug/helpcontent2/source/text/schart/01.po6
-rw-r--r--source/gug/helpcontent2/source/text/sdatabase.po44
-rw-r--r--source/gug/helpcontent2/source/text/shared.po4
-rw-r--r--source/gug/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/gug/helpcontent2/source/text/shared/01.po42
-rw-r--r--source/gug/helpcontent2/source/text/shared/02.po12
-rw-r--r--source/gug/helpcontent2/source/text/shared/guide.po20
-rw-r--r--source/gug/helpcontent2/source/text/simpress.po4
-rw-r--r--source/gug/helpcontent2/source/text/simpress/02.po44
-rw-r--r--source/gug/helpcontent2/source/text/swriter.po4
-rw-r--r--source/gug/helpcontent2/source/text/swriter/01.po28
-rw-r--r--source/gug/helpcontent2/source/text/swriter/02.po10
-rw-r--r--source/gug/helpcontent2/source/text/swriter/guide.po16
-rw-r--r--source/gug/sfx2/messages.po50
-rw-r--r--source/he/helpcontent2/source/auxiliary.po6
-rw-r--r--source/he/sfx2/messages.po50
-rw-r--r--source/hi/helpcontent2/source/auxiliary.po6
-rw-r--r--source/hi/sfx2/messages.po50
-rw-r--r--source/hr/helpcontent2/source/auxiliary.po6
-rw-r--r--source/hr/sfx2/messages.po50
-rw-r--r--source/hsb/cui/messages.po4
-rw-r--r--source/hsb/officecfg/registry/data/org/openoffice/Office.po4
-rw-r--r--source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po108
-rw-r--r--source/hsb/sc/messages.po26
-rw-r--r--source/hsb/sfx2/messages.po50
-rw-r--r--source/hsb/vcl/messages.po6
-rw-r--r--source/hu/basctl/messages.po26
-rw-r--r--source/hu/connectivity/messages.po107
-rw-r--r--source/hu/cui/messages.po346
-rw-r--r--source/hu/dbaccess/messages.po42
-rw-r--r--source/hu/desktop/messages.po8
-rw-r--r--source/hu/editeng/messages.po12
-rw-r--r--source/hu/extensions/messages.po14
-rw-r--r--source/hu/filter/messages.po10
-rw-r--r--source/hu/filter/source/config/fragments/filters.po16
-rw-r--r--source/hu/filter/source/config/fragments/internalgraphicfilters.po56
-rw-r--r--source/hu/fpicker/messages.po12
-rw-r--r--source/hu/helpcontent2/source/auxiliary.po8
-rw-r--r--source/hu/helpcontent2/source/text/shared/01.po278
-rw-r--r--source/hu/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po10
-rw-r--r--source/hu/officecfg/registry/data/org/openoffice/Office.po8
-rw-r--r--source/hu/officecfg/registry/data/org/openoffice/Office/UI.po98
-rw-r--r--source/hu/oox/messages.po6
-rw-r--r--source/hu/sc/messages.po250
-rw-r--r--source/hu/sd/messages.po34
-rw-r--r--source/hu/sfx2/messages.po66
-rw-r--r--source/hu/svl/messages.po12
-rw-r--r--source/hu/svtools/messages.po40
-rw-r--r--source/hu/svx/messages.po116
-rw-r--r--source/hu/sw/messages.po172
-rw-r--r--source/hu/uui/messages.po7
-rw-r--r--source/hu/vcl/messages.po14
-rw-r--r--source/id/helpcontent2/source/auxiliary.po8
-rw-r--r--source/id/helpcontent2/source/text/shared/guide.po6
-rw-r--r--source/id/sfx2/messages.po50
-rw-r--r--source/is/helpcontent2/source/auxiliary.po6
-rw-r--r--source/is/sfx2/messages.po56
-rw-r--r--source/it/helpcontent2/source/auxiliary.po8
-rw-r--r--source/it/sfx2/messages.po50
-rw-r--r--source/ja/cui/messages.po12
-rw-r--r--source/ja/helpcontent2/source/auxiliary.po6
-rw-r--r--source/ja/sfx2/messages.po50
-rw-r--r--source/jv/sfx2/messages.po50
-rw-r--r--source/ka/helpcontent2/source/auxiliary.po6
-rw-r--r--source/ka/sfx2/messages.po50
-rw-r--r--source/kab/sfx2/messages.po50
-rw-r--r--source/kk/sfx2/messages.po50
-rw-r--r--source/kl/sfx2/messages.po50
-rw-r--r--source/km/helpcontent2/source/auxiliary.po6
-rw-r--r--source/km/sfx2/messages.po50
-rw-r--r--source/kmr-Latn/sfx2/messages.po50
-rw-r--r--source/kn/sfx2/messages.po50
-rw-r--r--source/ko/helpcontent2/source/auxiliary.po6
-rw-r--r--source/ko/sfx2/messages.po50
-rw-r--r--source/kok/sfx2/messages.po50
-rw-r--r--source/ks/sfx2/messages.po50
-rw-r--r--source/ky/sfx2/messages.po50
-rw-r--r--source/lb/sfx2/messages.po50
-rw-r--r--source/lo/helpcontent2/source/auxiliary.po6
-rw-r--r--source/lo/sfx2/messages.po50
-rw-r--r--source/lt/helpcontent2/source/auxiliary.po6
-rw-r--r--source/lt/sfx2/messages.po50
-rw-r--r--source/lv/helpcontent2/source/auxiliary.po6
-rw-r--r--source/lv/sfx2/messages.po50
-rw-r--r--source/mai/sfx2/messages.po50
-rw-r--r--source/mk/helpcontent2/source/auxiliary.po6
-rw-r--r--source/mk/sfx2/messages.po50
-rw-r--r--source/ml/sfx2/messages.po50
-rw-r--r--source/mn/sfx2/messages.po50
-rw-r--r--source/mni/sfx2/messages.po50
-rw-r--r--source/mr/sfx2/messages.po50
-rw-r--r--source/my/sfx2/messages.po50
-rw-r--r--source/nb/cui/messages.po328
-rw-r--r--source/nb/helpcontent2/source/auxiliary.po6
-rw-r--r--source/nb/sc/messages.po240
-rw-r--r--source/nb/sfx2/messages.po50
-rw-r--r--source/nb/sw/messages.po196
-rw-r--r--source/ne/helpcontent2/source/auxiliary.po6
-rw-r--r--source/ne/sfx2/messages.po50
-rw-r--r--source/nl/cui/messages.po8
-rw-r--r--source/nl/filter/messages.po4
-rw-r--r--source/nl/formula/messages.po4
-rw-r--r--source/nl/helpcontent2/source/auxiliary.po8
-rw-r--r--source/nl/sc/messages.po6
-rw-r--r--source/nl/sfx2/messages.po50
-rw-r--r--source/nl/svx/messages.po4
-rw-r--r--source/nn/cui/messages.po294
-rw-r--r--source/nn/dbaccess/messages.po35
-rw-r--r--source/nn/editeng/messages.po12
-rw-r--r--source/nn/extensions/messages.po14
-rw-r--r--source/nn/filter/source/config/fragments/filters.po6
-rw-r--r--source/nn/helpcontent2/source/auxiliary.po8
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/shared.po20
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/shared/03.po28
-rw-r--r--source/nn/helpcontent2/source/text/scalc/00.po8
-rw-r--r--source/nn/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/nn/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/nn/helpcontent2/source/text/sdatabase.po4
-rw-r--r--source/nn/helpcontent2/source/text/shared.po58
-rw-r--r--source/nn/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/nn/helpcontent2/source/text/simpress.po12
-rw-r--r--source/nn/helpcontent2/source/text/swriter/01.po8
-rw-r--r--source/nn/officecfg/registry/data/org/openoffice/Office.po8
-rw-r--r--source/nn/officecfg/registry/data/org/openoffice/Office/UI.po156
-rw-r--r--source/nn/sc/messages.po237
-rw-r--r--source/nn/scp2/source/ooo.po6
-rw-r--r--source/nn/sd/messages.po30
-rw-r--r--source/nn/sfx2/messages.po60
-rw-r--r--source/nn/svtools/messages.po14
-rw-r--r--source/nn/svx/messages.po100
-rw-r--r--source/nn/sw/messages.po248
-rw-r--r--source/nr/sfx2/messages.po50
-rw-r--r--source/nso/sfx2/messages.po50
-rw-r--r--source/oc/dictionaries/gl.po12
-rw-r--r--source/oc/scp2/source/ooo.po14
-rw-r--r--source/oc/sfx2/messages.po50
-rw-r--r--source/om/helpcontent2/source/auxiliary.po6
-rw-r--r--source/om/sfx2/messages.po50
-rw-r--r--source/or/sfx2/messages.po50
-rw-r--r--source/pa-IN/sfx2/messages.po50
-rw-r--r--source/pl/helpcontent2/source/auxiliary.po6
-rw-r--r--source/pl/sfx2/messages.po50
-rw-r--r--source/pt-BR/helpcontent2/source/auxiliary.po8
-rw-r--r--source/pt-BR/helpcontent2/source/text/sbasic/shared/03.po7
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/pt-BR/sfx2/messages.po50
-rw-r--r--source/pt/helpcontent2/source/auxiliary.po6
-rw-r--r--source/pt/sfx2/messages.po50
-rw-r--r--source/ro/helpcontent2/source/auxiliary.po6
-rw-r--r--source/ro/sfx2/messages.po50
-rw-r--r--source/ru/basctl/messages.po4
-rw-r--r--source/ru/connectivity/messages.po18
-rw-r--r--source/ru/cui/messages.po20
-rw-r--r--source/ru/dbaccess/messages.po6
-rw-r--r--source/ru/desktop/messages.po6
-rw-r--r--source/ru/dictionaries/pt_BR/dialog.po4
-rw-r--r--source/ru/dictionaries/pt_PT.po12
-rw-r--r--source/ru/extensions/messages.po6
-rw-r--r--source/ru/filter/messages.po4
-rw-r--r--source/ru/helpcontent2/source/auxiliary.po6
-rw-r--r--source/ru/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/ru/oox/messages.po6
-rw-r--r--source/ru/sc/messages.po157
-rw-r--r--source/ru/sd/messages.po8
-rw-r--r--source/ru/sfx2/messages.po58
-rw-r--r--source/ru/starmath/messages.po10
-rw-r--r--source/ru/svx/messages.po24
-rw-r--r--source/ru/sw/messages.po82
-rw-r--r--source/ru/uui/messages.po4
-rw-r--r--source/rw/sfx2/messages.po50
-rw-r--r--source/sa-IN/sfx2/messages.po50
-rw-r--r--source/sah/sfx2/messages.po50
-rw-r--r--source/sat/sfx2/messages.po50
-rw-r--r--source/sd/sfx2/messages.po50
-rw-r--r--source/si/helpcontent2/source/auxiliary.po6
-rw-r--r--source/si/sfx2/messages.po50
-rw-r--r--source/sid/helpcontent2/source/auxiliary.po6
-rw-r--r--source/sid/sfx2/messages.po50
-rw-r--r--source/sk/helpcontent2/source/auxiliary.po8
-rw-r--r--source/sk/sfx2/messages.po50
-rw-r--r--source/sq/helpcontent2/source/auxiliary.po6
-rw-r--r--source/sq/sfx2/messages.po50
-rw-r--r--source/sr-Latn/sfx2/messages.po50
-rw-r--r--source/sr/sfx2/messages.po50
-rw-r--r--source/ss/sfx2/messages.po50
-rw-r--r--source/st/sfx2/messages.po50
-rw-r--r--source/sv/helpcontent2/source/auxiliary.po8
-rw-r--r--source/sv/sfx2/messages.po50
-rw-r--r--source/sw-TZ/sfx2/messages.po50
-rw-r--r--source/szl/sfx2/messages.po50
-rw-r--r--source/ta/helpcontent2/source/auxiliary.po6
-rw-r--r--source/ta/sfx2/messages.po50
-rw-r--r--source/te/sfx2/messages.po50
-rw-r--r--source/tg/helpcontent2/source/auxiliary.po6
-rw-r--r--source/tg/sfx2/messages.po50
-rw-r--r--source/th/sfx2/messages.po50
-rw-r--r--source/th/sw/messages.po838
-rw-r--r--source/ti/sfx2/messages.po50
-rw-r--r--source/tn/sfx2/messages.po50
-rw-r--r--source/tr/helpcontent2/source/auxiliary.po8
-rw-r--r--source/tr/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/tr/sfx2/messages.po50
-rw-r--r--source/ts/sfx2/messages.po50
-rw-r--r--source/tt/sfx2/messages.po50
-rw-r--r--source/ug/helpcontent2/source/auxiliary.po6
-rw-r--r--source/ug/sfx2/messages.po50
-rw-r--r--source/uk/connectivity/messages.po71
-rw-r--r--source/uk/helpcontent2/source/auxiliary.po6
-rw-r--r--source/uk/officecfg/registry/data/org/openoffice/Office.po8
-rw-r--r--source/uk/officecfg/registry/data/org/openoffice/Office/UI.po63
-rw-r--r--source/uk/sc/messages.po175
-rw-r--r--source/uk/scp2/source/ooo.po8
-rw-r--r--source/uk/sd/messages.po6
-rw-r--r--source/uk/sfx2/messages.po52
-rw-r--r--source/uk/svtools/messages.po22
-rw-r--r--source/uk/svx/messages.po10
-rw-r--r--source/ur/sfx2/messages.po50
-rw-r--r--source/uz/sfx2/messages.po50
-rw-r--r--source/ve/sfx2/messages.po50
-rw-r--r--source/vec/sfx2/messages.po50
-rw-r--r--source/vi/helpcontent2/source/auxiliary.po6
-rw-r--r--source/vi/sfx2/messages.po50
-rw-r--r--source/xh/sfx2/messages.po50
-rw-r--r--source/zh-CN/helpcontent2/source/auxiliary.po6
-rw-r--r--source/zh-CN/sfx2/messages.po50
-rw-r--r--source/zh-TW/helpcontent2/source/auxiliary.po6
-rw-r--r--source/zh-TW/sfx2/messages.po50
-rw-r--r--source/zu/sfx2/messages.po50
407 files changed, 7596 insertions, 7576 deletions
diff --git a/source/ab/sfx2/messages.po b/source/ab/sfx2/messages.po
index a1826e3c5a2..059b17ecd29 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: 2022-08-24 12:29+0200\n"
+"POT-Creation-Date: 2022-09-21 11:43+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"
@@ -2892,7 +2892,7 @@ msgid "No"
msgstr "Мап"
#. kDKBB
-#: sfx2/uiconfig/ui/commandpopup.ui:36
+#: sfx2/uiconfig/ui/commandpopup.ui:35
msgctxt "commandpopup|entry"
msgid "Search command"
msgstr ""
@@ -4832,139 +4832,139 @@ msgid "or Create a New Category"
msgstr "ма иаҧҵатәуп иҿыцу"
#. eUWTy
-#: sfx2/uiconfig/ui/templatedlg.ui:46
+#: sfx2/uiconfig/ui/templatedlg.ui:44
msgctxt "templatedlg|TemplateDialog"
msgid "Templates"
msgstr "Ашаблонқәа"
#. rhuYP
-#: sfx2/uiconfig/ui/templatedlg.ui:77
+#: sfx2/uiconfig/ui/templatedlg.ui:76
msgctxt "templatedlg|hidedialogcb"
msgid "Show this dialog at startup"
msgstr ""
#. 32zsB
-#: sfx2/uiconfig/ui/templatedlg.ui:144
+#: sfx2/uiconfig/ui/templatedlg.ui:143
msgctxt "templatedlg|search_filter|tooltip_text"
msgid "Search"
msgstr "Аҧшаара"
#. sGZMC
-#: sfx2/uiconfig/ui/templatedlg.ui:148
+#: sfx2/uiconfig/ui/templatedlg.ui:147
msgctxt "templatedlg|search_filter"
msgid "Search..."
msgstr ""
#. DF5YC
-#: sfx2/uiconfig/ui/templatedlg.ui:167
+#: sfx2/uiconfig/ui/templatedlg.ui:166
msgctxt "templatedlg|action_menu|label"
msgid "_Manage"
msgstr ""
#. LUs2m
-#: sfx2/uiconfig/ui/templatedlg.ui:181
+#: sfx2/uiconfig/ui/templatedlg.ui:180
msgctxt "templatedlg|extended_tip|action_menu"
msgid "Provides commands to create, rename and delete categories, reset default templates, and refresh the template manager."
msgstr ""
#. fXVNY
-#: sfx2/uiconfig/ui/templatedlg.ui:208
+#: sfx2/uiconfig/ui/templatedlg.ui:207
msgctxt "templatedlg|filter_application|tooltip_text"
msgid "Filter by Application"
msgstr ""
#. tqVhJ
-#: sfx2/uiconfig/ui/templatedlg.ui:210
+#: sfx2/uiconfig/ui/templatedlg.ui:209
msgctxt "templatedlg|applist"
msgid "All Applications"
msgstr ""
#. pD6pU
-#: sfx2/uiconfig/ui/templatedlg.ui:211
+#: sfx2/uiconfig/ui/templatedlg.ui:210
msgctxt "templatedlg|applist"
msgid "Text Documents"
msgstr ""
#. eECt7
-#: sfx2/uiconfig/ui/templatedlg.ui:212
+#: sfx2/uiconfig/ui/templatedlg.ui:211
msgctxt "templatedlg|applist"
msgid "Spreadsheets"
msgstr "Аел. таблицақәа"
#. ajLbV
-#: sfx2/uiconfig/ui/templatedlg.ui:213
+#: sfx2/uiconfig/ui/templatedlg.ui:212
msgctxt "templatedlg|applist"
msgid "Presentations"
msgstr "Апрезентациақәа"
#. LfUzB
-#: sfx2/uiconfig/ui/templatedlg.ui:214
+#: sfx2/uiconfig/ui/templatedlg.ui:213
msgctxt "templatedlg|applist"
msgid "Drawings"
msgstr ""
#. t7zE7
-#: sfx2/uiconfig/ui/templatedlg.ui:228
+#: sfx2/uiconfig/ui/templatedlg.ui:227
msgctxt "templatedlg|filter_folder|tooltip_text"
msgid "Filter by Category"
msgstr ""
#. 93CGw
-#: sfx2/uiconfig/ui/templatedlg.ui:230
+#: sfx2/uiconfig/ui/templatedlg.ui:229
msgctxt "templatedlg|folderlist"
msgid "All Categories"
msgstr "Акатегориақәа зегьы"
#. NF9wE
-#: sfx2/uiconfig/ui/templatedlg.ui:251
+#: sfx2/uiconfig/ui/templatedlg.ui:250
msgctxt "templatedlg|label1"
msgid "Filter"
msgstr "Афильтр"
#. ewTL3
-#: sfx2/uiconfig/ui/templatedlg.ui:357
+#: sfx2/uiconfig/ui/templatedlg.ui:356
msgctxt "templatedlg|treeviewcolumn1"
msgid "Name"
msgstr ""
#. 7EJRA
-#: sfx2/uiconfig/ui/templatedlg.ui:374
+#: sfx2/uiconfig/ui/templatedlg.ui:373
msgctxt "templatedlg|treeviewcolumn2"
msgid "Category"
msgstr ""
#. AC27i
-#: sfx2/uiconfig/ui/templatedlg.ui:389
+#: sfx2/uiconfig/ui/templatedlg.ui:388
msgctxt "templatedlg|treeviewcolumn3"
msgid "Application"
msgstr ""
#. eSaBw
-#: sfx2/uiconfig/ui/templatedlg.ui:404
+#: sfx2/uiconfig/ui/templatedlg.ui:403
msgctxt "templatedlg|treeviewcolumn4"
msgid "Modified"
msgstr ""
#. pNzYA
-#: sfx2/uiconfig/ui/templatedlg.ui:419
+#: sfx2/uiconfig/ui/templatedlg.ui:418
msgctxt "templatedlg|treeviewcolumn5"
msgid "Size"
msgstr ""
#. j39jM
-#: sfx2/uiconfig/ui/templatedlg.ui:445
+#: sfx2/uiconfig/ui/templatedlg.ui:444
msgctxt "templatedlg|thumbnailviewlabel"
msgid "Template List"
msgstr "Ашаблонқәа рыхьӡынҵа"
#. yEhgP
-#: sfx2/uiconfig/ui/templatedlg.ui:464
+#: sfx2/uiconfig/ui/templatedlg.ui:463
msgctxt "templatedlg|thumbnail_view_btn|tooltip_text"
msgid "Thumbnail View"
msgstr ""
#. j76ke
-#: sfx2/uiconfig/ui/templatedlg.ui:481
+#: sfx2/uiconfig/ui/templatedlg.ui:480
msgctxt "templatedlg|list_view_btn|tooltip_text"
msgid "List View"
msgstr ""
diff --git a/source/af/sfx2/messages.po b/source/af/sfx2/messages.po
index 5fe4a9e044a..e079eaeeb78 100644
--- a/source/af/sfx2/messages.po
+++ b/source/af/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-08-24 12:29+0200\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
"PO-Revision-Date: 2022-02-04 11:39+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/af/>\n"
@@ -2964,7 +2964,7 @@ msgid "No"
msgstr "Nee"
#. kDKBB
-#: sfx2/uiconfig/ui/commandpopup.ui:36
+#: sfx2/uiconfig/ui/commandpopup.ui:35
msgctxt "commandpopup|entry"
msgid "Search command"
msgstr "Soek bevel"
@@ -4904,139 +4904,139 @@ msgid "or Create a New Category"
msgstr "of skep ’n nuwe kategorie"
#. eUWTy
-#: sfx2/uiconfig/ui/templatedlg.ui:46
+#: sfx2/uiconfig/ui/templatedlg.ui:44
msgctxt "templatedlg|TemplateDialog"
msgid "Templates"
msgstr "Sjablone"
#. rhuYP
-#: sfx2/uiconfig/ui/templatedlg.ui:77
+#: sfx2/uiconfig/ui/templatedlg.ui:76
msgctxt "templatedlg|hidedialogcb"
msgid "Show this dialog at startup"
msgstr "Wys die dialoog by programbegin"
#. 32zsB
-#: sfx2/uiconfig/ui/templatedlg.ui:144
+#: sfx2/uiconfig/ui/templatedlg.ui:143
msgctxt "templatedlg|search_filter|tooltip_text"
msgid "Search"
msgstr "Soek"
#. sGZMC
-#: sfx2/uiconfig/ui/templatedlg.ui:148
+#: sfx2/uiconfig/ui/templatedlg.ui:147
msgctxt "templatedlg|search_filter"
msgid "Search..."
msgstr "Soek..."
#. DF5YC
-#: sfx2/uiconfig/ui/templatedlg.ui:167
+#: sfx2/uiconfig/ui/templatedlg.ui:166
msgctxt "templatedlg|action_menu|label"
msgid "_Manage"
msgstr "_Bestuur"
#. LUs2m
-#: sfx2/uiconfig/ui/templatedlg.ui:181
+#: sfx2/uiconfig/ui/templatedlg.ui:180
msgctxt "templatedlg|extended_tip|action_menu"
msgid "Provides commands to create, rename and delete categories, reset default templates, and refresh the template manager."
msgstr "Voorsien opdragte vir die skep, hernoem en verwydering van kategorieë, die herstel van standaard sjablone en die vernuwing van die sjabloonbeheerder."
#. fXVNY
-#: sfx2/uiconfig/ui/templatedlg.ui:208
+#: sfx2/uiconfig/ui/templatedlg.ui:207
msgctxt "templatedlg|filter_application|tooltip_text"
msgid "Filter by Application"
msgstr "Filtreer volgens toepassing"
#. tqVhJ
-#: sfx2/uiconfig/ui/templatedlg.ui:210
+#: sfx2/uiconfig/ui/templatedlg.ui:209
msgctxt "templatedlg|applist"
msgid "All Applications"
msgstr "Alle toepassings"
#. pD6pU
-#: sfx2/uiconfig/ui/templatedlg.ui:211
+#: sfx2/uiconfig/ui/templatedlg.ui:210
msgctxt "templatedlg|applist"
msgid "Text Documents"
msgstr "Teks dokumente"
#. eECt7
-#: sfx2/uiconfig/ui/templatedlg.ui:212
+#: sfx2/uiconfig/ui/templatedlg.ui:211
msgctxt "templatedlg|applist"
msgid "Spreadsheets"
msgstr "Sigblaaie"
#. ajLbV
-#: sfx2/uiconfig/ui/templatedlg.ui:213
+#: sfx2/uiconfig/ui/templatedlg.ui:212
msgctxt "templatedlg|applist"
msgid "Presentations"
msgstr "Voorleggings"
#. LfUzB
-#: sfx2/uiconfig/ui/templatedlg.ui:214
+#: sfx2/uiconfig/ui/templatedlg.ui:213
msgctxt "templatedlg|applist"
msgid "Drawings"
msgstr "Tekeninge"
#. t7zE7
-#: sfx2/uiconfig/ui/templatedlg.ui:228
+#: sfx2/uiconfig/ui/templatedlg.ui:227
msgctxt "templatedlg|filter_folder|tooltip_text"
msgid "Filter by Category"
msgstr "Filtreer volgens kategorie"
#. 93CGw
-#: sfx2/uiconfig/ui/templatedlg.ui:230
+#: sfx2/uiconfig/ui/templatedlg.ui:229
msgctxt "templatedlg|folderlist"
msgid "All Categories"
msgstr "Alle kategorieë"
#. NF9wE
-#: sfx2/uiconfig/ui/templatedlg.ui:251
+#: sfx2/uiconfig/ui/templatedlg.ui:250
msgctxt "templatedlg|label1"
msgid "Filter"
msgstr "Filtreer"
#. ewTL3
-#: sfx2/uiconfig/ui/templatedlg.ui:357
+#: sfx2/uiconfig/ui/templatedlg.ui:356
msgctxt "templatedlg|treeviewcolumn1"
msgid "Name"
msgstr "Naam"
#. 7EJRA
-#: sfx2/uiconfig/ui/templatedlg.ui:374
+#: sfx2/uiconfig/ui/templatedlg.ui:373
msgctxt "templatedlg|treeviewcolumn2"
msgid "Category"
msgstr "Kategorie"
#. AC27i
-#: sfx2/uiconfig/ui/templatedlg.ui:389
+#: sfx2/uiconfig/ui/templatedlg.ui:388
msgctxt "templatedlg|treeviewcolumn3"
msgid "Application"
msgstr "Toepassing"
#. eSaBw
-#: sfx2/uiconfig/ui/templatedlg.ui:404
+#: sfx2/uiconfig/ui/templatedlg.ui:403
msgctxt "templatedlg|treeviewcolumn4"
msgid "Modified"
msgstr "Aangepas"
#. pNzYA
-#: sfx2/uiconfig/ui/templatedlg.ui:419
+#: sfx2/uiconfig/ui/templatedlg.ui:418
msgctxt "templatedlg|treeviewcolumn5"
msgid "Size"
msgstr "Grootte"
#. j39jM
-#: sfx2/uiconfig/ui/templatedlg.ui:445
+#: sfx2/uiconfig/ui/templatedlg.ui:444
msgctxt "templatedlg|thumbnailviewlabel"
msgid "Template List"
msgstr "Lys van sjablone"
#. yEhgP
-#: sfx2/uiconfig/ui/templatedlg.ui:464
+#: sfx2/uiconfig/ui/templatedlg.ui:463
msgctxt "templatedlg|thumbnail_view_btn|tooltip_text"
msgid "Thumbnail View"
msgstr "Duimnael weergawe"
#. j76ke
-#: sfx2/uiconfig/ui/templatedlg.ui:481
+#: sfx2/uiconfig/ui/templatedlg.ui:480
msgctxt "templatedlg|list_view_btn|tooltip_text"
msgid "List View"
msgstr "Lys weergawe"
diff --git a/source/am/helpcontent2/source/auxiliary.po b/source/am/helpcontent2/source/auxiliary.po
index 7aa16f5f86b..78bc1a061f0 100644
--- a/source/am/helpcontent2/source/auxiliary.po
+++ b/source/am/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-11-25 19:33+0100\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
"PO-Revision-Date: 2020-02-01 14:30+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://weblate.documentfoundation.org/projects/libo_help-master/auxiliary/am/>\n"
@@ -313,11 +313,11 @@ msgctxt ""
msgid "Writing Calc Macros"
msgstr ""
-#. Q59GN
+#. vBXqp
#: scalc.tree
msgctxt ""
"scalc.tree\n"
-"0815\n"
+"0816\n"
"node.text"
msgid "Miscellaneous"
msgstr "የተለያዩ"
diff --git a/source/am/sfx2/messages.po b/source/am/sfx2/messages.po
index e95574790e6..748de2fc392 100644
--- a/source/am/sfx2/messages.po
+++ b/source/am/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-08-24 12:29+0200\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
"PO-Revision-Date: 2022-06-06 17:37+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/am/>\n"
@@ -2950,7 +2950,7 @@ msgid "No"
msgstr "አይ"
#. kDKBB
-#: sfx2/uiconfig/ui/commandpopup.ui:36
+#: sfx2/uiconfig/ui/commandpopup.ui:35
msgctxt "commandpopup|entry"
msgid "Search command"
msgstr "ትእዛዝ መፈለጊያ"
@@ -4881,139 +4881,139 @@ msgid "or Create a New Category"
msgstr "ወይንም አዲስ ምድብ ይፍጠሩ"
#. eUWTy
-#: sfx2/uiconfig/ui/templatedlg.ui:46
+#: sfx2/uiconfig/ui/templatedlg.ui:44
msgctxt "templatedlg|TemplateDialog"
msgid "Templates"
msgstr "ቴምፕሌቶች"
#. rhuYP
-#: sfx2/uiconfig/ui/templatedlg.ui:77
+#: sfx2/uiconfig/ui/templatedlg.ui:76
msgctxt "templatedlg|hidedialogcb"
msgid "Show this dialog at startup"
msgstr "በሚጀምር ጊዜ ይህን ንግግር ማሳያ"
#. 32zsB
-#: sfx2/uiconfig/ui/templatedlg.ui:144
+#: sfx2/uiconfig/ui/templatedlg.ui:143
msgctxt "templatedlg|search_filter|tooltip_text"
msgid "Search"
msgstr "መፈለጊያ"
#. sGZMC
-#: sfx2/uiconfig/ui/templatedlg.ui:148
+#: sfx2/uiconfig/ui/templatedlg.ui:147
msgctxt "templatedlg|search_filter"
msgid "Search..."
msgstr "መፈለጊያ..."
#. DF5YC
-#: sfx2/uiconfig/ui/templatedlg.ui:167
+#: sfx2/uiconfig/ui/templatedlg.ui:166
msgctxt "templatedlg|action_menu|label"
msgid "_Manage"
msgstr ""
#. LUs2m
-#: sfx2/uiconfig/ui/templatedlg.ui:181
+#: sfx2/uiconfig/ui/templatedlg.ui:180
msgctxt "templatedlg|extended_tip|action_menu"
msgid "Provides commands to create, rename and delete categories, reset default templates, and refresh the template manager."
msgstr ""
#. fXVNY
-#: sfx2/uiconfig/ui/templatedlg.ui:208
+#: sfx2/uiconfig/ui/templatedlg.ui:207
msgctxt "templatedlg|filter_application|tooltip_text"
msgid "Filter by Application"
msgstr "በ መተግበሪያ ማጣሪያ"
#. tqVhJ
-#: sfx2/uiconfig/ui/templatedlg.ui:210
+#: sfx2/uiconfig/ui/templatedlg.ui:209
msgctxt "templatedlg|applist"
msgid "All Applications"
msgstr "ሁሉም መፈጸሚያዎች"
#. pD6pU
-#: sfx2/uiconfig/ui/templatedlg.ui:211
+#: sfx2/uiconfig/ui/templatedlg.ui:210
msgctxt "templatedlg|applist"
msgid "Text Documents"
msgstr "የ ጽሁፍ ሰነዶች"
#. eECt7
-#: sfx2/uiconfig/ui/templatedlg.ui:212
+#: sfx2/uiconfig/ui/templatedlg.ui:211
msgctxt "templatedlg|applist"
msgid "Spreadsheets"
msgstr "ሰንጠረዦች"
#. ajLbV
-#: sfx2/uiconfig/ui/templatedlg.ui:213
+#: sfx2/uiconfig/ui/templatedlg.ui:212
msgctxt "templatedlg|applist"
msgid "Presentations"
msgstr "ማቅረቢያዎች"
#. LfUzB
-#: sfx2/uiconfig/ui/templatedlg.ui:214
+#: sfx2/uiconfig/ui/templatedlg.ui:213
msgctxt "templatedlg|applist"
msgid "Drawings"
msgstr "መሳያዎች"
#. t7zE7
-#: sfx2/uiconfig/ui/templatedlg.ui:228
+#: sfx2/uiconfig/ui/templatedlg.ui:227
msgctxt "templatedlg|filter_folder|tooltip_text"
msgid "Filter by Category"
msgstr "በ ምድብ ማጣሪያ"
#. 93CGw
-#: sfx2/uiconfig/ui/templatedlg.ui:230
+#: sfx2/uiconfig/ui/templatedlg.ui:229
msgctxt "templatedlg|folderlist"
msgid "All Categories"
msgstr "ሁሉም ምድቦች"
#. NF9wE
-#: sfx2/uiconfig/ui/templatedlg.ui:251
+#: sfx2/uiconfig/ui/templatedlg.ui:250
msgctxt "templatedlg|label1"
msgid "Filter"
msgstr "ማጣሪያ"
#. ewTL3
-#: sfx2/uiconfig/ui/templatedlg.ui:357
+#: sfx2/uiconfig/ui/templatedlg.ui:356
msgctxt "templatedlg|treeviewcolumn1"
msgid "Name"
msgstr "ስም"
#. 7EJRA
-#: sfx2/uiconfig/ui/templatedlg.ui:374
+#: sfx2/uiconfig/ui/templatedlg.ui:373
msgctxt "templatedlg|treeviewcolumn2"
msgid "Category"
msgstr "ምድብ"
#. AC27i
-#: sfx2/uiconfig/ui/templatedlg.ui:389
+#: sfx2/uiconfig/ui/templatedlg.ui:388
msgctxt "templatedlg|treeviewcolumn3"
msgid "Application"
msgstr "መተግበሪያ"
#. eSaBw
-#: sfx2/uiconfig/ui/templatedlg.ui:404
+#: sfx2/uiconfig/ui/templatedlg.ui:403
msgctxt "templatedlg|treeviewcolumn4"
msgid "Modified"
msgstr "የ ተሻሻለ"
#. pNzYA
-#: sfx2/uiconfig/ui/templatedlg.ui:419
+#: sfx2/uiconfig/ui/templatedlg.ui:418
msgctxt "templatedlg|treeviewcolumn5"
msgid "Size"
msgstr "መጠን"
#. j39jM
-#: sfx2/uiconfig/ui/templatedlg.ui:445
+#: sfx2/uiconfig/ui/templatedlg.ui:444
msgctxt "templatedlg|thumbnailviewlabel"
msgid "Template List"
msgstr "የ ቴምፕሌት ዝርዝር"
#. yEhgP
-#: sfx2/uiconfig/ui/templatedlg.ui:464
+#: sfx2/uiconfig/ui/templatedlg.ui:463
msgctxt "templatedlg|thumbnail_view_btn|tooltip_text"
msgid "Thumbnail View"
msgstr "በ አውራ ጥፍር ልክ መመልከቻ"
#. j76ke
-#: sfx2/uiconfig/ui/templatedlg.ui:481
+#: sfx2/uiconfig/ui/templatedlg.ui:480
msgctxt "templatedlg|list_view_btn|tooltip_text"
msgid "List View"
msgstr "ዝርዝር መመልከቻ"
diff --git a/source/an/dbaccess/messages.po b/source/an/dbaccess/messages.po
index 1854e1f6f7f..9da1416dd68 100644
--- a/source/an/dbaccess/messages.po
+++ b/source/an/dbaccess/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-05-25 12:36+0200\n"
-"PO-Revision-Date: 2022-01-17 16:38+0000\n"
+"PO-Revision-Date: 2022-09-21 09:48+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/an/>\n"
"Language: an\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.12.2\n"
"X-POOTLE-MTIME: 1524566312.000000\n"
#. BiN6g
@@ -2545,7 +2545,7 @@ msgstr ""
#: dbaccess/inc/templwin.hrc:44
msgctxt "STRARY_SVT_DOCINFO"
msgid "Date"
-msgstr ""
+msgstr "Calendata"
#. eHFA4
#: dbaccess/inc/templwin.hrc:45
diff --git a/source/an/sc/messages.po b/source/an/sc/messages.po
index 054ea19c923..6df7a2e4add 100644
--- a/source/an/sc/messages.po
+++ b/source/an/sc/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: 2022-08-08 14:37+0200\n"
-"PO-Revision-Date: 2022-05-10 13:19+0000\n"
+"PO-Revision-Date: 2022-09-21 09:48+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/an/>\n"
"Language: an\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.12.2\n"
"X-POOTLE-MTIME: 1542022406.000000\n"
#. kBovX
@@ -22087,7 +22087,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/conflictsdialog.ui:175
msgctxt "conflictsdialog|date"
msgid "Date"
-msgstr ""
+msgstr "Calendata"
#. tgZHu
#: sc/uiconfig/scalc/ui/conflictsdialog.ui:189
diff --git a/source/an/sfx2/messages.po b/source/an/sfx2/messages.po
index b0dd8198941..02096b3c907 100644
--- a/source/an/sfx2/messages.po
+++ b/source/an/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: 2022-08-24 12:29+0200\n"
-"PO-Revision-Date: 2022-07-26 09:17+0000\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
+"PO-Revision-Date: 2022-09-21 09:47+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/an/>\n"
"Language: an\n"
@@ -1241,7 +1241,7 @@ msgstr ""
#: include/sfx2/strings.hrc:233
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
-msgstr ""
+msgstr "Ninviar"
#. 9HHQw
#: include/sfx2/strings.hrc:234
@@ -2901,7 +2901,7 @@ msgid "No"
msgstr ""
#. kDKBB
-#: sfx2/uiconfig/ui/commandpopup.ui:36
+#: sfx2/uiconfig/ui/commandpopup.ui:35
msgctxt "commandpopup|entry"
msgid "Search command"
msgstr ""
@@ -4849,141 +4849,141 @@ msgid "or Create a New Category"
msgstr ""
#. eUWTy
-#: sfx2/uiconfig/ui/templatedlg.ui:46
+#: sfx2/uiconfig/ui/templatedlg.ui:44
msgctxt "templatedlg|TemplateDialog"
msgid "Templates"
msgstr ""
#. rhuYP
-#: sfx2/uiconfig/ui/templatedlg.ui:77
+#: sfx2/uiconfig/ui/templatedlg.ui:76
msgctxt "templatedlg|hidedialogcb"
msgid "Show this dialog at startup"
msgstr ""
#. 32zsB
-#: sfx2/uiconfig/ui/templatedlg.ui:144
+#: sfx2/uiconfig/ui/templatedlg.ui:143
msgctxt "templatedlg|search_filter|tooltip_text"
msgid "Search"
msgstr ""
#. sGZMC
-#: sfx2/uiconfig/ui/templatedlg.ui:148
+#: sfx2/uiconfig/ui/templatedlg.ui:147
msgctxt "templatedlg|search_filter"
msgid "Search..."
msgstr ""
#. DF5YC
-#: sfx2/uiconfig/ui/templatedlg.ui:167
+#: sfx2/uiconfig/ui/templatedlg.ui:166
msgctxt "templatedlg|action_menu|label"
msgid "_Manage"
msgstr ""
#. LUs2m
-#: sfx2/uiconfig/ui/templatedlg.ui:181
+#: sfx2/uiconfig/ui/templatedlg.ui:180
msgctxt "templatedlg|extended_tip|action_menu"
msgid "Provides commands to create, rename and delete categories, reset default templates, and refresh the template manager."
msgstr ""
#. fXVNY
-#: sfx2/uiconfig/ui/templatedlg.ui:208
+#: sfx2/uiconfig/ui/templatedlg.ui:207
msgctxt "templatedlg|filter_application|tooltip_text"
msgid "Filter by Application"
msgstr ""
#. tqVhJ
-#: sfx2/uiconfig/ui/templatedlg.ui:210
+#: sfx2/uiconfig/ui/templatedlg.ui:209
msgctxt "templatedlg|applist"
msgid "All Applications"
msgstr ""
#. pD6pU
-#: sfx2/uiconfig/ui/templatedlg.ui:211
+#: sfx2/uiconfig/ui/templatedlg.ui:210
msgctxt "templatedlg|applist"
msgid "Text Documents"
msgstr ""
#. eECt7
-#: sfx2/uiconfig/ui/templatedlg.ui:212
+#: sfx2/uiconfig/ui/templatedlg.ui:211
#, fuzzy
msgctxt "templatedlg|applist"
msgid "Spreadsheets"
msgstr "Fuella de calculo"
#. ajLbV
-#: sfx2/uiconfig/ui/templatedlg.ui:213
+#: sfx2/uiconfig/ui/templatedlg.ui:212
msgctxt "templatedlg|applist"
msgid "Presentations"
msgstr "Presentacions"
#. LfUzB
-#: sfx2/uiconfig/ui/templatedlg.ui:214
+#: sfx2/uiconfig/ui/templatedlg.ui:213
#, fuzzy
msgctxt "templatedlg|applist"
msgid "Drawings"
msgstr "~Debuxo"
#. t7zE7
-#: sfx2/uiconfig/ui/templatedlg.ui:228
+#: sfx2/uiconfig/ui/templatedlg.ui:227
msgctxt "templatedlg|filter_folder|tooltip_text"
msgid "Filter by Category"
msgstr ""
#. 93CGw
-#: sfx2/uiconfig/ui/templatedlg.ui:230
+#: sfx2/uiconfig/ui/templatedlg.ui:229
msgctxt "templatedlg|folderlist"
msgid "All Categories"
msgstr ""
#. NF9wE
-#: sfx2/uiconfig/ui/templatedlg.ui:251
+#: sfx2/uiconfig/ui/templatedlg.ui:250
msgctxt "templatedlg|label1"
msgid "Filter"
msgstr ""
#. ewTL3
-#: sfx2/uiconfig/ui/templatedlg.ui:357
+#: sfx2/uiconfig/ui/templatedlg.ui:356
msgctxt "templatedlg|treeviewcolumn1"
msgid "Name"
msgstr ""
#. 7EJRA
-#: sfx2/uiconfig/ui/templatedlg.ui:374
+#: sfx2/uiconfig/ui/templatedlg.ui:373
msgctxt "templatedlg|treeviewcolumn2"
msgid "Category"
msgstr ""
#. AC27i
-#: sfx2/uiconfig/ui/templatedlg.ui:389
+#: sfx2/uiconfig/ui/templatedlg.ui:388
msgctxt "templatedlg|treeviewcolumn3"
msgid "Application"
msgstr ""
#. eSaBw
-#: sfx2/uiconfig/ui/templatedlg.ui:404
+#: sfx2/uiconfig/ui/templatedlg.ui:403
msgctxt "templatedlg|treeviewcolumn4"
msgid "Modified"
msgstr ""
#. pNzYA
-#: sfx2/uiconfig/ui/templatedlg.ui:419
+#: sfx2/uiconfig/ui/templatedlg.ui:418
msgctxt "templatedlg|treeviewcolumn5"
msgid "Size"
msgstr ""
#. j39jM
-#: sfx2/uiconfig/ui/templatedlg.ui:445
+#: sfx2/uiconfig/ui/templatedlg.ui:444
msgctxt "templatedlg|thumbnailviewlabel"
msgid "Template List"
msgstr ""
#. yEhgP
-#: sfx2/uiconfig/ui/templatedlg.ui:464
+#: sfx2/uiconfig/ui/templatedlg.ui:463
msgctxt "templatedlg|thumbnail_view_btn|tooltip_text"
msgid "Thumbnail View"
msgstr ""
#. j76ke
-#: sfx2/uiconfig/ui/templatedlg.ui:481
+#: sfx2/uiconfig/ui/templatedlg.ui:480
msgctxt "templatedlg|list_view_btn|tooltip_text"
msgid "List View"
msgstr ""
diff --git a/source/an/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po b/source/an/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po
index 625a25f783b..3c63257fde8 100644
--- a/source/an/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po
+++ b/source/an/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.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: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2013-06-22 20:57+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"PO-Revision-Date: 2022-09-21 09:48+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/swextmediawikisrcregistrydataorgopenofficeofficecustom/an/>\n"
"Language: an\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1371934654.000000\n"
#. sc9Hg
@@ -194,7 +194,7 @@ msgctxt ""
"Dlg_SendButton\n"
"value.text"
msgid "~Send"
-msgstr ""
+msgstr "~Ninviar"
#. j2hBK
#: WikiExtension.xcu
diff --git a/source/an/vcl/messages.po b/source/an/vcl/messages.po
index 8ef01777955..a5ea653f6ec 100644
--- a/source/an/vcl/messages.po
+++ b/source/an/vcl/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-08-24 12:29+0200\n"
-"PO-Revision-Date: 2022-05-03 12:41+0000\n"
+"PO-Revision-Date: 2022-09-21 09:47+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/an/>\n"
"Language: an\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.12.2\n"
"X-POOTLE-MTIME: 1542022411.000000\n"
#. k5jTM
@@ -142,19 +142,19 @@ msgstr ""
#: vcl/inc/print.hrc:53
msgctxt "RID_STR_PAPERNAMES"
msgid "C"
-msgstr ""
+msgstr "C"
#. Yfrzk
#: vcl/inc/print.hrc:54
msgctxt "RID_STR_PAPERNAMES"
msgid "D"
-msgstr ""
+msgstr "D"
#. Ahd2X
#: vcl/inc/print.hrc:55
msgctxt "RID_STR_PAPERNAMES"
msgid "E"
-msgstr ""
+msgstr "E"
#. 9quGe
#: vcl/inc/print.hrc:56
diff --git a/source/ar/helpcontent2/source/auxiliary.po b/source/ar/helpcontent2/source/auxiliary.po
index 4741f043e52..9113366618d 100644
--- a/source/ar/helpcontent2/source/auxiliary.po
+++ b/source/ar/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-11-25 19:33+0100\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
"PO-Revision-Date: 2021-06-04 11:14+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/auxiliary/ar/>\n"
@@ -313,11 +313,11 @@ msgctxt ""
msgid "Writing Calc Macros"
msgstr ""
-#. Q59GN
+#. vBXqp
#: scalc.tree
msgctxt ""
"scalc.tree\n"
-"0815\n"
+"0816\n"
"node.text"
msgid "Miscellaneous"
msgstr "متنوع"
diff --git a/source/ar/sfx2/messages.po b/source/ar/sfx2/messages.po
index 1fc26e9d60b..8af9e2760b1 100644
--- a/source/ar/sfx2/messages.po
+++ b/source/ar/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-08-24 12:29+0200\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
"PO-Revision-Date: 2022-07-04 16:15+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/ar/>\n"
@@ -2973,7 +2973,7 @@ msgid "No"
msgstr "لا"
#. kDKBB
-#: sfx2/uiconfig/ui/commandpopup.ui:36
+#: sfx2/uiconfig/ui/commandpopup.ui:35
msgctxt "commandpopup|entry"
msgid "Search command"
msgstr "أمر البحث"
@@ -4913,139 +4913,139 @@ msgid "or Create a New Category"
msgstr "أو أنشئ صنفًا جديداً"
#. eUWTy
-#: sfx2/uiconfig/ui/templatedlg.ui:46
+#: sfx2/uiconfig/ui/templatedlg.ui:44
msgctxt "templatedlg|TemplateDialog"
msgid "Templates"
msgstr "قوالب"
#. rhuYP
-#: sfx2/uiconfig/ui/templatedlg.ui:77
+#: sfx2/uiconfig/ui/templatedlg.ui:76
msgctxt "templatedlg|hidedialogcb"
msgid "Show this dialog at startup"
msgstr "أظهر هذا الحوار عند البدء"
#. 32zsB
-#: sfx2/uiconfig/ui/templatedlg.ui:144
+#: sfx2/uiconfig/ui/templatedlg.ui:143
msgctxt "templatedlg|search_filter|tooltip_text"
msgid "Search"
msgstr "ابحث"
#. sGZMC
-#: sfx2/uiconfig/ui/templatedlg.ui:148
+#: sfx2/uiconfig/ui/templatedlg.ui:147
msgctxt "templatedlg|search_filter"
msgid "Search..."
msgstr "ابحث..."
#. DF5YC
-#: sfx2/uiconfig/ui/templatedlg.ui:167
+#: sfx2/uiconfig/ui/templatedlg.ui:166
msgctxt "templatedlg|action_menu|label"
msgid "_Manage"
msgstr "أ_دِر"
#. LUs2m
-#: sfx2/uiconfig/ui/templatedlg.ui:181
+#: sfx2/uiconfig/ui/templatedlg.ui:180
msgctxt "templatedlg|extended_tip|action_menu"
msgid "Provides commands to create, rename and delete categories, reset default templates, and refresh the template manager."
msgstr "يوفّر أوامر لإنشاء وإعادة تسمية وحذف الأصناف وتصفير القوالب المبدئية وإعادة تحميل مدير القوالب."
#. fXVNY
-#: sfx2/uiconfig/ui/templatedlg.ui:208
+#: sfx2/uiconfig/ui/templatedlg.ui:207
msgctxt "templatedlg|filter_application|tooltip_text"
msgid "Filter by Application"
msgstr "رشّح بحسب التطبيق"
#. tqVhJ
-#: sfx2/uiconfig/ui/templatedlg.ui:210
+#: sfx2/uiconfig/ui/templatedlg.ui:209
msgctxt "templatedlg|applist"
msgid "All Applications"
msgstr "كل التطبيقات"
#. pD6pU
-#: sfx2/uiconfig/ui/templatedlg.ui:211
+#: sfx2/uiconfig/ui/templatedlg.ui:210
msgctxt "templatedlg|applist"
msgid "Text Documents"
msgstr "مستندات نصية"
#. eECt7
-#: sfx2/uiconfig/ui/templatedlg.ui:212
+#: sfx2/uiconfig/ui/templatedlg.ui:211
msgctxt "templatedlg|applist"
msgid "Spreadsheets"
msgstr "الجداول الممتدّة"
#. ajLbV
-#: sfx2/uiconfig/ui/templatedlg.ui:213
+#: sfx2/uiconfig/ui/templatedlg.ui:212
msgctxt "templatedlg|applist"
msgid "Presentations"
msgstr "العروض التقديمية"
#. LfUzB
-#: sfx2/uiconfig/ui/templatedlg.ui:214
+#: sfx2/uiconfig/ui/templatedlg.ui:213
msgctxt "templatedlg|applist"
msgid "Drawings"
msgstr "الرسومات"
#. t7zE7
-#: sfx2/uiconfig/ui/templatedlg.ui:228
+#: sfx2/uiconfig/ui/templatedlg.ui:227
msgctxt "templatedlg|filter_folder|tooltip_text"
msgid "Filter by Category"
msgstr "رشّح حسب الصنف"
#. 93CGw
-#: sfx2/uiconfig/ui/templatedlg.ui:230
+#: sfx2/uiconfig/ui/templatedlg.ui:229
msgctxt "templatedlg|folderlist"
msgid "All Categories"
msgstr "كلّ الفئات"
#. NF9wE
-#: sfx2/uiconfig/ui/templatedlg.ui:251
+#: sfx2/uiconfig/ui/templatedlg.ui:250
msgctxt "templatedlg|label1"
msgid "Filter"
msgstr "رشّح"
#. ewTL3
-#: sfx2/uiconfig/ui/templatedlg.ui:357
+#: sfx2/uiconfig/ui/templatedlg.ui:356
msgctxt "templatedlg|treeviewcolumn1"
msgid "Name"
msgstr "الاسم"
#. 7EJRA
-#: sfx2/uiconfig/ui/templatedlg.ui:374
+#: sfx2/uiconfig/ui/templatedlg.ui:373
msgctxt "templatedlg|treeviewcolumn2"
msgid "Category"
msgstr "الصنف"
#. AC27i
-#: sfx2/uiconfig/ui/templatedlg.ui:389
+#: sfx2/uiconfig/ui/templatedlg.ui:388
msgctxt "templatedlg|treeviewcolumn3"
msgid "Application"
msgstr "التطبيق"
#. eSaBw
-#: sfx2/uiconfig/ui/templatedlg.ui:404
+#: sfx2/uiconfig/ui/templatedlg.ui:403
msgctxt "templatedlg|treeviewcolumn4"
msgid "Modified"
msgstr "التعديل"
#. pNzYA
-#: sfx2/uiconfig/ui/templatedlg.ui:419
+#: sfx2/uiconfig/ui/templatedlg.ui:418
msgctxt "templatedlg|treeviewcolumn5"
msgid "Size"
msgstr "الحجم"
#. j39jM
-#: sfx2/uiconfig/ui/templatedlg.ui:445
+#: sfx2/uiconfig/ui/templatedlg.ui:444
msgctxt "templatedlg|thumbnailviewlabel"
msgid "Template List"
msgstr "قائمة القوالب"
#. yEhgP
-#: sfx2/uiconfig/ui/templatedlg.ui:464
+#: sfx2/uiconfig/ui/templatedlg.ui:463
msgctxt "templatedlg|thumbnail_view_btn|tooltip_text"
msgid "Thumbnail View"
msgstr "عَرض مصغّرات"
#. j76ke
-#: sfx2/uiconfig/ui/templatedlg.ui:481
+#: sfx2/uiconfig/ui/templatedlg.ui:480
msgctxt "templatedlg|list_view_btn|tooltip_text"
msgid "List View"
msgstr "عَرض لائحة"
diff --git a/source/as/sfx2/messages.po b/source/as/sfx2/messages.po
index 235d76b55e2..73a94814ef0 100644
--- a/source/as/sfx2/messages.po
+++ b/source/as/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-08-24 12:29+0200\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
"PO-Revision-Date: 2021-05-12 07:37+0000\n"
"Last-Translator: Mondeep Kalita <epicdeep09@gmail.com>\n"
"Language-Team: Assamese <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/as/>\n"
@@ -2979,7 +2979,7 @@ msgid "No"
msgstr "নহয়"
#. kDKBB
-#: sfx2/uiconfig/ui/commandpopup.ui:36
+#: sfx2/uiconfig/ui/commandpopup.ui:35
msgctxt "commandpopup|entry"
msgid "Search command"
msgstr ""
@@ -4969,142 +4969,142 @@ msgid "or Create a New Category"
msgstr ""
#. eUWTy
-#: sfx2/uiconfig/ui/templatedlg.ui:46
+#: sfx2/uiconfig/ui/templatedlg.ui:44
#, fuzzy
msgctxt "templatedlg|TemplateDialog"
msgid "Templates"
msgstr "নমুনা:"
#. rhuYP
-#: sfx2/uiconfig/ui/templatedlg.ui:77
+#: sfx2/uiconfig/ui/templatedlg.ui:76
msgctxt "templatedlg|hidedialogcb"
msgid "Show this dialog at startup"
msgstr ""
#. 32zsB
-#: sfx2/uiconfig/ui/templatedlg.ui:144
+#: sfx2/uiconfig/ui/templatedlg.ui:143
#, fuzzy
msgctxt "templatedlg|search_filter|tooltip_text"
msgid "Search"
msgstr "সন্ধান"
#. sGZMC
-#: sfx2/uiconfig/ui/templatedlg.ui:148
+#: sfx2/uiconfig/ui/templatedlg.ui:147
msgctxt "templatedlg|search_filter"
msgid "Search..."
msgstr "সন্ধান..."
#. DF5YC
-#: sfx2/uiconfig/ui/templatedlg.ui:167
+#: sfx2/uiconfig/ui/templatedlg.ui:166
msgctxt "templatedlg|action_menu|label"
msgid "_Manage"
msgstr ""
#. LUs2m
-#: sfx2/uiconfig/ui/templatedlg.ui:181
+#: sfx2/uiconfig/ui/templatedlg.ui:180
msgctxt "templatedlg|extended_tip|action_menu"
msgid "Provides commands to create, rename and delete categories, reset default templates, and refresh the template manager."
msgstr ""
#. fXVNY
-#: sfx2/uiconfig/ui/templatedlg.ui:208
+#: sfx2/uiconfig/ui/templatedlg.ui:207
msgctxt "templatedlg|filter_application|tooltip_text"
msgid "Filter by Application"
msgstr ""
#. tqVhJ
-#: sfx2/uiconfig/ui/templatedlg.ui:210
+#: sfx2/uiconfig/ui/templatedlg.ui:209
msgctxt "templatedlg|applist"
msgid "All Applications"
msgstr ""
#. pD6pU
-#: sfx2/uiconfig/ui/templatedlg.ui:211
+#: sfx2/uiconfig/ui/templatedlg.ui:210
msgctxt "templatedlg|applist"
msgid "Text Documents"
msgstr ""
#. eECt7
-#: sfx2/uiconfig/ui/templatedlg.ui:212
+#: sfx2/uiconfig/ui/templatedlg.ui:211
msgctxt "templatedlg|applist"
msgid "Spreadsheets"
msgstr "স্প্ৰেডশ্বীটসমূহ"
#. ajLbV
-#: sfx2/uiconfig/ui/templatedlg.ui:213
+#: sfx2/uiconfig/ui/templatedlg.ui:212
msgctxt "templatedlg|applist"
msgid "Presentations"
msgstr "পৰিৱেশনসমূহ"
#. LfUzB
-#: sfx2/uiconfig/ui/templatedlg.ui:214
+#: sfx2/uiconfig/ui/templatedlg.ui:213
#, fuzzy
msgctxt "templatedlg|applist"
msgid "Drawings"
msgstr "অঙ্কণ"
#. t7zE7
-#: sfx2/uiconfig/ui/templatedlg.ui:228
+#: sfx2/uiconfig/ui/templatedlg.ui:227
msgctxt "templatedlg|filter_folder|tooltip_text"
msgid "Filter by Category"
msgstr ""
#. 93CGw
-#: sfx2/uiconfig/ui/templatedlg.ui:230
+#: sfx2/uiconfig/ui/templatedlg.ui:229
msgctxt "templatedlg|folderlist"
msgid "All Categories"
msgstr ""
#. NF9wE
-#: sfx2/uiconfig/ui/templatedlg.ui:251
+#: sfx2/uiconfig/ui/templatedlg.ui:250
msgctxt "templatedlg|label1"
msgid "Filter"
msgstr "ফিল্টাৰ"
#. ewTL3
-#: sfx2/uiconfig/ui/templatedlg.ui:357
+#: sfx2/uiconfig/ui/templatedlg.ui:356
msgctxt "templatedlg|treeviewcolumn1"
msgid "Name"
msgstr ""
#. 7EJRA
-#: sfx2/uiconfig/ui/templatedlg.ui:374
+#: sfx2/uiconfig/ui/templatedlg.ui:373
msgctxt "templatedlg|treeviewcolumn2"
msgid "Category"
msgstr ""
#. AC27i
-#: sfx2/uiconfig/ui/templatedlg.ui:389
+#: sfx2/uiconfig/ui/templatedlg.ui:388
msgctxt "templatedlg|treeviewcolumn3"
msgid "Application"
msgstr ""
#. eSaBw
-#: sfx2/uiconfig/ui/templatedlg.ui:404
+#: sfx2/uiconfig/ui/templatedlg.ui:403
msgctxt "templatedlg|treeviewcolumn4"
msgid "Modified"
msgstr ""
#. pNzYA
-#: sfx2/uiconfig/ui/templatedlg.ui:419
+#: sfx2/uiconfig/ui/templatedlg.ui:418
msgctxt "templatedlg|treeviewcolumn5"
msgid "Size"
msgstr ""
#. j39jM
-#: sfx2/uiconfig/ui/templatedlg.ui:445
+#: sfx2/uiconfig/ui/templatedlg.ui:444
msgctxt "templatedlg|thumbnailviewlabel"
msgid "Template List"
msgstr ""
#. yEhgP
-#: sfx2/uiconfig/ui/templatedlg.ui:464
+#: sfx2/uiconfig/ui/templatedlg.ui:463
msgctxt "templatedlg|thumbnail_view_btn|tooltip_text"
msgid "Thumbnail View"
msgstr ""
#. j76ke
-#: sfx2/uiconfig/ui/templatedlg.ui:481
+#: sfx2/uiconfig/ui/templatedlg.ui:480
msgctxt "templatedlg|list_view_btn|tooltip_text"
msgid "List View"
msgstr ""
diff --git a/source/ast/cui/messages.po b/source/ast/cui/messages.po
index 36bc8246b31..ca2036c5602 100644
--- a/source/ast/cui/messages.po
+++ b/source/ast/cui/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: 2022-07-08 12:15+0200\n"
-"PO-Revision-Date: 2022-09-09 11:26+0000\n"
+"PO-Revision-Date: 2022-09-21 09:48+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/ast/>\n"
"Language: ast\n"
@@ -7029,7 +7029,7 @@ msgstr "Testu"
#: cui/uiconfig/ui/colorconfigwin.ui:1182
msgctxt "colorconfigwin|protectedcells"
msgid "Protected cells background"
-msgstr ""
+msgstr "Fondu de les caxelles protexíes"
#. pqHBt
#: cui/uiconfig/ui/colorconfigwin.ui:1193
@@ -7059,7 +7059,7 @@ msgstr "Cuadrícula"
#: cui/uiconfig/ui/colorconfigwin.ui:1307
msgctxt "colorconfigwin|draw"
msgid "Drawing / Presentation"
-msgstr "Dibuxu / Presentación"
+msgstr "Dibuxu/presentación"
#. yELpi
#: cui/uiconfig/ui/colorconfigwin.ui:1359
@@ -8317,7 +8317,7 @@ msgstr ""
#: cui/uiconfig/ui/dimensionlinestabpage.ui:452
msgctxt "dimensionlinestabpage|TSB_SHOW_UNIT"
msgid "Show _measurement units"
-msgstr "Ver les unidaes de _midida"
+msgstr "Amosar les unidaes de _midida"
#. KQGtM
#: cui/uiconfig/ui/dimensionlinestabpage.ui:461
@@ -21427,13 +21427,13 @@ msgstr "Cará_uteres al entamu de la llinia"
#: cui/uiconfig/ui/textflowpage.ui:213
msgctxt "textflowpage|labelMaxNum"
msgid "_Maximum consecutive hyphenated lines"
-msgstr "Ringleres guionaes consecutives _máximes"
+msgstr "Ringleres guionaes consecutives má_ximes"
#. JkHBB
#: cui/uiconfig/ui/textflowpage.ui:227
msgctxt "textflowpage|labelMinLen"
msgid "_Minimum word length in characters"
-msgstr ""
+msgstr "Llonxitú mín_ima de pallabra en caráuteres"
#. GgHhP
#: cui/uiconfig/ui/textflowpage.ui:238
@@ -21445,7 +21445,7 @@ msgstr ""
#: cui/uiconfig/ui/textflowpage.ui:253
msgctxt "textflowpage|checkNoLastWord"
msgid "Don't hyphenate the last word"
-msgstr ""
+msgstr "Nun guionar la cabera pallabra"
#. 582fA
#: cui/uiconfig/ui/textflowpage.ui:292
@@ -21670,25 +21670,25 @@ msgstr "Nome:"
#: cui/uiconfig/ui/themetabpage.ui:121
msgctxt "themetabpage|lbDk1"
msgid "Background - Dark 1:"
-msgstr ""
+msgstr "Fondu escuru 1:"
#. J3qNF
#: cui/uiconfig/ui/themetabpage.ui:136
msgctxt "themetabpage|lbLt1"
msgid "Text - Light 1:"
-msgstr ""
+msgstr "Testu claru 1:"
#. zFCDe
#: cui/uiconfig/ui/themetabpage.ui:151
msgctxt "themetabpage|lbDk2"
msgid "Background - Dark 2:"
-msgstr ""
+msgstr "Fondu escuru 2:"
#. RVZjG
#: cui/uiconfig/ui/themetabpage.ui:166
msgctxt "themetabpage|lbLt2"
msgid "Text - Light 2:"
-msgstr ""
+msgstr "Testu claru 2:"
#. kwdwQ
#: cui/uiconfig/ui/themetabpage.ui:181
diff --git a/source/ast/desktop/messages.po b/source/ast/desktop/messages.po
index 458b01fe5fa..43afdc0fc35 100644
--- a/source/ast/desktop/messages.po
+++ b/source/ast/desktop/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-05-25 12:36+0200\n"
-"PO-Revision-Date: 2022-07-06 16:24+0000\n"
+"PO-Revision-Date: 2022-09-21 09:48+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/desktopmessages/ast/>\n"
"Language: ast\n"
@@ -1079,7 +1079,7 @@ msgstr "Llei l'alcuerdu de llicencia completu. Usa la barra de movimientu o'l bo
#: desktop/uiconfig/ui/licensedialog.ui:160
msgctxt "licensedialog|label5"
msgid "Accept the License Agreement for the extension by pressing the 'Accept' button."
-msgstr "Aceutar l'alcuerdu de llicencia de la estensión primiendo'l botón «Aceutar»."
+msgstr "Aceuta l'alcuerdu de llicencia de la estensión calcando'l botón «Aceutar»."
#. ydBcE
#: desktop/uiconfig/ui/licensedialog.ui:173
diff --git a/source/ast/fpicker/messages.po b/source/ast/fpicker/messages.po
index 3cba06b8f27..0e8a18ac75c 100644
--- a/source/ast/fpicker/messages.po
+++ b/source/ast/fpicker/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: 2022-06-09 11:50+0200\n"
-"PO-Revision-Date: 2022-07-06 16:24+0000\n"
+"PO-Revision-Date: 2022-09-21 09:48+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/fpickermessages/ast/>\n"
"Language: ast\n"
@@ -425,7 +425,7 @@ msgstr ""
#: include/fpicker/strings.hrc:18
msgctxt "STR_SVT_FILEPICKER_FILTER_OPTIONS"
msgid "~Edit filter settings"
-msgstr "~Editar la configuración de peñeres"
+msgstr "~Editar los axustes de peñeres"
#. k7Sdb
#: include/fpicker/strings.hrc:19
diff --git a/source/ast/helpcontent2/source/auxiliary.po b/source/ast/helpcontent2/source/auxiliary.po
index 22a7cab6444..2e0897782d9 100644
--- a/source/ast/helpcontent2/source/auxiliary.po
+++ b/source/ast/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-11-25 19:33+0100\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
"PO-Revision-Date: 2022-04-25 17:41+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/auxiliary/ast/>\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.11.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1532004324.000000\n"
#. fEEXD
@@ -313,11 +313,11 @@ msgctxt ""
msgid "Writing Calc Macros"
msgstr ""
-#. Q59GN
+#. vBXqp
#: scalc.tree
msgctxt ""
"scalc.tree\n"
-"0815\n"
+"0816\n"
"node.text"
msgid "Miscellaneous"
msgstr "Entemez"
diff --git a/source/ast/helpcontent2/source/text/sbasic/guide.po b/source/ast/helpcontent2/source/text/sbasic/guide.po
index 86955ec68e0..0d658722768 100644
--- a/source/ast/helpcontent2/source/text/sbasic/guide.po
+++ b/source/ast/helpcontent2/source/text/sbasic/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-07-04 18:04+0200\n"
-"PO-Revision-Date: 2022-09-09 14:36+0000\n"
+"PO-Revision-Date: 2022-09-21 09:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicguide/ast/>\n"
"Language: ast\n"
@@ -1076,7 +1076,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Changing the Properties of Controls in the Dialog Editor"
-msgstr "Cambéu de les propiedaes de los campos de control nel Editor de diálogos"
+msgstr "Cambéu de les propiedaes de los controles nel Editor de diálogos"
#. PDQCc
#: control_properties.xhp
@@ -1094,7 +1094,7 @@ msgctxt ""
"hd_id3145786\n"
"help.text"
msgid "<variable id=\"control_properties\"><link href=\"text/sbasic/guide/control_properties.xhp\" name=\"Changing the Properties of Controls in the Dialog Editor\">Changing the Properties of Controls in the Dialog Editor</link></variable>"
-msgstr "<variable id=\"control_properties\"><link href=\"text/sbasic/guide/control_properties.xhp\" name=\"Changing the Properties of Controls in the Dialog Editor\">Cambéu de les propiedaes de los campos de control nel Editor de diálogos</link></variable>"
+msgstr "<variable id=\"control_properties\"><link href=\"text/sbasic/guide/control_properties.xhp\" name=\"Changing the Properties of Controls in the Dialog Editor\">Cambéu de les propiedaes de los controles nel Editor de diálogos</link></variable>"
#. Es8Xy
#: control_properties.xhp
@@ -1193,7 +1193,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Creating Controls in the Dialog Editor"
-msgstr "Creación de campos de control nel Editor de diálogos"
+msgstr "Creación controles nel Editor de diálogos"
#. yeHTt
#: insert_control.xhp
@@ -1202,7 +1202,7 @@ msgctxt ""
"bm_id3149182\n"
"help.text"
msgid "<bookmark_value>controls; creating in the dialog editor</bookmark_value><bookmark_value>dialog editor;creating controls</bookmark_value>"
-msgstr "<bookmark_value>campos de control;crear nel editor de diálogos</bookmark_value><bookmark_value>editor de diálogos;crear campos de control</bookmark_value>"
+msgstr "<bookmark_value>controles;crear nel editor de diálogos</bookmark_value><bookmark_value>editor de diálogos;crear controles</bookmark_value>"
#. UAc5k
#: insert_control.xhp
@@ -1679,7 +1679,7 @@ msgctxt ""
"hd_id3150042\n"
"help.text"
msgid "Read or Edit Properties of Controls in the Program"
-msgstr "Lleer o editar propiedaes de los campos de control nel programa"
+msgstr "Lleer o editar propiedaes de los controles nel programa"
#. SahL8
#: sample_code.xhp
diff --git a/source/ast/helpcontent2/source/text/sbasic/python.po b/source/ast/helpcontent2/source/text/sbasic/python.po
index 48b153fb359..3821c3675ce 100644
--- a/source/ast/helpcontent2/source/text/sbasic/python.po
+++ b/source/ast/helpcontent2/source/text/sbasic/python.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: 2022-04-11 15:28+0200\n"
-"PO-Revision-Date: 2022-04-25 17:42+0000\n"
+"PO-Revision-Date: 2022-09-21 09:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicpython/ast/>\n"
"Language: ast\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.11.2\n"
+"X-Generator: Weblate 4.12.2\n"
#. naSFZ
#: main0000.xhp
@@ -3613,4 +3613,4 @@ msgctxt ""
"par_id351633599611244\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03/sf_exception.xhp?#PythonShell\" name=\"PythonShell method\"><literal>PythonShell</literal></link> function in <link href=\"text/sbasic/shared/03/sf_exception.xhp\" name=\"ScriptForge.Exception service\"><literal>ScriptForge.Exception</literal></link> service"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03/sf_exception.xhp?#PythonShell\" name=\"PythonShell method\">Función <literal>PythonShell</literal></link> del serviciu <link href=\"text/sbasic/shared/03/sf_exception.xhp\" name=\"ScriptForge.Exception service\"><literal>ScriptForge.Exception</literal></link>"
diff --git a/source/ast/helpcontent2/source/text/sbasic/shared.po b/source/ast/helpcontent2/source/text/sbasic/shared.po
index 65d362c4820..50962915a32 100644
--- a/source/ast/helpcontent2/source/text/sbasic/shared.po
+++ b/source/ast/helpcontent2/source/text/sbasic/shared.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-07-04 18:04+0200\n"
-"PO-Revision-Date: 2022-09-09 14:36+0000\n"
+"PO-Revision-Date: 2022-09-21 09:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared/ast/>\n"
"Language: ast\n"
@@ -36608,7 +36608,7 @@ msgctxt ""
"par_id3154216\n"
"help.text"
msgid "AutoText"
-msgstr "AutoTestu"
+msgstr "Testu automáticu"
#. uhEms
#: 05060700.xhp
diff --git a/source/ast/helpcontent2/source/text/sbasic/shared/02.po b/source/ast/helpcontent2/source/text/sbasic/shared/02.po
index de181941f21..624e34a6878 100644
--- a/source/ast/helpcontent2/source/text/sbasic/shared/02.po
+++ b/source/ast/helpcontent2/source/text/sbasic/shared/02.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-10-04 19:51+0200\n"
-"PO-Revision-Date: 2020-08-04 11:16+0000\n"
+"PO-Revision-Date: 2022-09-21 09:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
-"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicshared02/ast/>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared02/ast/>\n"
"Language: ast\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1494863184.000000\n"
#. 6Kkin
@@ -1004,7 +1004,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Insert Controls"
-msgstr "Inxertar campos de control"
+msgstr "Inxertar controles"
#. F2psp
#: 20000000.xhp
@@ -1022,7 +1022,7 @@ msgctxt ""
"hd_id3150402\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/02/20000000.xhp\" name=\"Insert Controls\">Insert Controls</link>"
-msgstr "<link href=\"text/sbasic/shared/02/20000000.xhp\" name=\"Insert Controls\">Inxertar campos de control</link>"
+msgstr "<link href=\"text/sbasic/shared/02/20000000.xhp\" name=\"Insert Controls\">Inxertar controles</link>"
#. jnfj9
#: 20000000.xhp
@@ -1049,7 +1049,7 @@ msgctxt ""
"par_id3153749\n"
"help.text"
msgid "Insert Controls"
-msgstr "Inxertar campos de control"
+msgstr "Inxertar controles"
#. BjneK
#: 20000000.xhp
@@ -1391,7 +1391,7 @@ msgctxt ""
"hd_id3149330\n"
"help.text"
msgid "Progress Bar"
-msgstr "Barra de progresión"
+msgstr "Barra de progresu"
#. SDEqL
#: 20000000.xhp
diff --git a/source/ast/helpcontent2/source/text/sbasic/shared/03.po b/source/ast/helpcontent2/source/text/sbasic/shared/03.po
index 953578abde5..760e3e586ac 100644
--- a/source/ast/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/ast/helpcontent2/source/text/sbasic/shared/03.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: 2022-07-04 18:04+0200\n"
-"PO-Revision-Date: 2022-09-09 14:36+0000\n"
+"PO-Revision-Date: 2022-09-21 09:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared03/ast/>\n"
"Language: ast\n"
@@ -25736,7 +25736,7 @@ msgctxt ""
"par_id861612377611438\n"
"help.text"
msgid "\"*\" represents zero, one, or multiple characters."
-msgstr ""
+msgstr "«*» representa ceru, un o dellos caráuteres."
#. eLYBF
#: sf_string.xhp
diff --git a/source/ast/helpcontent2/source/text/scalc/00.po b/source/ast/helpcontent2/source/text/scalc/00.po
index 1ba1484cc8b..937132bb983 100644
--- a/source/ast/helpcontent2/source/text/scalc/00.po
+++ b/source/ast/helpcontent2/source/text/scalc/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-03-21 12:31+0100\n"
-"PO-Revision-Date: 2022-04-25 17:42+0000\n"
+"PO-Revision-Date: 2022-09-21 09:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textscalc00/ast/>\n"
"Language: ast\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.11.2\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1542196264.000000\n"
#. E9tti
@@ -1445,7 +1445,7 @@ msgctxt ""
"par_id3149401\n"
"help.text"
msgid "AutoFilter"
-msgstr "Filtru automáticu"
+msgstr "Peñera automática"
#. MLpCL
#: 00000412.xhp
diff --git a/source/ast/helpcontent2/source/text/scalc/01.po b/source/ast/helpcontent2/source/text/scalc/01.po
index d5a72d9077e..9925e6af3f5 100644
--- a/source/ast/helpcontent2/source/text/scalc/01.po
+++ b/source/ast/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-07-04 18:04+0200\n"
-"PO-Revision-Date: 2022-09-09 14:35+0000\n"
+"PO-Revision-Date: 2022-09-21 09:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/ast/>\n"
"Language: ast\n"
@@ -3156,7 +3156,7 @@ msgctxt ""
"hd_id3155067\n"
"help.text"
msgid "Add Print Range"
-msgstr "Amestar área d'impresión"
+msgstr "Amestar estaya d'imprentación"
#. 6CE3V
#: 03100000.xhp
@@ -47868,7 +47868,7 @@ msgctxt ""
"par_id3156385\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/sortuser\"> Click here and then select the custom sort order that you want.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/sortuser\"> Faiga clic equí y escueya l'orde de clasificación personalizáu que deseye.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/sortuser\">Calca equí y escueyi l'orde de clasificación personalizáu que deseyes.</ahelp>"
#. AB5C5
#: 12030200.xhp
@@ -48048,7 +48048,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "AutoFilter"
-msgstr "Filtru automáticu"
+msgstr "Peñera automática"
#. pGfbC
#: 12040100.xhp
@@ -58398,7 +58398,7 @@ msgctxt ""
"hd_id731620426688645\n"
"help.text"
msgid "Decimal prefixes"
-msgstr ""
+msgstr "Prefixos decimales"
#. cjDA7
#: func_convert.xhp
@@ -58425,7 +58425,7 @@ msgctxt ""
"hd_id91620427193950\n"
"help.text"
msgid "Binary prefixes"
-msgstr ""
+msgstr "Prefixos binarios"
#. X7TD3
#: func_convert.xhp
diff --git a/source/ast/helpcontent2/source/text/scalc/guide.po b/source/ast/helpcontent2/source/text/scalc/guide.po
index 3af6b94672c..2835f5102a9 100644
--- a/source/ast/helpcontent2/source/text/scalc/guide.po
+++ b/source/ast/helpcontent2/source/text/scalc/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: guide\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-07-04 18:04+0200\n"
-"PO-Revision-Date: 2022-08-10 13:23+0000\n"
+"PO-Revision-Date: 2022-09-21 09:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textscalcguide/ast/>\n"
"Language: ast\n"
@@ -3498,7 +3498,7 @@ msgctxt ""
"par_idN107DE\n"
"help.text"
msgid "Additional Settings"
-msgstr "Configuración adicional"
+msgstr "Axustes adicionales"
#. BSAXP
#: consolidate.xhp
diff --git a/source/ast/helpcontent2/source/text/sdatabase.po b/source/ast/helpcontent2/source/text/sdatabase.po
index 0b3c5dffd9f..4ffb4d09869 100644
--- a/source/ast/helpcontent2/source/text/sdatabase.po
+++ b/source/ast/helpcontent2/source/text/sdatabase.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: 2022-05-25 12:36+0200\n"
-"PO-Revision-Date: 2022-08-03 22:48+0000\n"
+"PO-Revision-Date: 2022-09-21 09:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsdatabase/ast/>\n"
"Language: ast\n"
@@ -2803,7 +2803,7 @@ msgctxt ""
"hd_id3156003\n"
"help.text"
msgid "<link href=\"text/shared/02/01170000.xhp\" name=\"Form Controls\">Form Controls</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/02/01170000.xhp\" name=\"Form Controls\">Controles del formulariu</link>"
#. CyFwA
#: 04000000.xhp
@@ -5899,7 +5899,7 @@ msgctxt ""
"hd_id3154071\n"
"help.text"
msgid "Execute"
-msgstr ""
+msgstr "Executar"
#. 6UCdY
#: 11080000.xhp
@@ -5953,7 +5953,7 @@ msgctxt ""
"hd_id841652479655639\n"
"help.text"
msgid "Output"
-msgstr ""
+msgstr "Salida"
#. pEFoq
#: 11080000.xhp
@@ -5962,7 +5962,7 @@ msgctxt ""
"par_id511652479714010\n"
"help.text"
msgid "Displays the results of the SQL command that you ran."
-msgstr ""
+msgstr "Amuesa los resultaos del comandu SQL qu'executasti."
#. 93Xfs
#: 11090000.xhp
diff --git a/source/ast/helpcontent2/source/text/shared/01.po b/source/ast/helpcontent2/source/text/shared/01.po
index c56b71d4067..72e1196f4dc 100644
--- a/source/ast/helpcontent2/source/text/shared/01.po
+++ b/source/ast/helpcontent2/source/text/shared/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-07-04 18:04+0200\n"
-"PO-Revision-Date: 2022-09-09 14:35+0000\n"
+"PO-Revision-Date: 2022-09-21 09:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/ast/>\n"
"Language: ast\n"
@@ -11993,7 +11993,7 @@ msgctxt ""
"hd_id3153966\n"
"help.text"
msgid "Macro"
-msgstr ""
+msgstr "Macro"
#. MZbHo
#: 02220000.xhp
@@ -12011,7 +12011,7 @@ msgctxt ""
"par_id3145769\n"
"help.text"
msgid "<image id=\"img_id3153922\" src=\"cmd/sc_choosemacro.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153922\">Icon Macro</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153922\" src=\"cmd/sc_choosemacro.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153922\">Iconu Macro</alt></image>"
#. cVL5D
#: 02220000.xhp
@@ -12020,7 +12020,7 @@ msgctxt ""
"par_id3149239\n"
"help.text"
msgid "Macro"
-msgstr ""
+msgstr "Macro"
#. mUiNF
#: 02220000.xhp
@@ -12047,7 +12047,7 @@ msgctxt ""
"par_id3159104\n"
"help.text"
msgid "<image id=\"img_id3149735\" src=\"cmd/sc_modifyframe.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149735\">Icon Properties</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149735\" src=\"cmd/sc_modifyframe.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149735\">Iconu Propiedaes</alt></image>"
#. imNDz
#: 02220000.xhp
@@ -12083,7 +12083,7 @@ msgctxt ""
"hd_id3146132\n"
"help.text"
msgid "Text Alternative"
-msgstr ""
+msgstr "Alternativa testual"
#. ccR9n
#: 02220000.xhp
@@ -12227,7 +12227,7 @@ msgctxt ""
"hd_id3153827\n"
"help.text"
msgid "Text Alternative"
-msgstr ""
+msgstr "Alternativa testual"
#. dgZr8
#: 02220100.xhp
@@ -12263,7 +12263,7 @@ msgctxt ""
"hd_id3147530\n"
"help.text"
msgid "Name:"
-msgstr ""
+msgstr "Nome:"
#. UHija
#: 02220100.xhp
@@ -12362,7 +12362,7 @@ msgctxt ""
"par_id3155599\n"
"help.text"
msgid "<ahelp hid=\".\">Tracks each change that is made in the current document by author and date.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Rexistra tolos cambeos fechos nel documentu actual, per autor y per data.</ahelp>"
#. FCvXm
#: 02230100.xhp
@@ -13739,7 +13739,7 @@ msgctxt ""
"hd_id3155511\n"
"help.text"
msgid "AutoFilter"
-msgstr ""
+msgstr "Peñera automática"
#. VbBBf
#: 02250000.xhp
@@ -26690,7 +26690,7 @@ msgctxt ""
"par_id441608302065414\n"
"help.text"
msgid "<emph>For all style categories:</emph>"
-msgstr ""
+msgstr "<emph>Pa toles categoríes d'estilos:</emph>"
#. ZCV8q
#: 05140100.xhp
@@ -26771,7 +26771,7 @@ msgctxt ""
"hd_id3154682\n"
"help.text"
msgid "Custom Styles for Current Document"
-msgstr ""
+msgstr "Estilos personalizaos pal documentu actual"
#. wWSGE
#: 05140100.xhp
@@ -26789,7 +26789,7 @@ msgctxt ""
"par_id401608258192415\n"
"help.text"
msgid "<link href=\"text/scalc/01/05100000.xhp\" name=\"Calc Styles\">Styles in Calc</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/05100000.xhp\" name=\"Calc Styles\">Estilos en Calc</link>"
#. whwZY
#: 05140100.xhp
@@ -26798,7 +26798,7 @@ msgctxt ""
"par_id641608263698887\n"
"help.text"
msgid "<link href=\"text/simpress/01/05100000.xhp\" name=\"Impress Styles\">Styles in Impress</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/05100000.xhp\" name=\"Impress Styles\">Estilos n'Impress</link>"
#. CCTFZ
#: 05140100.xhp
@@ -26807,7 +26807,7 @@ msgctxt ""
"par_id641369863698831\n"
"help.text"
msgid "<link href=\"text/simpress/01/05100000.xhp\" name=\"Draw Styles\">Styles</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/05100000.xhp\" name=\"Draw Styles\">Estilos</link>"
#. CJiJX
#: 05190000.xhp
@@ -26924,7 +26924,7 @@ msgctxt ""
"hd_id2576982\n"
"help.text"
msgid "Text Alternative"
-msgstr ""
+msgstr "Alternativa testual"
#. uQ5RY
#: 05190100.xhp
diff --git a/source/ast/helpcontent2/source/text/shared/02.po b/source/ast/helpcontent2/source/text/shared/02.po
index 97dee91354e..507ca287f17 100644
--- a/source/ast/helpcontent2/source/text/shared/02.po
+++ b/source/ast/helpcontent2/source/text/shared/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-06-09 11:50+0200\n"
-"PO-Revision-Date: 2022-09-09 14:36+0000\n"
+"PO-Revision-Date: 2022-09-21 09:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textshared02/ast/>\n"
"Language: ast\n"
@@ -51,7 +51,7 @@ msgctxt ""
"par_id3154398\n"
"help.text"
msgid "<ahelp hid=\".uno:PrintDefault\">Click the <emph>Print File Directly</emph> icon to print the active document with the current default print settings.</ahelp> These can be found in the <emph>Printer Setup</emph> dialog, which you can call with the <link href=\"text/shared/01/01140000.xhp\" name=\"Printer Settings\"><emph>Printer Settings</emph></link> menu command."
-msgstr "<ahelp hid=\".uno:PrintDefault\">Faiga clic nel iconu <emph>Imprentar</emph> pa imprentar el documentu activu colos parámetros d'impresión predeterminaos.</ahelp> Atopar nel diálogu <emph>Configuración d'imprentadora</emph>, que s'executa col comandu de menú <link href=\"text/shared/01/01140000.xhp\" name=\"Printer Settings\"><emph>Configuración d'imprentadora</emph></link>."
+msgstr "<ahelp hid=\".uno:PrintDefault\">Calca l'iconu <emph>Imprentar</emph> pa imprentar el documentu activu colos axustes d'imprentación predeterminaos.</ahelp> Atópase nel diálogu <emph>Axustes d'imprentadora</emph>, que s'executa col comandu de menú <link href=\"text/shared/01/01140000.xhp\" name=\"Printer Settings\"><emph>Axustes d'imprentadora</emph></link>."
#. EqERF
#: 01110000.xhp
@@ -654,7 +654,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Form Controls"
-msgstr "Campos de control de formulariu"
+msgstr "Controles de formulariu"
#. bFKGY
#: 01170000.xhp
@@ -672,7 +672,7 @@ msgctxt ""
"hd_id3154142\n"
"help.text"
msgid "<link href=\"text/shared/02/01170000.xhp\" name=\"Form Controls\">Form Controls</link>"
-msgstr "<link href=\"text/shared/02/01170000.xhp\" name=\"Form Controls\">Campos de control de formulariu</link>"
+msgstr "<link href=\"text/shared/02/01170000.xhp\" name=\"Form Controls\">Controles de formulariu</link>"
#. wU73F
#: 01170000.xhp
@@ -726,7 +726,7 @@ msgctxt ""
"par_idN10B21\n"
"help.text"
msgid "<link href=\"text/shared/guide/xforms.xhp\">XML Form documents</link> (XForms) use the same controls."
-msgstr "Los <link href=\"text/shared/guide/xforms.xhp\">documentos de formulariu XML</link> (XForms) utilicen el mesmu conxuntu de campos de control."
+msgstr "Los <link href=\"text/shared/guide/xforms.xhp\">documentos de formulariu XML</link> (XForms) utilicen el mesmu conxuntu de controles."
#. k5YfJ
#: 01170000.xhp
@@ -2607,7 +2607,7 @@ msgctxt ""
"hd_id3147102\n"
"help.text"
msgid "<link href=\"text/shared/02/01170100.xhp\" name=\"Control Properties\">Control Properties</link>"
-msgstr "<link href=\"text/shared/02/01170100.xhp\" name=\"Control Properties\">Propiedaes de campos de control</link>"
+msgstr "<link href=\"text/shared/02/01170100.xhp\" name=\"Control Properties\">Propiedaes del control</link>"
#. BJAGR
#: 01170100.xhp
@@ -14154,7 +14154,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "AutoFilter"
-msgstr "Filtru automáticu"
+msgstr "Peñera automática"
#. eFhvE
#: 12030000.xhp
@@ -14163,7 +14163,7 @@ msgctxt ""
"hd_id3149495\n"
"help.text"
msgid "<link href=\"text/shared/02/12030000.xhp\" name=\"AutoFilter\">AutoFilter</link>"
-msgstr "<link href=\"text/shared/02/12030000.xhp\" name=\"AutoFilter\">Filtru automáticu</link>"
+msgstr "<link href=\"text/shared/02/12030000.xhp\" name=\"AutoFilter\">Peñera automática</link>"
#. jkAzj
#: 12030000.xhp
@@ -14181,7 +14181,7 @@ msgctxt ""
"par_id3151234\n"
"help.text"
msgid "<image id=\"img_id3147261\" src=\"cmd/lc_datafilterautofilter.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147261\">Icon AutoFilter</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147261\" src=\"cmd/lc_datafilterautofilter.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147261\">Iconu Peñera automática</alt></image>"
#. qhCWv
#: 12030000.xhp
@@ -14190,7 +14190,7 @@ msgctxt ""
"par_id3147043\n"
"help.text"
msgid "AutoFilter"
-msgstr "Filtru automáticu"
+msgstr "Peñera automática"
#. 5Fdaj
#: 12030000.xhp
@@ -16566,7 +16566,7 @@ msgctxt ""
"hd_id3147389\n"
"help.text"
msgid "Search/Cancel"
-msgstr ""
+msgstr "Guetar/Encaboxar"
#. duEJs
#: 12100200.xhp
diff --git a/source/ast/helpcontent2/source/text/shared/autopi.po b/source/ast/helpcontent2/source/text/shared/autopi.po
index 1794c5ddd11..fa63b8dfdc0 100644
--- a/source/ast/helpcontent2/source/text/shared/autopi.po
+++ b/source/ast/helpcontent2/source/text/shared/autopi.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: autopi\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-01-31 18:19+0100\n"
-"PO-Revision-Date: 2022-05-25 10:44+0000\n"
+"PO-Revision-Date: 2022-09-21 09:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsharedautopi/ast/>\n"
"Language: ast\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.12.2\n"
"X-Poedit-SourceCharset: utf-8\n"
"X-POOTLE-MTIME: 1524568663.000000\n"
@@ -7728,7 +7728,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Additional Settings"
-msgstr "Configuración adicional"
+msgstr "Axustes adicionales"
#. jmEGH
#: 01170200.xhp
@@ -7737,7 +7737,7 @@ msgctxt ""
"hd_id3154094\n"
"help.text"
msgid "<link href=\"text/shared/autopi/01170200.xhp\" name=\"Additional Settings\">Additional Settings</link>"
-msgstr "<link href=\"text/shared/autopi/01170200.xhp\" name=\"Additional Settings\">Configuración adicional</link>"
+msgstr "<link href=\"text/shared/autopi/01170200.xhp\" name=\"Additional Settings\">Axustes adicionales</link>"
#. DFBck
#: 01170200.xhp
diff --git a/source/ast/helpcontent2/source/text/shared/guide.po b/source/ast/helpcontent2/source/text/shared/guide.po
index 8a0632ac17c..b2fa5c1d63c 100644
--- a/source/ast/helpcontent2/source/text/shared/guide.po
+++ b/source/ast/helpcontent2/source/text/shared/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-07-04 18:04+0200\n"
-"PO-Revision-Date: 2022-09-09 14:36+0000\n"
+"PO-Revision-Date: 2022-09-21 09:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsharedguide/ast/>\n"
"Language: ast\n"
@@ -7214,7 +7214,7 @@ msgctxt ""
"par_idN1065F\n"
"help.text"
msgid "A new text document opens. Use the <link href=\"text/shared/02/01170000.xhp\">Form Controls</link> to insert form controls."
-msgstr "Ábrese un nuevu documentu de testu. Utilice los <link href=\"text/shared/02/01170000.xhp\">Campos de control de formulariu</link> pa inxertar controles de formulariu."
+msgstr "Ábrese un nuevu documentu de testu. Utiliza los <link href=\"text/shared/02/01170000.xhp\">Controles de formulariu</link> pa inxertar controles de formulariu."
#. BABjs
#: data_forms.xhp
@@ -13856,7 +13856,7 @@ msgctxt ""
"par_id3154046\n"
"help.text"
msgid "A link to a web page, for example, \"www.example.com\" or \"www.myprovider.com/mypage/index.html\" is an absolute link."
-msgstr "Un enllaz a una páxina web, por exemplu, \"www.example.com\" o \"www.myprovider.com/mypage/index.html\" ye un enllaz absolute."
+msgstr "Un enllaz a una páxina web, por exemplu, «www.exemplu.com» o «www.elmiofornidor.com/lamiopaxina/index.html» ye un enllaz absolutu."
#. bTRZi
#: hyperlink_rel_abs.xhp
@@ -13892,7 +13892,7 @@ msgctxt ""
"par_id3153897\n"
"help.text"
msgid "When you rest your mouse on a hyperlink, a help tip displays the absolute reference, since $[officename] uses absolute path names internally. The complete path and address can only be seen when you view the result of the HTML export, by loading the HTML file as \"Text\" or opening it with a text editor."
-msgstr "Na ayuda emerxente d'un hiperenllaz y nel Editor de testu fonte HTML va ver siempres la referencia absoluta yá que $[officename] utiliza rutes absolutes (nel so sistema internu). La direición y ruta completa del ficheru va vese namái al visualizar la resultancia de la esportación HTML, por exemplu: al cargar el ficheru HTML como \"testu\" o al abrir con un editor de testu."
+msgstr "Na ayuda emerxente d'un hiperenllaz vas poder ver la referencia absoluta, yá que $[officename] utiliza caminos absolutos (nel so sistema internu). Les señes y el camín completos del ficheru van vese namái al visualizar el resultáu de la esportación HTML, por exemplu: al cargar el ficheru HTML como «testu» o al abrilu con un editor de testu."
#. qxJsq
#: imagemap.xhp
@@ -17042,7 +17042,7 @@ msgctxt ""
"par_id3144436\n"
"help.text"
msgid "You can incorporate lines into your text with custom angles, width, color, and other attributes."
-msgstr "Puen incorporase al testu llinies con ángulos, anchu, color y otros atributos personalizaos."
+msgstr "Puen incorporase al testu llinies con ángulos, anchor, color y otros atributos personalizaos."
#. DJVXk
#: line_intext.xhp
diff --git a/source/ast/helpcontent2/source/text/shared/optionen.po b/source/ast/helpcontent2/source/text/shared/optionen.po
index 40cc07c4320..8eba5b65b08 100644
--- a/source/ast/helpcontent2/source/text/shared/optionen.po
+++ b/source/ast/helpcontent2/source/text/shared/optionen.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-07-04 18:04+0200\n"
-"PO-Revision-Date: 2022-09-09 14:35+0000\n"
+"PO-Revision-Date: 2022-09-21 09:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsharedoptionen/ast/>\n"
"Language: ast\n"
@@ -1382,7 +1382,7 @@ msgctxt ""
"par_id4494766\n"
"help.text"
msgid "AutoText"
-msgstr "Autotestu"
+msgstr "Testu automáticu"
#. SnqLB
#: 01010300.xhp
@@ -1391,7 +1391,7 @@ msgctxt ""
"par_id7858516\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">{user profile}/user/autotext</caseinline><caseinline select=\"MAC\">{user profile}/user/autotext</caseinline><defaultinline>{user profile}\\user\\autotext</defaultinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">{perfil d'usuariu}/user/autotext</caseinline><caseinline select=\"MAC\">{perfil d'usuariu}/user/autotext</caseinline><defaultinline>{perfil d'usuariu}\\user\\autotext</defaultinline></switchinline>"
#. UkYUE
#: 01010300.xhp
@@ -2363,7 +2363,7 @@ msgctxt ""
"par_id3148663\n"
"help.text"
msgid "Only one sub-module can be activated under Hyphenation."
-msgstr "Namái pue activase un submódulo en Separtamientu silábicu."
+msgstr "Namái pue activase un somódulu en Guionáu."
#. svUFH
#: 01010401.xhp
@@ -2444,7 +2444,7 @@ msgctxt ""
"hd_id3161832\n"
"help.text"
msgid "Back"
-msgstr "Aviesu"
+msgstr "Atrás"
#. dEDZC
#: 01010401.xhp
@@ -2453,7 +2453,7 @@ msgctxt ""
"par_id3155307\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/editmodulesdialog/back\">Click here to undo the current changes in the list box.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/editmodulesdialog/back\">Faiga clic equí pa desfacer los cambeos actuales nel cuadru de llista.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/editmodulesdialog/back\">Calca equí pa desfacer los cambeos actuales nel cuadru de llista.</ahelp>"
#. M3rSX
#: 01010501.xhp
@@ -2579,7 +2579,7 @@ msgctxt ""
"par_id9701528\n"
"help.text"
msgid "%PRODUCTNAME uses only the RGB color model for printing in color. The CMYK controls are provided only to ease the input of color values using CMYK notation."
-msgstr "%PRODUCTNAME usa namái el modelu de color RGB pa la impresión en color. Los controles CMYK apurrir pa facilitar la entrada de valores de color usando la notación CMYK."
+msgstr "%PRODUCTNAME usa namái el modelu de color RGB pa la imprentación en color. Los controles CMYK úfrense pa facilitar la entrada de valores de color usando la notación CMYK."
#. ycsex
#: 01010501.xhp
@@ -2678,7 +2678,7 @@ msgctxt ""
"hd_id3151076\n"
"help.text"
msgid "Hex #"
-msgstr ""
+msgstr "Nᵘ hex."
#. YhKYN
#: 01010501.xhp
@@ -2957,7 +2957,7 @@ msgctxt ""
"par_id3145800\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/optgeneralpage/docstatus\">Specifies whether the printing of the document counts as a modification.</ahelp> When this option is marked, the very next time the document is closed you are asked if the changes should be saved. The print date is then entered in the document properties as a change."
-msgstr "<ahelp hid=\"cui/ui/optgeneralpage/docstatus\">Especifica si la impresión del documentu considérase una cambéu.</ahelp> Si esta opción ta escoyida, la siguiente vegada que zarru'l documentu va solicitáse-y si tienen de guardase los cambeos. La fecha d'impresión introduzse entós como cambéu nes propiedaes del documentu."
+msgstr "<ahelp hid=\"cui/ui/optgeneralpage/docstatus\">Especifica si la imprentación del documentu se considera un cambéu.</ahelp> Si esta opción ta escoyida, la siguiente vegada que'l documentu zarre va solicitáse-y si tienen de guardase los cambeos. La fecha d'imprentación introduzse entós como cambéu nes propiedaes del documentu."
#. 3rs5u
#: 01010600.xhp
@@ -4001,7 +4001,7 @@ msgctxt ""
"hd_id3148946\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010900.xhp\" name=\"Print Options\">Print Options</link>"
-msgstr "<link href=\"text/shared/optionen/01010900.xhp\" name=\"Opciones de impresión\">Opciones d'impresión</link>"
+msgstr "<link href=\"text/shared/optionen/01010900.xhp\" name=\"Opciones de impresión\">Opciones d'imprentación</link>"
#. AeGFc
#: 01010900.xhp
@@ -4073,7 +4073,7 @@ msgctxt ""
"par_id3156444\n"
"help.text"
msgid "Transparency cannot be output directly to a printer. The areas of the document in which transparency is to be visible must therefore always be calculated as bitmaps and sent to the printer. Depending on the size of the bitmaps and the print resolution a large amount of data may result."
-msgstr "La tresparencia nun pue unviase direutamente a la imprentadora. Les zones del documentu nes que la tresparencia tien de ser visible tienen de calculase siempres como bitmaps y unviase a la imprentadora. En función del tamañu de los bitmaps y del resolvimientu d'impresión, el tamañu de la resultancia pue ser bien grande."
+msgstr "La tresparencia nun pue unviase direutamente a la imprentadora. Les zones del documentu nes que la tresparencia tien de ser visible tienen de calculase siempres como mapes de bits y unviase a la imprentadora. En función del tamañu de los mapes de bits y de la resolución d'imprentación, el tamañu del resultáu pue ser bien grande."
#. HLYND
#: 01010900.xhp
@@ -4136,7 +4136,7 @@ msgctxt ""
"hd_id3149400\n"
"help.text"
msgid "High/normal print quality"
-msgstr "Calidá d'impresión óptima/Calidá normal d'impresión"
+msgstr "Calidá d'imprentació óptima/normal"
#. exxtC
#: 01010900.xhp
@@ -5549,7 +5549,7 @@ msgctxt ""
"par_id3156276\n"
"help.text"
msgid "The HTML filter supports CSS2 (Cascading Style Sheets Level 2) for printing documents. These capabilities are only effective if print layout export is activated."
-msgstr "El filtru HTML almiti CSS2 (Cascading Style Sheets Level 2) pa la impresión de documentos. Estes capacidaes namái tán disponibles si activó la esportación del diseñu d'impresión."
+msgstr "El filtru HTML almite CSS2 (Cascading Style Sheets Level 2) pa la imprentación de documentos. Estes capacidaes namái tán disponibles si activasti la esportación del diseñu d'imprentación."
#. i7jxE
#: 01030500.xhp
@@ -5810,7 +5810,7 @@ msgctxt ""
"hd_id3149018\n"
"help.text"
msgid "Drawings and controls"
-msgstr "Dibuxos y campos de control"
+msgstr "Dibuxos y controles"
#. MUz2Z
#: 01040200.xhp
@@ -5819,7 +5819,7 @@ msgctxt ""
"par_id3151249\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/viewoptionspage/drawings\">Displays the drawings and controls contained in your document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/viewoptionspage/drawings\">Amuesa los dibuxos y campos de control del documentu.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/viewoptionspage/drawings\">Amuesa los dibuxos y controles del documentu.</ahelp>"
#. xFt8H
#: 01040200.xhp
@@ -6332,7 +6332,7 @@ msgctxt ""
"par_id3158408\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/printoptionspage/formcontrols\">Specifies whether the form control fields of the text document are printed.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/printoptionspage/formcontrols\">Indica si tienen d'imprimise los campos de control de formulariu del documentu de testu.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/printoptionspage/formcontrols\">Indica si tienen d'imprimise los controles de formulariu del documentu de testu.</ahelp>"
#. yLUpZ
#: 01040400.xhp
diff --git a/source/ast/helpcontent2/source/text/swriter/00.po b/source/ast/helpcontent2/source/text/swriter/00.po
index bd98181bc47..7b66dce356c 100644
--- a/source/ast/helpcontent2/source/text/swriter/00.po
+++ b/source/ast/helpcontent2/source/text/swriter/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-07-04 18:05+0200\n"
-"PO-Revision-Date: 2022-07-19 20:03+0000\n"
+"PO-Revision-Date: 2022-09-21 09:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textswriter00/ast/>\n"
"Language: ast\n"
@@ -284,7 +284,7 @@ msgctxt ""
"par_id3150536\n"
"help.text"
msgid "AutoText"
-msgstr "AutoTestu"
+msgstr "Testu automáticu"
#. F7ALF
#: 00000402.xhp
diff --git a/source/ast/helpcontent2/source/text/swriter/01.po b/source/ast/helpcontent2/source/text/swriter/01.po
index ac5880355b6..4bf5a8d35e8 100644
--- a/source/ast/helpcontent2/source/text/swriter/01.po
+++ b/source/ast/helpcontent2/source/text/swriter/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-07-04 18:05+0200\n"
-"PO-Revision-Date: 2022-09-09 14:35+0000\n"
+"PO-Revision-Date: 2022-09-21 09:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/ast/>\n"
"Language: ast\n"
@@ -2255,7 +2255,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "AutoText"
-msgstr "AutoTestu"
+msgstr "Testu automáticu"
#. qH4A3
#: 02120000.xhp
@@ -2291,7 +2291,7 @@ msgctxt ""
"hd_id3148982\n"
"help.text"
msgid "AutoText"
-msgstr "AutoTestu"
+msgstr "Testu automáticu"
#. E8EtV
#: 02120000.xhp
@@ -2426,7 +2426,7 @@ msgctxt ""
"hd_id3150039\n"
"help.text"
msgid "AutoText"
-msgstr "AutoTestu"
+msgstr "Testu automáticu"
#. k4QpP
#: 02120000.xhp
@@ -2552,7 +2552,7 @@ msgctxt ""
"hd_id3155555\n"
"help.text"
msgid "Macro"
-msgstr "Macro..."
+msgstr "Macro"
#. PpSwY
#: 02120000.xhp
@@ -6800,7 +6800,7 @@ msgctxt ""
"par_id3145784\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/envprinterpage/right\">Enter the amount to shift the print area to the right.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/envprinterpage/right\">Especifique un valor pa mover a la derecha l'intervalu d'impresión.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/envprinterpage/right\">Introduz un valor pa mover a la derecha la estaya d'imprentación.</ahelp>"
#. DYARU
#: 04070300.xhp
@@ -8402,7 +8402,7 @@ msgctxt ""
"hd_id3148877\n"
"help.text"
msgid "Macro"
-msgstr "Macro..."
+msgstr "Macro"
#. 7TTJC
#: 04090003.xhp
@@ -15782,7 +15782,7 @@ msgctxt ""
"hd_id3153926\n"
"help.text"
msgid "Don't hyphenate the last word"
-msgstr ""
+msgstr "Nun guionar la cabera pallabra"
#. UYKar
#: 05030200.xhp
@@ -19841,7 +19841,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Macro"
-msgstr "Macro..."
+msgstr "Macro"
#. 3WnuD
#: 05060700.xhp
@@ -19940,7 +19940,7 @@ msgctxt ""
"par_id3154473\n"
"help.text"
msgid "AutoText"
-msgstr "AutoTestu"
+msgstr "Testu automáticu"
#. BgXvW
#: 05060700.xhp
@@ -19949,7 +19949,7 @@ msgctxt ""
"par_id3149684\n"
"help.text"
msgid "ImageMap area"
-msgstr "<emph>Área ImageMap</emph>"
+msgstr "Área del mapa d'imaxe"
#. RbJ5R
#: 05060700.xhp
@@ -23846,7 +23846,7 @@ msgctxt ""
"par_id3147407\n"
"help.text"
msgid "To reverse the last AutoCorrect action, choose <emph>Edit - </emph><link href=\"text/shared/01/02010000.xhp\" name=\"Undo\"><emph>Undo</emph></link>."
-msgstr "P'anular la última aición del Formateáu automáticu, escueya <emph>Editar - </emph><link href=\"text/shared/01/02010000.xhp\" name=\"Deshacer\"><emph>Desfacer</emph></link>."
+msgstr "P'anular la última aición de la Correición automática, escueyi <emph>Editar - </emph><link href=\"text/shared/01/02010000.xhp\" name=\"Desfacer\"><emph>Desfacer</emph></link>."
#. c9yUj
#: 05150100.xhp
@@ -23864,7 +23864,7 @@ msgctxt ""
"hd_id3155625\n"
"help.text"
msgid "AutoCorrect for Headings"
-msgstr ""
+msgstr "Correición automática pa títulos"
#. GKSGD
#: 05150100.xhp
@@ -31388,7 +31388,7 @@ msgctxt ""
"par_id2962126\n"
"help.text"
msgid "<ahelp hid=\".\">Choose the selection mode from the submenu: normal selection mode, or block selection mode.</ahelp>"
-msgstr "<ahelp hid=\".\">Escoyer el mou de seleición del submenú: mou Normal o el mou d'escueya en Bloque.</ahelp>"
+msgstr "<ahelp hid=\".\">Escoyer el mou d'esbilla del somenú: mou Normal o el mou d'esbilla en bloque.</ahelp>"
#. mPBN4
#: selection_mode.xhp
@@ -31496,7 +31496,7 @@ msgctxt ""
"par_id721641335152918\n"
"help.text"
msgid "Icon Style Inspector on the Sidebar"
-msgstr ""
+msgstr "Iconu Inspeutor d'estilos na barra llateral"
#. uhQin
#: style_inspector.xhp
diff --git a/source/ast/instsetoo_native/inc_openoffice/windows/msi_languages.po b/source/ast/instsetoo_native/inc_openoffice/windows/msi_languages.po
index 457b194ed14..3f138bcb790 100644
--- a/source/ast/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/source/ast/instsetoo_native/inc_openoffice/windows/msi_languages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-03-21 12:32+0100\n"
-"PO-Revision-Date: 2022-06-15 20:37+0000\n"
+"PO-Revision-Date: 2022-09-21 09:47+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/instsetoo_nativeinc_openofficewindowsmsi_languages/ast/>\n"
"Language: ast\n"
@@ -1022,7 +1022,7 @@ msgctxt ""
"OOO_ACTIONTEXT_116\n"
"LngText.text"
msgid "ProgID: [1]"
-msgstr "IdProg: [1]"
+msgstr "Id. prog.: [1]"
#. mFnav
#: ActionTe.ulf
@@ -3020,7 +3020,7 @@ msgctxt ""
"OOO_CONTROL_305\n"
"LngText.text"
msgid "To continue, click Next."
-msgstr "Pa siguir, pulsia Siguiente."
+msgstr "Pa siguir, calca Siguiente."
#. E5kBg
#: Control.ulf
diff --git a/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po
index 4c5eb3b9c85..7189069849a 100644
--- a/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-06-09 11:50+0200\n"
-"PO-Revision-Date: 2022-09-09 11:26+0000\n"
+"PO-Revision-Date: 2022-09-21 09:48+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/ast/>\n"
"Language: ast\n"
@@ -1648,14 +1648,13 @@ msgstr "~Definir"
#. p8JoC
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:DefinePrintArea\n"
"TooltipLabel\n"
"value.text"
msgid "Define Print Area"
-msgstr "~Definir área d'impresión"
+msgstr "Definir estaya d'imprentación"
#. ZKFGB
#: CalcCommands.xcu
@@ -1716,7 +1715,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Edit Print Ranges"
-msgstr "Editar los rangos d'impresión"
+msgstr "Editar les estayes d'imprentación"
#. t8Rwk
#: CalcCommands.xcu
@@ -1740,14 +1739,13 @@ msgstr "~Amestar"
#. RxtBq
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:AddPrintArea\n"
"TooltipLabel\n"
"value.text"
msgid "Add Print Range"
-msgstr "Editar los rangos d'impresión"
+msgstr "Amestar estaya d'imprentación"
#. qwxGD
#: CalcCommands.xcu
@@ -17780,7 +17778,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Vertical Scroll"
-msgstr "Desplazamientu vertical"
+msgstr "Pergamín vertical"
#. kUmYD
#: GenericCommands.xcu
@@ -17790,7 +17788,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Horizontal Scroll"
-msgstr "Desplazamientu horizontal"
+msgstr "Pergamín horizontal"
#. ix6Fr
#: GenericCommands.xcu
@@ -27927,7 +27925,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Outline"
-msgstr "Fuera de llinia"
+msgstr "Esquema"
#. tBpp5
#: ImpressWindowState.xcu
@@ -28067,7 +28065,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Slide View"
-msgstr "Vista diapositiva"
+msgstr "Vista de diapositives"
#. 6xE8P
#: ImpressWindowState.xcu
diff --git a/source/ast/sc/messages.po b/source/ast/sc/messages.po
index ff9b99633cb..b87e1ebbc05 100644
--- a/source/ast/sc/messages.po
+++ b/source/ast/sc/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: 2022-08-08 14:37+0200\n"
-"PO-Revision-Date: 2022-09-09 11:26+0000\n"
+"PO-Revision-Date: 2022-09-21 09:48+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/ast/>\n"
"Language: ast\n"
@@ -1172,7 +1172,7 @@ msgstr "(vacíu)"
#: sc/inc/globstr.hrc:202
msgctxt "STR_PRINT_INVALID_AREA"
msgid "Invalid print range"
-msgstr "Estaya d'impresión inválida"
+msgstr "Nun val la estaya d'imprentación"
#. 2HpWz
#: sc/inc/globstr.hrc:203
@@ -31517,10 +31517,9 @@ msgstr "Orde de clasificación definíu pol usuariu"
#. aDYdR
#: sc/uiconfig/scalc/ui/sortoptionspage.ui:190
-#, fuzzy
msgctxt "sortoptionspage|extended_tip|sortuser"
msgid "Click here and then select the custom sort order that you want."
-msgstr " Faiga clic equí y escueya l'orde de clasificación personalizáu que deseye."
+msgstr "Calca equí y escueyi l'orde de clasificación personalizáu que deseyes."
#. iWcGs
#: sc/uiconfig/scalc/ui/sortoptionspage.ui:209
diff --git a/source/ast/sfx2/messages.po b/source/ast/sfx2/messages.po
index f0e5df5ed11..a349fd1fdee 100644
--- a/source/ast/sfx2/messages.po
+++ b/source/ast/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: 2022-08-24 12:29+0200\n"
-"PO-Revision-Date: 2022-09-09 11:26+0000\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
+"PO-Revision-Date: 2022-09-21 09:47+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/ast/>\n"
"Language: ast\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.12.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1540149375.000000\n"
#. bHbFE
@@ -2967,7 +2967,7 @@ msgid "No"
msgstr "Non"
#. kDKBB
-#: sfx2/uiconfig/ui/commandpopup.ui:36
+#: sfx2/uiconfig/ui/commandpopup.ui:35
msgctxt "commandpopup|entry"
msgid "Search command"
msgstr "Guetar una orde"
@@ -4240,7 +4240,7 @@ msgstr ""
#: sfx2/uiconfig/ui/optprintpage.ui:363
msgctxt "optprintpage|reducebitmapnormal"
msgid "N_ormal print quality"
-msgstr "Calidá _normal d'impresión"
+msgstr "Calidá d'imprentación _normal"
#. i5T3j
#: sfx2/uiconfig/ui/optprintpage.ui:372
@@ -4307,7 +4307,7 @@ msgstr ""
#: sfx2/uiconfig/ui/optprintpage.ui:438
msgctxt "optprintpage|reducebitmapoptimal"
msgid "_High print quality"
-msgstr "_Calidá d'impresión óptima"
+msgstr "_Calidá d'imprentación óptima"
#. BdCpv
#: sfx2/uiconfig/ui/optprintpage.ui:447
@@ -4365,10 +4365,9 @@ msgstr ""
#. GAFzh
#: sfx2/uiconfig/ui/optprintpage.ui:600
-#, fuzzy
msgctxt "optprintpage|pdf"
msgid "_PDF as standard print job format"
-msgstr "_PDF como formatu de xera d'impresión estándar"
+msgstr "_PDF como formatu de xera d'imprentación estándar"
#. wm7C7
#: sfx2/uiconfig/ui/optprintpage.ui:614
@@ -4947,140 +4946,140 @@ msgid "or Create a New Category"
msgstr ""
#. eUWTy
-#: sfx2/uiconfig/ui/templatedlg.ui:46
+#: sfx2/uiconfig/ui/templatedlg.ui:44
msgctxt "templatedlg|TemplateDialog"
msgid "Templates"
msgstr "Plantíes"
#. rhuYP
-#: sfx2/uiconfig/ui/templatedlg.ui:77
+#: sfx2/uiconfig/ui/templatedlg.ui:76
msgctxt "templatedlg|hidedialogcb"
msgid "Show this dialog at startup"
msgstr ""
#. 32zsB
-#: sfx2/uiconfig/ui/templatedlg.ui:144
+#: sfx2/uiconfig/ui/templatedlg.ui:143
#, fuzzy
msgctxt "templatedlg|search_filter|tooltip_text"
msgid "Search"
msgstr "Guetar"
#. sGZMC
-#: sfx2/uiconfig/ui/templatedlg.ui:148
+#: sfx2/uiconfig/ui/templatedlg.ui:147
msgctxt "templatedlg|search_filter"
msgid "Search..."
msgstr "Guetar..."
#. DF5YC
-#: sfx2/uiconfig/ui/templatedlg.ui:167
+#: sfx2/uiconfig/ui/templatedlg.ui:166
msgctxt "templatedlg|action_menu|label"
msgid "_Manage"
msgstr ""
#. LUs2m
-#: sfx2/uiconfig/ui/templatedlg.ui:181
+#: sfx2/uiconfig/ui/templatedlg.ui:180
msgctxt "templatedlg|extended_tip|action_menu"
msgid "Provides commands to create, rename and delete categories, reset default templates, and refresh the template manager."
msgstr ""
#. fXVNY
-#: sfx2/uiconfig/ui/templatedlg.ui:208
+#: sfx2/uiconfig/ui/templatedlg.ui:207
msgctxt "templatedlg|filter_application|tooltip_text"
msgid "Filter by Application"
msgstr "Peñerar por aplicación"
#. tqVhJ
-#: sfx2/uiconfig/ui/templatedlg.ui:210
+#: sfx2/uiconfig/ui/templatedlg.ui:209
msgctxt "templatedlg|applist"
msgid "All Applications"
msgstr "Toles aplicaciones"
#. pD6pU
-#: sfx2/uiconfig/ui/templatedlg.ui:211
+#: sfx2/uiconfig/ui/templatedlg.ui:210
msgctxt "templatedlg|applist"
msgid "Text Documents"
msgstr "Documentos de testu"
#. eECt7
-#: sfx2/uiconfig/ui/templatedlg.ui:212
+#: sfx2/uiconfig/ui/templatedlg.ui:211
msgctxt "templatedlg|applist"
msgid "Spreadsheets"
msgstr "Fueyes de cálculu"
#. ajLbV
-#: sfx2/uiconfig/ui/templatedlg.ui:213
+#: sfx2/uiconfig/ui/templatedlg.ui:212
msgctxt "templatedlg|applist"
msgid "Presentations"
msgstr "Presentaciones"
#. LfUzB
-#: sfx2/uiconfig/ui/templatedlg.ui:214
+#: sfx2/uiconfig/ui/templatedlg.ui:213
msgctxt "templatedlg|applist"
msgid "Drawings"
msgstr "Dibuxos"
#. t7zE7
-#: sfx2/uiconfig/ui/templatedlg.ui:228
+#: sfx2/uiconfig/ui/templatedlg.ui:227
msgctxt "templatedlg|filter_folder|tooltip_text"
msgid "Filter by Category"
msgstr "Peñerar por categoría"
#. 93CGw
-#: sfx2/uiconfig/ui/templatedlg.ui:230
+#: sfx2/uiconfig/ui/templatedlg.ui:229
msgctxt "templatedlg|folderlist"
msgid "All Categories"
msgstr "Toles categoríes"
#. NF9wE
-#: sfx2/uiconfig/ui/templatedlg.ui:251
+#: sfx2/uiconfig/ui/templatedlg.ui:250
msgctxt "templatedlg|label1"
msgid "Filter"
msgstr "Peñera"
#. ewTL3
-#: sfx2/uiconfig/ui/templatedlg.ui:357
+#: sfx2/uiconfig/ui/templatedlg.ui:356
msgctxt "templatedlg|treeviewcolumn1"
msgid "Name"
msgstr "Nome"
#. 7EJRA
-#: sfx2/uiconfig/ui/templatedlg.ui:374
+#: sfx2/uiconfig/ui/templatedlg.ui:373
msgctxt "templatedlg|treeviewcolumn2"
msgid "Category"
msgstr "Categoría"
#. AC27i
-#: sfx2/uiconfig/ui/templatedlg.ui:389
+#: sfx2/uiconfig/ui/templatedlg.ui:388
msgctxt "templatedlg|treeviewcolumn3"
msgid "Application"
msgstr "Aplicación"
#. eSaBw
-#: sfx2/uiconfig/ui/templatedlg.ui:404
+#: sfx2/uiconfig/ui/templatedlg.ui:403
msgctxt "templatedlg|treeviewcolumn4"
msgid "Modified"
msgstr ""
#. pNzYA
-#: sfx2/uiconfig/ui/templatedlg.ui:419
+#: sfx2/uiconfig/ui/templatedlg.ui:418
msgctxt "templatedlg|treeviewcolumn5"
msgid "Size"
msgstr "Tamañu"
#. j39jM
-#: sfx2/uiconfig/ui/templatedlg.ui:445
+#: sfx2/uiconfig/ui/templatedlg.ui:444
msgctxt "templatedlg|thumbnailviewlabel"
msgid "Template List"
msgstr "Llista de plantíes"
#. yEhgP
-#: sfx2/uiconfig/ui/templatedlg.ui:464
+#: sfx2/uiconfig/ui/templatedlg.ui:463
msgctxt "templatedlg|thumbnail_view_btn|tooltip_text"
msgid "Thumbnail View"
msgstr ""
#. j76ke
-#: sfx2/uiconfig/ui/templatedlg.ui:481
+#: sfx2/uiconfig/ui/templatedlg.ui:480
msgctxt "templatedlg|list_view_btn|tooltip_text"
msgid "List View"
msgstr ""
diff --git a/source/ast/sw/messages.po b/source/ast/sw/messages.po
index c199d03f4fb..a9bfc158227 100644
--- a/source/ast/sw/messages.po
+++ b/source/ast/sw/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: 2022-08-08 14:37+0200\n"
-"PO-Revision-Date: 2022-09-09 11:26+0000\n"
+"PO-Revision-Date: 2022-09-21 09:48+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/ast/>\n"
"Language: ast\n"
@@ -20850,7 +20850,7 @@ msgstr "Siguimientu de seiciones"
#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:242
msgctxt "navigatorcontextmenu|STR_FRAME_TRACKING"
msgid "Frame Tracking"
-msgstr ""
+msgstr "Siguimientu de marcos"
#. vhxX5
#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:250
diff --git a/source/az/sfx2/messages.po b/source/az/sfx2/messages.po
index 7a6d0db029f..4e75544eee3 100644
--- a/source/az/sfx2/messages.po
+++ b/source/az/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-08-24 12:29+0200\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
"PO-Revision-Date: 2018-10-21 19:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2899,7 +2899,7 @@ msgid "No"
msgstr "Yox"
#. kDKBB
-#: sfx2/uiconfig/ui/commandpopup.ui:36
+#: sfx2/uiconfig/ui/commandpopup.ui:35
msgctxt "commandpopup|entry"
msgid "Search command"
msgstr ""
@@ -4854,139 +4854,139 @@ msgid "or Create a New Category"
msgstr ""
#. eUWTy
-#: sfx2/uiconfig/ui/templatedlg.ui:46
+#: sfx2/uiconfig/ui/templatedlg.ui:44
msgctxt "templatedlg|TemplateDialog"
msgid "Templates"
msgstr ""
#. rhuYP
-#: sfx2/uiconfig/ui/templatedlg.ui:77
+#: sfx2/uiconfig/ui/templatedlg.ui:76
msgctxt "templatedlg|hidedialogcb"
msgid "Show this dialog at startup"
msgstr ""
#. 32zsB
-#: sfx2/uiconfig/ui/templatedlg.ui:144
+#: sfx2/uiconfig/ui/templatedlg.ui:143
msgctxt "templatedlg|search_filter|tooltip_text"
msgid "Search"
msgstr ""
#. sGZMC
-#: sfx2/uiconfig/ui/templatedlg.ui:148
+#: sfx2/uiconfig/ui/templatedlg.ui:147
msgctxt "templatedlg|search_filter"
msgid "Search..."
msgstr ""
#. DF5YC
-#: sfx2/uiconfig/ui/templatedlg.ui:167
+#: sfx2/uiconfig/ui/templatedlg.ui:166
msgctxt "templatedlg|action_menu|label"
msgid "_Manage"
msgstr ""
#. LUs2m
-#: sfx2/uiconfig/ui/templatedlg.ui:181
+#: sfx2/uiconfig/ui/templatedlg.ui:180
msgctxt "templatedlg|extended_tip|action_menu"
msgid "Provides commands to create, rename and delete categories, reset default templates, and refresh the template manager."
msgstr ""
#. fXVNY
-#: sfx2/uiconfig/ui/templatedlg.ui:208
+#: sfx2/uiconfig/ui/templatedlg.ui:207
msgctxt "templatedlg|filter_application|tooltip_text"
msgid "Filter by Application"
msgstr ""
#. tqVhJ
-#: sfx2/uiconfig/ui/templatedlg.ui:210
+#: sfx2/uiconfig/ui/templatedlg.ui:209
msgctxt "templatedlg|applist"
msgid "All Applications"
msgstr ""
#. pD6pU
-#: sfx2/uiconfig/ui/templatedlg.ui:211
+#: sfx2/uiconfig/ui/templatedlg.ui:210
msgctxt "templatedlg|applist"
msgid "Text Documents"
msgstr ""
#. eECt7
-#: sfx2/uiconfig/ui/templatedlg.ui:212
+#: sfx2/uiconfig/ui/templatedlg.ui:211
msgctxt "templatedlg|applist"
msgid "Spreadsheets"
msgstr ""
#. ajLbV
-#: sfx2/uiconfig/ui/templatedlg.ui:213
+#: sfx2/uiconfig/ui/templatedlg.ui:212
msgctxt "templatedlg|applist"
msgid "Presentations"
msgstr ""
#. LfUzB
-#: sfx2/uiconfig/ui/templatedlg.ui:214
+#: sfx2/uiconfig/ui/templatedlg.ui:213
msgctxt "templatedlg|applist"
msgid "Drawings"
msgstr ""
#. t7zE7
-#: sfx2/uiconfig/ui/templatedlg.ui:228
+#: sfx2/uiconfig/ui/templatedlg.ui:227
msgctxt "templatedlg|filter_folder|tooltip_text"
msgid "Filter by Category"
msgstr ""
#. 93CGw
-#: sfx2/uiconfig/ui/templatedlg.ui:230
+#: sfx2/uiconfig/ui/templatedlg.ui:229
msgctxt "templatedlg|folderlist"
msgid "All Categories"
msgstr ""
#. NF9wE
-#: sfx2/uiconfig/ui/templatedlg.ui:251
+#: sfx2/uiconfig/ui/templatedlg.ui:250
msgctxt "templatedlg|label1"
msgid "Filter"
msgstr ""
#. ewTL3
-#: sfx2/uiconfig/ui/templatedlg.ui:357
+#: sfx2/uiconfig/ui/templatedlg.ui:356
msgctxt "templatedlg|treeviewcolumn1"
msgid "Name"
msgstr ""
#. 7EJRA
-#: sfx2/uiconfig/ui/templatedlg.ui:374
+#: sfx2/uiconfig/ui/templatedlg.ui:373
msgctxt "templatedlg|treeviewcolumn2"
msgid "Category"
msgstr ""
#. AC27i
-#: sfx2/uiconfig/ui/templatedlg.ui:389
+#: sfx2/uiconfig/ui/templatedlg.ui:388
msgctxt "templatedlg|treeviewcolumn3"
msgid "Application"
msgstr ""
#. eSaBw
-#: sfx2/uiconfig/ui/templatedlg.ui:404
+#: sfx2/uiconfig/ui/templatedlg.ui:403
msgctxt "templatedlg|treeviewcolumn4"
msgid "Modified"
msgstr ""
#. pNzYA
-#: sfx2/uiconfig/ui/templatedlg.ui:419
+#: sfx2/uiconfig/ui/templatedlg.ui:418
msgctxt "templatedlg|treeviewcolumn5"
msgid "Size"
msgstr ""
#. j39jM
-#: sfx2/uiconfig/ui/templatedlg.ui:445
+#: sfx2/uiconfig/ui/templatedlg.ui:444
msgctxt "templatedlg|thumbnailviewlabel"
msgid "Template List"
msgstr ""
#. yEhgP
-#: sfx2/uiconfig/ui/templatedlg.ui:464
+#: sfx2/uiconfig/ui/templatedlg.ui:463
msgctxt "templatedlg|thumbnail_view_btn|tooltip_text"
msgid "Thumbnail View"
msgstr ""
#. j76ke
-#: sfx2/uiconfig/ui/templatedlg.ui:481
+#: sfx2/uiconfig/ui/templatedlg.ui:480
msgctxt "templatedlg|list_view_btn|tooltip_text"
msgid "List View"
msgstr ""
diff --git a/source/be/sfx2/messages.po b/source/be/sfx2/messages.po
index 2f636919896..4c7a0ede788 100644
--- a/source/be/sfx2/messages.po
+++ b/source/be/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-08-24 12:29+0200\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
"PO-Revision-Date: 2018-10-21 19:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2941,7 +2941,7 @@ msgid "No"
msgstr "Не"
#. kDKBB
-#: sfx2/uiconfig/ui/commandpopup.ui:36
+#: sfx2/uiconfig/ui/commandpopup.ui:35
msgctxt "commandpopup|entry"
msgid "Search command"
msgstr ""
@@ -4873,139 +4873,139 @@ msgid "or Create a New Category"
msgstr "або стварыце новую катэгорыю"
#. eUWTy
-#: sfx2/uiconfig/ui/templatedlg.ui:46
+#: sfx2/uiconfig/ui/templatedlg.ui:44
msgctxt "templatedlg|TemplateDialog"
msgid "Templates"
msgstr "Шаблоны"
#. rhuYP
-#: sfx2/uiconfig/ui/templatedlg.ui:77
+#: sfx2/uiconfig/ui/templatedlg.ui:76
msgctxt "templatedlg|hidedialogcb"
msgid "Show this dialog at startup"
msgstr "Паказваць пры запуску"
#. 32zsB
-#: sfx2/uiconfig/ui/templatedlg.ui:144
+#: sfx2/uiconfig/ui/templatedlg.ui:143
msgctxt "templatedlg|search_filter|tooltip_text"
msgid "Search"
msgstr "Пошук"
#. sGZMC
-#: sfx2/uiconfig/ui/templatedlg.ui:148
+#: sfx2/uiconfig/ui/templatedlg.ui:147
msgctxt "templatedlg|search_filter"
msgid "Search..."
msgstr "Шукаць..."
#. DF5YC
-#: sfx2/uiconfig/ui/templatedlg.ui:167
+#: sfx2/uiconfig/ui/templatedlg.ui:166
msgctxt "templatedlg|action_menu|label"
msgid "_Manage"
msgstr ""
#. LUs2m
-#: sfx2/uiconfig/ui/templatedlg.ui:181
+#: sfx2/uiconfig/ui/templatedlg.ui:180
msgctxt "templatedlg|extended_tip|action_menu"
msgid "Provides commands to create, rename and delete categories, reset default templates, and refresh the template manager."
msgstr ""
#. fXVNY
-#: sfx2/uiconfig/ui/templatedlg.ui:208
+#: sfx2/uiconfig/ui/templatedlg.ui:207
msgctxt "templatedlg|filter_application|tooltip_text"
msgid "Filter by Application"
msgstr "Фільтр па праграме"
#. tqVhJ
-#: sfx2/uiconfig/ui/templatedlg.ui:210
+#: sfx2/uiconfig/ui/templatedlg.ui:209
msgctxt "templatedlg|applist"
msgid "All Applications"
msgstr "Усе праграмы"
#. pD6pU
-#: sfx2/uiconfig/ui/templatedlg.ui:211
+#: sfx2/uiconfig/ui/templatedlg.ui:210
msgctxt "templatedlg|applist"
msgid "Text Documents"
msgstr ""
#. eECt7
-#: sfx2/uiconfig/ui/templatedlg.ui:212
+#: sfx2/uiconfig/ui/templatedlg.ui:211
msgctxt "templatedlg|applist"
msgid "Spreadsheets"
msgstr "Разліковыя аркушы"
#. ajLbV
-#: sfx2/uiconfig/ui/templatedlg.ui:213
+#: sfx2/uiconfig/ui/templatedlg.ui:212
msgctxt "templatedlg|applist"
msgid "Presentations"
msgstr "Прэзентацыі"
#. LfUzB
-#: sfx2/uiconfig/ui/templatedlg.ui:214
+#: sfx2/uiconfig/ui/templatedlg.ui:213
msgctxt "templatedlg|applist"
msgid "Drawings"
msgstr "Рысункі"
#. t7zE7
-#: sfx2/uiconfig/ui/templatedlg.ui:228
+#: sfx2/uiconfig/ui/templatedlg.ui:227
msgctxt "templatedlg|filter_folder|tooltip_text"
msgid "Filter by Category"
msgstr "Фільтр па катэгорыі"
#. 93CGw
-#: sfx2/uiconfig/ui/templatedlg.ui:230
+#: sfx2/uiconfig/ui/templatedlg.ui:229
msgctxt "templatedlg|folderlist"
msgid "All Categories"
msgstr "Усе катэгорыі"
#. NF9wE
-#: sfx2/uiconfig/ui/templatedlg.ui:251
+#: sfx2/uiconfig/ui/templatedlg.ui:250
msgctxt "templatedlg|label1"
msgid "Filter"
msgstr "Фільтр"
#. ewTL3
-#: sfx2/uiconfig/ui/templatedlg.ui:357
+#: sfx2/uiconfig/ui/templatedlg.ui:356
msgctxt "templatedlg|treeviewcolumn1"
msgid "Name"
msgstr ""
#. 7EJRA
-#: sfx2/uiconfig/ui/templatedlg.ui:374
+#: sfx2/uiconfig/ui/templatedlg.ui:373
msgctxt "templatedlg|treeviewcolumn2"
msgid "Category"
msgstr ""
#. AC27i
-#: sfx2/uiconfig/ui/templatedlg.ui:389
+#: sfx2/uiconfig/ui/templatedlg.ui:388
msgctxt "templatedlg|treeviewcolumn3"
msgid "Application"
msgstr ""
#. eSaBw
-#: sfx2/uiconfig/ui/templatedlg.ui:404
+#: sfx2/uiconfig/ui/templatedlg.ui:403
msgctxt "templatedlg|treeviewcolumn4"
msgid "Modified"
msgstr ""
#. pNzYA
-#: sfx2/uiconfig/ui/templatedlg.ui:419
+#: sfx2/uiconfig/ui/templatedlg.ui:418
msgctxt "templatedlg|treeviewcolumn5"
msgid "Size"
msgstr ""
#. j39jM
-#: sfx2/uiconfig/ui/templatedlg.ui:445
+#: sfx2/uiconfig/ui/templatedlg.ui:444
msgctxt "templatedlg|thumbnailviewlabel"
msgid "Template List"
msgstr "Спіс шаблонаў"
#. yEhgP
-#: sfx2/uiconfig/ui/templatedlg.ui:464
+#: sfx2/uiconfig/ui/templatedlg.ui:463
msgctxt "templatedlg|thumbnail_view_btn|tooltip_text"
msgid "Thumbnail View"
msgstr ""
#. j76ke
-#: sfx2/uiconfig/ui/templatedlg.ui:481
+#: sfx2/uiconfig/ui/templatedlg.ui:480
msgctxt "templatedlg|list_view_btn|tooltip_text"
msgid "List View"
msgstr ""
diff --git a/source/bg/helpcontent2/source/auxiliary.po b/source/bg/helpcontent2/source/auxiliary.po
index 608374488aa..978c0586150 100644
--- a/source/bg/helpcontent2/source/auxiliary.po
+++ b/source/bg/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-11-25 19:33+0100\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
"PO-Revision-Date: 2021-10-23 00:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/auxiliary/bg/>\n"
@@ -313,11 +313,11 @@ msgctxt ""
msgid "Writing Calc Macros"
msgstr "Писане на макроси за Calc"
-#. Q59GN
+#. vBXqp
#: scalc.tree
msgctxt ""
"scalc.tree\n"
-"0815\n"
+"0816\n"
"node.text"
msgid "Miscellaneous"
msgstr "Разни"
diff --git a/source/bg/sfx2/messages.po b/source/bg/sfx2/messages.po
index 022181c43f8..430a41ccbf1 100644
--- a/source/bg/sfx2/messages.po
+++ b/source/bg/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: 2022-08-24 12:29+0200\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
"PO-Revision-Date: 2022-07-15 17:09+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/bg/>\n"
@@ -2964,7 +2964,7 @@ msgid "No"
msgstr "Не"
#. kDKBB
-#: sfx2/uiconfig/ui/commandpopup.ui:36
+#: sfx2/uiconfig/ui/commandpopup.ui:35
msgctxt "commandpopup|entry"
msgid "Search command"
msgstr "Търсена команда"
@@ -4904,139 +4904,139 @@ msgid "or Create a New Category"
msgstr "или създаване на нова категория"
#. eUWTy
-#: sfx2/uiconfig/ui/templatedlg.ui:46
+#: sfx2/uiconfig/ui/templatedlg.ui:44
msgctxt "templatedlg|TemplateDialog"
msgid "Templates"
msgstr "Шаблони"
#. rhuYP
-#: sfx2/uiconfig/ui/templatedlg.ui:77
+#: sfx2/uiconfig/ui/templatedlg.ui:76
msgctxt "templatedlg|hidedialogcb"
msgid "Show this dialog at startup"
msgstr "Показване на диалога при стартиране"
#. 32zsB
-#: sfx2/uiconfig/ui/templatedlg.ui:144
+#: sfx2/uiconfig/ui/templatedlg.ui:143
msgctxt "templatedlg|search_filter|tooltip_text"
msgid "Search"
msgstr "Търсене"
#. sGZMC
-#: sfx2/uiconfig/ui/templatedlg.ui:148
+#: sfx2/uiconfig/ui/templatedlg.ui:147
msgctxt "templatedlg|search_filter"
msgid "Search..."
msgstr "Търсене..."
#. DF5YC
-#: sfx2/uiconfig/ui/templatedlg.ui:167
+#: sfx2/uiconfig/ui/templatedlg.ui:166
msgctxt "templatedlg|action_menu|label"
msgid "_Manage"
msgstr "Управление"
#. LUs2m
-#: sfx2/uiconfig/ui/templatedlg.ui:181
+#: sfx2/uiconfig/ui/templatedlg.ui:180
msgctxt "templatedlg|extended_tip|action_menu"
msgid "Provides commands to create, rename and delete categories, reset default templates, and refresh the template manager."
msgstr "Предлага команди за създаване, преименуване и изтриване на категории, нулиране на подразбираните шаблони и опресняване на диспечера на шаблони."
#. fXVNY
-#: sfx2/uiconfig/ui/templatedlg.ui:208
+#: sfx2/uiconfig/ui/templatedlg.ui:207
msgctxt "templatedlg|filter_application|tooltip_text"
msgid "Filter by Application"
msgstr "Филтър по приложение"
#. tqVhJ
-#: sfx2/uiconfig/ui/templatedlg.ui:210
+#: sfx2/uiconfig/ui/templatedlg.ui:209
msgctxt "templatedlg|applist"
msgid "All Applications"
msgstr "Всички приложения"
#. pD6pU
-#: sfx2/uiconfig/ui/templatedlg.ui:211
+#: sfx2/uiconfig/ui/templatedlg.ui:210
msgctxt "templatedlg|applist"
msgid "Text Documents"
msgstr "Текстови документи"
#. eECt7
-#: sfx2/uiconfig/ui/templatedlg.ui:212
+#: sfx2/uiconfig/ui/templatedlg.ui:211
msgctxt "templatedlg|applist"
msgid "Spreadsheets"
msgstr "Електронни таблици"
#. ajLbV
-#: sfx2/uiconfig/ui/templatedlg.ui:213
+#: sfx2/uiconfig/ui/templatedlg.ui:212
msgctxt "templatedlg|applist"
msgid "Presentations"
msgstr "Презентации"
#. LfUzB
-#: sfx2/uiconfig/ui/templatedlg.ui:214
+#: sfx2/uiconfig/ui/templatedlg.ui:213
msgctxt "templatedlg|applist"
msgid "Drawings"
msgstr "Рисунки"
#. t7zE7
-#: sfx2/uiconfig/ui/templatedlg.ui:228
+#: sfx2/uiconfig/ui/templatedlg.ui:227
msgctxt "templatedlg|filter_folder|tooltip_text"
msgid "Filter by Category"
msgstr "Филтър по категория"
#. 93CGw
-#: sfx2/uiconfig/ui/templatedlg.ui:230
+#: sfx2/uiconfig/ui/templatedlg.ui:229
msgctxt "templatedlg|folderlist"
msgid "All Categories"
msgstr "Всички категории"
#. NF9wE
-#: sfx2/uiconfig/ui/templatedlg.ui:251
+#: sfx2/uiconfig/ui/templatedlg.ui:250
msgctxt "templatedlg|label1"
msgid "Filter"
msgstr "Филтър"
#. ewTL3
-#: sfx2/uiconfig/ui/templatedlg.ui:357
+#: sfx2/uiconfig/ui/templatedlg.ui:356
msgctxt "templatedlg|treeviewcolumn1"
msgid "Name"
msgstr "Име"
#. 7EJRA
-#: sfx2/uiconfig/ui/templatedlg.ui:374
+#: sfx2/uiconfig/ui/templatedlg.ui:373
msgctxt "templatedlg|treeviewcolumn2"
msgid "Category"
msgstr "Категория"
#. AC27i
-#: sfx2/uiconfig/ui/templatedlg.ui:389
+#: sfx2/uiconfig/ui/templatedlg.ui:388
msgctxt "templatedlg|treeviewcolumn3"
msgid "Application"
msgstr "Приложение"
#. eSaBw
-#: sfx2/uiconfig/ui/templatedlg.ui:404
+#: sfx2/uiconfig/ui/templatedlg.ui:403
msgctxt "templatedlg|treeviewcolumn4"
msgid "Modified"
msgstr "Променен"
#. pNzYA
-#: sfx2/uiconfig/ui/templatedlg.ui:419
+#: sfx2/uiconfig/ui/templatedlg.ui:418
msgctxt "templatedlg|treeviewcolumn5"
msgid "Size"
msgstr "Размер"
#. j39jM
-#: sfx2/uiconfig/ui/templatedlg.ui:445
+#: sfx2/uiconfig/ui/templatedlg.ui:444
msgctxt "templatedlg|thumbnailviewlabel"
msgid "Template List"
msgstr "Списък на шаблоните"
#. yEhgP
-#: sfx2/uiconfig/ui/templatedlg.ui:464
+#: sfx2/uiconfig/ui/templatedlg.ui:463
msgctxt "templatedlg|thumbnail_view_btn|tooltip_text"
msgid "Thumbnail View"
msgstr "Изглед с миниатюри"
#. j76ke
-#: sfx2/uiconfig/ui/templatedlg.ui:481
+#: sfx2/uiconfig/ui/templatedlg.ui:480
msgctxt "templatedlg|list_view_btn|tooltip_text"
msgid "List View"
msgstr "Списъчен изглед"
diff --git a/source/bn-IN/helpcontent2/source/auxiliary.po b/source/bn-IN/helpcontent2/source/auxiliary.po
index 0b0e904d091..e20d00ddc18 100644
--- a/source/bn-IN/helpcontent2/source/auxiliary.po
+++ b/source/bn-IN/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-11-25 19:33+0100\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
"PO-Revision-Date: 2021-11-14 09:36+0000\n"
"Last-Translator: Shaunak Basu <basushaunak@msn.com>\n"
"Language-Team: Bengali (India) <https://translations.documentfoundation.org/projects/libo_help-master/auxiliary/bn_IN/>\n"
@@ -313,11 +313,11 @@ msgctxt ""
msgid "Writing Calc Macros"
msgstr ""
-#. Q59GN
+#. vBXqp
#: scalc.tree
msgctxt ""
"scalc.tree\n"
-"0815\n"
+"0816\n"
"node.text"
msgid "Miscellaneous"
msgstr "বিবিধ"
diff --git a/source/bn-IN/sfx2/messages.po b/source/bn-IN/sfx2/messages.po
index 0dc2486ccaa..3d874f89be2 100644
--- a/source/bn-IN/sfx2/messages.po
+++ b/source/bn-IN/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-08-24 12:29+0200\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
"PO-Revision-Date: 2021-08-25 05:04+0000\n"
"Last-Translator: Shaunak Basu <basushaunak@msn.com>\n"
"Language-Team: Bengali (India) <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/bn_IN/>\n"
@@ -2937,7 +2937,7 @@ msgid "No"
msgstr "না"
#. kDKBB
-#: sfx2/uiconfig/ui/commandpopup.ui:36
+#: sfx2/uiconfig/ui/commandpopup.ui:35
msgctxt "commandpopup|entry"
msgid "Search command"
msgstr ""
@@ -4874,139 +4874,139 @@ msgid "or Create a New Category"
msgstr "অথবা একটি নতুন বিভাগ তৈরি করুন"
#. eUWTy
-#: sfx2/uiconfig/ui/templatedlg.ui:46
+#: sfx2/uiconfig/ui/templatedlg.ui:44
msgctxt "templatedlg|TemplateDialog"
msgid "Templates"
msgstr "টেমপ্লেট"
#. rhuYP
-#: sfx2/uiconfig/ui/templatedlg.ui:77
+#: sfx2/uiconfig/ui/templatedlg.ui:76
msgctxt "templatedlg|hidedialogcb"
msgid "Show this dialog at startup"
msgstr "প্রারম্ভে এই ডায়ালগ প্রদর্শন করুন"
#. 32zsB
-#: sfx2/uiconfig/ui/templatedlg.ui:144
+#: sfx2/uiconfig/ui/templatedlg.ui:143
msgctxt "templatedlg|search_filter|tooltip_text"
msgid "Search"
msgstr "অনুসন্ধান"
#. sGZMC
-#: sfx2/uiconfig/ui/templatedlg.ui:148
+#: sfx2/uiconfig/ui/templatedlg.ui:147
msgctxt "templatedlg|search_filter"
msgid "Search..."
msgstr "অনুসন্ধান..."
#. DF5YC
-#: sfx2/uiconfig/ui/templatedlg.ui:167
+#: sfx2/uiconfig/ui/templatedlg.ui:166
msgctxt "templatedlg|action_menu|label"
msgid "_Manage"
msgstr ""
#. LUs2m
-#: sfx2/uiconfig/ui/templatedlg.ui:181
+#: sfx2/uiconfig/ui/templatedlg.ui:180
msgctxt "templatedlg|extended_tip|action_menu"
msgid "Provides commands to create, rename and delete categories, reset default templates, and refresh the template manager."
msgstr ""
#. fXVNY
-#: sfx2/uiconfig/ui/templatedlg.ui:208
+#: sfx2/uiconfig/ui/templatedlg.ui:207
msgctxt "templatedlg|filter_application|tooltip_text"
msgid "Filter by Application"
msgstr "অ্যাপ্লিকেশন দ্বারা ফিল্টার করুন"
#. tqVhJ
-#: sfx2/uiconfig/ui/templatedlg.ui:210
+#: sfx2/uiconfig/ui/templatedlg.ui:209
msgctxt "templatedlg|applist"
msgid "All Applications"
msgstr "সমস্ত অ্যাপ্লিকেশন"
#. pD6pU
-#: sfx2/uiconfig/ui/templatedlg.ui:211
+#: sfx2/uiconfig/ui/templatedlg.ui:210
msgctxt "templatedlg|applist"
msgid "Text Documents"
msgstr ""
#. eECt7
-#: sfx2/uiconfig/ui/templatedlg.ui:212
+#: sfx2/uiconfig/ui/templatedlg.ui:211
msgctxt "templatedlg|applist"
msgid "Spreadsheets"
msgstr "স্প্রেডশীট"
#. ajLbV
-#: sfx2/uiconfig/ui/templatedlg.ui:213
+#: sfx2/uiconfig/ui/templatedlg.ui:212
msgctxt "templatedlg|applist"
msgid "Presentations"
msgstr "উপস্থাপনা"
#. LfUzB
-#: sfx2/uiconfig/ui/templatedlg.ui:214
+#: sfx2/uiconfig/ui/templatedlg.ui:213
msgctxt "templatedlg|applist"
msgid "Drawings"
msgstr "অঙ্কন"
#. t7zE7
-#: sfx2/uiconfig/ui/templatedlg.ui:228
+#: sfx2/uiconfig/ui/templatedlg.ui:227
msgctxt "templatedlg|filter_folder|tooltip_text"
msgid "Filter by Category"
msgstr "বিভাগ দ্বারা ফিল্টার করুন"
#. 93CGw
-#: sfx2/uiconfig/ui/templatedlg.ui:230
+#: sfx2/uiconfig/ui/templatedlg.ui:229
msgctxt "templatedlg|folderlist"
msgid "All Categories"
msgstr "সকল বিভাগ"
#. NF9wE
-#: sfx2/uiconfig/ui/templatedlg.ui:251
+#: sfx2/uiconfig/ui/templatedlg.ui:250
msgctxt "templatedlg|label1"
msgid "Filter"
msgstr "পরিশোধক"
#. ewTL3
-#: sfx2/uiconfig/ui/templatedlg.ui:357
+#: sfx2/uiconfig/ui/templatedlg.ui:356
msgctxt "templatedlg|treeviewcolumn1"
msgid "Name"
msgstr ""
#. 7EJRA
-#: sfx2/uiconfig/ui/templatedlg.ui:374
+#: sfx2/uiconfig/ui/templatedlg.ui:373
msgctxt "templatedlg|treeviewcolumn2"
msgid "Category"
msgstr ""
#. AC27i
-#: sfx2/uiconfig/ui/templatedlg.ui:389
+#: sfx2/uiconfig/ui/templatedlg.ui:388
msgctxt "templatedlg|treeviewcolumn3"
msgid "Application"
msgstr ""
#. eSaBw
-#: sfx2/uiconfig/ui/templatedlg.ui:404
+#: sfx2/uiconfig/ui/templatedlg.ui:403
msgctxt "templatedlg|treeviewcolumn4"
msgid "Modified"
msgstr ""
#. pNzYA
-#: sfx2/uiconfig/ui/templatedlg.ui:419
+#: sfx2/uiconfig/ui/templatedlg.ui:418
msgctxt "templatedlg|treeviewcolumn5"
msgid "Size"
msgstr ""
#. j39jM
-#: sfx2/uiconfig/ui/templatedlg.ui:445
+#: sfx2/uiconfig/ui/templatedlg.ui:444
msgctxt "templatedlg|thumbnailviewlabel"
msgid "Template List"
msgstr "টেমপ্লেট তালিকা"
#. yEhgP
-#: sfx2/uiconfig/ui/templatedlg.ui:464
+#: sfx2/uiconfig/ui/templatedlg.ui:463
msgctxt "templatedlg|thumbnail_view_btn|tooltip_text"
msgid "Thumbnail View"
msgstr ""
#. j76ke
-#: sfx2/uiconfig/ui/templatedlg.ui:481
+#: sfx2/uiconfig/ui/templatedlg.ui:480
msgctxt "templatedlg|list_view_btn|tooltip_text"
msgid "List View"
msgstr ""
diff --git a/source/bn/helpcontent2/source/auxiliary.po b/source/bn/helpcontent2/source/auxiliary.po
index 4618fba8872..833093b2069 100644
--- a/source/bn/helpcontent2/source/auxiliary.po
+++ b/source/bn/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-11-25 19:33+0100\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
"PO-Revision-Date: 2018-07-19 12:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -313,11 +313,11 @@ msgctxt ""
msgid "Writing Calc Macros"
msgstr ""
-#. Q59GN
+#. vBXqp
#: scalc.tree
msgctxt ""
"scalc.tree\n"
-"0815\n"
+"0816\n"
"node.text"
msgid "Miscellaneous"
msgstr "বিবিধ"
diff --git a/source/bn/sfx2/messages.po b/source/bn/sfx2/messages.po
index 9e07c35346d..86a77517859 100644
--- a/source/bn/sfx2/messages.po
+++ b/source/bn/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-08-24 12:29+0200\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
"PO-Revision-Date: 2018-10-21 19:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2977,7 +2977,7 @@ msgid "No"
msgstr "না"
#. kDKBB
-#: sfx2/uiconfig/ui/commandpopup.ui:36
+#: sfx2/uiconfig/ui/commandpopup.ui:35
msgctxt "commandpopup|entry"
msgid "Search command"
msgstr ""
@@ -4985,140 +4985,140 @@ msgid "or Create a New Category"
msgstr ""
#. eUWTy
-#: sfx2/uiconfig/ui/templatedlg.ui:46
+#: sfx2/uiconfig/ui/templatedlg.ui:44
msgctxt "templatedlg|TemplateDialog"
msgid "Templates"
msgstr "ফর্মা"
#. rhuYP
-#: sfx2/uiconfig/ui/templatedlg.ui:77
+#: sfx2/uiconfig/ui/templatedlg.ui:76
msgctxt "templatedlg|hidedialogcb"
msgid "Show this dialog at startup"
msgstr ""
#. 32zsB
-#: sfx2/uiconfig/ui/templatedlg.ui:144
+#: sfx2/uiconfig/ui/templatedlg.ui:143
#, fuzzy
msgctxt "templatedlg|search_filter|tooltip_text"
msgid "Search"
msgstr "অনুসন্ধান"
#. sGZMC
-#: sfx2/uiconfig/ui/templatedlg.ui:148
+#: sfx2/uiconfig/ui/templatedlg.ui:147
msgctxt "templatedlg|search_filter"
msgid "Search..."
msgstr "অনুসন্ধান..."
#. DF5YC
-#: sfx2/uiconfig/ui/templatedlg.ui:167
+#: sfx2/uiconfig/ui/templatedlg.ui:166
msgctxt "templatedlg|action_menu|label"
msgid "_Manage"
msgstr ""
#. LUs2m
-#: sfx2/uiconfig/ui/templatedlg.ui:181
+#: sfx2/uiconfig/ui/templatedlg.ui:180
msgctxt "templatedlg|extended_tip|action_menu"
msgid "Provides commands to create, rename and delete categories, reset default templates, and refresh the template manager."
msgstr ""
#. fXVNY
-#: sfx2/uiconfig/ui/templatedlg.ui:208
+#: sfx2/uiconfig/ui/templatedlg.ui:207
msgctxt "templatedlg|filter_application|tooltip_text"
msgid "Filter by Application"
msgstr ""
#. tqVhJ
-#: sfx2/uiconfig/ui/templatedlg.ui:210
+#: sfx2/uiconfig/ui/templatedlg.ui:209
msgctxt "templatedlg|applist"
msgid "All Applications"
msgstr ""
#. pD6pU
-#: sfx2/uiconfig/ui/templatedlg.ui:211
+#: sfx2/uiconfig/ui/templatedlg.ui:210
msgctxt "templatedlg|applist"
msgid "Text Documents"
msgstr ""
#. eECt7
-#: sfx2/uiconfig/ui/templatedlg.ui:212
+#: sfx2/uiconfig/ui/templatedlg.ui:211
msgctxt "templatedlg|applist"
msgid "Spreadsheets"
msgstr "স্প্রেডশীট"
#. ajLbV
-#: sfx2/uiconfig/ui/templatedlg.ui:213
+#: sfx2/uiconfig/ui/templatedlg.ui:212
msgctxt "templatedlg|applist"
msgid "Presentations"
msgstr "উপস্থাপনা"
#. LfUzB
-#: sfx2/uiconfig/ui/templatedlg.ui:214
+#: sfx2/uiconfig/ui/templatedlg.ui:213
msgctxt "templatedlg|applist"
msgid "Drawings"
msgstr "অঙ্কন"
#. t7zE7
-#: sfx2/uiconfig/ui/templatedlg.ui:228
+#: sfx2/uiconfig/ui/templatedlg.ui:227
msgctxt "templatedlg|filter_folder|tooltip_text"
msgid "Filter by Category"
msgstr ""
#. 93CGw
-#: sfx2/uiconfig/ui/templatedlg.ui:230
+#: sfx2/uiconfig/ui/templatedlg.ui:229
msgctxt "templatedlg|folderlist"
msgid "All Categories"
msgstr ""
#. NF9wE
-#: sfx2/uiconfig/ui/templatedlg.ui:251
+#: sfx2/uiconfig/ui/templatedlg.ui:250
msgctxt "templatedlg|label1"
msgid "Filter"
msgstr "পরিশোধক"
#. ewTL3
-#: sfx2/uiconfig/ui/templatedlg.ui:357
+#: sfx2/uiconfig/ui/templatedlg.ui:356
msgctxt "templatedlg|treeviewcolumn1"
msgid "Name"
msgstr ""
#. 7EJRA
-#: sfx2/uiconfig/ui/templatedlg.ui:374
+#: sfx2/uiconfig/ui/templatedlg.ui:373
msgctxt "templatedlg|treeviewcolumn2"
msgid "Category"
msgstr ""
#. AC27i
-#: sfx2/uiconfig/ui/templatedlg.ui:389
+#: sfx2/uiconfig/ui/templatedlg.ui:388
msgctxt "templatedlg|treeviewcolumn3"
msgid "Application"
msgstr ""
#. eSaBw
-#: sfx2/uiconfig/ui/templatedlg.ui:404
+#: sfx2/uiconfig/ui/templatedlg.ui:403
msgctxt "templatedlg|treeviewcolumn4"
msgid "Modified"
msgstr ""
#. pNzYA
-#: sfx2/uiconfig/ui/templatedlg.ui:419
+#: sfx2/uiconfig/ui/templatedlg.ui:418
msgctxt "templatedlg|treeviewcolumn5"
msgid "Size"
msgstr ""
#. j39jM
-#: sfx2/uiconfig/ui/templatedlg.ui:445
+#: sfx2/uiconfig/ui/templatedlg.ui:444
msgctxt "templatedlg|thumbnailviewlabel"
msgid "Template List"
msgstr ""
#. yEhgP
-#: sfx2/uiconfig/ui/templatedlg.ui:464
+#: sfx2/uiconfig/ui/templatedlg.ui:463
msgctxt "templatedlg|thumbnail_view_btn|tooltip_text"
msgid "Thumbnail View"
msgstr ""
#. j76ke
-#: sfx2/uiconfig/ui/templatedlg.ui:481
+#: sfx2/uiconfig/ui/templatedlg.ui:480
msgctxt "templatedlg|list_view_btn|tooltip_text"
msgid "List View"
msgstr ""
diff --git a/source/bo/helpcontent2/source/auxiliary.po b/source/bo/helpcontent2/source/auxiliary.po
index ba1fd4015a0..057429eb6d7 100644
--- a/source/bo/helpcontent2/source/auxiliary.po
+++ b/source/bo/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-11-25 19:33+0100\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
"PO-Revision-Date: 2018-07-19 12:46+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -313,11 +313,11 @@ msgctxt ""
msgid "Writing Calc Macros"
msgstr ""
-#. Q59GN
+#. vBXqp
#: scalc.tree
msgctxt ""
"scalc.tree\n"
-"0815\n"
+"0816\n"
"node.text"
msgid "Miscellaneous"
msgstr "གཞན་དག་"
diff --git a/source/bo/sfx2/messages.po b/source/bo/sfx2/messages.po
index 69840114de5..5951ffbf6e0 100644
--- a/source/bo/sfx2/messages.po
+++ b/source/bo/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-08-24 12:29+0200\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
"PO-Revision-Date: 2018-10-21 19:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2976,7 +2976,7 @@ msgid "No"
msgstr "མིན།"
#. kDKBB
-#: sfx2/uiconfig/ui/commandpopup.ui:36
+#: sfx2/uiconfig/ui/commandpopup.ui:35
msgctxt "commandpopup|entry"
msgid "Search command"
msgstr ""
@@ -4981,142 +4981,142 @@ msgid "or Create a New Category"
msgstr ""
#. eUWTy
-#: sfx2/uiconfig/ui/templatedlg.ui:46
+#: sfx2/uiconfig/ui/templatedlg.ui:44
msgctxt "templatedlg|TemplateDialog"
msgid "Templates"
msgstr "ཡིག་ཚགས་མ་པང་རིགས་དབྱེ།"
#. rhuYP
-#: sfx2/uiconfig/ui/templatedlg.ui:77
+#: sfx2/uiconfig/ui/templatedlg.ui:76
msgctxt "templatedlg|hidedialogcb"
msgid "Show this dialog at startup"
msgstr ""
#. 32zsB
-#: sfx2/uiconfig/ui/templatedlg.ui:144
+#: sfx2/uiconfig/ui/templatedlg.ui:143
#, fuzzy
msgctxt "templatedlg|search_filter|tooltip_text"
msgid "Search"
msgstr "འཚོལ་བ།"
#. sGZMC
-#: sfx2/uiconfig/ui/templatedlg.ui:148
+#: sfx2/uiconfig/ui/templatedlg.ui:147
msgctxt "templatedlg|search_filter"
msgid "Search..."
msgstr "འཚོལ་བ་དང་བརྗེ་བ།"
#. DF5YC
-#: sfx2/uiconfig/ui/templatedlg.ui:167
+#: sfx2/uiconfig/ui/templatedlg.ui:166
msgctxt "templatedlg|action_menu|label"
msgid "_Manage"
msgstr ""
#. LUs2m
-#: sfx2/uiconfig/ui/templatedlg.ui:181
+#: sfx2/uiconfig/ui/templatedlg.ui:180
msgctxt "templatedlg|extended_tip|action_menu"
msgid "Provides commands to create, rename and delete categories, reset default templates, and refresh the template manager."
msgstr ""
#. fXVNY
-#: sfx2/uiconfig/ui/templatedlg.ui:208
+#: sfx2/uiconfig/ui/templatedlg.ui:207
msgctxt "templatedlg|filter_application|tooltip_text"
msgid "Filter by Application"
msgstr ""
#. tqVhJ
-#: sfx2/uiconfig/ui/templatedlg.ui:210
+#: sfx2/uiconfig/ui/templatedlg.ui:209
msgctxt "templatedlg|applist"
msgid "All Applications"
msgstr ""
#. pD6pU
-#: sfx2/uiconfig/ui/templatedlg.ui:211
+#: sfx2/uiconfig/ui/templatedlg.ui:210
msgctxt "templatedlg|applist"
msgid "Text Documents"
msgstr ""
#. eECt7
-#: sfx2/uiconfig/ui/templatedlg.ui:212
+#: sfx2/uiconfig/ui/templatedlg.ui:211
msgctxt "templatedlg|applist"
msgid "Spreadsheets"
msgstr "ལས་དེབ།"
#. ajLbV
-#: sfx2/uiconfig/ui/templatedlg.ui:213
+#: sfx2/uiconfig/ui/templatedlg.ui:212
msgctxt "templatedlg|applist"
msgid "Presentations"
msgstr "གསལ་སྟོན་ཡིག་ཟིན།"
#. LfUzB
-#: sfx2/uiconfig/ui/templatedlg.ui:214
+#: sfx2/uiconfig/ui/templatedlg.ui:213
#, fuzzy
msgctxt "templatedlg|applist"
msgid "Drawings"
msgstr "རི་མོ་འབྲི་བ།"
#. t7zE7
-#: sfx2/uiconfig/ui/templatedlg.ui:228
+#: sfx2/uiconfig/ui/templatedlg.ui:227
msgctxt "templatedlg|filter_folder|tooltip_text"
msgid "Filter by Category"
msgstr ""
#. 93CGw
-#: sfx2/uiconfig/ui/templatedlg.ui:230
+#: sfx2/uiconfig/ui/templatedlg.ui:229
msgctxt "templatedlg|folderlist"
msgid "All Categories"
msgstr ""
#. NF9wE
-#: sfx2/uiconfig/ui/templatedlg.ui:251
+#: sfx2/uiconfig/ui/templatedlg.ui:250
#, fuzzy
msgctxt "templatedlg|label1"
msgid "Filter"
msgstr "འཚགས་འདེམས།"
#. ewTL3
-#: sfx2/uiconfig/ui/templatedlg.ui:357
+#: sfx2/uiconfig/ui/templatedlg.ui:356
msgctxt "templatedlg|treeviewcolumn1"
msgid "Name"
msgstr ""
#. 7EJRA
-#: sfx2/uiconfig/ui/templatedlg.ui:374
+#: sfx2/uiconfig/ui/templatedlg.ui:373
msgctxt "templatedlg|treeviewcolumn2"
msgid "Category"
msgstr ""
#. AC27i
-#: sfx2/uiconfig/ui/templatedlg.ui:389
+#: sfx2/uiconfig/ui/templatedlg.ui:388
msgctxt "templatedlg|treeviewcolumn3"
msgid "Application"
msgstr ""
#. eSaBw
-#: sfx2/uiconfig/ui/templatedlg.ui:404
+#: sfx2/uiconfig/ui/templatedlg.ui:403
msgctxt "templatedlg|treeviewcolumn4"
msgid "Modified"
msgstr ""
#. pNzYA
-#: sfx2/uiconfig/ui/templatedlg.ui:419
+#: sfx2/uiconfig/ui/templatedlg.ui:418
msgctxt "templatedlg|treeviewcolumn5"
msgid "Size"
msgstr ""
#. j39jM
-#: sfx2/uiconfig/ui/templatedlg.ui:445
+#: sfx2/uiconfig/ui/templatedlg.ui:444
msgctxt "templatedlg|thumbnailviewlabel"
msgid "Template List"
msgstr ""
#. yEhgP
-#: sfx2/uiconfig/ui/templatedlg.ui:464
+#: sfx2/uiconfig/ui/templatedlg.ui:463
msgctxt "templatedlg|thumbnail_view_btn|tooltip_text"
msgid "Thumbnail View"
msgstr ""
#. j76ke
-#: sfx2/uiconfig/ui/templatedlg.ui:481
+#: sfx2/uiconfig/ui/templatedlg.ui:480
msgctxt "templatedlg|list_view_btn|tooltip_text"
msgid "List View"
msgstr ""
diff --git a/source/br/sfx2/messages.po b/source/br/sfx2/messages.po
index c685e470b7a..a183b41cb56 100644
--- a/source/br/sfx2/messages.po
+++ b/source/br/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-08-24 12:29+0200\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
"PO-Revision-Date: 2018-10-21 19:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2969,7 +2969,7 @@ msgid "No"
msgstr "Ket"
#. kDKBB
-#: sfx2/uiconfig/ui/commandpopup.ui:36
+#: sfx2/uiconfig/ui/commandpopup.ui:35
msgctxt "commandpopup|entry"
msgid "Search command"
msgstr ""
@@ -4908,140 +4908,140 @@ msgid "or Create a New Category"
msgstr "pe krouiñ ur rummad nevez"
#. eUWTy
-#: sfx2/uiconfig/ui/templatedlg.ui:46
+#: sfx2/uiconfig/ui/templatedlg.ui:44
msgctxt "templatedlg|TemplateDialog"
msgid "Templates"
msgstr "Patromoù"
#. rhuYP
-#: sfx2/uiconfig/ui/templatedlg.ui:77
+#: sfx2/uiconfig/ui/templatedlg.ui:76
msgctxt "templatedlg|hidedialogcb"
msgid "Show this dialog at startup"
msgstr ""
#. 32zsB
-#: sfx2/uiconfig/ui/templatedlg.ui:144
+#: sfx2/uiconfig/ui/templatedlg.ui:143
#, fuzzy
msgctxt "templatedlg|search_filter|tooltip_text"
msgid "Search"
msgstr "Klask"
#. sGZMC
-#: sfx2/uiconfig/ui/templatedlg.ui:148
+#: sfx2/uiconfig/ui/templatedlg.ui:147
msgctxt "templatedlg|search_filter"
msgid "Search..."
msgstr "Klask..."
#. DF5YC
-#: sfx2/uiconfig/ui/templatedlg.ui:167
+#: sfx2/uiconfig/ui/templatedlg.ui:166
msgctxt "templatedlg|action_menu|label"
msgid "_Manage"
msgstr ""
#. LUs2m
-#: sfx2/uiconfig/ui/templatedlg.ui:181
+#: sfx2/uiconfig/ui/templatedlg.ui:180
msgctxt "templatedlg|extended_tip|action_menu"
msgid "Provides commands to create, rename and delete categories, reset default templates, and refresh the template manager."
msgstr ""
#. fXVNY
-#: sfx2/uiconfig/ui/templatedlg.ui:208
+#: sfx2/uiconfig/ui/templatedlg.ui:207
msgctxt "templatedlg|filter_application|tooltip_text"
msgid "Filter by Application"
msgstr ""
#. tqVhJ
-#: sfx2/uiconfig/ui/templatedlg.ui:210
+#: sfx2/uiconfig/ui/templatedlg.ui:209
msgctxt "templatedlg|applist"
msgid "All Applications"
msgstr "An holl arloadoù"
#. pD6pU
-#: sfx2/uiconfig/ui/templatedlg.ui:211
+#: sfx2/uiconfig/ui/templatedlg.ui:210
msgctxt "templatedlg|applist"
msgid "Text Documents"
msgstr ""
#. eECt7
-#: sfx2/uiconfig/ui/templatedlg.ui:212
+#: sfx2/uiconfig/ui/templatedlg.ui:211
msgctxt "templatedlg|applist"
msgid "Spreadsheets"
msgstr "Renkelloù"
#. ajLbV
-#: sfx2/uiconfig/ui/templatedlg.ui:213
+#: sfx2/uiconfig/ui/templatedlg.ui:212
msgctxt "templatedlg|applist"
msgid "Presentations"
msgstr "Kinnigadennoù"
#. LfUzB
-#: sfx2/uiconfig/ui/templatedlg.ui:214
+#: sfx2/uiconfig/ui/templatedlg.ui:213
msgctxt "templatedlg|applist"
msgid "Drawings"
msgstr "Tresadennoù"
#. t7zE7
-#: sfx2/uiconfig/ui/templatedlg.ui:228
+#: sfx2/uiconfig/ui/templatedlg.ui:227
msgctxt "templatedlg|filter_folder|tooltip_text"
msgid "Filter by Category"
msgstr ""
#. 93CGw
-#: sfx2/uiconfig/ui/templatedlg.ui:230
+#: sfx2/uiconfig/ui/templatedlg.ui:229
msgctxt "templatedlg|folderlist"
msgid "All Categories"
msgstr "An holl rummadoù"
#. NF9wE
-#: sfx2/uiconfig/ui/templatedlg.ui:251
+#: sfx2/uiconfig/ui/templatedlg.ui:250
msgctxt "templatedlg|label1"
msgid "Filter"
msgstr "Silañ"
#. ewTL3
-#: sfx2/uiconfig/ui/templatedlg.ui:357
+#: sfx2/uiconfig/ui/templatedlg.ui:356
msgctxt "templatedlg|treeviewcolumn1"
msgid "Name"
msgstr ""
#. 7EJRA
-#: sfx2/uiconfig/ui/templatedlg.ui:374
+#: sfx2/uiconfig/ui/templatedlg.ui:373
msgctxt "templatedlg|treeviewcolumn2"
msgid "Category"
msgstr ""
#. AC27i
-#: sfx2/uiconfig/ui/templatedlg.ui:389
+#: sfx2/uiconfig/ui/templatedlg.ui:388
msgctxt "templatedlg|treeviewcolumn3"
msgid "Application"
msgstr ""
#. eSaBw
-#: sfx2/uiconfig/ui/templatedlg.ui:404
+#: sfx2/uiconfig/ui/templatedlg.ui:403
msgctxt "templatedlg|treeviewcolumn4"
msgid "Modified"
msgstr ""
#. pNzYA
-#: sfx2/uiconfig/ui/templatedlg.ui:419
+#: sfx2/uiconfig/ui/templatedlg.ui:418
msgctxt "templatedlg|treeviewcolumn5"
msgid "Size"
msgstr ""
#. j39jM
-#: sfx2/uiconfig/ui/templatedlg.ui:445
+#: sfx2/uiconfig/ui/templatedlg.ui:444
msgctxt "templatedlg|thumbnailviewlabel"
msgid "Template List"
msgstr ""
#. yEhgP
-#: sfx2/uiconfig/ui/templatedlg.ui:464
+#: sfx2/uiconfig/ui/templatedlg.ui:463
msgctxt "templatedlg|thumbnail_view_btn|tooltip_text"
msgid "Thumbnail View"
msgstr ""
#. j76ke
-#: sfx2/uiconfig/ui/templatedlg.ui:481
+#: sfx2/uiconfig/ui/templatedlg.ui:480
msgctxt "templatedlg|list_view_btn|tooltip_text"
msgid "List View"
msgstr ""
diff --git a/source/brx/sfx2/messages.po b/source/brx/sfx2/messages.po
index c02b8fb5735..39f8db7fc5f 100644
--- a/source/brx/sfx2/messages.po
+++ b/source/brx/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-08-24 12:29+0200\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
"PO-Revision-Date: 2018-10-21 19:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2947,7 +2947,7 @@ msgid "No"
msgstr "नङा"
#. kDKBB
-#: sfx2/uiconfig/ui/commandpopup.ui:36
+#: sfx2/uiconfig/ui/commandpopup.ui:35
msgctxt "commandpopup|entry"
msgid "Search command"
msgstr ""
@@ -4941,141 +4941,141 @@ msgid "or Create a New Category"
msgstr ""
#. eUWTy
-#: sfx2/uiconfig/ui/templatedlg.ui:46
+#: sfx2/uiconfig/ui/templatedlg.ui:44
msgctxt "templatedlg|TemplateDialog"
msgid "Templates"
msgstr "टेमप्लेटफोर"
#. rhuYP
-#: sfx2/uiconfig/ui/templatedlg.ui:77
+#: sfx2/uiconfig/ui/templatedlg.ui:76
msgctxt "templatedlg|hidedialogcb"
msgid "Show this dialog at startup"
msgstr ""
#. 32zsB
-#: sfx2/uiconfig/ui/templatedlg.ui:144
+#: sfx2/uiconfig/ui/templatedlg.ui:143
#, fuzzy
msgctxt "templatedlg|search_filter|tooltip_text"
msgid "Search"
msgstr "नागिर"
#. sGZMC
-#: sfx2/uiconfig/ui/templatedlg.ui:148
+#: sfx2/uiconfig/ui/templatedlg.ui:147
msgctxt "templatedlg|search_filter"
msgid "Search..."
msgstr "नायगिर..."
#. DF5YC
-#: sfx2/uiconfig/ui/templatedlg.ui:167
+#: sfx2/uiconfig/ui/templatedlg.ui:166
msgctxt "templatedlg|action_menu|label"
msgid "_Manage"
msgstr ""
#. LUs2m
-#: sfx2/uiconfig/ui/templatedlg.ui:181
+#: sfx2/uiconfig/ui/templatedlg.ui:180
msgctxt "templatedlg|extended_tip|action_menu"
msgid "Provides commands to create, rename and delete categories, reset default templates, and refresh the template manager."
msgstr ""
#. fXVNY
-#: sfx2/uiconfig/ui/templatedlg.ui:208
+#: sfx2/uiconfig/ui/templatedlg.ui:207
msgctxt "templatedlg|filter_application|tooltip_text"
msgid "Filter by Application"
msgstr ""
#. tqVhJ
-#: sfx2/uiconfig/ui/templatedlg.ui:210
+#: sfx2/uiconfig/ui/templatedlg.ui:209
msgctxt "templatedlg|applist"
msgid "All Applications"
msgstr ""
#. pD6pU
-#: sfx2/uiconfig/ui/templatedlg.ui:211
+#: sfx2/uiconfig/ui/templatedlg.ui:210
msgctxt "templatedlg|applist"
msgid "Text Documents"
msgstr ""
#. eECt7
-#: sfx2/uiconfig/ui/templatedlg.ui:212
+#: sfx2/uiconfig/ui/templatedlg.ui:211
msgctxt "templatedlg|applist"
msgid "Spreadsheets"
msgstr "स्पेडशीटस"
#. ajLbV
-#: sfx2/uiconfig/ui/templatedlg.ui:213
+#: sfx2/uiconfig/ui/templatedlg.ui:212
msgctxt "templatedlg|applist"
msgid "Presentations"
msgstr "प्रेजेन्टेसनफोर"
#. LfUzB
-#: sfx2/uiconfig/ui/templatedlg.ui:214
+#: sfx2/uiconfig/ui/templatedlg.ui:213
#, fuzzy
msgctxt "templatedlg|applist"
msgid "Drawings"
msgstr "सावगारि"
#. t7zE7
-#: sfx2/uiconfig/ui/templatedlg.ui:228
+#: sfx2/uiconfig/ui/templatedlg.ui:227
msgctxt "templatedlg|filter_folder|tooltip_text"
msgid "Filter by Category"
msgstr ""
#. 93CGw
-#: sfx2/uiconfig/ui/templatedlg.ui:230
+#: sfx2/uiconfig/ui/templatedlg.ui:229
msgctxt "templatedlg|folderlist"
msgid "All Categories"
msgstr ""
#. NF9wE
-#: sfx2/uiconfig/ui/templatedlg.ui:251
+#: sfx2/uiconfig/ui/templatedlg.ui:250
msgctxt "templatedlg|label1"
msgid "Filter"
msgstr "फिल्टार"
#. ewTL3
-#: sfx2/uiconfig/ui/templatedlg.ui:357
+#: sfx2/uiconfig/ui/templatedlg.ui:356
msgctxt "templatedlg|treeviewcolumn1"
msgid "Name"
msgstr ""
#. 7EJRA
-#: sfx2/uiconfig/ui/templatedlg.ui:374
+#: sfx2/uiconfig/ui/templatedlg.ui:373
msgctxt "templatedlg|treeviewcolumn2"
msgid "Category"
msgstr ""
#. AC27i
-#: sfx2/uiconfig/ui/templatedlg.ui:389
+#: sfx2/uiconfig/ui/templatedlg.ui:388
msgctxt "templatedlg|treeviewcolumn3"
msgid "Application"
msgstr ""
#. eSaBw
-#: sfx2/uiconfig/ui/templatedlg.ui:404
+#: sfx2/uiconfig/ui/templatedlg.ui:403
msgctxt "templatedlg|treeviewcolumn4"
msgid "Modified"
msgstr ""
#. pNzYA
-#: sfx2/uiconfig/ui/templatedlg.ui:419
+#: sfx2/uiconfig/ui/templatedlg.ui:418
msgctxt "templatedlg|treeviewcolumn5"
msgid "Size"
msgstr ""
#. j39jM
-#: sfx2/uiconfig/ui/templatedlg.ui:445
+#: sfx2/uiconfig/ui/templatedlg.ui:444
msgctxt "templatedlg|thumbnailviewlabel"
msgid "Template List"
msgstr ""
#. yEhgP
-#: sfx2/uiconfig/ui/templatedlg.ui:464
+#: sfx2/uiconfig/ui/templatedlg.ui:463
msgctxt "templatedlg|thumbnail_view_btn|tooltip_text"
msgid "Thumbnail View"
msgstr ""
#. j76ke
-#: sfx2/uiconfig/ui/templatedlg.ui:481
+#: sfx2/uiconfig/ui/templatedlg.ui:480
msgctxt "templatedlg|list_view_btn|tooltip_text"
msgid "List View"
msgstr ""
diff --git a/source/bs/helpcontent2/source/auxiliary.po b/source/bs/helpcontent2/source/auxiliary.po
index ada1599be57..8a2e4fdcfa2 100644
--- a/source/bs/helpcontent2/source/auxiliary.po
+++ b/source/bs/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-11-25 19:33+0100\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
"PO-Revision-Date: 2018-07-19 12:46+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -313,11 +313,11 @@ msgctxt ""
msgid "Writing Calc Macros"
msgstr ""
-#. Q59GN
+#. vBXqp
#: scalc.tree
msgctxt ""
"scalc.tree\n"
-"0815\n"
+"0816\n"
"node.text"
msgid "Miscellaneous"
msgstr "Razno"
diff --git a/source/bs/sfx2/messages.po b/source/bs/sfx2/messages.po
index 68810a717dc..e0a0ca52189 100644
--- a/source/bs/sfx2/messages.po
+++ b/source/bs/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-08-24 12:29+0200\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
"PO-Revision-Date: 2018-10-21 19:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2978,7 +2978,7 @@ msgid "No"
msgstr "Ne"
#. kDKBB
-#: sfx2/uiconfig/ui/commandpopup.ui:36
+#: sfx2/uiconfig/ui/commandpopup.ui:35
msgctxt "commandpopup|entry"
msgid "Search command"
msgstr ""
@@ -4970,142 +4970,142 @@ msgid "or Create a New Category"
msgstr ""
#. eUWTy
-#: sfx2/uiconfig/ui/templatedlg.ui:46
+#: sfx2/uiconfig/ui/templatedlg.ui:44
#, fuzzy
msgctxt "templatedlg|TemplateDialog"
msgid "Templates"
msgstr "Š_abloni"
#. rhuYP
-#: sfx2/uiconfig/ui/templatedlg.ui:77
+#: sfx2/uiconfig/ui/templatedlg.ui:76
msgctxt "templatedlg|hidedialogcb"
msgid "Show this dialog at startup"
msgstr ""
#. 32zsB
-#: sfx2/uiconfig/ui/templatedlg.ui:144
+#: sfx2/uiconfig/ui/templatedlg.ui:143
#, fuzzy
msgctxt "templatedlg|search_filter|tooltip_text"
msgid "Search"
msgstr "Pretraživanje"
#. sGZMC
-#: sfx2/uiconfig/ui/templatedlg.ui:148
+#: sfx2/uiconfig/ui/templatedlg.ui:147
msgctxt "templatedlg|search_filter"
msgid "Search..."
msgstr "Pretražujem..."
#. DF5YC
-#: sfx2/uiconfig/ui/templatedlg.ui:167
+#: sfx2/uiconfig/ui/templatedlg.ui:166
msgctxt "templatedlg|action_menu|label"
msgid "_Manage"
msgstr ""
#. LUs2m
-#: sfx2/uiconfig/ui/templatedlg.ui:181
+#: sfx2/uiconfig/ui/templatedlg.ui:180
msgctxt "templatedlg|extended_tip|action_menu"
msgid "Provides commands to create, rename and delete categories, reset default templates, and refresh the template manager."
msgstr ""
#. fXVNY
-#: sfx2/uiconfig/ui/templatedlg.ui:208
+#: sfx2/uiconfig/ui/templatedlg.ui:207
msgctxt "templatedlg|filter_application|tooltip_text"
msgid "Filter by Application"
msgstr ""
#. tqVhJ
-#: sfx2/uiconfig/ui/templatedlg.ui:210
+#: sfx2/uiconfig/ui/templatedlg.ui:209
msgctxt "templatedlg|applist"
msgid "All Applications"
msgstr ""
#. pD6pU
-#: sfx2/uiconfig/ui/templatedlg.ui:211
+#: sfx2/uiconfig/ui/templatedlg.ui:210
msgctxt "templatedlg|applist"
msgid "Text Documents"
msgstr ""
#. eECt7
-#: sfx2/uiconfig/ui/templatedlg.ui:212
+#: sfx2/uiconfig/ui/templatedlg.ui:211
msgctxt "templatedlg|applist"
msgid "Spreadsheets"
msgstr "Tabelarni dokumenti"
#. ajLbV
-#: sfx2/uiconfig/ui/templatedlg.ui:213
+#: sfx2/uiconfig/ui/templatedlg.ui:212
msgctxt "templatedlg|applist"
msgid "Presentations"
msgstr "Prezentacije"
#. LfUzB
-#: sfx2/uiconfig/ui/templatedlg.ui:214
+#: sfx2/uiconfig/ui/templatedlg.ui:213
#, fuzzy
msgctxt "templatedlg|applist"
msgid "Drawings"
msgstr "Crtež"
#. t7zE7
-#: sfx2/uiconfig/ui/templatedlg.ui:228
+#: sfx2/uiconfig/ui/templatedlg.ui:227
msgctxt "templatedlg|filter_folder|tooltip_text"
msgid "Filter by Category"
msgstr ""
#. 93CGw
-#: sfx2/uiconfig/ui/templatedlg.ui:230
+#: sfx2/uiconfig/ui/templatedlg.ui:229
msgctxt "templatedlg|folderlist"
msgid "All Categories"
msgstr ""
#. NF9wE
-#: sfx2/uiconfig/ui/templatedlg.ui:251
+#: sfx2/uiconfig/ui/templatedlg.ui:250
msgctxt "templatedlg|label1"
msgid "Filter"
msgstr "Filter"
#. ewTL3
-#: sfx2/uiconfig/ui/templatedlg.ui:357
+#: sfx2/uiconfig/ui/templatedlg.ui:356
msgctxt "templatedlg|treeviewcolumn1"
msgid "Name"
msgstr ""
#. 7EJRA
-#: sfx2/uiconfig/ui/templatedlg.ui:374
+#: sfx2/uiconfig/ui/templatedlg.ui:373
msgctxt "templatedlg|treeviewcolumn2"
msgid "Category"
msgstr ""
#. AC27i
-#: sfx2/uiconfig/ui/templatedlg.ui:389
+#: sfx2/uiconfig/ui/templatedlg.ui:388
msgctxt "templatedlg|treeviewcolumn3"
msgid "Application"
msgstr ""
#. eSaBw
-#: sfx2/uiconfig/ui/templatedlg.ui:404
+#: sfx2/uiconfig/ui/templatedlg.ui:403
msgctxt "templatedlg|treeviewcolumn4"
msgid "Modified"
msgstr ""
#. pNzYA
-#: sfx2/uiconfig/ui/templatedlg.ui:419
+#: sfx2/uiconfig/ui/templatedlg.ui:418
msgctxt "templatedlg|treeviewcolumn5"
msgid "Size"
msgstr ""
#. j39jM
-#: sfx2/uiconfig/ui/templatedlg.ui:445
+#: sfx2/uiconfig/ui/templatedlg.ui:444
msgctxt "templatedlg|thumbnailviewlabel"
msgid "Template List"
msgstr ""
#. yEhgP
-#: sfx2/uiconfig/ui/templatedlg.ui:464
+#: sfx2/uiconfig/ui/templatedlg.ui:463
msgctxt "templatedlg|thumbnail_view_btn|tooltip_text"
msgid "Thumbnail View"
msgstr ""
#. j76ke
-#: sfx2/uiconfig/ui/templatedlg.ui:481
+#: sfx2/uiconfig/ui/templatedlg.ui:480
msgctxt "templatedlg|list_view_btn|tooltip_text"
msgid "List View"
msgstr ""
diff --git a/source/ca-valencia/helpcontent2/source/auxiliary.po b/source/ca-valencia/helpcontent2/source/auxiliary.po
index da861408ebb..3507790b3fc 100644
--- a/source/ca-valencia/helpcontent2/source/auxiliary.po
+++ b/source/ca-valencia/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-11-25 19:33+0100\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
"PO-Revision-Date: 2020-05-24 12:32+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/auxiliary/ca_VALENCIA/>\n"
@@ -313,11 +313,11 @@ msgctxt ""
msgid "Writing Calc Macros"
msgstr ""
-#. Q59GN
+#. vBXqp
#: scalc.tree
msgctxt ""
"scalc.tree\n"
-"0815\n"
+"0816\n"
"node.text"
msgid "Miscellaneous"
msgstr "Miscel·lània"
diff --git a/source/ca-valencia/sfx2/messages.po b/source/ca-valencia/sfx2/messages.po
index d52a0832579..0b38cb49a3e 100644
--- a/source/ca-valencia/sfx2/messages.po
+++ b/source/ca-valencia/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-08-24 12:29+0200\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
"PO-Revision-Date: 2021-01-12 09:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/ca_VALENCIA/>\n"
@@ -2959,7 +2959,7 @@ msgid "No"
msgstr "No"
#. kDKBB
-#: sfx2/uiconfig/ui/commandpopup.ui:36
+#: sfx2/uiconfig/ui/commandpopup.ui:35
msgctxt "commandpopup|entry"
msgid "Search command"
msgstr ""
@@ -4899,139 +4899,139 @@ msgid "or Create a New Category"
msgstr "o creeu una categoria nova"
#. eUWTy
-#: sfx2/uiconfig/ui/templatedlg.ui:46
+#: sfx2/uiconfig/ui/templatedlg.ui:44
msgctxt "templatedlg|TemplateDialog"
msgid "Templates"
msgstr "Plantilles"
#. rhuYP
-#: sfx2/uiconfig/ui/templatedlg.ui:77
+#: sfx2/uiconfig/ui/templatedlg.ui:76
msgctxt "templatedlg|hidedialogcb"
msgid "Show this dialog at startup"
msgstr "Mostra este diàleg en iniciar"
#. 32zsB
-#: sfx2/uiconfig/ui/templatedlg.ui:144
+#: sfx2/uiconfig/ui/templatedlg.ui:143
msgctxt "templatedlg|search_filter|tooltip_text"
msgid "Search"
msgstr "Busca"
#. sGZMC
-#: sfx2/uiconfig/ui/templatedlg.ui:148
+#: sfx2/uiconfig/ui/templatedlg.ui:147
msgctxt "templatedlg|search_filter"
msgid "Search..."
msgstr "Busca..."
#. DF5YC
-#: sfx2/uiconfig/ui/templatedlg.ui:167
+#: sfx2/uiconfig/ui/templatedlg.ui:166
msgctxt "templatedlg|action_menu|label"
msgid "_Manage"
msgstr ""
#. LUs2m
-#: sfx2/uiconfig/ui/templatedlg.ui:181
+#: sfx2/uiconfig/ui/templatedlg.ui:180
msgctxt "templatedlg|extended_tip|action_menu"
msgid "Provides commands to create, rename and delete categories, reset default templates, and refresh the template manager."
msgstr ""
#. fXVNY
-#: sfx2/uiconfig/ui/templatedlg.ui:208
+#: sfx2/uiconfig/ui/templatedlg.ui:207
msgctxt "templatedlg|filter_application|tooltip_text"
msgid "Filter by Application"
msgstr "Filtra per aplicació"
#. tqVhJ
-#: sfx2/uiconfig/ui/templatedlg.ui:210
+#: sfx2/uiconfig/ui/templatedlg.ui:209
msgctxt "templatedlg|applist"
msgid "All Applications"
msgstr "Totes les aplicacions"
#. pD6pU
-#: sfx2/uiconfig/ui/templatedlg.ui:211
+#: sfx2/uiconfig/ui/templatedlg.ui:210
msgctxt "templatedlg|applist"
msgid "Text Documents"
msgstr ""
#. eECt7
-#: sfx2/uiconfig/ui/templatedlg.ui:212
+#: sfx2/uiconfig/ui/templatedlg.ui:211
msgctxt "templatedlg|applist"
msgid "Spreadsheets"
msgstr "Fulls de càlcul"
#. ajLbV
-#: sfx2/uiconfig/ui/templatedlg.ui:213
+#: sfx2/uiconfig/ui/templatedlg.ui:212
msgctxt "templatedlg|applist"
msgid "Presentations"
msgstr "Presentacions"
#. LfUzB
-#: sfx2/uiconfig/ui/templatedlg.ui:214
+#: sfx2/uiconfig/ui/templatedlg.ui:213
msgctxt "templatedlg|applist"
msgid "Drawings"
msgstr "Dibuixos"
#. t7zE7
-#: sfx2/uiconfig/ui/templatedlg.ui:228
+#: sfx2/uiconfig/ui/templatedlg.ui:227
msgctxt "templatedlg|filter_folder|tooltip_text"
msgid "Filter by Category"
msgstr "Filtra per categoria"
#. 93CGw
-#: sfx2/uiconfig/ui/templatedlg.ui:230
+#: sfx2/uiconfig/ui/templatedlg.ui:229
msgctxt "templatedlg|folderlist"
msgid "All Categories"
msgstr "Totes les categories"
#. NF9wE
-#: sfx2/uiconfig/ui/templatedlg.ui:251
+#: sfx2/uiconfig/ui/templatedlg.ui:250
msgctxt "templatedlg|label1"
msgid "Filter"
msgstr "Filtre"
#. ewTL3
-#: sfx2/uiconfig/ui/templatedlg.ui:357
+#: sfx2/uiconfig/ui/templatedlg.ui:356
msgctxt "templatedlg|treeviewcolumn1"
msgid "Name"
msgstr ""
#. 7EJRA
-#: sfx2/uiconfig/ui/templatedlg.ui:374
+#: sfx2/uiconfig/ui/templatedlg.ui:373
msgctxt "templatedlg|treeviewcolumn2"
msgid "Category"
msgstr ""
#. AC27i
-#: sfx2/uiconfig/ui/templatedlg.ui:389
+#: sfx2/uiconfig/ui/templatedlg.ui:388
msgctxt "templatedlg|treeviewcolumn3"
msgid "Application"
msgstr ""
#. eSaBw
-#: sfx2/uiconfig/ui/templatedlg.ui:404
+#: sfx2/uiconfig/ui/templatedlg.ui:403
msgctxt "templatedlg|treeviewcolumn4"
msgid "Modified"
msgstr ""
#. pNzYA
-#: sfx2/uiconfig/ui/templatedlg.ui:419
+#: sfx2/uiconfig/ui/templatedlg.ui:418
msgctxt "templatedlg|treeviewcolumn5"
msgid "Size"
msgstr ""
#. j39jM
-#: sfx2/uiconfig/ui/templatedlg.ui:445
+#: sfx2/uiconfig/ui/templatedlg.ui:444
msgctxt "templatedlg|thumbnailviewlabel"
msgid "Template List"
msgstr "Llista de plantilles"
#. yEhgP
-#: sfx2/uiconfig/ui/templatedlg.ui:464
+#: sfx2/uiconfig/ui/templatedlg.ui:463
msgctxt "templatedlg|thumbnail_view_btn|tooltip_text"
msgid "Thumbnail View"
msgstr ""
#. j76ke
-#: sfx2/uiconfig/ui/templatedlg.ui:481
+#: sfx2/uiconfig/ui/templatedlg.ui:480
msgctxt "templatedlg|list_view_btn|tooltip_text"
msgid "List View"
msgstr ""
diff --git a/source/ca/cui/messages.po b/source/ca/cui/messages.po
index 99279381828..3495112b208 100644
--- a/source/ca/cui/messages.po
+++ b/source/ca/cui/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: 2022-07-08 12:15+0200\n"
-"PO-Revision-Date: 2022-09-09 11:26+0000\n"
+"PO-Revision-Date: 2022-09-21 09:48+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/ca/>\n"
"Language: ca\n"
@@ -3358,7 +3358,7 @@ msgstr "Podeu crear un diagrama basat en una taula de Writer fent clic en la tau
#: cui/inc/tipoftheday.hrc:245
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display Formatting to specify which non-printing characters are displayed."
-msgstr ""
+msgstr "Seleccioneu les opcions a Eines ▸ Opcions ▸ %PRODUCTNAME Writer ▸ Ajudes a la formatació ▸ Formatació de la pantalla per a especificar quins caràcters no imprimibles es mostren."
#. 9cyVB
#: cui/inc/tipoftheday.hrc:246
@@ -3654,7 +3654,7 @@ msgstr "La interfície única contextual mostra funcions en una barra d'eines d'
#: cui/inc/toolbarmode.hrc:31
msgctxt "RID_CUI_TOOLBARMODES"
msgid "The Contextual Groups interface focuses on beginners. It exposes the most frequently used functions on groups with the core action as large icon and a couple of small additional features. All functions have a label. Depending on the context, an additional section provides access to those functions."
-msgstr "La interfície de grups contextuals s'orienta als principiants. Exposa les funcions més utilitzades en grups amb l'acció principal com a icona gran i un parell de petites característiques addicionals. Totes les funcions tenen una etiqueta. Depenent del context, una secció addicional proporciona accés a aquestes funcions."
+msgstr "La interfície de grups contextuals s'orienta als principiants. Exposa les funcions més utilitzades en grups amb l'acció principal com a icona gran i un parell de petites característiques addicionals. Totes les funcions tenen una etiqueta. Depenent del context, una secció addicional proporciona accés a més funcions."
#. Xnz8J
#: cui/inc/treeopt.hrc:34
@@ -4408,7 +4408,7 @@ msgstr "%PRODUCTNAME"
#: cui/uiconfig/ui/accelconfigpage.ui:164
msgctxt "accelconfigpage|extended_tip|office"
msgid "Displays shortcut keys that are common to all the office suite applications."
-msgstr ""
+msgstr "Mostra les tecles de drecera comunes a totes les aplicacions del paquet ofimàtic."
#. jjhUE
#: cui/uiconfig/ui/accelconfigpage.ui:176
@@ -4420,7 +4420,7 @@ msgstr "$(MODULE)"
#: cui/uiconfig/ui/accelconfigpage.ui:185
msgctxt "accelconfigpage|extended_tip|module"
msgid "Displays shortcut keys for the current office suite application."
-msgstr ""
+msgstr "Mostra les tecles de drecera per a l'aplicació actual del paquet ofimàtic."
#. R2nhJ
#: cui/uiconfig/ui/accelconfigpage.ui:212
@@ -4468,13 +4468,13 @@ msgstr "Desa la configuració actual per a la tecla de drecera per tal que la pu
#: cui/uiconfig/ui/accelconfigpage.ui:295
msgctxt "accelconfigpage|tooltip|reset"
msgid "Unsaved modifications to shortcut keys are reverted."
-msgstr ""
+msgstr "Es revertiran les modificacions no desades a les tecles de drecera."
#. stv4J
#: cui/uiconfig/ui/accelconfigpage.ui:298
msgctxt "accelconfigpage|extended_tip|reset"
msgid "Revert any changes made to keyboard shortcuts to the assignments that were present when this dialog was opened."
-msgstr ""
+msgstr "Reverteix els canvis fets a les dreceres de teclat a les assignacions que hi havia quan es va obrir aquest diàleg."
#. BKAsD
#: cui/uiconfig/ui/accelconfigpage.ui:349
@@ -4534,13 +4534,13 @@ msgstr "F_uncions"
#: cui/uiconfig/ui/accelconfigpage.ui:577
msgctxt "accelconfigpage|extended_tip|AccelConfigPage"
msgid "Assigns or edits the shortcut keys for the office suite commands, or Basic macros."
-msgstr ""
+msgstr "Assigna o edita les tecles de drecera per a les ordres del paquet ofimàtic o macros de BASIC."
#. 3zZvu
#: cui/uiconfig/ui/acorexceptpage.ui:56
msgctxt "acorexceptpage|extended_tip|abbrev"
msgid "Type an abbreviation followed by a period, and then click New. This prevents automatic capitalization of the first letter of the word that comes after the period at the end of the abbreviation."
-msgstr ""
+msgstr "Escriviu una abreviatura seguida d'un període i feu clic a Nou. Això evita la majúscula automàtica de la primera lletra de la paraula que ve després del punt al final de l'abreviatura."
#. GUtft
#: cui/uiconfig/ui/acorexceptpage.ui:67
@@ -4594,7 +4594,7 @@ msgstr "Abreviacions (sense majúscula a continuació)"
#: cui/uiconfig/ui/acorexceptpage.ui:247
msgctxt "acorexceptpage|extended_tip|double"
msgid "Type the word or abbreviation that starts with two capital letters or a small initial that you do not want automatically changed to one initial capital. For example, enter PC to prevent a change from PC to Pc, or enter eBook to prevent a change to Ebook."
-msgstr ""
+msgstr "Escriviu la paraula o abreviatura que comença amb dues majúscules o una inicial minúscula que no voleu canviar automàticament a una majúscula inicial. Per exemple, introduïu PC per a evitar un canvi de PC a Pc, o introduïu eBook per a evitar un canvi a Ebook."
#. kAzxB
#: cui/uiconfig/ui/acorexceptpage.ui:258
@@ -4648,7 +4648,7 @@ msgstr "Paraules amb DUes MAjúscules INicials o uNA mINÚSCULA iNICIAL"
#: cui/uiconfig/ui/acorexceptpage.ui:412
msgctxt "acorexceptpage|extended_tip|AcorExceptPage"
msgid "Specify the abbreviations or letter combinations that you do not want corrected automatically."
-msgstr ""
+msgstr "Indiqueu les abreviatures o combinacions de lletres que no voleu corregir automàticament."
#. Cd7nJ
#: cui/uiconfig/ui/acoroptionspage.ui:84
@@ -6347,7 +6347,7 @@ msgstr "Apilat _verticalment"
#: cui/uiconfig/ui/cellalignment.ui:132
msgctxt "cellalignment|extended_tip|checkVertStack"
msgid "Text direction vertically."
-msgstr ""
+msgstr "Text en direcció vertical."
#. XBFYt
#: cui/uiconfig/ui/cellalignment.ui:143
@@ -6677,7 +6677,7 @@ msgstr "Seleccioneu la lletra tipogràfica que voleu aplicar."
#: cui/uiconfig/ui/charnamepage.ui:334
msgctxt "charnamepage|Tab_Western"
msgid "Western"
-msgstr ""
+msgstr "Occidental"
#. q4WZB
#: cui/uiconfig/ui/charnamepage.ui:380
@@ -6725,7 +6725,7 @@ msgstr "Defineix la llengua que el verificador ortogràfic ha d'utilitzar per a
#: cui/uiconfig/ui/charnamepage.ui:610
msgctxt "charnamepage|Tab_Asian"
msgid "Asian"
-msgstr ""
+msgstr "Asiàtic"
#. FSm5y
#: cui/uiconfig/ui/charnamepage.ui:660
@@ -6773,7 +6773,7 @@ msgstr "Seleccioneu la lletra tipogràfica que voleu aplicar."
#: cui/uiconfig/ui/charnamepage.ui:864
msgctxt "charnamepage|Tab_Complex"
msgid "Complex"
-msgstr ""
+msgstr "Complex"
#. RyyME
#: cui/uiconfig/ui/charnamepage.ui:905
@@ -7043,7 +7043,7 @@ msgstr "Columnes/files amagades"
#: cui/uiconfig/ui/colorconfigwin.ui:1225
msgctxt "colorconfigwin|hiddencolrow_lb"
msgid "Hidden row/column color"
-msgstr ""
+msgstr "Color de files i columnes amagades"
#. mA6HV
#: cui/uiconfig/ui/colorconfigwin.ui:1240
@@ -7061,7 +7061,7 @@ msgstr "Graella"
#: cui/uiconfig/ui/colorconfigwin.ui:1307
msgctxt "colorconfigwin|draw"
msgid "Drawing / Presentation"
-msgstr "Dibuix / Presentació"
+msgstr "Dibuix/presentació"
#. yELpi
#: cui/uiconfig/ui/colorconfigwin.ui:1359
@@ -7109,7 +7109,7 @@ msgstr "Error"
#: cui/uiconfig/ui/colorconfigwin.ui:1566
msgctxt "colorconfigwin|basic"
msgid "Basic Syntax Highlighting"
-msgstr "Realçament bàsic de la sintaxi"
+msgstr "Realçament de la sintaxi BASIC"
#. ERVJA
#: cui/uiconfig/ui/colorconfigwin.ui:1618
@@ -7611,7 +7611,7 @@ msgstr "CMYK"
#: cui/uiconfig/ui/colorpickerdialog.ui:812
msgctxt "extended tip | ColorPicker"
msgid "Define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog."
-msgstr ""
+msgstr "Defineix els colors personalitzats utilitzant un diagrama de degradats en dues dimensions i numèric del diàleg Tria un color."
#. vDFei
#: cui/uiconfig/ui/comment.ui:18
@@ -7995,19 +7995,19 @@ msgstr "Introduïu un nom per a la imatge."
#: cui/uiconfig/ui/cuiimapdlg.ui:245
msgctxt "cuiimapdlg|label4"
msgid "_Text Alternative:"
-msgstr ""
+msgstr "Alternativa de _text:"
#. EP7Gk
#: cui/uiconfig/ui/cuiimapdlg.ui:246
msgctxt "cuiimapdlg|label4"
msgid "Enter a short description of essential features of the image map for persons who do not see the image."
-msgstr ""
+msgstr "Introduïu una breu descripció de les característiques essencials del mapa d'imatge per a les persones que no veuen la imatge."
#. YrTXB
#: cui/uiconfig/ui/cuiimapdlg.ui:266
msgctxt "cuiimapdlg|extended_tip|textentry"
msgid "Enter the text that you want to display when the mouse rests on the hotspot in a browser. This text can also be used by assistive technologies."
-msgstr ""
+msgstr "Introduïu el text que voleu mostrar quan el ratolí es quedi en el punt actiu en un navegador. Aquest text també pot ser utilitzat per tecnologies d'assistència."
#. bsgYj
#: cui/uiconfig/ui/cuiimapdlg.ui:294
@@ -8019,7 +8019,7 @@ msgstr "_Descripció:"
#: cui/uiconfig/ui/cuiimapdlg.ui:295
msgctxt "cuiimapdlg|label5"
msgid "Give a longer explanation of the image map if it is too complex to be described briefly in “Text Alternative.”"
-msgstr ""
+msgstr "Doneu una explicació més llarga del mapa d'imatge si és massa complex per a ser descrit breument a «Alternativa de text»."
#. mF6Pw
#: cui/uiconfig/ui/cuiimapdlg.ui:324
@@ -8109,7 +8109,7 @@ msgstr "_Nom registrat:"
#: cui/uiconfig/ui/databaselinkdialog.ui:180
msgctxt "extended_tip|name"
msgid "Enter a name for the database. The office suite uses this name to access the database."
-msgstr ""
+msgstr "Introduïu un nom per a la base de dades. El paquet ofimàtic utilitza aquest nom per a accedir a la base de dades."
#. FrRyU
#: cui/uiconfig/ui/databaselinkdialog.ui:199
@@ -8313,7 +8313,7 @@ msgstr "_Paral·lel a la línia"
#: cui/uiconfig/ui/dimensionlinestabpage.ui:440
msgctxt "dimensionlinestabpage|extended_tip|TSB_PARALLEL"
msgid "If enabled, displays the text parallel to the dimension line. If disabled, the text is shown at 90 degrees to the dimension line."
-msgstr ""
+msgstr "Si s'activa, mostra el text paral·lelament a la línia de cota. Si es desactiva, el text es mostra a 90 graus de la línia de cota."
#. QNscD
#: cui/uiconfig/ui/dimensionlinestabpage.ui:452
@@ -21194,13 +21194,13 @@ msgstr "Ca_ràcters al començament de la línia"
#: cui/uiconfig/ui/textflowpage.ui:213
msgctxt "textflowpage|labelMaxNum"
msgid "_Maximum consecutive hyphenated lines"
-msgstr "Línies partides consecutives _màximes"
+msgstr "Línies partides consecutives mà_ximes"
#. JkHBB
#: cui/uiconfig/ui/textflowpage.ui:227
msgctxt "textflowpage|labelMinLen"
msgid "_Minimum word length in characters"
-msgstr ""
+msgstr "Longitud de mot mín_ima en caràcters"
#. GgHhP
#: cui/uiconfig/ui/textflowpage.ui:238
@@ -21212,7 +21212,7 @@ msgstr "No parteixis els mots en _MAJÚSCULES"
#: cui/uiconfig/ui/textflowpage.ui:253
msgctxt "textflowpage|checkNoLastWord"
msgid "Don't hyphenate the last word"
-msgstr ""
+msgstr "No parteixis l'últim mot"
#. 582fA
#: cui/uiconfig/ui/textflowpage.ui:292
@@ -21434,25 +21434,25 @@ msgstr "Nom:"
#: cui/uiconfig/ui/themetabpage.ui:121
msgctxt "themetabpage|lbDk1"
msgid "Background - Dark 1:"
-msgstr ""
+msgstr "Fons fosc 1:"
#. J3qNF
#: cui/uiconfig/ui/themetabpage.ui:136
msgctxt "themetabpage|lbLt1"
msgid "Text - Light 1:"
-msgstr ""
+msgstr "Text clar 1:"
#. zFCDe
#: cui/uiconfig/ui/themetabpage.ui:151
msgctxt "themetabpage|lbDk2"
msgid "Background - Dark 2:"
-msgstr ""
+msgstr "Fons fosc 2:"
#. RVZjG
#: cui/uiconfig/ui/themetabpage.ui:166
msgctxt "themetabpage|lbLt2"
msgid "Text - Light 2:"
-msgstr ""
+msgstr "Text clar 2:"
#. kwdwQ
#: cui/uiconfig/ui/themetabpage.ui:181
diff --git a/source/ca/helpcontent2/source/auxiliary.po b/source/ca/helpcontent2/source/auxiliary.po
index ef4d3af86a4..9e502fecc7a 100644
--- a/source/ca/helpcontent2/source/auxiliary.po
+++ b/source/ca/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-11-25 19:33+0100\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
"PO-Revision-Date: 2022-02-17 11:39+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/auxiliary/ca/>\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.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1559826240.000000\n"
#. fEEXD
@@ -313,11 +313,11 @@ msgctxt ""
msgid "Writing Calc Macros"
msgstr "Escriure macros a Calc"
-#. Q59GN
+#. vBXqp
#: scalc.tree
msgctxt ""
"scalc.tree\n"
-"0815\n"
+"0816\n"
"node.text"
msgid "Miscellaneous"
msgstr "Miscel·lània"
diff --git a/source/ca/helpcontent2/source/text/sbasic/python.po b/source/ca/helpcontent2/source/text/sbasic/python.po
index 4a46927e8d1..d050711686a 100644
--- a/source/ca/helpcontent2/source/text/sbasic/python.po
+++ b/source/ca/helpcontent2/source/text/sbasic/python.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: 2022-04-11 15:28+0200\n"
-"PO-Revision-Date: 2022-09-09 14:36+0000\n"
+"PO-Revision-Date: 2022-09-21 09:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicpython/ca/>\n"
"Language: ca\n"
@@ -3644,7 +3644,7 @@ msgctxt ""
"par_id81632760673283\n"
"help.text"
msgid "Use <link href=\"https://extensions.libreoffice.org/extensions/apso-alternative-script-organizer-for-Python\" name=\"APSO extension\">APSO extension</link> console as an alternative:"
-msgstr ""
+msgstr "Feu servir la consola de l'<link href=\"https://extensions.libreoffice.org/extensions/apso-alternative-script-organizer-for-Python\" name=\"APSO extension\">extensió APSO</link> com a alternativa:"
#. 6h9CS
#: python_shell.xhp
@@ -3662,4 +3662,4 @@ msgctxt ""
"par_id351633599611244\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03/sf_exception.xhp?#PythonShell\" name=\"PythonShell method\"><literal>PythonShell</literal></link> function in <link href=\"text/sbasic/shared/03/sf_exception.xhp\" name=\"ScriptForge.Exception service\"><literal>ScriptForge.Exception</literal></link> service"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03/sf_exception.xhp?#PythonShell\" name=\"PythonShell method\">Funció <literal>PythonShell</literal></link> del servei <link href=\"text/sbasic/shared/03/sf_exception.xhp\" name=\"ScriptForge.Exception service\"><literal>ScriptForge.Exception</literal></link>"
diff --git a/source/ca/helpcontent2/source/text/sbasic/shared/03.po b/source/ca/helpcontent2/source/text/sbasic/shared/03.po
index 0f9ab40ae32..d9de10c5a8b 100644
--- a/source/ca/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/ca/helpcontent2/source/text/sbasic/shared/03.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: 2022-07-04 18:04+0200\n"
-"PO-Revision-Date: 2022-09-09 14:36+0000\n"
+"PO-Revision-Date: 2022-09-21 09:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared03/ca/>\n"
"Language: ca\n"
@@ -2157,7 +2157,7 @@ msgctxt ""
"par_id151582649200088\n"
"help.text"
msgid "Returns a random permutation of a one-dimensional array."
-msgstr ""
+msgstr "Retorna una permutació aleatòria d'una matriu unidimensional."
#. xFwWY
#: sf_array.xhp
@@ -25620,7 +25620,7 @@ msgctxt ""
"par_id991612372824234\n"
"help.text"
msgid "The default value is the current operating system on which the script is running."
-msgstr ""
+msgstr "El valor per defecte és el sistema operatiu on s'executa l'script."
#. FPuAV
#: sf_string.xhp
@@ -25737,7 +25737,7 @@ msgctxt ""
"par_id861612377611438\n"
"help.text"
msgid "\"*\" represents zero, one, or multiple characters."
-msgstr ""
+msgstr "«*» representa zero, un o diversos caràcters."
#. eLYBF
#: sf_string.xhp
diff --git a/source/ca/helpcontent2/source/text/scalc/01.po b/source/ca/helpcontent2/source/text/scalc/01.po
index c6d93563322..c7f0b3dd88e 100644
--- a/source/ca/helpcontent2/source/text/scalc/01.po
+++ b/source/ca/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-07-04 18:04+0200\n"
-"PO-Revision-Date: 2022-09-09 14:35+0000\n"
+"PO-Revision-Date: 2022-09-21 09:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/ca/>\n"
"Language: ca\n"
@@ -45326,7 +45326,7 @@ msgctxt ""
"par_id3163711\n"
"help.text"
msgid "You can enter several conditions that query the cell values or results of formulas. The conditions are evaluated from first to the last. If <emph>Condition 1</emph> is true based on the current cell contents, the corresponding cell style is applied. Otherwise, <emph>Condition 2</emph> is evaluated to determine if its corresponding style will be applied. If none of the conditions match cell contents, then no changes are made to the cell format."
-msgstr ""
+msgstr "Podeu introduir diverses condicions que consultin els valors de les cel·les o els resultats de les fórmules. Les condicions es calculen de la primera a l'última. Si la <emph>condició 1</emph> és certa segons el contingut actual d'una cel·la, s'hi aplica l'estil de cel·la corresponent. Si no, s'executa la <emph>condició 2</emph> per a determinar si s'ha d'aplicar l'estil corresponent. Si cap de les condicions concorda amb el contingut de la cel·la, no se'n fa cap canvi en la formatació."
#. GNdvU
#: 05120000.xhp
@@ -58053,7 +58053,7 @@ msgctxt ""
"par_id246972715165395\n"
"help.text"
msgid "International mile"
-msgstr ""
+msgstr "Milla internacional"
#. 6TCBR
#: func_convert.xhp
@@ -58062,7 +58062,7 @@ msgctxt ""
"par_id664674443288268\n"
"help.text"
msgid "Nautical mile"
-msgstr ""
+msgstr "Milla nàutica"
#. rUVPA
#: func_convert.xhp
@@ -58161,7 +58161,7 @@ msgctxt ""
"par_id219736221925573\n"
"help.text"
msgid "Gram"
-msgstr ""
+msgstr "Gram"
#. Pcwzj
#: func_convert.xhp
@@ -58170,7 +58170,7 @@ msgctxt ""
"par_id613363919875679\n"
"help.text"
msgid "Grain"
-msgstr ""
+msgstr "Gra"
#. HfoFq
#: func_convert.xhp
@@ -58179,7 +58179,7 @@ msgctxt ""
"par_id961199633533431\n"
"help.text"
msgid "Pound"
-msgstr ""
+msgstr "Lliura"
#. TtiGk
#: func_convert.xhp
@@ -58188,7 +58188,7 @@ msgctxt ""
"par_id655456352143671\n"
"help.text"
msgid "Ounce"
-msgstr ""
+msgstr "Unça"
#. pmsEB
#: func_convert.xhp
@@ -58728,7 +58728,7 @@ msgctxt ""
"par_id278184952564879\n"
"help.text"
msgid "Cubic foot"
-msgstr ""
+msgstr "Peu cúbic"
#. Be5Nc
#: func_convert.xhp
@@ -58773,7 +58773,7 @@ msgctxt ""
"par_id995576717914988\n"
"help.text"
msgid "Cubic inch"
-msgstr ""
+msgstr "Polzada cúbica"
#. t8skx
#: func_convert.xhp
@@ -58782,7 +58782,7 @@ msgctxt ""
"par_id842329689485738\n"
"help.text"
msgid "Liter"
-msgstr ""
+msgstr "Litre"
#. ZgERp
#: func_convert.xhp
@@ -58791,7 +58791,7 @@ msgctxt ""
"par_id236636296681258\n"
"help.text"
msgid "Cubic light-year"
-msgstr ""
+msgstr "Any de llum cúbic"
#. xbjLF
#: func_convert.xhp
@@ -58809,7 +58809,7 @@ msgctxt ""
"par_id463843338576911\n"
"help.text"
msgid "Cubic international mile"
-msgstr ""
+msgstr "Milla internacional cúbica"
#. apJka
#: func_convert.xhp
@@ -58890,7 +58890,7 @@ msgctxt ""
"par_id912821548196546\n"
"help.text"
msgid "Six pack (2 liters)"
-msgstr ""
+msgstr "Paquet de sis (2 litres)"
#. GNQxR
#: func_convert.xhp
@@ -58998,7 +58998,7 @@ msgctxt ""
"par_id448471762246791\n"
"help.text"
msgid "Multiplier"
-msgstr ""
+msgstr "Multiplicador"
#. zByEE
#: func_convert.xhp
@@ -59007,7 +59007,7 @@ msgctxt ""
"hd_id91620427193950\n"
"help.text"
msgid "Binary prefixes"
-msgstr ""
+msgstr "Prefixos binaris"
#. X7TD3
#: func_convert.xhp
@@ -59025,7 +59025,7 @@ msgctxt ""
"par_id553637738674151\n"
"help.text"
msgid "Multiplier"
-msgstr ""
+msgstr "Multiplicador"
#. gc56z
#: func_convert.xhp
@@ -66634,7 +66634,7 @@ msgctxt ""
"par_id321641927458888\n"
"help.text"
msgid "The rounding method used by this function is known as <emph>rounding towards zero</emph>. The resulting number will always be smaller than or equal to the original number."
-msgstr ""
+msgstr "El mètode d'arrodoniment que utilitza aquesta funció es coneix com a <emph>arrodoniment cap a zero</emph>. El nombre resultant sempre serà més petit que, o igual a, l'original."
#. SqCQv
#: func_trunc.xhp
diff --git a/source/ca/helpcontent2/source/text/sdatabase.po b/source/ca/helpcontent2/source/text/sdatabase.po
index 4ebc11b7b69..419ba780071 100644
--- a/source/ca/helpcontent2/source/text/sdatabase.po
+++ b/source/ca/helpcontent2/source/text/sdatabase.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: 2022-05-25 12:36+0200\n"
-"PO-Revision-Date: 2022-08-03 22:48+0000\n"
+"PO-Revision-Date: 2022-09-21 09:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textsdatabase/ca/>\n"
"Language: ca\n"
@@ -391,7 +391,7 @@ msgctxt ""
"hd_id3153394\n"
"help.text"
msgid "<link href=\"text/sdatabase/02010100.xhp\" name=\"Query Design\">Query Design</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/02010100.xhp\" name=\"Query Design\">Disseny de la consulta</link>"
#. GU8Jd
#: 02010100.xhp
@@ -2488,7 +2488,7 @@ msgctxt ""
"par_id3153596\n"
"help.text"
msgid "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">The <emph>Parameter Input</emph> dialog asks the user to enter the parameter values. Enter a value for each query parameter and confirm by clicking <emph>OK</emph> or typing <emph>Enter</emph>.</ahelp>"
-msgstr "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">El diàleg <emph>entrada del paràmetre</emph> demana a l'usuari que introdueixi els valors del paràmetre. Introduïu un valor per a cada paràmetre de consulta i confirmeu-los clicant <emph>OK</emph> o escrivint <emph>Entrar</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">El diàleg <emph>Entrada de paràmetres</emph> demana a l'usuari que introdueixi els valors del paràmetre. Introduïu un valor per a cada paràmetre de consulta i confirmeu-los fent clic a <emph>D'acord</emph> o prement <emph>Retorn</emph>.</ahelp>"
#. eGETM
#: 02010100.xhp
@@ -5514,7 +5514,7 @@ msgctxt ""
"hd_id3154011\n"
"help.text"
msgid "Use Catalog for file-based databases"
-msgstr "Utilitzeu Catàleg per a bases de dades basades en fitxers"
+msgstr "Usa el Catàleg per a bases de dades basades en fitxers"
#. BaWgu
#: 11020000.xhp
@@ -5622,7 +5622,7 @@ msgctxt ""
"par_id3161656\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/dbasepage/indiciesButton\">Opens the <link href=\"text/sdatabase/11030100.xhp\" name=\"Indexes\"><emph>Indexes</emph></link> dialog, where you can organize the table indexes in the current dBASE database.</ahelp>"
-msgstr "<ahelp hid=\"dbaccess/ui/dbasepage/indiciesButton\">Obre el diàleg <link href=\"text/sdatabase/11030100.xhp\" name=\"Indexes\"><emph>Indexes</emph></link>, on podeu organitzar els índexs de taula a la base de dades dBASE actual.</ahelp>"
+msgstr "<ahelp hid=\"dbaccess/ui/dbasepage/indiciesButton\">Obre el diàleg <link href=\"text/sdatabase/11030100.xhp\" name=\"Indexes\"><emph>Índexs</emph></link>, on podeu organitzar els índexs de taula a la base de dades dBASE actual.</ahelp>"
#. vMA8w
#: 11030100.xhp
@@ -5739,7 +5739,7 @@ msgctxt ""
"par_id3145315\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\">Moves all of the free indexes to the <emph>Table Indexes</emph> list.</ahelp>"
-msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\">Mou tots els índexs lliures a la llista <emph>Taula índexs</emph>.</ahelp>"
+msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\">Mou tots els índexs lliures a la llista <emph>Índexs de la taula</emph>.</ahelp>"
#. Ba8Z9
#: 11030100.xhp
@@ -5757,7 +5757,7 @@ msgctxt ""
"par_id3149795\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/remove\">Moves the selected table indexes to the <emph>Free Indexes</emph> list.</ahelp>"
-msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/remove\">Mou els índexs seleccionats de la taula a la llista <emph>Índexs lliures</emph>.</ahelp>"
+msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/remove\">Mou els índexs de la taula seleccionats a la llista <emph>Índexs lliures</emph>.</ahelp>"
#. sAASQ
#: 11030100.xhp
@@ -5892,7 +5892,7 @@ msgctxt ""
"par_id281652481037143\n"
"help.text"
msgid "Show the result of the SQL SELECT command in the Output box."
-msgstr ""
+msgstr "Mostra el resultat de l'ordre SQL SELECT al quadre Sortida."
#. uaXF8
#: 11080000.xhp
@@ -5901,7 +5901,7 @@ msgctxt ""
"hd_id3154071\n"
"help.text"
msgid "Execute"
-msgstr ""
+msgstr "Executa"
#. 6UCdY
#: 11080000.xhp
@@ -5955,7 +5955,7 @@ msgctxt ""
"hd_id841652479655639\n"
"help.text"
msgid "Output"
-msgstr ""
+msgstr "Sortida"
#. pEFoq
#: 11080000.xhp
@@ -5964,7 +5964,7 @@ msgctxt ""
"par_id511652479714010\n"
"help.text"
msgid "Displays the results of the SQL command that you ran."
-msgstr ""
+msgstr "Mostra els resultats de l'ordre SQL que heu executat."
#. 93Xfs
#: 11090000.xhp
diff --git a/source/ca/helpcontent2/source/text/shared/01.po b/source/ca/helpcontent2/source/text/shared/01.po
index 8afeee9d814..7bd270e40e5 100644
--- a/source/ca/helpcontent2/source/text/shared/01.po
+++ b/source/ca/helpcontent2/source/text/shared/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-07-04 18:04+0200\n"
-"PO-Revision-Date: 2022-07-26 09:21+0000\n"
+"PO-Revision-Date: 2022-09-21 09:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/ca/>\n"
"Language: ca\n"
@@ -12212,13 +12212,12 @@ msgstr "<ahelp hid=\"svx/ui/imapdialog/TBI_PROPERTY\">Permet definir les propiet
#. xMabR
#: 02220000.xhp
-#, fuzzy
msgctxt ""
"02220000.xhp\n"
"par_id3159104\n"
"help.text"
msgid "<image id=\"img_id3149735\" src=\"cmd/sc_modifyframe.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149735\">Icon Properties</alt></image>"
-msgstr "Propietats de la icona <image id=\"imgid3149735\" src=\"cmd/scmodifyframe.png\" width=\"1cm\" height=\"1cm\"><alt id=\"altid3149735\"></alt></image>"
+msgstr "<image id=\"img_id3149735\" src=\"cmd/sc_modifyframe.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149735\">Icona Propietats</alt></image>"
#. imNDz
#: 02220000.xhp
@@ -12254,7 +12253,7 @@ msgctxt ""
"hd_id3146132\n"
"help.text"
msgid "Text Alternative"
-msgstr ""
+msgstr "Text alternatiu"
#. ccR9n
#: 02220000.xhp
@@ -12398,7 +12397,7 @@ msgctxt ""
"hd_id3153827\n"
"help.text"
msgid "Text Alternative"
-msgstr ""
+msgstr "Text alternatiu"
#. dgZr8
#: 02220100.xhp
@@ -27178,7 +27177,7 @@ msgctxt ""
"par_id841608260799161\n"
"help.text"
msgid "Press <keycode>Shift+F11</keycode>"
-msgstr ""
+msgstr "Premeu <keycode>Maj+F11</keycode>"
#. KhFGr
#: 05140100.xhp
@@ -27205,7 +27204,7 @@ msgctxt ""
"par_id441608302065414\n"
"help.text"
msgid "<emph>For all style categories:</emph>"
-msgstr ""
+msgstr "<emph>Per a totes les categories d'estils:</emph>"
#. ZCV8q
#: 05140100.xhp
@@ -27286,7 +27285,7 @@ msgctxt ""
"hd_id3154682\n"
"help.text"
msgid "Custom Styles for Current Document"
-msgstr ""
+msgstr "Estils personalitzats per al document actual"
#. wWSGE
#: 05140100.xhp
@@ -27304,7 +27303,7 @@ msgctxt ""
"par_id401608258192415\n"
"help.text"
msgid "<link href=\"text/scalc/01/05100000.xhp\" name=\"Calc Styles\">Styles in Calc</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/05100000.xhp\" name=\"Calc Styles\">Estils al Calc</link>"
#. whwZY
#: 05140100.xhp
@@ -27313,7 +27312,7 @@ msgctxt ""
"par_id641608263698887\n"
"help.text"
msgid "<link href=\"text/simpress/01/05100000.xhp\" name=\"Impress Styles\">Styles in Impress</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/05100000.xhp\" name=\"Impress Styles\">Estils a l'Impress</link>"
#. CCTFZ
#: 05140100.xhp
@@ -27322,7 +27321,7 @@ msgctxt ""
"par_id641369863698831\n"
"help.text"
msgid "<link href=\"text/simpress/01/05100000.xhp\" name=\"Draw Styles\">Styles</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/05100000.xhp\" name=\"Draw Styles\">Estils</link>"
#. CJiJX
#: 05190000.xhp
@@ -27440,7 +27439,7 @@ msgctxt ""
"hd_id2576982\n"
"help.text"
msgid "Text Alternative"
-msgstr ""
+msgstr "Text alternatiu"
#. uQ5RY
#: 05190100.xhp
diff --git a/source/ca/helpcontent2/source/text/shared/02.po b/source/ca/helpcontent2/source/text/shared/02.po
index 3763eb1133a..74bc30070fd 100644
--- a/source/ca/helpcontent2/source/text/shared/02.po
+++ b/source/ca/helpcontent2/source/text/shared/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-06-09 11:50+0200\n"
-"PO-Revision-Date: 2022-09-09 14:36+0000\n"
+"PO-Revision-Date: 2022-09-21 09:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textshared02/ca/>\n"
"Language: ca\n"
@@ -14419,7 +14419,7 @@ msgctxt ""
"par_id3151234\n"
"help.text"
msgid "<image id=\"img_id3147261\" src=\"cmd/lc_datafilterautofilter.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147261\">Icon AutoFilter</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147261\" src=\"cmd/lc_datafilterautofilter.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147261\">Icona Filtre automàtic</alt></image>"
#. qhCWv
#: 12030000.xhp
diff --git a/source/ca/helpcontent2/source/text/shared/guide.po b/source/ca/helpcontent2/source/text/shared/guide.po
index 48b174859f3..3c13738a50a 100644
--- a/source/ca/helpcontent2/source/text/shared/guide.po
+++ b/source/ca/helpcontent2/source/text/shared/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-07-04 18:04+0200\n"
-"PO-Revision-Date: 2022-07-01 16:24+0000\n"
+"PO-Revision-Date: 2022-09-21 09:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textsharedguide/ca/>\n"
"Language: ca\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.12.2\n"
"X-Language: ca\n"
"X-POOTLE-MTIME: 1564412548.000000\n"
@@ -6702,7 +6702,7 @@ msgctxt ""
"par_id3145786\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01140000.xhp\" name=\"Language Settings - Languages\">Language Settings - Languages</link>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline> - <link href=\"text/shared/optionen/01140000.xhp\" name=\"Paràmetres de la llengua - Llengües\">Paràmetres de la llengua - Llengües</link>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME ▸ Preferències</caseinline><defaultinline>Eines ▸ Opcions</defaultinline></switchinline> ▸ <link href=\"text/shared/optionen/01140000.xhp\" name=\"Paràmetres de la llengua ▸ Llengües\">Paràmetres de la llengua ▸ Llengües</link>"
#. C5ALR
#: ctl.xhp
@@ -6711,7 +6711,7 @@ msgctxt ""
"par_id3153770\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01150300.xhp\" name=\"Language Settings - Complex Text Layout\">Language Settings - Complex Text Layout</link>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline> - <link href=\"text/shared/optionen/01150300.xhp\" name=\"Paràmetres de la llengua - Disposició complexa de text\">Paràmetres de la llengua - Disposició complexa de text</link>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME ▸ Preferències</caseinline><defaultinline>Eines ▸ Opcions</defaultinline></switchinline> ▸ <link href=\"text/shared/optionen/01150300.xhp\" name=\"Paràmetres de la llengua ▸ Disposició complexa de text\">Paràmetres de la llengua ▸ Disposició complexa de text</link>"
#. E7xSj
#: data_addressbook.xhp
@@ -13989,7 +13989,7 @@ msgctxt ""
"par_id3154046\n"
"help.text"
msgid "A link to a web page, for example, \"www.example.com\" or \"www.myprovider.com/mypage/index.html\" is an absolute link."
-msgstr "Un enllaç a una pàgina web, com ara \"www.exemple.com\" o \"www.elmeuproveïdor.com/lamevapàgina/index.html\", és un enllaç absolut."
+msgstr "Un enllaç a una pàgina web, com ara «www.exemple.com» o «www.elmeuproveïdor.com/lamevapàgina/index.html», és un enllaç absolut."
#. bTRZi
#: hyperlink_rel_abs.xhp
@@ -14025,7 +14025,7 @@ msgctxt ""
"par_id3153897\n"
"help.text"
msgid "When you rest your mouse on a hyperlink, a help tip displays the absolute reference, since $[officename] uses absolute path names internally. The complete path and address can only be seen when you view the result of the HTML export, by loading the HTML file as \"Text\" or opening it with a text editor."
-msgstr "Quan poseu el ratolí a sobre d'un enllaç, un indicador d'ajuda mostra la referència absoluta, ja que el $[officename] utilitza noms de camins absoluts internament. L'adreça i el camí complets només són visibles quan visualitzeu el resultat de l'exportació HTML, carregant el fitxer HTML com un \"Text\" o obrint-lo amb un editor de text."
+msgstr "Quan poseu el ratolí a sobre d'un enllaç, un indicador d'ajuda mostra la referència absoluta, ja que el $[officename] utilitza noms de camins absoluts internament. L'adreça i el camí complets només són visibles quan visualitzeu el resultat de l'exportació HTML, carregant el fitxer HTML com un «Text» o obrint-lo amb un editor de text."
#. qxJsq
#: imagemap.xhp
@@ -17143,7 +17143,7 @@ msgctxt ""
"par_id3150043\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01140000.xhp\" name=\"Language Settings - Languages\">Language Settings - Languages</link>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline> - <link href=\"text/shared/optionen/01140000.xhp\" name=\"Paràmetres de la llengua - Llengües\">Paràmetres de la llengua - Llengües</link>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME ▸ Preferències</caseinline><defaultinline>Eines ▸ Opcions</defaultinline></switchinline> ▸ <link href=\"text/shared/optionen/01140000.xhp\" name=\"Paràmetres de la llengua ▸ Llengües\">Paràmetres de la llengua ▸ Llengües</link>"
#. 4frEL
#: language_select.xhp
@@ -17314,7 +17314,7 @@ msgctxt ""
"par_id3153748\n"
"help.text"
msgid "You can draw a line above, beside or below a paragraph in a Writer text document by choosing <emph>Format - Paragraph - </emph><link href=\"text/shared/01/05030500.xhp\" name=\"Borders\"><emph>Borders</emph></link>."
-msgstr "Podeu dibuixar una línia a sobre, a sota o al costat d'un paràgraf en un document de text del Writer si trieu <emph>Format - Paràgraf - </emph><link href=\"text/shared/01/05030500.xhp\" name=\"Vores\"><emph>Vores</emph></link>."
+msgstr "Podeu dibuixar una línia a sobre, a sota o al costat d'un paràgraf en un document de text del Writer si trieu <emph>Format ▸ Paràgraf ▸ </emph><link href=\"text/shared/01/05030500.xhp\" name=\"Vores\"><emph>Vores</emph></link>."
#. ED6cS
#: line_intext.xhp
@@ -23165,13 +23165,12 @@ msgstr "<unk>GA Redactad Exporta (blanc)</emph> finalitza el document convertint
#. 2w5mE
#: redaction.xhp
-#, fuzzy
msgctxt ""
"redaction.xhp\n"
"par_id961562796947231\n"
"help.text"
msgid "<image src=\"cmd/sc_exportdirecttopdf.svg\" id=\"img_id4156296484514\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id15152796484514\">Direct Export to PDF icon</alt></image>"
-msgstr "<unk>GA<alt id=\"altid15152796484514\">Direct Exporta a la icona PDF</alt></image>"
+msgstr "<image src=\"cmd/sc_exportdirecttopdf.svg\" id=\"img_id4156296484514\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id15152796484514\">Icona Exporta directament a PDF</alt></image>"
#. wqjEG
#: redaction.xhp
diff --git a/source/ca/helpcontent2/source/text/shared/optionen.po b/source/ca/helpcontent2/source/text/shared/optionen.po
index 7d6e58f9ad3..f569c95bfa5 100644
--- a/source/ca/helpcontent2/source/text/shared/optionen.po
+++ b/source/ca/helpcontent2/source/text/shared/optionen.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-07-04 18:04+0200\n"
-"PO-Revision-Date: 2022-09-09 14:35+0000\n"
+"PO-Revision-Date: 2022-09-21 09:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textsharedoptionen/ca/>\n"
"Language: ca\n"
@@ -1414,7 +1414,7 @@ msgctxt ""
"par_id973540\n"
"help.text"
msgid "This folder stores your own AutoText texts."
-msgstr "Aquesta carpeta emmagatzema els textos de text automàtic."
+msgstr "Aquesta carpeta emmagatzema els vostres textos de text automàtic."
#. vGjc8
#: 01010300.xhp
diff --git a/source/ca/helpcontent2/source/text/swriter/01.po b/source/ca/helpcontent2/source/text/swriter/01.po
index 193c91de1b0..12db795144b 100644
--- a/source/ca/helpcontent2/source/text/swriter/01.po
+++ b/source/ca/helpcontent2/source/text/swriter/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-07-04 18:05+0200\n"
-"PO-Revision-Date: 2022-08-03 22:48+0000\n"
+"PO-Revision-Date: 2022-09-21 09:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/ca/>\n"
"Language: ca\n"
@@ -15911,7 +15911,7 @@ msgctxt ""
"hd_id3153926\n"
"help.text"
msgid "Don't hyphenate the last word"
-msgstr ""
+msgstr "No parteixis l'últim mot"
#. UYKar
#: 05030200.xhp
@@ -24020,7 +24020,7 @@ msgctxt ""
"par_id3147407\n"
"help.text"
msgid "To reverse the last AutoCorrect action, choose <emph>Edit - </emph><link href=\"text/shared/01/02010000.xhp\" name=\"Undo\"><emph>Undo</emph></link>."
-msgstr "Per invertir l'última acció de correcció automàtica, trieu <emph>Edita ▸ </emph><link href=\"text/shared/01/02010000.xhp\" name=\"Desfés\"><emph>Desfés</emph></link>."
+msgstr "Per a revertir l'última acció de correcció automàtica, trieu <emph>Edita ▸ </emph><link href=\"text/shared/01/02010000.xhp\" name=\"Desfés\"><emph>Desfés</emph></link>."
#. c9yUj
#: 05150100.xhp
@@ -24038,7 +24038,7 @@ msgctxt ""
"hd_id3155625\n"
"help.text"
msgid "AutoCorrect for Headings"
-msgstr ""
+msgstr "Correcció automàtica per a encapçalaments"
#. GKSGD
#: 05150100.xhp
@@ -24083,7 +24083,7 @@ msgctxt ""
"hd_id3152941\n"
"help.text"
msgid "AutoCorrect for Separator Lines"
-msgstr ""
+msgstr "Correcció automàtica per a línies separadores"
#. wk6vb
#: 05150100.xhp
@@ -31768,7 +31768,7 @@ msgctxt ""
"par_id721641335152918\n"
"help.text"
msgid "Icon Style Inspector on the Sidebar"
-msgstr ""
+msgstr "Icona Inspector d'estils a la barra lateral"
#. uhQin
#: style_inspector.xhp
diff --git a/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po
index 7329fc17944..e0df8f4a3ec 100644
--- a/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-06-09 11:50+0200\n"
-"PO-Revision-Date: 2022-08-19 12:58+0000\n"
-"Last-Translator: Joan Montané <joan@montane.cat>\n"
+"PO-Revision-Date: 2022-09-21 09:48+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/ca/>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@@ -17614,7 +17614,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Vertical Scroll"
-msgstr "Desplaçament vertical"
+msgstr "Pergamí vertical"
#. kUmYD
#: GenericCommands.xcu
@@ -17624,7 +17624,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Horizontal Scroll"
-msgstr "Desplaçament horitzontal"
+msgstr "Pergamí horitzontal"
#. ix6Fr
#: GenericCommands.xcu
@@ -23696,7 +23696,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Export Directly as PDF"
-msgstr "Exporta directament com a PDF"
+msgstr "Exporta directament a PDF"
#. 8eSWp
#: GenericCommands.xcu
@@ -27656,7 +27656,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Outline"
-msgstr "Contorn"
+msgstr "Esquema"
#. tBpp5
#: ImpressWindowState.xcu
diff --git a/source/ca/sfx2/messages.po b/source/ca/sfx2/messages.po
index e8ef2483c2c..e384a79d0b4 100644
--- a/source/ca/sfx2/messages.po
+++ b/source/ca/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: 2022-08-24 12:29+0200\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
"PO-Revision-Date: 2022-09-09 11:26+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/ca/>\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.12.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1559651981.000000\n"
#. bHbFE
@@ -2963,7 +2963,7 @@ msgid "No"
msgstr "No"
#. kDKBB
-#: sfx2/uiconfig/ui/commandpopup.ui:36
+#: sfx2/uiconfig/ui/commandpopup.ui:35
msgctxt "commandpopup|entry"
msgid "Search command"
msgstr "Cerca d'ordres"
@@ -4903,139 +4903,139 @@ msgid "or Create a New Category"
msgstr "o creeu una categoria nova"
#. eUWTy
-#: sfx2/uiconfig/ui/templatedlg.ui:46
+#: sfx2/uiconfig/ui/templatedlg.ui:44
msgctxt "templatedlg|TemplateDialog"
msgid "Templates"
msgstr "Plantilles"
#. rhuYP
-#: sfx2/uiconfig/ui/templatedlg.ui:77
+#: sfx2/uiconfig/ui/templatedlg.ui:76
msgctxt "templatedlg|hidedialogcb"
msgid "Show this dialog at startup"
msgstr "Mostra aquest diàleg en iniciar"
#. 32zsB
-#: sfx2/uiconfig/ui/templatedlg.ui:144
+#: sfx2/uiconfig/ui/templatedlg.ui:143
msgctxt "templatedlg|search_filter|tooltip_text"
msgid "Search"
msgstr "Cerca"
#. sGZMC
-#: sfx2/uiconfig/ui/templatedlg.ui:148
+#: sfx2/uiconfig/ui/templatedlg.ui:147
msgctxt "templatedlg|search_filter"
msgid "Search..."
msgstr "Cerca..."
#. DF5YC
-#: sfx2/uiconfig/ui/templatedlg.ui:167
+#: sfx2/uiconfig/ui/templatedlg.ui:166
msgctxt "templatedlg|action_menu|label"
msgid "_Manage"
msgstr "_Gestiona"
#. LUs2m
-#: sfx2/uiconfig/ui/templatedlg.ui:181
+#: sfx2/uiconfig/ui/templatedlg.ui:180
msgctxt "templatedlg|extended_tip|action_menu"
msgid "Provides commands to create, rename and delete categories, reset default templates, and refresh the template manager."
msgstr "Proporciona ordres per a crear, canvia de nom i suprimir categories, restablir les plantilles predeterminades i actualitzar el gestor de plantilles."
#. fXVNY
-#: sfx2/uiconfig/ui/templatedlg.ui:208
+#: sfx2/uiconfig/ui/templatedlg.ui:207
msgctxt "templatedlg|filter_application|tooltip_text"
msgid "Filter by Application"
msgstr "Filtra per aplicació"
#. tqVhJ
-#: sfx2/uiconfig/ui/templatedlg.ui:210
+#: sfx2/uiconfig/ui/templatedlg.ui:209
msgctxt "templatedlg|applist"
msgid "All Applications"
msgstr "Totes les aplicacions"
#. pD6pU
-#: sfx2/uiconfig/ui/templatedlg.ui:211
+#: sfx2/uiconfig/ui/templatedlg.ui:210
msgctxt "templatedlg|applist"
msgid "Text Documents"
msgstr "Documents de text"
#. eECt7
-#: sfx2/uiconfig/ui/templatedlg.ui:212
+#: sfx2/uiconfig/ui/templatedlg.ui:211
msgctxt "templatedlg|applist"
msgid "Spreadsheets"
msgstr "Fulls de càlcul"
#. ajLbV
-#: sfx2/uiconfig/ui/templatedlg.ui:213
+#: sfx2/uiconfig/ui/templatedlg.ui:212
msgctxt "templatedlg|applist"
msgid "Presentations"
msgstr "Presentacions"
#. LfUzB
-#: sfx2/uiconfig/ui/templatedlg.ui:214
+#: sfx2/uiconfig/ui/templatedlg.ui:213
msgctxt "templatedlg|applist"
msgid "Drawings"
msgstr "Dibuixos"
#. t7zE7
-#: sfx2/uiconfig/ui/templatedlg.ui:228
+#: sfx2/uiconfig/ui/templatedlg.ui:227
msgctxt "templatedlg|filter_folder|tooltip_text"
msgid "Filter by Category"
msgstr "Filtra per categoria"
#. 93CGw
-#: sfx2/uiconfig/ui/templatedlg.ui:230
+#: sfx2/uiconfig/ui/templatedlg.ui:229
msgctxt "templatedlg|folderlist"
msgid "All Categories"
msgstr "Totes les categories"
#. NF9wE
-#: sfx2/uiconfig/ui/templatedlg.ui:251
+#: sfx2/uiconfig/ui/templatedlg.ui:250
msgctxt "templatedlg|label1"
msgid "Filter"
msgstr "Filtre"
#. ewTL3
-#: sfx2/uiconfig/ui/templatedlg.ui:357
+#: sfx2/uiconfig/ui/templatedlg.ui:356
msgctxt "templatedlg|treeviewcolumn1"
msgid "Name"
msgstr "Nom"
#. 7EJRA
-#: sfx2/uiconfig/ui/templatedlg.ui:374
+#: sfx2/uiconfig/ui/templatedlg.ui:373
msgctxt "templatedlg|treeviewcolumn2"
msgid "Category"
msgstr "Categoria"
#. AC27i
-#: sfx2/uiconfig/ui/templatedlg.ui:389
+#: sfx2/uiconfig/ui/templatedlg.ui:388
msgctxt "templatedlg|treeviewcolumn3"
msgid "Application"
msgstr "Aplicació"
#. eSaBw
-#: sfx2/uiconfig/ui/templatedlg.ui:404
+#: sfx2/uiconfig/ui/templatedlg.ui:403
msgctxt "templatedlg|treeviewcolumn4"
msgid "Modified"
msgstr "Modificació"
#. pNzYA
-#: sfx2/uiconfig/ui/templatedlg.ui:419
+#: sfx2/uiconfig/ui/templatedlg.ui:418
msgctxt "templatedlg|treeviewcolumn5"
msgid "Size"
msgstr "Mida"
#. j39jM
-#: sfx2/uiconfig/ui/templatedlg.ui:445
+#: sfx2/uiconfig/ui/templatedlg.ui:444
msgctxt "templatedlg|thumbnailviewlabel"
msgid "Template List"
msgstr "Llista de plantilles"
#. yEhgP
-#: sfx2/uiconfig/ui/templatedlg.ui:464
+#: sfx2/uiconfig/ui/templatedlg.ui:463
msgctxt "templatedlg|thumbnail_view_btn|tooltip_text"
msgid "Thumbnail View"
msgstr "Visualització de miniatures"
#. j76ke
-#: sfx2/uiconfig/ui/templatedlg.ui:481
+#: sfx2/uiconfig/ui/templatedlg.ui:480
msgctxt "templatedlg|list_view_btn|tooltip_text"
msgid "List View"
msgstr "Visualització de llista"
diff --git a/source/ca/svx/messages.po b/source/ca/svx/messages.po
index f3a4c15e564..1cb3327b06e 100644
--- a/source/ca/svx/messages.po
+++ b/source/ca/svx/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-07-08 12:15+0200\n"
-"PO-Revision-Date: 2022-08-19 12:59+0000\n"
-"Last-Translator: Joan Montané <joan@montane.cat>\n"
+"PO-Revision-Date: 2022-09-21 09:48+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/ca/>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@@ -4780,7 +4780,7 @@ msgstr "Mapa de bits"
#: include/svx/strings.hrc:840
msgctxt "RID_SVXSTR_BMP79"
msgid "Invoice Paper"
-msgstr "Paper de factura"
+msgstr "Paper d'estrassa"
#. x5eiA
#: include/svx/strings.hrc:841
diff --git a/source/ca/sw/messages.po b/source/ca/sw/messages.po
index 84c38a35a7c..28711d01197 100644
--- a/source/ca/sw/messages.po
+++ b/source/ca/sw/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-08-08 14:37+0200\n"
-"PO-Revision-Date: 2022-08-19 12:58+0000\n"
-"Last-Translator: Joan Montané <joan@montane.cat>\n"
+"PO-Revision-Date: 2022-09-21 09:48+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/ca/>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@@ -29354,7 +29354,7 @@ msgstr "Combina les entrades idèntiques"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:943
msgctxt "tocindexpage|extended_tip|combinesame"
msgid "Replaces identical index entries with a single entry that lists the page numbers where the entry occurs in the document. For example, the entries \"View 10, View 43\" are combined as \"View 10, 43\"."
-msgstr "Reemplaça les entrades d'índex idèntiques amb una entrada única que llista els números de pàgina allà on apareix l'entrada en el document. Per exemple, les entrades \"Visualitza 10, Visualitza 43\" es combinen com a \"Visualitza 10, 43\"."
+msgstr "Reemplaça les entrades d'índex idèntiques amb una sola entrada que mostra els números de pàgina on apareix l'entrada en el document. Per exemple, les entrades «Vegeu 10, Vegeu 43» es combinen com a «Vegeu 10, 43»."
#. AVAFm
#: sw/uiconfig/swriter/ui/tocindexpage.ui:954
diff --git a/source/ckb/sfx2/messages.po b/source/ckb/sfx2/messages.po
index 6da13f872ff..ba0ada654c3 100644
--- a/source/ckb/sfx2/messages.po
+++ b/source/ckb/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: 2022-08-24 12:29+0200\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
"PO-Revision-Date: 2021-02-05 14:07+0000\n"
"Last-Translator: jwtiyar ali nariman <jwtiyar@gmail.com>\n"
"Language-Team: Central Kurdish <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/ckb/>\n"
@@ -2883,7 +2883,7 @@ msgid "No"
msgstr "نەخێر"
#. kDKBB
-#: sfx2/uiconfig/ui/commandpopup.ui:36
+#: sfx2/uiconfig/ui/commandpopup.ui:35
msgctxt "commandpopup|entry"
msgid "Search command"
msgstr ""
@@ -4814,139 +4814,139 @@ msgid "or Create a New Category"
msgstr ""
#. eUWTy
-#: sfx2/uiconfig/ui/templatedlg.ui:46
+#: sfx2/uiconfig/ui/templatedlg.ui:44
msgctxt "templatedlg|TemplateDialog"
msgid "Templates"
msgstr "داڕێژەکان"
#. rhuYP
-#: sfx2/uiconfig/ui/templatedlg.ui:77
+#: sfx2/uiconfig/ui/templatedlg.ui:76
msgctxt "templatedlg|hidedialogcb"
msgid "Show this dialog at startup"
msgstr ""
#. 32zsB
-#: sfx2/uiconfig/ui/templatedlg.ui:144
+#: sfx2/uiconfig/ui/templatedlg.ui:143
msgctxt "templatedlg|search_filter|tooltip_text"
msgid "Search"
msgstr "گه‌ڕان"
#. sGZMC
-#: sfx2/uiconfig/ui/templatedlg.ui:148
+#: sfx2/uiconfig/ui/templatedlg.ui:147
msgctxt "templatedlg|search_filter"
msgid "Search..."
msgstr "گه‌ڕان…"
#. DF5YC
-#: sfx2/uiconfig/ui/templatedlg.ui:167
+#: sfx2/uiconfig/ui/templatedlg.ui:166
msgctxt "templatedlg|action_menu|label"
msgid "_Manage"
msgstr ""
#. LUs2m
-#: sfx2/uiconfig/ui/templatedlg.ui:181
+#: sfx2/uiconfig/ui/templatedlg.ui:180
msgctxt "templatedlg|extended_tip|action_menu"
msgid "Provides commands to create, rename and delete categories, reset default templates, and refresh the template manager."
msgstr ""
#. fXVNY
-#: sfx2/uiconfig/ui/templatedlg.ui:208
+#: sfx2/uiconfig/ui/templatedlg.ui:207
msgctxt "templatedlg|filter_application|tooltip_text"
msgid "Filter by Application"
msgstr ""
#. tqVhJ
-#: sfx2/uiconfig/ui/templatedlg.ui:210
+#: sfx2/uiconfig/ui/templatedlg.ui:209
msgctxt "templatedlg|applist"
msgid "All Applications"
msgstr ""
#. pD6pU
-#: sfx2/uiconfig/ui/templatedlg.ui:211
+#: sfx2/uiconfig/ui/templatedlg.ui:210
msgctxt "templatedlg|applist"
msgid "Text Documents"
msgstr ""
#. eECt7
-#: sfx2/uiconfig/ui/templatedlg.ui:212
+#: sfx2/uiconfig/ui/templatedlg.ui:211
msgctxt "templatedlg|applist"
msgid "Spreadsheets"
msgstr "شیتی خشتەیی"
#. ajLbV
-#: sfx2/uiconfig/ui/templatedlg.ui:213
+#: sfx2/uiconfig/ui/templatedlg.ui:212
msgctxt "templatedlg|applist"
msgid "Presentations"
msgstr "پێشکەشکردن"
#. LfUzB
-#: sfx2/uiconfig/ui/templatedlg.ui:214
+#: sfx2/uiconfig/ui/templatedlg.ui:213
msgctxt "templatedlg|applist"
msgid "Drawings"
msgstr "کێشان"
#. t7zE7
-#: sfx2/uiconfig/ui/templatedlg.ui:228
+#: sfx2/uiconfig/ui/templatedlg.ui:227
msgctxt "templatedlg|filter_folder|tooltip_text"
msgid "Filter by Category"
msgstr ""
#. 93CGw
-#: sfx2/uiconfig/ui/templatedlg.ui:230
+#: sfx2/uiconfig/ui/templatedlg.ui:229
msgctxt "templatedlg|folderlist"
msgid "All Categories"
msgstr "هەموو هاوپۆلەکان"
#. NF9wE
-#: sfx2/uiconfig/ui/templatedlg.ui:251
+#: sfx2/uiconfig/ui/templatedlg.ui:250
msgctxt "templatedlg|label1"
msgid "Filter"
msgstr "پاڵاوتن"
#. ewTL3
-#: sfx2/uiconfig/ui/templatedlg.ui:357
+#: sfx2/uiconfig/ui/templatedlg.ui:356
msgctxt "templatedlg|treeviewcolumn1"
msgid "Name"
msgstr ""
#. 7EJRA
-#: sfx2/uiconfig/ui/templatedlg.ui:374
+#: sfx2/uiconfig/ui/templatedlg.ui:373
msgctxt "templatedlg|treeviewcolumn2"
msgid "Category"
msgstr ""
#. AC27i
-#: sfx2/uiconfig/ui/templatedlg.ui:389
+#: sfx2/uiconfig/ui/templatedlg.ui:388
msgctxt "templatedlg|treeviewcolumn3"
msgid "Application"
msgstr ""
#. eSaBw
-#: sfx2/uiconfig/ui/templatedlg.ui:404
+#: sfx2/uiconfig/ui/templatedlg.ui:403
msgctxt "templatedlg|treeviewcolumn4"
msgid "Modified"
msgstr ""
#. pNzYA
-#: sfx2/uiconfig/ui/templatedlg.ui:419
+#: sfx2/uiconfig/ui/templatedlg.ui:418
msgctxt "templatedlg|treeviewcolumn5"
msgid "Size"
msgstr ""
#. j39jM
-#: sfx2/uiconfig/ui/templatedlg.ui:445
+#: sfx2/uiconfig/ui/templatedlg.ui:444
msgctxt "templatedlg|thumbnailviewlabel"
msgid "Template List"
msgstr "لیستی داڕێژەکان"
#. yEhgP
-#: sfx2/uiconfig/ui/templatedlg.ui:464
+#: sfx2/uiconfig/ui/templatedlg.ui:463
msgctxt "templatedlg|thumbnail_view_btn|tooltip_text"
msgid "Thumbnail View"
msgstr ""
#. j76ke
-#: sfx2/uiconfig/ui/templatedlg.ui:481
+#: sfx2/uiconfig/ui/templatedlg.ui:480
msgctxt "templatedlg|list_view_btn|tooltip_text"
msgid "List View"
msgstr ""
diff --git a/source/cs/helpcontent2/source/auxiliary.po b/source/cs/helpcontent2/source/auxiliary.po
index ff63153985a..0c81f0b64c0 100644
--- a/source/cs/helpcontent2/source/auxiliary.po
+++ b/source/cs/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-11-25 19:33+0100\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
"PO-Revision-Date: 2021-10-23 00:37+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_help-master/auxiliary/cs/>\n"
@@ -313,11 +313,11 @@ msgctxt ""
msgid "Writing Calc Macros"
msgstr "Psaní maker Calcu"
-#. Q59GN
+#. vBXqp
#: scalc.tree
msgctxt ""
"scalc.tree\n"
-"0815\n"
+"0816\n"
"node.text"
msgid "Miscellaneous"
msgstr "Ostatní"
diff --git a/source/cs/sfx2/messages.po b/source/cs/sfx2/messages.po
index 86f7ef20746..1e23c856cc2 100644
--- a/source/cs/sfx2/messages.po
+++ b/source/cs/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: 2022-08-24 12:29+0200\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
"PO-Revision-Date: 2022-07-08 10:43+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/cs/>\n"
@@ -2964,7 +2964,7 @@ msgid "No"
msgstr "Ne"
#. kDKBB
-#: sfx2/uiconfig/ui/commandpopup.ui:36
+#: sfx2/uiconfig/ui/commandpopup.ui:35
msgctxt "commandpopup|entry"
msgid "Search command"
msgstr "Vyhledat příkaz"
@@ -4904,139 +4904,139 @@ msgid "or Create a New Category"
msgstr "nebo vytvořte novou kategorii"
#. eUWTy
-#: sfx2/uiconfig/ui/templatedlg.ui:46
+#: sfx2/uiconfig/ui/templatedlg.ui:44
msgctxt "templatedlg|TemplateDialog"
msgid "Templates"
msgstr "Šablony"
#. rhuYP
-#: sfx2/uiconfig/ui/templatedlg.ui:77
+#: sfx2/uiconfig/ui/templatedlg.ui:76
msgctxt "templatedlg|hidedialogcb"
msgid "Show this dialog at startup"
msgstr "Zobrazit toto dialogové okno při spuštění"
#. 32zsB
-#: sfx2/uiconfig/ui/templatedlg.ui:144
+#: sfx2/uiconfig/ui/templatedlg.ui:143
msgctxt "templatedlg|search_filter|tooltip_text"
msgid "Search"
msgstr "Hledat"
#. sGZMC
-#: sfx2/uiconfig/ui/templatedlg.ui:148
+#: sfx2/uiconfig/ui/templatedlg.ui:147
msgctxt "templatedlg|search_filter"
msgid "Search..."
msgstr "Hledat…"
#. DF5YC
-#: sfx2/uiconfig/ui/templatedlg.ui:167
+#: sfx2/uiconfig/ui/templatedlg.ui:166
msgctxt "templatedlg|action_menu|label"
msgid "_Manage"
msgstr "_Spravovat"
#. LUs2m
-#: sfx2/uiconfig/ui/templatedlg.ui:181
+#: sfx2/uiconfig/ui/templatedlg.ui:180
msgctxt "templatedlg|extended_tip|action_menu"
msgid "Provides commands to create, rename and delete categories, reset default templates, and refresh the template manager."
msgstr "Nabízí příkazy pro vytvoření, přejmenování a smazání kategorie, obnovení výchozích šablon a obnovení správce šablon."
#. fXVNY
-#: sfx2/uiconfig/ui/templatedlg.ui:208
+#: sfx2/uiconfig/ui/templatedlg.ui:207
msgctxt "templatedlg|filter_application|tooltip_text"
msgid "Filter by Application"
msgstr "Filtrovat podle aplikace"
#. tqVhJ
-#: sfx2/uiconfig/ui/templatedlg.ui:210
+#: sfx2/uiconfig/ui/templatedlg.ui:209
msgctxt "templatedlg|applist"
msgid "All Applications"
msgstr "Všechny aplikace"
#. pD6pU
-#: sfx2/uiconfig/ui/templatedlg.ui:211
+#: sfx2/uiconfig/ui/templatedlg.ui:210
msgctxt "templatedlg|applist"
msgid "Text Documents"
msgstr "Textové dokumenty"
#. eECt7
-#: sfx2/uiconfig/ui/templatedlg.ui:212
+#: sfx2/uiconfig/ui/templatedlg.ui:211
msgctxt "templatedlg|applist"
msgid "Spreadsheets"
msgstr "Sešity"
#. ajLbV
-#: sfx2/uiconfig/ui/templatedlg.ui:213
+#: sfx2/uiconfig/ui/templatedlg.ui:212
msgctxt "templatedlg|applist"
msgid "Presentations"
msgstr "Prezentace"
#. LfUzB
-#: sfx2/uiconfig/ui/templatedlg.ui:214
+#: sfx2/uiconfig/ui/templatedlg.ui:213
msgctxt "templatedlg|applist"
msgid "Drawings"
msgstr "Kresby"
#. t7zE7
-#: sfx2/uiconfig/ui/templatedlg.ui:228
+#: sfx2/uiconfig/ui/templatedlg.ui:227
msgctxt "templatedlg|filter_folder|tooltip_text"
msgid "Filter by Category"
msgstr "Filtrovat podle kategorie"
#. 93CGw
-#: sfx2/uiconfig/ui/templatedlg.ui:230
+#: sfx2/uiconfig/ui/templatedlg.ui:229
msgctxt "templatedlg|folderlist"
msgid "All Categories"
msgstr "Všechny kategorie"
#. NF9wE
-#: sfx2/uiconfig/ui/templatedlg.ui:251
+#: sfx2/uiconfig/ui/templatedlg.ui:250
msgctxt "templatedlg|label1"
msgid "Filter"
msgstr "Filtrovat"
#. ewTL3
-#: sfx2/uiconfig/ui/templatedlg.ui:357
+#: sfx2/uiconfig/ui/templatedlg.ui:356
msgctxt "templatedlg|treeviewcolumn1"
msgid "Name"
msgstr "Název"
#. 7EJRA
-#: sfx2/uiconfig/ui/templatedlg.ui:374
+#: sfx2/uiconfig/ui/templatedlg.ui:373
msgctxt "templatedlg|treeviewcolumn2"
msgid "Category"
msgstr "Kategorie"
#. AC27i
-#: sfx2/uiconfig/ui/templatedlg.ui:389
+#: sfx2/uiconfig/ui/templatedlg.ui:388
msgctxt "templatedlg|treeviewcolumn3"
msgid "Application"
msgstr "Aplikace"
#. eSaBw
-#: sfx2/uiconfig/ui/templatedlg.ui:404
+#: sfx2/uiconfig/ui/templatedlg.ui:403
msgctxt "templatedlg|treeviewcolumn4"
msgid "Modified"
msgstr "Změněno"
#. pNzYA
-#: sfx2/uiconfig/ui/templatedlg.ui:419
+#: sfx2/uiconfig/ui/templatedlg.ui:418
msgctxt "templatedlg|treeviewcolumn5"
msgid "Size"
msgstr "Velikost"
#. j39jM
-#: sfx2/uiconfig/ui/templatedlg.ui:445
+#: sfx2/uiconfig/ui/templatedlg.ui:444
msgctxt "templatedlg|thumbnailviewlabel"
msgid "Template List"
msgstr "Seznam šablon"
#. yEhgP
-#: sfx2/uiconfig/ui/templatedlg.ui:464
+#: sfx2/uiconfig/ui/templatedlg.ui:463
msgctxt "templatedlg|thumbnail_view_btn|tooltip_text"
msgid "Thumbnail View"
msgstr "Zobrazení náhledů"
#. j76ke
-#: sfx2/uiconfig/ui/templatedlg.ui:481
+#: sfx2/uiconfig/ui/templatedlg.ui:480
msgctxt "templatedlg|list_view_btn|tooltip_text"
msgid "List View"
msgstr "Zobrazení seznamu"
diff --git a/source/cy/sfx2/messages.po b/source/cy/sfx2/messages.po
index bba3130f6f2..4bcd8763f0a 100644
--- a/source/cy/sfx2/messages.po
+++ b/source/cy/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-08-24 12:29+0200\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
"PO-Revision-Date: 2022-07-12 03:33+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: Welsh <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/cy/>\n"
@@ -2962,7 +2962,7 @@ msgid "No"
msgstr "Na"
#. kDKBB
-#: sfx2/uiconfig/ui/commandpopup.ui:36
+#: sfx2/uiconfig/ui/commandpopup.ui:35
msgctxt "commandpopup|entry"
msgid "Search command"
msgstr "Gorchymyn chwilio"
@@ -4902,139 +4902,139 @@ msgid "or Create a New Category"
msgstr "neu Greu Categori Newydd"
#. eUWTy
-#: sfx2/uiconfig/ui/templatedlg.ui:46
+#: sfx2/uiconfig/ui/templatedlg.ui:44
msgctxt "templatedlg|TemplateDialog"
msgid "Templates"
msgstr "Templedi"
#. rhuYP
-#: sfx2/uiconfig/ui/templatedlg.ui:77
+#: sfx2/uiconfig/ui/templatedlg.ui:76
msgctxt "templatedlg|hidedialogcb"
msgid "Show this dialog at startup"
msgstr "Dangos y ddeialog hon wrth gychwyn"
#. 32zsB
-#: sfx2/uiconfig/ui/templatedlg.ui:144
+#: sfx2/uiconfig/ui/templatedlg.ui:143
msgctxt "templatedlg|search_filter|tooltip_text"
msgid "Search"
msgstr "Chwilio"
#. sGZMC
-#: sfx2/uiconfig/ui/templatedlg.ui:148
+#: sfx2/uiconfig/ui/templatedlg.ui:147
msgctxt "templatedlg|search_filter"
msgid "Search..."
msgstr "Chwilio..."
#. DF5YC
-#: sfx2/uiconfig/ui/templatedlg.ui:167
+#: sfx2/uiconfig/ui/templatedlg.ui:166
msgctxt "templatedlg|action_menu|label"
msgid "_Manage"
msgstr "_Rheoli"
#. LUs2m
-#: sfx2/uiconfig/ui/templatedlg.ui:181
+#: sfx2/uiconfig/ui/templatedlg.ui:180
msgctxt "templatedlg|extended_tip|action_menu"
msgid "Provides commands to create, rename and delete categories, reset default templates, and refresh the template manager."
msgstr "Yn darparu gorchmynion i greu, ailenwi a dileu categorïau, ailosod templedi rhagosodedig, ac adnewyddu rheolwr y templed."
#. fXVNY
-#: sfx2/uiconfig/ui/templatedlg.ui:208
+#: sfx2/uiconfig/ui/templatedlg.ui:207
msgctxt "templatedlg|filter_application|tooltip_text"
msgid "Filter by Application"
msgstr "Hidlo yn erbyn Rhaglenni"
#. tqVhJ
-#: sfx2/uiconfig/ui/templatedlg.ui:210
+#: sfx2/uiconfig/ui/templatedlg.ui:209
msgctxt "templatedlg|applist"
msgid "All Applications"
msgstr "Pob Rhaglen"
#. pD6pU
-#: sfx2/uiconfig/ui/templatedlg.ui:211
+#: sfx2/uiconfig/ui/templatedlg.ui:210
msgctxt "templatedlg|applist"
msgid "Text Documents"
msgstr "Dogfennau Testun"
#. eECt7
-#: sfx2/uiconfig/ui/templatedlg.ui:212
+#: sfx2/uiconfig/ui/templatedlg.ui:211
msgctxt "templatedlg|applist"
msgid "Spreadsheets"
msgstr "Taenlenni"
#. ajLbV
-#: sfx2/uiconfig/ui/templatedlg.ui:213
+#: sfx2/uiconfig/ui/templatedlg.ui:212
msgctxt "templatedlg|applist"
msgid "Presentations"
msgstr "Cyflwyniadau"
#. LfUzB
-#: sfx2/uiconfig/ui/templatedlg.ui:214
+#: sfx2/uiconfig/ui/templatedlg.ui:213
msgctxt "templatedlg|applist"
msgid "Drawings"
msgstr "Lluniadau"
#. t7zE7
-#: sfx2/uiconfig/ui/templatedlg.ui:228
+#: sfx2/uiconfig/ui/templatedlg.ui:227
msgctxt "templatedlg|filter_folder|tooltip_text"
msgid "Filter by Category"
msgstr "Hidlo yn ôl Categori"
#. 93CGw
-#: sfx2/uiconfig/ui/templatedlg.ui:230
+#: sfx2/uiconfig/ui/templatedlg.ui:229
msgctxt "templatedlg|folderlist"
msgid "All Categories"
msgstr "Pob Categori"
#. NF9wE
-#: sfx2/uiconfig/ui/templatedlg.ui:251
+#: sfx2/uiconfig/ui/templatedlg.ui:250
msgctxt "templatedlg|label1"
msgid "Filter"
msgstr "Hidl"
#. ewTL3
-#: sfx2/uiconfig/ui/templatedlg.ui:357
+#: sfx2/uiconfig/ui/templatedlg.ui:356
msgctxt "templatedlg|treeviewcolumn1"
msgid "Name"
msgstr "Enw"
#. 7EJRA
-#: sfx2/uiconfig/ui/templatedlg.ui:374
+#: sfx2/uiconfig/ui/templatedlg.ui:373
msgctxt "templatedlg|treeviewcolumn2"
msgid "Category"
msgstr "Categori"
#. AC27i
-#: sfx2/uiconfig/ui/templatedlg.ui:389
+#: sfx2/uiconfig/ui/templatedlg.ui:388
msgctxt "templatedlg|treeviewcolumn3"
msgid "Application"
msgstr "Rhaglen"
#. eSaBw
-#: sfx2/uiconfig/ui/templatedlg.ui:404
+#: sfx2/uiconfig/ui/templatedlg.ui:403
msgctxt "templatedlg|treeviewcolumn4"
msgid "Modified"
msgstr "Newidiwyd"
#. pNzYA
-#: sfx2/uiconfig/ui/templatedlg.ui:419
+#: sfx2/uiconfig/ui/templatedlg.ui:418
msgctxt "templatedlg|treeviewcolumn5"
msgid "Size"
msgstr "Maint"
#. j39jM
-#: sfx2/uiconfig/ui/templatedlg.ui:445
+#: sfx2/uiconfig/ui/templatedlg.ui:444
msgctxt "templatedlg|thumbnailviewlabel"
msgid "Template List"
msgstr "Rhestr Templedi"
#. yEhgP
-#: sfx2/uiconfig/ui/templatedlg.ui:464
+#: sfx2/uiconfig/ui/templatedlg.ui:463
msgctxt "templatedlg|thumbnail_view_btn|tooltip_text"
msgid "Thumbnail View"
msgstr "Golygfa Llun Bach"
#. j76ke
-#: sfx2/uiconfig/ui/templatedlg.ui:481
+#: sfx2/uiconfig/ui/templatedlg.ui:480
msgctxt "templatedlg|list_view_btn|tooltip_text"
msgid "List View"
msgstr "Golwg Rhestr"
diff --git a/source/da/helpcontent2/source/auxiliary.po b/source/da/helpcontent2/source/auxiliary.po
index 9995659696c..0cbb19a98a2 100644
--- a/source/da/helpcontent2/source/auxiliary.po
+++ b/source/da/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-11-25 19:33+0100\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
"PO-Revision-Date: 2022-01-14 20:38+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_help-master/auxiliary/da/>\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.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562523768.000000\n"
#. fEEXD
@@ -313,11 +313,11 @@ msgctxt ""
msgid "Writing Calc Macros"
msgstr "Skrivning af Calc-makroer"
-#. Q59GN
+#. vBXqp
#: scalc.tree
msgctxt ""
"scalc.tree\n"
-"0815\n"
+"0816\n"
"node.text"
msgid "Miscellaneous"
msgstr "Diverse"
diff --git a/source/da/sfx2/messages.po b/source/da/sfx2/messages.po
index 1ef0aad5d7f..e7f4516076f 100644
--- a/source/da/sfx2/messages.po
+++ b/source/da/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: 2022-08-24 12:29+0200\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
"PO-Revision-Date: 2022-04-25 17:32+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/da/>\n"
@@ -2963,7 +2963,7 @@ msgid "No"
msgstr "Nej"
#. kDKBB
-#: sfx2/uiconfig/ui/commandpopup.ui:36
+#: sfx2/uiconfig/ui/commandpopup.ui:35
msgctxt "commandpopup|entry"
msgid "Search command"
msgstr "Søgekommando"
@@ -4903,139 +4903,139 @@ msgid "or Create a New Category"
msgstr "eller opret en ny kategori"
#. eUWTy
-#: sfx2/uiconfig/ui/templatedlg.ui:46
+#: sfx2/uiconfig/ui/templatedlg.ui:44
msgctxt "templatedlg|TemplateDialog"
msgid "Templates"
msgstr "Skabeloner"
#. rhuYP
-#: sfx2/uiconfig/ui/templatedlg.ui:77
+#: sfx2/uiconfig/ui/templatedlg.ui:76
msgctxt "templatedlg|hidedialogcb"
msgid "Show this dialog at startup"
msgstr "Vis dialog ved opstart"
#. 32zsB
-#: sfx2/uiconfig/ui/templatedlg.ui:144
+#: sfx2/uiconfig/ui/templatedlg.ui:143
msgctxt "templatedlg|search_filter|tooltip_text"
msgid "Search"
msgstr "Søg"
#. sGZMC
-#: sfx2/uiconfig/ui/templatedlg.ui:148
+#: sfx2/uiconfig/ui/templatedlg.ui:147
msgctxt "templatedlg|search_filter"
msgid "Search..."
msgstr "Søg..."
#. DF5YC
-#: sfx2/uiconfig/ui/templatedlg.ui:167
+#: sfx2/uiconfig/ui/templatedlg.ui:166
msgctxt "templatedlg|action_menu|label"
msgid "_Manage"
msgstr "Administrer"
#. LUs2m
-#: sfx2/uiconfig/ui/templatedlg.ui:181
+#: sfx2/uiconfig/ui/templatedlg.ui:180
msgctxt "templatedlg|extended_tip|action_menu"
msgid "Provides commands to create, rename and delete categories, reset default templates, and refresh the template manager."
msgstr "Indeholder kommandoer til at oprette, omdøbe og slette kategorier, nulstille standardskabeloner og genopfriske skabelonhåndteringen."
#. fXVNY
-#: sfx2/uiconfig/ui/templatedlg.ui:208
+#: sfx2/uiconfig/ui/templatedlg.ui:207
msgctxt "templatedlg|filter_application|tooltip_text"
msgid "Filter by Application"
msgstr "Filtrér efter program"
#. tqVhJ
-#: sfx2/uiconfig/ui/templatedlg.ui:210
+#: sfx2/uiconfig/ui/templatedlg.ui:209
msgctxt "templatedlg|applist"
msgid "All Applications"
msgstr "Alle programmer"
#. pD6pU
-#: sfx2/uiconfig/ui/templatedlg.ui:211
+#: sfx2/uiconfig/ui/templatedlg.ui:210
msgctxt "templatedlg|applist"
msgid "Text Documents"
msgstr "Tekstdokumenter"
#. eECt7
-#: sfx2/uiconfig/ui/templatedlg.ui:212
+#: sfx2/uiconfig/ui/templatedlg.ui:211
msgctxt "templatedlg|applist"
msgid "Spreadsheets"
msgstr "Regneark"
#. ajLbV
-#: sfx2/uiconfig/ui/templatedlg.ui:213
+#: sfx2/uiconfig/ui/templatedlg.ui:212
msgctxt "templatedlg|applist"
msgid "Presentations"
msgstr "Præsentationer"
#. LfUzB
-#: sfx2/uiconfig/ui/templatedlg.ui:214
+#: sfx2/uiconfig/ui/templatedlg.ui:213
msgctxt "templatedlg|applist"
msgid "Drawings"
msgstr "Tegninger"
#. t7zE7
-#: sfx2/uiconfig/ui/templatedlg.ui:228
+#: sfx2/uiconfig/ui/templatedlg.ui:227
msgctxt "templatedlg|filter_folder|tooltip_text"
msgid "Filter by Category"
msgstr "Filtrér efter kategori"
#. 93CGw
-#: sfx2/uiconfig/ui/templatedlg.ui:230
+#: sfx2/uiconfig/ui/templatedlg.ui:229
msgctxt "templatedlg|folderlist"
msgid "All Categories"
msgstr "Alle kategorier"
#. NF9wE
-#: sfx2/uiconfig/ui/templatedlg.ui:251
+#: sfx2/uiconfig/ui/templatedlg.ui:250
msgctxt "templatedlg|label1"
msgid "Filter"
msgstr "Filter"
#. ewTL3
-#: sfx2/uiconfig/ui/templatedlg.ui:357
+#: sfx2/uiconfig/ui/templatedlg.ui:356
msgctxt "templatedlg|treeviewcolumn1"
msgid "Name"
msgstr "Navn"
#. 7EJRA
-#: sfx2/uiconfig/ui/templatedlg.ui:374
+#: sfx2/uiconfig/ui/templatedlg.ui:373
msgctxt "templatedlg|treeviewcolumn2"
msgid "Category"
msgstr "Kategori"
#. AC27i
-#: sfx2/uiconfig/ui/templatedlg.ui:389
+#: sfx2/uiconfig/ui/templatedlg.ui:388
msgctxt "templatedlg|treeviewcolumn3"
msgid "Application"
msgstr "Program"
#. eSaBw
-#: sfx2/uiconfig/ui/templatedlg.ui:404
+#: sfx2/uiconfig/ui/templatedlg.ui:403
msgctxt "templatedlg|treeviewcolumn4"
msgid "Modified"
msgstr "Ændret"
#. pNzYA
-#: sfx2/uiconfig/ui/templatedlg.ui:419
+#: sfx2/uiconfig/ui/templatedlg.ui:418
msgctxt "templatedlg|treeviewcolumn5"
msgid "Size"
msgstr "Størrelse"
#. j39jM
-#: sfx2/uiconfig/ui/templatedlg.ui:445
+#: sfx2/uiconfig/ui/templatedlg.ui:444
msgctxt "templatedlg|thumbnailviewlabel"
msgid "Template List"
msgstr "Skabelonliste"
#. yEhgP
-#: sfx2/uiconfig/ui/templatedlg.ui:464
+#: sfx2/uiconfig/ui/templatedlg.ui:463
msgctxt "templatedlg|thumbnail_view_btn|tooltip_text"
msgid "Thumbnail View"
msgstr "Miniaturevisning"
#. j76ke
-#: sfx2/uiconfig/ui/templatedlg.ui:481
+#: sfx2/uiconfig/ui/templatedlg.ui:480
msgctxt "templatedlg|list_view_btn|tooltip_text"
msgid "List View"
msgstr "LIstevisning"
diff --git a/source/de/cui/messages.po b/source/de/cui/messages.po
index f22ee82e9a1..4f2b6fb32b3 100644
--- a/source/de/cui/messages.po
+++ b/source/de/cui/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-07-08 12:15+0200\n"
-"PO-Revision-Date: 2022-08-07 18:13+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"PO-Revision-Date: 2022-09-21 09:47+0000\n"
+"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -2317,7 +2317,7 @@ msgstr "Um in Writer Fotos oder Bilder mit unterschiedlichen Formen darzustellen
#: cui/inc/tipoftheday.hrc:74
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Page/Slide ▸ Properties ▸ “Fit object to paper format” in Draw/Impress to resize the objects so that they fit on your chosen paper format."
-msgstr "Um die Größe von Objekten so anzupassen, dass Sie zu Ihrem gewählten Papierformat passen, wählen Sie in Draw/Impress »Folie ▸ Eigenschaften… ▸ Objekt an Papierformat anpassen«."
+msgstr "Um in Draw/Impress die Größe von Objekten so anzupassen, dass Sie zu Ihrem gewählten Papierformat passen, wählen Sie »Folie ▸ Folieneigenschaften… ▸ Objekt an Papierformat anpassen«."
#. hj7H4
#: cui/inc/tipoftheday.hrc:75
@@ -2342,7 +2342,7 @@ msgstr "Um in Writer den Inhalt eines anderen Dokuments in Ihrem Dokument anzuze
#: cui/inc/tipoftheday.hrc:78
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To automatically number table rows in Writer, select the relevant column, then apply a List Style."
-msgstr "Um Tabellenzeilen in Writer automatisch zu nummerieren, wählen Sie die entsprechende Spalte aus und wenden dann ein Listenvorlage an."
+msgstr "Um in Writer Tabellenzeilen automatisch zu nummerieren, wählen Sie die entsprechende Spalte aus und wenden dann eine Listenvorlage an."
#. AzNEm
#. no local help URI
@@ -2416,7 +2416,7 @@ msgstr "Um in Calc festzulegen, dass Zeilen/Spalten im Ausdruck auf allen Seiten
#: cui/inc/tipoftheday.hrc:90
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Insert images and photos into shapes in Draw and Impress. Right-click on a shape, choose Area ▸ Image ▸ Add / Import, and use Options to adjust appearance."
-msgstr "Um Bilder und Fotos in Draw oder Impress in Formen einzufügen, klicken Sie mit der rechten Maustaste auf eine Form, wählen Sie »Fläche… ▸ Register: Fläche ▸ Schaltfläche: Bild ▸ Schaltfläche: Hinzufügen / Importieren« und verwenden Sie Einstellungen im Bereich »Optionen«, um das Erscheinungsbild anzupassen."
+msgstr "Um Bilder und Fotos in Draw oder Impress in Formen einzufügen, klicken Sie mit der rechten Maustaste auf eine Form, wählen Sie »Fläche… ▸ Register: Fläche ▸ Schaltfläche: Bild ▸ Schaltfläche: Hinzufügen / Importieren…« und verwenden Sie Einstellungen im Bereich »Optionen«, um das Erscheinungsbild anzupassen."
#. W6E2A
#: cui/inc/tipoftheday.hrc:91
diff --git a/source/de/filter/messages.po b/source/de/filter/messages.po
index d8686a2318f..cac5dd77af6 100644
--- a/source/de/filter/messages.po
+++ b/source/de/filter/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-06-15 22:28+0200\n"
-"PO-Revision-Date: 2022-07-26 09:17+0000\n"
-"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
+"PO-Revision-Date: 2022-09-21 09:47+0000\n"
+"Last-Translator: Annabelle Wübbelsmann <translowl@web.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-master/filtermessages/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -616,7 +616,7 @@ msgstr "D_oppelte Feldnamen erlauben"
#: filter/uiconfig/ui/pdfgeneralpage.ui:581
msgctxt "pdfgeneralpage|extended_tip|allowdups"
msgid "Allows you to use the same field name for multiple fields in the generated PDF file. If disabled, field names will be exported using generated unique names."
-msgstr "Erlaubt den Gebrauch des selben Feldname für mehrere Felder in der generierten PDF-Datei. Falls deaktiviert, werden Feldnamen mit generierten eindeutigen Namen exportiert."
+msgstr "Erlaubt den Gebrauch desselben Feldnamen für mehrere Felder in der generierten PDF-Datei. Falls deaktiviert, werden Feldnamen mit generierten eindeutigen Namen exportiert."
#. tkPCH
#: filter/uiconfig/ui/pdfgeneralpage.ui:597
diff --git a/source/de/helpcontent2/source/auxiliary.po b/source/de/helpcontent2/source/auxiliary.po
index 93e99ecd8cc..f1a1ecd1ed2 100644
--- a/source/de/helpcontent2/source/auxiliary.po
+++ b/source/de/helpcontent2/source/auxiliary.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-11-25 19:33+0100\n"
-"PO-Revision-Date: 2021-12-13 06:38+0000\n"
-"Last-Translator: Ettore Atalan <atalanttore@googlemail.com>\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
+"PO-Revision-Date: 2022-08-10 13:23+0000\n"
+"Last-Translator: Annabelle Wübbelsmann <translowl@web.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/auxiliary/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\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.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562560629.000000\n"
#. fEEXD
@@ -313,11 +313,11 @@ msgctxt ""
msgid "Writing Calc Macros"
msgstr "Calc-Makros schreiben"
-#. Q59GN
+#. vBXqp
#: scalc.tree
msgctxt ""
"scalc.tree\n"
-"0815\n"
+"0816\n"
"node.text"
msgid "Miscellaneous"
msgstr "Verschiedenes"
diff --git a/source/de/instsetoo_native/inc_openoffice/windows/msi_languages.po b/source/de/instsetoo_native/inc_openoffice/windows/msi_languages.po
index fe496fd7cbb..534a73bc5ba 100644
--- a/source/de/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/source/de/instsetoo_native/inc_openoffice/windows/msi_languages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-03-21 12:32+0100\n"
-"PO-Revision-Date: 2022-07-12 03:33+0000\n"
-"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
+"PO-Revision-Date: 2022-09-21 09:47+0000\n"
+"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-master/instsetoo_nativeinc_openofficewindowsmsi_languages/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -2264,7 +2264,7 @@ msgctxt ""
"OOO_CONTROL_178\n"
"LngText.text"
msgid "You have chosen to remove the program from your system."
-msgstr "Sie haben sich entschlossen das Programm aus ihrem System zu entfernen."
+msgstr "Sie haben sich entschlossen, das Programm aus Ihrem System zu entfernen."
#. FxWU4
#: Control.ulf
@@ -2948,7 +2948,7 @@ msgctxt ""
"OOO_CONTROL_274\n"
"LngText.text"
msgid "Set [DEFINEDPRODUCT] to be the default application for Microsoft Office file types."
-msgstr "Wählen Sie die Microsoft Office Dateitypen, die standardmäßig mit [DEFINEDPRODUCT] geöffnet werden sollen."
+msgstr "Wählen Sie die Microsoft Office-Dateitypen, die standardmäßig mit [DEFINEDPRODUCT] geöffnet werden sollen."
#. BYWZ6
#: Control.ulf
@@ -2957,7 +2957,7 @@ msgctxt ""
"OOO_CONTROL_275\n"
"LngText.text"
msgid "[ProductName] can be set as the default application to open Microsoft Office file types. This means, for instance, that if you double click on one of these files, [ProductName] will open it, not the program that opens it now."
-msgstr "[ProductName] kann als Standardprogramm für Microsoft Office Dateitypen festgelegt werden. Das bedeutet, dass Dateien dieses Typs von jetzt an mit [ProductName] und nicht mehr mit dem bisherigen Standardprogramm geöffnet werden."
+msgstr "[ProductName] kann als Standardprogramm für Microsoft Office-Dateitypen festgelegt werden. Das bedeutet, dass Dateien dieses Typs von jetzt an mit [ProductName] und nicht mehr mit dem bisherigen Standardprogramm geöffnet werden."
#. xMzmY
#: Control.ulf
@@ -3155,7 +3155,7 @@ msgctxt ""
"OOO_CONTROL_328\n"
"LngText.text"
msgid "The [ProductName] Help must be installed in the same directory as the program."
-msgstr "Die Hilfe von [Produktname] muss im selben Verzeichnis wie das Programm installiert sein."
+msgstr "Die Hilfe von [Productname] muss im selben Verzeichnis wie das Programm installiert sein."
#. jeyr7
#: CustomAc.ulf
diff --git a/source/de/sc/messages.po b/source/de/sc/messages.po
index 6773ecc4a5d..b5751e20088 100644
--- a/source/de/sc/messages.po
+++ b/source/de/sc/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-08-08 14:37+0200\n"
-"PO-Revision-Date: 2022-08-08 12:42+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"PO-Revision-Date: 2022-09-21 09:47+0000\n"
+"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\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.12.2\n"
"X-POOTLE-MTIME: 1565592942.000000\n"
#. kBovX
@@ -29253,7 +29253,7 @@ msgstr "links"
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:298
msgctxt "extended_tip|alignlb"
msgid "Determines the direction that the cursor in the spreadsheet will move after you press the Enter key."
-msgstr "Bestimmt, in welche Richtung der Cursor im Tabellendokument nach Betätigung der Eingabetaste weiter rückt."
+msgstr "Bestimmt, in welche Richtung der Cursor im Tabellendokument nach Betätigung der Eingabetaste weiterrückt."
#. dnDdz
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:309
diff --git a/source/de/sfx2/messages.po b/source/de/sfx2/messages.po
index a03e64e7986..de6d2558fc2 100644
--- a/source/de/sfx2/messages.po
+++ b/source/de/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: 2022-08-24 12:29+0200\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
"PO-Revision-Date: 2022-07-26 09:17+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/de/>\n"
@@ -2964,7 +2964,7 @@ msgid "No"
msgstr "Nein"
#. kDKBB
-#: sfx2/uiconfig/ui/commandpopup.ui:36
+#: sfx2/uiconfig/ui/commandpopup.ui:35
msgctxt "commandpopup|entry"
msgid "Search command"
msgstr "Befehl suchen"
@@ -4904,139 +4904,139 @@ msgid "or Create a New Category"
msgstr "oder eine neue Kategorie erstellen"
#. eUWTy
-#: sfx2/uiconfig/ui/templatedlg.ui:46
+#: sfx2/uiconfig/ui/templatedlg.ui:44
msgctxt "templatedlg|TemplateDialog"
msgid "Templates"
msgstr "Dokumentvorlagen"
#. rhuYP
-#: sfx2/uiconfig/ui/templatedlg.ui:77
+#: sfx2/uiconfig/ui/templatedlg.ui:76
msgctxt "templatedlg|hidedialogcb"
msgid "Show this dialog at startup"
msgstr "Diesen Dialog beim Programmstart anzeigen"
#. 32zsB
-#: sfx2/uiconfig/ui/templatedlg.ui:144
+#: sfx2/uiconfig/ui/templatedlg.ui:143
msgctxt "templatedlg|search_filter|tooltip_text"
msgid "Search"
msgstr "Suchen"
#. sGZMC
-#: sfx2/uiconfig/ui/templatedlg.ui:148
+#: sfx2/uiconfig/ui/templatedlg.ui:147
msgctxt "templatedlg|search_filter"
msgid "Search..."
msgstr "Suchen…"
#. DF5YC
-#: sfx2/uiconfig/ui/templatedlg.ui:167
+#: sfx2/uiconfig/ui/templatedlg.ui:166
msgctxt "templatedlg|action_menu|label"
msgid "_Manage"
msgstr "_Verwalten"
#. LUs2m
-#: sfx2/uiconfig/ui/templatedlg.ui:181
+#: sfx2/uiconfig/ui/templatedlg.ui:180
msgctxt "templatedlg|extended_tip|action_menu"
msgid "Provides commands to create, rename and delete categories, reset default templates, and refresh the template manager."
msgstr "Enthält Befehle zum Erstellen, Umbenennen und Löschen von Kategorien, zum Zurücksetzen von Standardvorlagen und zum Aktualisieren des Vorlagenmanagers."
#. fXVNY
-#: sfx2/uiconfig/ui/templatedlg.ui:208
+#: sfx2/uiconfig/ui/templatedlg.ui:207
msgctxt "templatedlg|filter_application|tooltip_text"
msgid "Filter by Application"
msgstr "Nach Anwendung filtern"
#. tqVhJ
-#: sfx2/uiconfig/ui/templatedlg.ui:210
+#: sfx2/uiconfig/ui/templatedlg.ui:209
msgctxt "templatedlg|applist"
msgid "All Applications"
msgstr "Alle Anwendungen"
#. pD6pU
-#: sfx2/uiconfig/ui/templatedlg.ui:211
+#: sfx2/uiconfig/ui/templatedlg.ui:210
msgctxt "templatedlg|applist"
msgid "Text Documents"
msgstr "Textdokumente"
#. eECt7
-#: sfx2/uiconfig/ui/templatedlg.ui:212
+#: sfx2/uiconfig/ui/templatedlg.ui:211
msgctxt "templatedlg|applist"
msgid "Spreadsheets"
msgstr "Tabellendokumente"
#. ajLbV
-#: sfx2/uiconfig/ui/templatedlg.ui:213
+#: sfx2/uiconfig/ui/templatedlg.ui:212
msgctxt "templatedlg|applist"
msgid "Presentations"
msgstr "Präsentationen"
#. LfUzB
-#: sfx2/uiconfig/ui/templatedlg.ui:214
+#: sfx2/uiconfig/ui/templatedlg.ui:213
msgctxt "templatedlg|applist"
msgid "Drawings"
msgstr "Zeichnungen"
#. t7zE7
-#: sfx2/uiconfig/ui/templatedlg.ui:228
+#: sfx2/uiconfig/ui/templatedlg.ui:227
msgctxt "templatedlg|filter_folder|tooltip_text"
msgid "Filter by Category"
msgstr "Nach Kategorie filtern"
#. 93CGw
-#: sfx2/uiconfig/ui/templatedlg.ui:230
+#: sfx2/uiconfig/ui/templatedlg.ui:229
msgctxt "templatedlg|folderlist"
msgid "All Categories"
msgstr "Alle Kategorien"
#. NF9wE
-#: sfx2/uiconfig/ui/templatedlg.ui:251
+#: sfx2/uiconfig/ui/templatedlg.ui:250
msgctxt "templatedlg|label1"
msgid "Filter"
msgstr "Filter:"
#. ewTL3
-#: sfx2/uiconfig/ui/templatedlg.ui:357
+#: sfx2/uiconfig/ui/templatedlg.ui:356
msgctxt "templatedlg|treeviewcolumn1"
msgid "Name"
msgstr "Name"
#. 7EJRA
-#: sfx2/uiconfig/ui/templatedlg.ui:374
+#: sfx2/uiconfig/ui/templatedlg.ui:373
msgctxt "templatedlg|treeviewcolumn2"
msgid "Category"
msgstr "Kategorie"
#. AC27i
-#: sfx2/uiconfig/ui/templatedlg.ui:389
+#: sfx2/uiconfig/ui/templatedlg.ui:388
msgctxt "templatedlg|treeviewcolumn3"
msgid "Application"
msgstr "Anwendung"
#. eSaBw
-#: sfx2/uiconfig/ui/templatedlg.ui:404
+#: sfx2/uiconfig/ui/templatedlg.ui:403
msgctxt "templatedlg|treeviewcolumn4"
msgid "Modified"
msgstr "Geändert"
#. pNzYA
-#: sfx2/uiconfig/ui/templatedlg.ui:419
+#: sfx2/uiconfig/ui/templatedlg.ui:418
msgctxt "templatedlg|treeviewcolumn5"
msgid "Size"
msgstr "Größe"
#. j39jM
-#: sfx2/uiconfig/ui/templatedlg.ui:445
+#: sfx2/uiconfig/ui/templatedlg.ui:444
msgctxt "templatedlg|thumbnailviewlabel"
msgid "Template List"
msgstr "Vorlagenliste"
#. yEhgP
-#: sfx2/uiconfig/ui/templatedlg.ui:464
+#: sfx2/uiconfig/ui/templatedlg.ui:463
msgctxt "templatedlg|thumbnail_view_btn|tooltip_text"
msgid "Thumbnail View"
msgstr "Miniaturansicht"
#. j76ke
-#: sfx2/uiconfig/ui/templatedlg.ui:481
+#: sfx2/uiconfig/ui/templatedlg.ui:480
msgctxt "templatedlg|list_view_btn|tooltip_text"
msgid "List View"
msgstr "Listenansicht"
diff --git a/source/dgo/sfx2/messages.po b/source/dgo/sfx2/messages.po
index e69d87ba5ee..623d7031b7e 100644
--- a/source/dgo/sfx2/messages.po
+++ b/source/dgo/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-08-24 12:29+0200\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
"PO-Revision-Date: 2018-10-21 19:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2977,7 +2977,7 @@ msgid "No"
msgstr "नेईं"
#. kDKBB
-#: sfx2/uiconfig/ui/commandpopup.ui:36
+#: sfx2/uiconfig/ui/commandpopup.ui:35
msgctxt "commandpopup|entry"
msgid "Search command"
msgstr ""
@@ -4976,144 +4976,144 @@ msgid "or Create a New Category"
msgstr ""
#. eUWTy
-#: sfx2/uiconfig/ui/templatedlg.ui:46
+#: sfx2/uiconfig/ui/templatedlg.ui:44
#, fuzzy
msgctxt "templatedlg|TemplateDialog"
msgid "Templates"
msgstr "टैंप्लेट"
#. rhuYP
-#: sfx2/uiconfig/ui/templatedlg.ui:77
+#: sfx2/uiconfig/ui/templatedlg.ui:76
msgctxt "templatedlg|hidedialogcb"
msgid "Show this dialog at startup"
msgstr ""
#. 32zsB
-#: sfx2/uiconfig/ui/templatedlg.ui:144
+#: sfx2/uiconfig/ui/templatedlg.ui:143
#, fuzzy
msgctxt "templatedlg|search_filter|tooltip_text"
msgid "Search"
msgstr "खोज करो"
#. sGZMC
-#: sfx2/uiconfig/ui/templatedlg.ui:148
+#: sfx2/uiconfig/ui/templatedlg.ui:147
msgctxt "templatedlg|search_filter"
msgid "Search..."
msgstr "खोज करो... "
#. DF5YC
-#: sfx2/uiconfig/ui/templatedlg.ui:167
+#: sfx2/uiconfig/ui/templatedlg.ui:166
msgctxt "templatedlg|action_menu|label"
msgid "_Manage"
msgstr ""
#. LUs2m
-#: sfx2/uiconfig/ui/templatedlg.ui:181
+#: sfx2/uiconfig/ui/templatedlg.ui:180
msgctxt "templatedlg|extended_tip|action_menu"
msgid "Provides commands to create, rename and delete categories, reset default templates, and refresh the template manager."
msgstr ""
#. fXVNY
-#: sfx2/uiconfig/ui/templatedlg.ui:208
+#: sfx2/uiconfig/ui/templatedlg.ui:207
msgctxt "templatedlg|filter_application|tooltip_text"
msgid "Filter by Application"
msgstr ""
#. tqVhJ
-#: sfx2/uiconfig/ui/templatedlg.ui:210
+#: sfx2/uiconfig/ui/templatedlg.ui:209
msgctxt "templatedlg|applist"
msgid "All Applications"
msgstr ""
#. pD6pU
-#: sfx2/uiconfig/ui/templatedlg.ui:211
+#: sfx2/uiconfig/ui/templatedlg.ui:210
msgctxt "templatedlg|applist"
msgid "Text Documents"
msgstr ""
#. eECt7
-#: sfx2/uiconfig/ui/templatedlg.ui:212
+#: sfx2/uiconfig/ui/templatedlg.ui:211
msgctxt "templatedlg|applist"
msgid "Spreadsheets"
msgstr "स्प्रैडशीटां"
#. ajLbV
-#: sfx2/uiconfig/ui/templatedlg.ui:213
+#: sfx2/uiconfig/ui/templatedlg.ui:212
#, fuzzy
msgctxt "templatedlg|applist"
msgid "Presentations"
msgstr "प्रस्तुतियां"
#. LfUzB
-#: sfx2/uiconfig/ui/templatedlg.ui:214
+#: sfx2/uiconfig/ui/templatedlg.ui:213
#, fuzzy
msgctxt "templatedlg|applist"
msgid "Drawings"
msgstr "रेखाचित्र"
#. t7zE7
-#: sfx2/uiconfig/ui/templatedlg.ui:228
+#: sfx2/uiconfig/ui/templatedlg.ui:227
msgctxt "templatedlg|filter_folder|tooltip_text"
msgid "Filter by Category"
msgstr ""
#. 93CGw
-#: sfx2/uiconfig/ui/templatedlg.ui:230
+#: sfx2/uiconfig/ui/templatedlg.ui:229
msgctxt "templatedlg|folderlist"
msgid "All Categories"
msgstr ""
#. NF9wE
-#: sfx2/uiconfig/ui/templatedlg.ui:251
+#: sfx2/uiconfig/ui/templatedlg.ui:250
#, fuzzy
msgctxt "templatedlg|label1"
msgid "Filter"
msgstr "पुनो"
#. ewTL3
-#: sfx2/uiconfig/ui/templatedlg.ui:357
+#: sfx2/uiconfig/ui/templatedlg.ui:356
msgctxt "templatedlg|treeviewcolumn1"
msgid "Name"
msgstr ""
#. 7EJRA
-#: sfx2/uiconfig/ui/templatedlg.ui:374
+#: sfx2/uiconfig/ui/templatedlg.ui:373
msgctxt "templatedlg|treeviewcolumn2"
msgid "Category"
msgstr ""
#. AC27i
-#: sfx2/uiconfig/ui/templatedlg.ui:389
+#: sfx2/uiconfig/ui/templatedlg.ui:388
msgctxt "templatedlg|treeviewcolumn3"
msgid "Application"
msgstr ""
#. eSaBw
-#: sfx2/uiconfig/ui/templatedlg.ui:404
+#: sfx2/uiconfig/ui/templatedlg.ui:403
msgctxt "templatedlg|treeviewcolumn4"
msgid "Modified"
msgstr ""
#. pNzYA
-#: sfx2/uiconfig/ui/templatedlg.ui:419
+#: sfx2/uiconfig/ui/templatedlg.ui:418
msgctxt "templatedlg|treeviewcolumn5"
msgid "Size"
msgstr ""
#. j39jM
-#: sfx2/uiconfig/ui/templatedlg.ui:445
+#: sfx2/uiconfig/ui/templatedlg.ui:444
msgctxt "templatedlg|thumbnailviewlabel"
msgid "Template List"
msgstr ""
#. yEhgP
-#: sfx2/uiconfig/ui/templatedlg.ui:464
+#: sfx2/uiconfig/ui/templatedlg.ui:463
msgctxt "templatedlg|thumbnail_view_btn|tooltip_text"
msgid "Thumbnail View"
msgstr ""
#. j76ke
-#: sfx2/uiconfig/ui/templatedlg.ui:481
+#: sfx2/uiconfig/ui/templatedlg.ui:480
msgctxt "templatedlg|list_view_btn|tooltip_text"
msgid "List View"
msgstr ""
diff --git a/source/dsb/officecfg/registry/data/org/openoffice/Office.po b/source/dsb/officecfg/registry/data/org/openoffice/Office.po
index 8e23bdebc29..5a8c37f9043 100644
--- a/source/dsb/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/dsb/officecfg/registry/data/org/openoffice/Office.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-07-04 18:05+0200\n"
-"PO-Revision-Date: 2022-07-06 16:25+0000\n"
+"PO-Revision-Date: 2022-09-21 09:48+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Lower Sorbian <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeoffice/dsb/>\n"
"Language: dsb\n"
@@ -194,7 +194,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "~XML Form Document"
-msgstr "Formularny dokument ~XML"
+msgstr "Formularowy dokument ~XML"
#. WDLdc
#: Common.xcu
diff --git a/source/dsb/officecfg/registry/data/org/openoffice/Office/UI.po b/source/dsb/officecfg/registry/data/org/openoffice/Office/UI.po
index a7acffe2d9d..9fdbcd5bc25 100644
--- a/source/dsb/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/dsb/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-06-09 11:50+0200\n"
-"PO-Revision-Date: 2022-09-09 11:26+0000\n"
+"PO-Revision-Date: 2022-09-21 09:48+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Lower Sorbian <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/dsb/>\n"
"Language: dsb\n"
@@ -314,7 +314,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "FormControls"
-msgstr "Formularne wóźeńske elementy"
+msgstr "Formularowe wóźeńske elementy"
#. 4D4DL
#: BasicIDEWindowState.xcu
@@ -1354,7 +1354,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "C~onditional"
-msgstr "W~uměnjony"
+msgstr "W~uměnjone formatěrowanje"
#. 9zgw5
#: CalcCommands.xcu
@@ -1634,7 +1634,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Define Print Area"
-msgstr "Šišćarski wobceŕk definěrowaś"
+msgstr "Šišćaŕski wobceŕk definěrowaś"
#. ZKFGB
#: CalcCommands.xcu
@@ -3604,7 +3604,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sub~totals..."
-msgstr "~Mjazywuslědki..."
+msgstr "~Mjazyrezultaty..."
#. R4YB9
#: CalcCommands.xcu
@@ -3664,7 +3664,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Rename S~heet..."
-msgstr "Ta_belu pśemjeniś..."
+msgstr "Ta~belu pśemjeniś..."
#. dRbma
#: CalcCommands.xcu
@@ -5194,7 +5194,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Control"
-msgstr "Formularny wóźeński element"
+msgstr "Formularowy wóźeński element"
#. wNLF8
#: CalcWindowState.xcu
@@ -5404,7 +5404,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Filter"
-msgstr "Formularny filter"
+msgstr "Formularowy filter"
#. wrFFt
#: CalcWindowState.xcu
@@ -5414,7 +5414,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Navigation"
-msgstr "Formularna nawigacija"
+msgstr "Formularowa nawigacija"
#. 3iCYb
#: CalcWindowState.xcu
@@ -5424,7 +5424,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Controls"
-msgstr "formularne wóźeńske elementy"
+msgstr "Formularowe wóźeńske elementy"
#. GBGYS
#: CalcWindowState.xcu
@@ -5434,7 +5434,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Design"
-msgstr "Formularne nacerjenje"
+msgstr "Formularowe nacerjenje"
#. dbAAf
#: CalcWindowState.xcu
@@ -7484,7 +7484,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Form Wizard..."
-msgstr "Formularny asistent..."
+msgstr "Formularowy asistent..."
#. XX6Ja
#: DbuCommands.xcu
@@ -7514,7 +7514,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Form Wizard..."
-msgstr "Formularny asistent..."
+msgstr "Formularowy asistent..."
#. weSF2
#: DbuCommands.xcu
@@ -11644,7 +11644,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Control"
-msgstr "Formularny wóźeński element"
+msgstr "Formularowy wóźeński element"
#. CqAWF
#: DrawWindowState.xcu
@@ -12004,7 +12004,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Filter"
-msgstr "Formularny filter"
+msgstr "Formularowy filter"
#. CDRya
#: DrawWindowState.xcu
@@ -12014,7 +12014,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Navigation"
-msgstr "Formularna nawigacija"
+msgstr "Formularowa nawigacija"
#. zEFDp
#: DrawWindowState.xcu
@@ -12024,7 +12024,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Controls"
-msgstr "Formularne wóźeńske elementy"
+msgstr "Formularowe wóźeńske elementy"
#. qGpwG
#: DrawWindowState.xcu
@@ -12034,7 +12034,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Design"
-msgstr "Formularne nacerjenje"
+msgstr "Formularowe nacerjenje"
#. TaytU
#: DrawWindowState.xcu
@@ -24246,7 +24246,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Form Design"
-msgstr "Formularne nacerjenje"
+msgstr "Formularowe nacerjenje"
#. Vzi7P
#: GenericCommands.xcu
@@ -24376,7 +24376,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "For~m Properties..."
-msgstr "~Formularne kakosći..."
+msgstr "~Formularowe kakosći..."
#. xSJiY
#: GenericCommands.xcu
@@ -24566,7 +24566,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Form Navigator..."
-msgstr "Formularny nawigator..."
+msgstr "Formularowy nawigator..."
#. nDXSc
#: GenericCommands.xcu
@@ -25746,7 +25746,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Text Form Field"
-msgstr "Tekstowe formularne pólo"
+msgstr "Tekstowe formularowe pólo"
#. fAY3H
#: GenericCommands.xcu
@@ -27276,7 +27276,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Control"
-msgstr "Formularny wóźeński element"
+msgstr "Formularowy wóźeński element"
#. NAMFK
#: ImpressWindowState.xcu
@@ -27576,7 +27576,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Filter"
-msgstr "Formularny filter"
+msgstr "Formularowy filter"
#. NnEFW
#: ImpressWindowState.xcu
@@ -27586,7 +27586,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Navigation"
-msgstr "Formularna nawigacija"
+msgstr "Formularowa nawigacija"
#. JCLdP
#: ImpressWindowState.xcu
@@ -27596,7 +27596,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Controls"
-msgstr "Formularne wóźeńske elementy"
+msgstr "Formularowe wóźeńske elementy"
#. GGFME
#: ImpressWindowState.xcu
@@ -27606,7 +27606,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Design"
-msgstr "Formularne nacerjenje"
+msgstr "Formularowe nacerjenje"
#. 5sW2T
#: ImpressWindowState.xcu
@@ -35936,7 +35936,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Legacy Form Fields"
-msgstr "Zestarjone formularne póla"
+msgstr "Zestarjete formularowe póla"
#. 94eA6
#: WriterCommands.xcu
@@ -36076,7 +36076,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Control"
-msgstr "Formularny wóźeński element"
+msgstr "Formularowy wóźeński element"
#. GA3Aa
#: WriterFormWindowState.xcu
@@ -36276,7 +36276,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Filter"
-msgstr "Formularny filter"
+msgstr "Formularowy filter"
#. GfECF
#: WriterFormWindowState.xcu
@@ -36286,7 +36286,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Navigation"
-msgstr "Formularna nawigacija"
+msgstr "Formularowa nawigacija"
#. oWGTe
#: WriterFormWindowState.xcu
@@ -36296,7 +36296,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Controls"
-msgstr "Formularne wóźeńske elementy"
+msgstr "Formularowe wóźeńske elementy"
#. Lr9Xd
#: WriterFormWindowState.xcu
@@ -36306,7 +36306,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Design"
-msgstr "Formularne nacerjenje"
+msgstr "Formularowe nacerjenje"
#. 9ZALG
#: WriterFormWindowState.xcu
@@ -36566,7 +36566,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Control"
-msgstr "Formularny wóźeński element"
+msgstr "Formularowy wóźeński element"
#. iFdvb
#: WriterGlobalWindowState.xcu
@@ -36766,7 +36766,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Filter"
-msgstr "Formularny filter"
+msgstr "Formularowy filter"
#. ijWZE
#: WriterGlobalWindowState.xcu
@@ -36776,7 +36776,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Navigation"
-msgstr "Formularna nawigacija"
+msgstr "Formularowa nawigacija"
#. MdcDn
#: WriterGlobalWindowState.xcu
@@ -36786,7 +36786,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Controls"
-msgstr "Formularne wóźeńske elementy"
+msgstr "Formularowe wóźeńske elementy"
#. 5DpAB
#: WriterGlobalWindowState.xcu
@@ -36796,7 +36796,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Design"
-msgstr "Formularne nacerjenje"
+msgstr "Formularowe nacerjenje"
#. VxShF
#: WriterGlobalWindowState.xcu
@@ -37076,7 +37076,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Control"
-msgstr "Formularny wóźeński element"
+msgstr "Formularowy wóźeński element"
#. TQfLU
#: WriterReportWindowState.xcu
@@ -37276,7 +37276,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Filter"
-msgstr "Formularny filter"
+msgstr "Formularowy filter"
#. TtU2R
#: WriterReportWindowState.xcu
@@ -37286,7 +37286,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Navigation"
-msgstr "Formularna nawigacija"
+msgstr "Formularowa nawigacija"
#. igDGB
#: WriterReportWindowState.xcu
@@ -37296,7 +37296,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Controls"
-msgstr "Formularne wóźeńske elementy"
+msgstr "Formularowe wóźeńske elementy"
#. gE5e4
#: WriterReportWindowState.xcu
@@ -37306,7 +37306,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Design"
-msgstr "Formularne nacerjenje"
+msgstr "Formularowe nacerjenje"
#. DvgCs
#: WriterReportWindowState.xcu
@@ -37546,7 +37546,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Control"
-msgstr "Formularny wóźeński element"
+msgstr "Formularowy wóźeński element"
#. AEFCq
#: WriterWebWindowState.xcu
@@ -37776,7 +37776,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Filter"
-msgstr "Formularny filter"
+msgstr "Formularowy filter"
#. Ai2AB
#: WriterWebWindowState.xcu
@@ -37786,7 +37786,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Navigation"
-msgstr "Formularna nawigacija"
+msgstr "Formularowa nawigacija"
#. 47EvE
#: WriterWebWindowState.xcu
@@ -37796,7 +37796,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Controls"
-msgstr "Formularne wóźeńske elementy"
+msgstr "Formularowe wóźeńske elementy"
#. EGxBR
#: WriterWebWindowState.xcu
@@ -37806,7 +37806,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Design"
-msgstr "Formularne nacerjenje"
+msgstr "Formularowe nacerjenje"
#. 7v96P
#: WriterWebWindowState.xcu
@@ -37986,7 +37986,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Control"
-msgstr "Formularny wóźeński element"
+msgstr "Formularowy wóźeński element"
#. uh3Dw
#: WriterWindowState.xcu
@@ -38246,7 +38246,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Filter"
-msgstr "Formularny filter"
+msgstr "Formularowy filter"
#. uCE9z
#: WriterWindowState.xcu
@@ -38256,7 +38256,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Navigation"
-msgstr "Formularna nawigacija"
+msgstr "Formularowa nawigacija"
#. rptAZ
#: WriterWindowState.xcu
@@ -38266,7 +38266,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Controls"
-msgstr "Formularne wóźeńske elementy"
+msgstr "Formularowe wóźeńske elementy"
#. PaNfG
#: WriterWindowState.xcu
@@ -38276,7 +38276,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Design"
-msgstr "Formularne nacerjenje"
+msgstr "Formularowe nacerjenje"
#. u7kSX
#: WriterWindowState.xcu
@@ -38576,7 +38576,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Control"
-msgstr "Formularny wóźeński element"
+msgstr "Formularowy wóźeński element"
#. nDSnE
#: XFormsWindowState.xcu
@@ -38776,7 +38776,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Filter"
-msgstr "Formularny filter"
+msgstr "Formularowy filter"
#. nahhi
#: XFormsWindowState.xcu
@@ -38786,7 +38786,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Navigation"
-msgstr "Formularna nawigacija"
+msgstr "Formularowa nawigacija"
#. GXiJo
#: XFormsWindowState.xcu
@@ -38796,7 +38796,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Controls"
-msgstr "Formularne wóźeńske elementy"
+msgstr "Formularowe wóźeńske elementy"
#. ZDsJs
#: XFormsWindowState.xcu
@@ -38806,7 +38806,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Design"
-msgstr "Formularne nacerjenje"
+msgstr "Formularowe nacerjenje"
#. pXT2f
#: XFormsWindowState.xcu
diff --git a/source/dsb/sc/messages.po b/source/dsb/sc/messages.po
index 37a222b9c36..a1320600891 100644
--- a/source/dsb/sc/messages.po
+++ b/source/dsb/sc/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: 2022-08-08 14:37+0200\n"
-"PO-Revision-Date: 2022-09-09 11:26+0000\n"
+"PO-Revision-Date: 2022-09-21 09:48+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Lower Sorbian <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/dsb/>\n"
"Language: dsb\n"
@@ -7552,7 +7552,7 @@ msgstr "Licba, kótarejež znamuško se dej zwěsćiś."
#: sc/inc/scfuncs.hrc:1346
msgctxt "SC_OPCODE_SUB_TOTAL"
msgid "Calculates subtotals in a spreadsheet."
-msgstr "Wulicujo mjazywuslědki w tabelowem dokumenśe."
+msgstr "Wulicujo mjazyrezultaty w tabelowem dokumenśe."
#. CcwkE
#: sc/inc/scfuncs.hrc:1347
@@ -15805,7 +15805,7 @@ msgstr "Dokradnosć triangulacije"
#: sc/inc/scfuncs.hrc:3920
msgctxt "SC_OPCODE_EUROCONVERT"
msgid "If given and >=3, the intermediate result of a triangular conversion is rounded to that precision. If omitted, the result is not rounded."
-msgstr "Jolic jo pódane a >= 3 se mjazywuslědk triangularnego konwertěrowanja na tu dokradnosć wótrownujo. Jolic jo wuwóstajone, se wuslědk njewótrownujo."
+msgstr "Jolic jo pódane a >= 3 se mjazyrezultat triangularnego konwertěrowanja na tu dokradnosć wótrownujo. Jolic jo wuwóstajone, se wuslědk njewótrownujo."
#. upY2X
#: sc/inc/scfuncs.hrc:3925
@@ -29495,7 +29495,7 @@ msgstr "Wužywa wubrane cele ako datowe žrědło za pivotowu tabelu."
#: sc/uiconfig/scalc/ui/selectsource.ui:162
msgctxt "selectsource|database"
msgid "_Data source registered in Calc"
-msgstr "W %Calc _zregistrěrowane datowe žrědło"
+msgstr "W Calc _zregistrěrowane datowe žrědło"
#. ZDHcm
#: sc/uiconfig/scalc/ui/selectsource.ui:171
@@ -31907,7 +31907,7 @@ msgstr "Ku kupce zestajiś pó"
#: sc/uiconfig/scalc/ui/subtotalgrppage.ui:61
msgctxt "subtotalgrppage|extended_tip|group_by"
msgid "Select the column that you want to control the subtotal calculation process. If the contents of the selected column change, the subtotals are automatically recalculated."
-msgstr "Wubjeŕśo słup, wót kótaregož ma woblicenje mjazywuslědka wótwisowaś. Jolic se wopśimjeśe wubranego słupa změnja, se mjazywuslědki atwomatiski znowego woblicuju."
+msgstr "Wubjeŕśo słup, wót kótaregož ma woblicenje mjazyrezultata wótwisowaś. Jolic se wopśimjeśe wubranego słupa změnja, se mjazyrezultaty atwomatiski znowego woblicuju."
#. gL3Zy
#: sc/uiconfig/scalc/ui/subtotalgrppage.ui:73
@@ -31931,19 +31931,19 @@ msgstr "Funkciju wužywaś:"
#: sc/uiconfig/scalc/ui/subtotalgrppage.ui:178
msgctxt "subtotalgrppage|extended_tip|columns"
msgid "Select the column(s) containing the values that you want to subtotal."
-msgstr "Wubjeŕśo słupy, kótarež gódnoty wopśimuju, z kótarychž se ma mjazywuslědk woblicyś."
+msgstr "Wubjeŕśo słupy, kótarež gódnoty wopśimuju, z kótarychž se ma mjazyrezultat woblicyś."
#. hECtu
#: sc/uiconfig/scalc/ui/subtotalgrppage.ui:224
msgctxt "subtotalgrppage|extended_tip|functions"
msgid "Select the mathematical function that you want to use to calculate the subtotals."
-msgstr "Wubjeŕśo matematisku funkciju, kótaruž cośo wužywaś, aby mjazywuslědki woblicył."
+msgstr "Wubjeŕśo matematisku funkciju, kótaruž cośo wužywaś, aby mjazyrezultaty woblicył."
#. xaDtc
#: sc/uiconfig/scalc/ui/subtotalgrppage.ui:244
msgctxt "subtotalgrppage|extended_tip|SubTotalGrpPage"
msgid "Specify the settings for up to three subtotal groups. Each tab has the same layout."
-msgstr "Pódajśo nastajenja za do tśich kupkow mjazywuslědkow. Kuždy rejtarik ma samske wugótowanje."
+msgstr "Pódajśo nastajenja za do tśich kupkow mjazyrezultatow. Kuždy rejtarik ma samske wugótowanje."
#. xPviB
#: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:30
@@ -31967,7 +31967,7 @@ msgstr "_Na wjelikopisanje źiwaś"
#: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:59
msgctxt "subtotaloptionspage|extended_tip|case"
msgid "Recalculates subtotals when you change the case of a data label."
-msgstr "Woblicujo mjazywuslědki znowego, gaž pisanje datowego pópisanja změnjaśo."
+msgstr "Woblicujo mjazyrezultaty znowego, gaž pisanje datowego pópisanja změnjaśo."
#. srkjs
#: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:70
@@ -32039,7 +32039,7 @@ msgstr "Sortěrowaś"
#: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:240
msgctxt "subtotaloptionspage|extended_tip|SubTotalOptionsPage"
msgid "Specify the settings for calculating and presenting subtotals."
-msgstr "Pódajśo nastajenja za woblicenje a pśedstajenje mjazywuslědkow."
+msgstr "Pódajśo nastajenja za woblicenje a pśedstajenje mjazyrezultatow."
#. kCgBM
#: sc/uiconfig/scalc/ui/swaprowsentry.ui:28
diff --git a/source/dsb/sfx2/messages.po b/source/dsb/sfx2/messages.po
index f590286bc8e..05f5b133f65 100644
--- a/source/dsb/sfx2/messages.po
+++ b/source/dsb/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: 2022-08-24 12:29+0200\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
"PO-Revision-Date: 2022-07-08 10:43+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Lower Sorbian <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/dsb/>\n"
@@ -2964,7 +2964,7 @@ msgid "No"
msgstr "Ně"
#. kDKBB
-#: sfx2/uiconfig/ui/commandpopup.ui:36
+#: sfx2/uiconfig/ui/commandpopup.ui:35
msgctxt "commandpopup|entry"
msgid "Search command"
msgstr "Pśikaz pytaś"
@@ -4904,139 +4904,139 @@ msgid "or Create a New Category"
msgstr "abo nowu kategoriju napóraś"
#. eUWTy
-#: sfx2/uiconfig/ui/templatedlg.ui:46
+#: sfx2/uiconfig/ui/templatedlg.ui:44
msgctxt "templatedlg|TemplateDialog"
msgid "Templates"
msgstr "Pśedłogi"
#. rhuYP
-#: sfx2/uiconfig/ui/templatedlg.ui:77
+#: sfx2/uiconfig/ui/templatedlg.ui:76
msgctxt "templatedlg|hidedialogcb"
msgid "Show this dialog at startup"
msgstr "Toś ten dialog pśi startowanju pokazaś"
#. 32zsB
-#: sfx2/uiconfig/ui/templatedlg.ui:144
+#: sfx2/uiconfig/ui/templatedlg.ui:143
msgctxt "templatedlg|search_filter|tooltip_text"
msgid "Search"
msgstr "Pytaś"
#. sGZMC
-#: sfx2/uiconfig/ui/templatedlg.ui:148
+#: sfx2/uiconfig/ui/templatedlg.ui:147
msgctxt "templatedlg|search_filter"
msgid "Search..."
msgstr "Pytaś..."
#. DF5YC
-#: sfx2/uiconfig/ui/templatedlg.ui:167
+#: sfx2/uiconfig/ui/templatedlg.ui:166
msgctxt "templatedlg|action_menu|label"
msgid "_Manage"
msgstr "_Zastojaś"
#. LUs2m
-#: sfx2/uiconfig/ui/templatedlg.ui:181
+#: sfx2/uiconfig/ui/templatedlg.ui:180
msgctxt "templatedlg|extended_tip|action_menu"
msgid "Provides commands to create, rename and delete categories, reset default templates, and refresh the template manager."
msgstr "Bitujo pśikaze, z kótarymiž móžośo kategorije napóraś, pśemjeniś a lašowaś, standardne pśedłogi slědk stajiś a zarědnik pśedłogow aktualizěrowaś."
#. fXVNY
-#: sfx2/uiconfig/ui/templatedlg.ui:208
+#: sfx2/uiconfig/ui/templatedlg.ui:207
msgctxt "templatedlg|filter_application|tooltip_text"
msgid "Filter by Application"
msgstr "Pó nałoženju filtrowaś"
#. tqVhJ
-#: sfx2/uiconfig/ui/templatedlg.ui:210
+#: sfx2/uiconfig/ui/templatedlg.ui:209
msgctxt "templatedlg|applist"
msgid "All Applications"
msgstr "Wšykne nałoženja"
#. pD6pU
-#: sfx2/uiconfig/ui/templatedlg.ui:211
+#: sfx2/uiconfig/ui/templatedlg.ui:210
msgctxt "templatedlg|applist"
msgid "Text Documents"
msgstr "Tekstowe dokumenty"
#. eECt7
-#: sfx2/uiconfig/ui/templatedlg.ui:212
+#: sfx2/uiconfig/ui/templatedlg.ui:211
msgctxt "templatedlg|applist"
msgid "Spreadsheets"
msgstr "Tabelowe dokumenty"
#. ajLbV
-#: sfx2/uiconfig/ui/templatedlg.ui:213
+#: sfx2/uiconfig/ui/templatedlg.ui:212
msgctxt "templatedlg|applist"
msgid "Presentations"
msgstr "Prezentacije"
#. LfUzB
-#: sfx2/uiconfig/ui/templatedlg.ui:214
+#: sfx2/uiconfig/ui/templatedlg.ui:213
msgctxt "templatedlg|applist"
msgid "Drawings"
msgstr "Kreslanki"
#. t7zE7
-#: sfx2/uiconfig/ui/templatedlg.ui:228
+#: sfx2/uiconfig/ui/templatedlg.ui:227
msgctxt "templatedlg|filter_folder|tooltip_text"
msgid "Filter by Category"
msgstr "Pó kategoriji filtrowaś"
#. 93CGw
-#: sfx2/uiconfig/ui/templatedlg.ui:230
+#: sfx2/uiconfig/ui/templatedlg.ui:229
msgctxt "templatedlg|folderlist"
msgid "All Categories"
msgstr "Wšykne kategorije"
#. NF9wE
-#: sfx2/uiconfig/ui/templatedlg.ui:251
+#: sfx2/uiconfig/ui/templatedlg.ui:250
msgctxt "templatedlg|label1"
msgid "Filter"
msgstr "Filter"
#. ewTL3
-#: sfx2/uiconfig/ui/templatedlg.ui:357
+#: sfx2/uiconfig/ui/templatedlg.ui:356
msgctxt "templatedlg|treeviewcolumn1"
msgid "Name"
msgstr "Mě"
#. 7EJRA
-#: sfx2/uiconfig/ui/templatedlg.ui:374
+#: sfx2/uiconfig/ui/templatedlg.ui:373
msgctxt "templatedlg|treeviewcolumn2"
msgid "Category"
msgstr "Kategorija"
#. AC27i
-#: sfx2/uiconfig/ui/templatedlg.ui:389
+#: sfx2/uiconfig/ui/templatedlg.ui:388
msgctxt "templatedlg|treeviewcolumn3"
msgid "Application"
msgstr "Nałoženje"
#. eSaBw
-#: sfx2/uiconfig/ui/templatedlg.ui:404
+#: sfx2/uiconfig/ui/templatedlg.ui:403
msgctxt "templatedlg|treeviewcolumn4"
msgid "Modified"
msgstr "Změnjony"
#. pNzYA
-#: sfx2/uiconfig/ui/templatedlg.ui:419
+#: sfx2/uiconfig/ui/templatedlg.ui:418
msgctxt "templatedlg|treeviewcolumn5"
msgid "Size"
msgstr "Wjelikosć"
#. j39jM
-#: sfx2/uiconfig/ui/templatedlg.ui:445
+#: sfx2/uiconfig/ui/templatedlg.ui:444
msgctxt "templatedlg|thumbnailviewlabel"
msgid "Template List"
msgstr "Lisćina pśedłogow"
#. yEhgP
-#: sfx2/uiconfig/ui/templatedlg.ui:464
+#: sfx2/uiconfig/ui/templatedlg.ui:463
msgctxt "templatedlg|thumbnail_view_btn|tooltip_text"
msgid "Thumbnail View"
msgstr "Miniaturny naglěd"
#. j76ke
-#: sfx2/uiconfig/ui/templatedlg.ui:481
+#: sfx2/uiconfig/ui/templatedlg.ui:480
msgctxt "templatedlg|list_view_btn|tooltip_text"
msgid "List View"
msgstr "Lisćinowy naglěd"
diff --git a/source/dz/helpcontent2/source/auxiliary.po b/source/dz/helpcontent2/source/auxiliary.po
index b7fefa17c57..bb8a2551f5c 100644
--- a/source/dz/helpcontent2/source/auxiliary.po
+++ b/source/dz/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-11-25 19:33+0100\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
"PO-Revision-Date: 2018-07-19 12:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -313,11 +313,11 @@ msgctxt ""
msgid "Writing Calc Macros"
msgstr ""
-#. Q59GN
+#. vBXqp
#: scalc.tree
msgctxt ""
"scalc.tree\n"
-"0815\n"
+"0816\n"
"node.text"
msgid "Miscellaneous"
msgstr "སྣ་ཚོགས་ཚུ།"
diff --git a/source/dz/sfx2/messages.po b/source/dz/sfx2/messages.po
index c73c57db61c..b9812c450c9 100644
--- a/source/dz/sfx2/messages.po
+++ b/source/dz/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-08-24 12:29+0200\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
"PO-Revision-Date: 2018-10-21 19:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2959,7 +2959,7 @@ msgid "No"
msgstr "མེན།"
#. kDKBB
-#: sfx2/uiconfig/ui/commandpopup.ui:36
+#: sfx2/uiconfig/ui/commandpopup.ui:35
msgctxt "commandpopup|entry"
msgid "Search command"
msgstr ""
@@ -4964,141 +4964,141 @@ msgid "or Create a New Category"
msgstr ""
#. eUWTy
-#: sfx2/uiconfig/ui/templatedlg.ui:46
+#: sfx2/uiconfig/ui/templatedlg.ui:44
msgctxt "templatedlg|TemplateDialog"
msgid "Templates"
msgstr "ཊེམ་པེལེཊིསི།"
#. rhuYP
-#: sfx2/uiconfig/ui/templatedlg.ui:77
+#: sfx2/uiconfig/ui/templatedlg.ui:76
msgctxt "templatedlg|hidedialogcb"
msgid "Show this dialog at startup"
msgstr ""
#. 32zsB
-#: sfx2/uiconfig/ui/templatedlg.ui:144
+#: sfx2/uiconfig/ui/templatedlg.ui:143
#, fuzzy
msgctxt "templatedlg|search_filter|tooltip_text"
msgid "Search"
msgstr "འཚོལ་ཞིབ།"
#. sGZMC
-#: sfx2/uiconfig/ui/templatedlg.ui:148
+#: sfx2/uiconfig/ui/templatedlg.ui:147
msgctxt "templatedlg|search_filter"
msgid "Search..."
msgstr "འཚོལ་ཞིབ..."
#. DF5YC
-#: sfx2/uiconfig/ui/templatedlg.ui:167
+#: sfx2/uiconfig/ui/templatedlg.ui:166
msgctxt "templatedlg|action_menu|label"
msgid "_Manage"
msgstr ""
#. LUs2m
-#: sfx2/uiconfig/ui/templatedlg.ui:181
+#: sfx2/uiconfig/ui/templatedlg.ui:180
msgctxt "templatedlg|extended_tip|action_menu"
msgid "Provides commands to create, rename and delete categories, reset default templates, and refresh the template manager."
msgstr ""
#. fXVNY
-#: sfx2/uiconfig/ui/templatedlg.ui:208
+#: sfx2/uiconfig/ui/templatedlg.ui:207
msgctxt "templatedlg|filter_application|tooltip_text"
msgid "Filter by Application"
msgstr ""
#. tqVhJ
-#: sfx2/uiconfig/ui/templatedlg.ui:210
+#: sfx2/uiconfig/ui/templatedlg.ui:209
msgctxt "templatedlg|applist"
msgid "All Applications"
msgstr ""
#. pD6pU
-#: sfx2/uiconfig/ui/templatedlg.ui:211
+#: sfx2/uiconfig/ui/templatedlg.ui:210
msgctxt "templatedlg|applist"
msgid "Text Documents"
msgstr ""
#. eECt7
-#: sfx2/uiconfig/ui/templatedlg.ui:212
+#: sfx2/uiconfig/ui/templatedlg.ui:211
msgctxt "templatedlg|applist"
msgid "Spreadsheets"
msgstr "ཤོག་ཁྲམ་ཚུ།"
#. ajLbV
-#: sfx2/uiconfig/ui/templatedlg.ui:213
+#: sfx2/uiconfig/ui/templatedlg.ui:212
msgctxt "templatedlg|applist"
msgid "Presentations"
msgstr "གསལ་སྟོན་ཚུ།"
#. LfUzB
-#: sfx2/uiconfig/ui/templatedlg.ui:214
+#: sfx2/uiconfig/ui/templatedlg.ui:213
#, fuzzy
msgctxt "templatedlg|applist"
msgid "Drawings"
msgstr "དཔར་རིས།"
#. t7zE7
-#: sfx2/uiconfig/ui/templatedlg.ui:228
+#: sfx2/uiconfig/ui/templatedlg.ui:227
msgctxt "templatedlg|filter_folder|tooltip_text"
msgid "Filter by Category"
msgstr ""
#. 93CGw
-#: sfx2/uiconfig/ui/templatedlg.ui:230
+#: sfx2/uiconfig/ui/templatedlg.ui:229
msgctxt "templatedlg|folderlist"
msgid "All Categories"
msgstr ""
#. NF9wE
-#: sfx2/uiconfig/ui/templatedlg.ui:251
+#: sfx2/uiconfig/ui/templatedlg.ui:250
msgctxt "templatedlg|label1"
msgid "Filter"
msgstr "ཚགས་མ།"
#. ewTL3
-#: sfx2/uiconfig/ui/templatedlg.ui:357
+#: sfx2/uiconfig/ui/templatedlg.ui:356
msgctxt "templatedlg|treeviewcolumn1"
msgid "Name"
msgstr ""
#. 7EJRA
-#: sfx2/uiconfig/ui/templatedlg.ui:374
+#: sfx2/uiconfig/ui/templatedlg.ui:373
msgctxt "templatedlg|treeviewcolumn2"
msgid "Category"
msgstr ""
#. AC27i
-#: sfx2/uiconfig/ui/templatedlg.ui:389
+#: sfx2/uiconfig/ui/templatedlg.ui:388
msgctxt "templatedlg|treeviewcolumn3"
msgid "Application"
msgstr ""
#. eSaBw
-#: sfx2/uiconfig/ui/templatedlg.ui:404
+#: sfx2/uiconfig/ui/templatedlg.ui:403
msgctxt "templatedlg|treeviewcolumn4"
msgid "Modified"
msgstr ""
#. pNzYA
-#: sfx2/uiconfig/ui/templatedlg.ui:419
+#: sfx2/uiconfig/ui/templatedlg.ui:418
msgctxt "templatedlg|treeviewcolumn5"
msgid "Size"
msgstr ""
#. j39jM
-#: sfx2/uiconfig/ui/templatedlg.ui:445
+#: sfx2/uiconfig/ui/templatedlg.ui:444
msgctxt "templatedlg|thumbnailviewlabel"
msgid "Template List"
msgstr ""
#. yEhgP
-#: sfx2/uiconfig/ui/templatedlg.ui:464
+#: sfx2/uiconfig/ui/templatedlg.ui:463
msgctxt "templatedlg|thumbnail_view_btn|tooltip_text"
msgid "Thumbnail View"
msgstr ""
#. j76ke
-#: sfx2/uiconfig/ui/templatedlg.ui:481
+#: sfx2/uiconfig/ui/templatedlg.ui:480
msgctxt "templatedlg|list_view_btn|tooltip_text"
msgid "List View"
msgstr ""
diff --git a/source/el/helpcontent2/source/auxiliary.po b/source/el/helpcontent2/source/auxiliary.po
index 8ac64d5afb1..ba2d93c6b5f 100644
--- a/source/el/helpcontent2/source/auxiliary.po
+++ b/source/el/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-11-25 19:33+0100\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
"PO-Revision-Date: 2021-10-25 16:50+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_help-master/auxiliary/el/>\n"
@@ -313,11 +313,11 @@ msgctxt ""
msgid "Writing Calc Macros"
msgstr "Συγγραφή μακροεντολών Calc"
-#. Q59GN
+#. vBXqp
#: scalc.tree
msgctxt ""
"scalc.tree\n"
-"0815\n"
+"0816\n"
"node.text"
msgid "Miscellaneous"
msgstr "Διάφορα"
diff --git a/source/el/sfx2/messages.po b/source/el/sfx2/messages.po
index a94c942b17d..2c5d8c4dcb8 100644
--- a/source/el/sfx2/messages.po
+++ b/source/el/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: 2022-08-24 12:29+0200\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
"PO-Revision-Date: 2022-07-08 10:43+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/el/>\n"
@@ -2964,7 +2964,7 @@ msgid "No"
msgstr "Όχι"
#. kDKBB
-#: sfx2/uiconfig/ui/commandpopup.ui:36
+#: sfx2/uiconfig/ui/commandpopup.ui:35
msgctxt "commandpopup|entry"
msgid "Search command"
msgstr "Εντολή αναζήτησης"
@@ -4904,139 +4904,139 @@ msgid "or Create a New Category"
msgstr "ή δημιουργία μιας νέας κατηγορίας"
#. eUWTy
-#: sfx2/uiconfig/ui/templatedlg.ui:46
+#: sfx2/uiconfig/ui/templatedlg.ui:44
msgctxt "templatedlg|TemplateDialog"
msgid "Templates"
msgstr "Πρότυπα"
#. rhuYP
-#: sfx2/uiconfig/ui/templatedlg.ui:77
+#: sfx2/uiconfig/ui/templatedlg.ui:76
msgctxt "templatedlg|hidedialogcb"
msgid "Show this dialog at startup"
msgstr "Εμφάνιση αυτού του διαλόγου στην αρχή"
#. 32zsB
-#: sfx2/uiconfig/ui/templatedlg.ui:144
+#: sfx2/uiconfig/ui/templatedlg.ui:143
msgctxt "templatedlg|search_filter|tooltip_text"
msgid "Search"
msgstr "Αναζήτηση"
#. sGZMC
-#: sfx2/uiconfig/ui/templatedlg.ui:148
+#: sfx2/uiconfig/ui/templatedlg.ui:147
msgctxt "templatedlg|search_filter"
msgid "Search..."
msgstr "Αναζήτηση..."
#. DF5YC
-#: sfx2/uiconfig/ui/templatedlg.ui:167
+#: sfx2/uiconfig/ui/templatedlg.ui:166
msgctxt "templatedlg|action_menu|label"
msgid "_Manage"
msgstr "_Διαχείριση"
#. LUs2m
-#: sfx2/uiconfig/ui/templatedlg.ui:181
+#: sfx2/uiconfig/ui/templatedlg.ui:180
msgctxt "templatedlg|extended_tip|action_menu"
msgid "Provides commands to create, rename and delete categories, reset default templates, and refresh the template manager."
msgstr "Παρέχει εντολές για δημιουργία, μετονομασία και διαγραφή κατηγοριών, επαναφορά προεπιλεγμένων προτύπων και ανανέωση του διαχειριστή προτύπων."
#. fXVNY
-#: sfx2/uiconfig/ui/templatedlg.ui:208
+#: sfx2/uiconfig/ui/templatedlg.ui:207
msgctxt "templatedlg|filter_application|tooltip_text"
msgid "Filter by Application"
msgstr "Φιλτράρισμα ανάλογα την εφαρμογή"
#. tqVhJ
-#: sfx2/uiconfig/ui/templatedlg.ui:210
+#: sfx2/uiconfig/ui/templatedlg.ui:209
msgctxt "templatedlg|applist"
msgid "All Applications"
msgstr "Όλες οι εφαρμογές"
#. pD6pU
-#: sfx2/uiconfig/ui/templatedlg.ui:211
+#: sfx2/uiconfig/ui/templatedlg.ui:210
msgctxt "templatedlg|applist"
msgid "Text Documents"
msgstr "Έγγραφα κειμένου"
#. eECt7
-#: sfx2/uiconfig/ui/templatedlg.ui:212
+#: sfx2/uiconfig/ui/templatedlg.ui:211
msgctxt "templatedlg|applist"
msgid "Spreadsheets"
msgstr "Υπολογιστικά φύλλα"
#. ajLbV
-#: sfx2/uiconfig/ui/templatedlg.ui:213
+#: sfx2/uiconfig/ui/templatedlg.ui:212
msgctxt "templatedlg|applist"
msgid "Presentations"
msgstr "Παρουσιάσεις"
#. LfUzB
-#: sfx2/uiconfig/ui/templatedlg.ui:214
+#: sfx2/uiconfig/ui/templatedlg.ui:213
msgctxt "templatedlg|applist"
msgid "Drawings"
msgstr "Σχέδια"
#. t7zE7
-#: sfx2/uiconfig/ui/templatedlg.ui:228
+#: sfx2/uiconfig/ui/templatedlg.ui:227
msgctxt "templatedlg|filter_folder|tooltip_text"
msgid "Filter by Category"
msgstr "Φιλτράρισμα ανά κατηγορία"
#. 93CGw
-#: sfx2/uiconfig/ui/templatedlg.ui:230
+#: sfx2/uiconfig/ui/templatedlg.ui:229
msgctxt "templatedlg|folderlist"
msgid "All Categories"
msgstr "Όλες οι κατηγορίες"
#. NF9wE
-#: sfx2/uiconfig/ui/templatedlg.ui:251
+#: sfx2/uiconfig/ui/templatedlg.ui:250
msgctxt "templatedlg|label1"
msgid "Filter"
msgstr "Φίλτρο"
#. ewTL3
-#: sfx2/uiconfig/ui/templatedlg.ui:357
+#: sfx2/uiconfig/ui/templatedlg.ui:356
msgctxt "templatedlg|treeviewcolumn1"
msgid "Name"
msgstr "Όνομα"
#. 7EJRA
-#: sfx2/uiconfig/ui/templatedlg.ui:374
+#: sfx2/uiconfig/ui/templatedlg.ui:373
msgctxt "templatedlg|treeviewcolumn2"
msgid "Category"
msgstr "Κατηγορία"
#. AC27i
-#: sfx2/uiconfig/ui/templatedlg.ui:389
+#: sfx2/uiconfig/ui/templatedlg.ui:388
msgctxt "templatedlg|treeviewcolumn3"
msgid "Application"
msgstr "Εφαρμογή"
#. eSaBw
-#: sfx2/uiconfig/ui/templatedlg.ui:404
+#: sfx2/uiconfig/ui/templatedlg.ui:403
msgctxt "templatedlg|treeviewcolumn4"
msgid "Modified"
msgstr "Τροποποιήθηκε"
#. pNzYA
-#: sfx2/uiconfig/ui/templatedlg.ui:419
+#: sfx2/uiconfig/ui/templatedlg.ui:418
msgctxt "templatedlg|treeviewcolumn5"
msgid "Size"
msgstr "Μέγεθος"
#. j39jM
-#: sfx2/uiconfig/ui/templatedlg.ui:445
+#: sfx2/uiconfig/ui/templatedlg.ui:444
msgctxt "templatedlg|thumbnailviewlabel"
msgid "Template List"
msgstr "Κατάλογος προτύπων"
#. yEhgP
-#: sfx2/uiconfig/ui/templatedlg.ui:464
+#: sfx2/uiconfig/ui/templatedlg.ui:463
msgctxt "templatedlg|thumbnail_view_btn|tooltip_text"
msgid "Thumbnail View"
msgstr "Προβολή μικρογραφίας"
#. j76ke
-#: sfx2/uiconfig/ui/templatedlg.ui:481
+#: sfx2/uiconfig/ui/templatedlg.ui:480
msgctxt "templatedlg|list_view_btn|tooltip_text"
msgid "List View"
msgstr "Προβολή καταλόγου"
diff --git a/source/en-GB/helpcontent2/source/auxiliary.po b/source/en-GB/helpcontent2/source/auxiliary.po
index 39ef06d8a3f..e225d712964 100644
--- a/source/en-GB/helpcontent2/source/auxiliary.po
+++ b/source/en-GB/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-11-25 19:33+0100\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
"PO-Revision-Date: 2022-02-10 16:37+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://translations.documentfoundation.org/projects/libo_help-master/auxiliary/en_GB/>\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.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1563447496.000000\n"
#. fEEXD
@@ -313,11 +313,11 @@ msgctxt ""
msgid "Writing Calc Macros"
msgstr "Writing Calc Macros"
-#. Q59GN
+#. vBXqp
#: scalc.tree
msgctxt ""
"scalc.tree\n"
-"0815\n"
+"0816\n"
"node.text"
msgid "Miscellaneous"
msgstr "Miscellaneous"
diff --git a/source/en-GB/sfx2/messages.po b/source/en-GB/sfx2/messages.po
index c5a1a80383d..b279ee9b928 100644
--- a/source/en-GB/sfx2/messages.po
+++ b/source/en-GB/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-08-24 12:29+0200\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
"PO-Revision-Date: 2022-07-12 03:33+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/en_GB/>\n"
@@ -2964,7 +2964,7 @@ msgid "No"
msgstr "No"
#. kDKBB
-#: sfx2/uiconfig/ui/commandpopup.ui:36
+#: sfx2/uiconfig/ui/commandpopup.ui:35
msgctxt "commandpopup|entry"
msgid "Search command"
msgstr "Search command"
@@ -4904,139 +4904,139 @@ msgid "or Create a New Category"
msgstr "or Create a New Category"
#. eUWTy
-#: sfx2/uiconfig/ui/templatedlg.ui:46
+#: sfx2/uiconfig/ui/templatedlg.ui:44
msgctxt "templatedlg|TemplateDialog"
msgid "Templates"
msgstr "Templates"
#. rhuYP
-#: sfx2/uiconfig/ui/templatedlg.ui:77
+#: sfx2/uiconfig/ui/templatedlg.ui:76
msgctxt "templatedlg|hidedialogcb"
msgid "Show this dialog at startup"
msgstr "Show this dialogue box at startup"
#. 32zsB
-#: sfx2/uiconfig/ui/templatedlg.ui:144
+#: sfx2/uiconfig/ui/templatedlg.ui:143
msgctxt "templatedlg|search_filter|tooltip_text"
msgid "Search"
msgstr "Search"
#. sGZMC
-#: sfx2/uiconfig/ui/templatedlg.ui:148
+#: sfx2/uiconfig/ui/templatedlg.ui:147
msgctxt "templatedlg|search_filter"
msgid "Search..."
msgstr "Search..."
#. DF5YC
-#: sfx2/uiconfig/ui/templatedlg.ui:167
+#: sfx2/uiconfig/ui/templatedlg.ui:166
msgctxt "templatedlg|action_menu|label"
msgid "_Manage"
msgstr "_Manage"
#. LUs2m
-#: sfx2/uiconfig/ui/templatedlg.ui:181
+#: sfx2/uiconfig/ui/templatedlg.ui:180
msgctxt "templatedlg|extended_tip|action_menu"
msgid "Provides commands to create, rename and delete categories, reset default templates, and refresh the template manager."
msgstr "Provides commands to create, rename and delete categories, reset default templates, and refresh the template manager."
#. fXVNY
-#: sfx2/uiconfig/ui/templatedlg.ui:208
+#: sfx2/uiconfig/ui/templatedlg.ui:207
msgctxt "templatedlg|filter_application|tooltip_text"
msgid "Filter by Application"
msgstr "Filter by Application"
#. tqVhJ
-#: sfx2/uiconfig/ui/templatedlg.ui:210
+#: sfx2/uiconfig/ui/templatedlg.ui:209
msgctxt "templatedlg|applist"
msgid "All Applications"
msgstr "All Applications"
#. pD6pU
-#: sfx2/uiconfig/ui/templatedlg.ui:211
+#: sfx2/uiconfig/ui/templatedlg.ui:210
msgctxt "templatedlg|applist"
msgid "Text Documents"
msgstr "Text Documents"
#. eECt7
-#: sfx2/uiconfig/ui/templatedlg.ui:212
+#: sfx2/uiconfig/ui/templatedlg.ui:211
msgctxt "templatedlg|applist"
msgid "Spreadsheets"
msgstr "Spreadsheets"
#. ajLbV
-#: sfx2/uiconfig/ui/templatedlg.ui:213
+#: sfx2/uiconfig/ui/templatedlg.ui:212
msgctxt "templatedlg|applist"
msgid "Presentations"
msgstr "Presentations"
#. LfUzB
-#: sfx2/uiconfig/ui/templatedlg.ui:214
+#: sfx2/uiconfig/ui/templatedlg.ui:213
msgctxt "templatedlg|applist"
msgid "Drawings"
msgstr "Drawings"
#. t7zE7
-#: sfx2/uiconfig/ui/templatedlg.ui:228
+#: sfx2/uiconfig/ui/templatedlg.ui:227
msgctxt "templatedlg|filter_folder|tooltip_text"
msgid "Filter by Category"
msgstr "Filter by Category"
#. 93CGw
-#: sfx2/uiconfig/ui/templatedlg.ui:230
+#: sfx2/uiconfig/ui/templatedlg.ui:229
msgctxt "templatedlg|folderlist"
msgid "All Categories"
msgstr "All Categories"
#. NF9wE
-#: sfx2/uiconfig/ui/templatedlg.ui:251
+#: sfx2/uiconfig/ui/templatedlg.ui:250
msgctxt "templatedlg|label1"
msgid "Filter"
msgstr "Filter"
#. ewTL3
-#: sfx2/uiconfig/ui/templatedlg.ui:357
+#: sfx2/uiconfig/ui/templatedlg.ui:356
msgctxt "templatedlg|treeviewcolumn1"
msgid "Name"
msgstr "Name"
#. 7EJRA
-#: sfx2/uiconfig/ui/templatedlg.ui:374
+#: sfx2/uiconfig/ui/templatedlg.ui:373
msgctxt "templatedlg|treeviewcolumn2"
msgid "Category"
msgstr "Category"
#. AC27i
-#: sfx2/uiconfig/ui/templatedlg.ui:389
+#: sfx2/uiconfig/ui/templatedlg.ui:388
msgctxt "templatedlg|treeviewcolumn3"
msgid "Application"
msgstr "Application"
#. eSaBw
-#: sfx2/uiconfig/ui/templatedlg.ui:404
+#: sfx2/uiconfig/ui/templatedlg.ui:403
msgctxt "templatedlg|treeviewcolumn4"
msgid "Modified"
msgstr "Modified"
#. pNzYA
-#: sfx2/uiconfig/ui/templatedlg.ui:419
+#: sfx2/uiconfig/ui/templatedlg.ui:418
msgctxt "templatedlg|treeviewcolumn5"
msgid "Size"
msgstr "Size"
#. j39jM
-#: sfx2/uiconfig/ui/templatedlg.ui:445
+#: sfx2/uiconfig/ui/templatedlg.ui:444
msgctxt "templatedlg|thumbnailviewlabel"
msgid "Template List"
msgstr "Template List"
#. yEhgP
-#: sfx2/uiconfig/ui/templatedlg.ui:464
+#: sfx2/uiconfig/ui/templatedlg.ui:463
msgctxt "templatedlg|thumbnail_view_btn|tooltip_text"
msgid "Thumbnail View"
msgstr "Thumbnail View"
#. j76ke
-#: sfx2/uiconfig/ui/templatedlg.ui:481
+#: sfx2/uiconfig/ui/templatedlg.ui:480
msgctxt "templatedlg|list_view_btn|tooltip_text"
msgid "List View"
msgstr "List View"
diff --git a/source/en-ZA/helpcontent2/source/auxiliary.po b/source/en-ZA/helpcontent2/source/auxiliary.po
index 08b7381f0b5..90f4ff4072c 100644
--- a/source/en-ZA/helpcontent2/source/auxiliary.po
+++ b/source/en-ZA/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-11-25 19:33+0100\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
"PO-Revision-Date: 2018-07-19 12:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -313,11 +313,11 @@ msgctxt ""
msgid "Writing Calc Macros"
msgstr ""
-#. Q59GN
+#. vBXqp
#: scalc.tree
msgctxt ""
"scalc.tree\n"
-"0815\n"
+"0816\n"
"node.text"
msgid "Miscellaneous"
msgstr "Miscellaneous"
diff --git a/source/en-ZA/sfx2/messages.po b/source/en-ZA/sfx2/messages.po
index ee722db1c5a..e43cfe21ce2 100644
--- a/source/en-ZA/sfx2/messages.po
+++ b/source/en-ZA/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-08-24 12:29+0200\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
"PO-Revision-Date: 2018-10-21 19:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2972,7 +2972,7 @@ msgid "No"
msgstr "No"
#. kDKBB
-#: sfx2/uiconfig/ui/commandpopup.ui:36
+#: sfx2/uiconfig/ui/commandpopup.ui:35
msgctxt "commandpopup|entry"
msgid "Search command"
msgstr ""
@@ -4972,141 +4972,141 @@ msgid "or Create a New Category"
msgstr ""
#. eUWTy
-#: sfx2/uiconfig/ui/templatedlg.ui:46
+#: sfx2/uiconfig/ui/templatedlg.ui:44
msgctxt "templatedlg|TemplateDialog"
msgid "Templates"
msgstr "Templates"
#. rhuYP
-#: sfx2/uiconfig/ui/templatedlg.ui:77
+#: sfx2/uiconfig/ui/templatedlg.ui:76
msgctxt "templatedlg|hidedialogcb"
msgid "Show this dialog at startup"
msgstr ""
#. 32zsB
-#: sfx2/uiconfig/ui/templatedlg.ui:144
+#: sfx2/uiconfig/ui/templatedlg.ui:143
#, fuzzy
msgctxt "templatedlg|search_filter|tooltip_text"
msgid "Search"
msgstr "Search"
#. sGZMC
-#: sfx2/uiconfig/ui/templatedlg.ui:148
+#: sfx2/uiconfig/ui/templatedlg.ui:147
msgctxt "templatedlg|search_filter"
msgid "Search..."
msgstr "Search..."
#. DF5YC
-#: sfx2/uiconfig/ui/templatedlg.ui:167
+#: sfx2/uiconfig/ui/templatedlg.ui:166
msgctxt "templatedlg|action_menu|label"
msgid "_Manage"
msgstr ""
#. LUs2m
-#: sfx2/uiconfig/ui/templatedlg.ui:181
+#: sfx2/uiconfig/ui/templatedlg.ui:180
msgctxt "templatedlg|extended_tip|action_menu"
msgid "Provides commands to create, rename and delete categories, reset default templates, and refresh the template manager."
msgstr ""
#. fXVNY
-#: sfx2/uiconfig/ui/templatedlg.ui:208
+#: sfx2/uiconfig/ui/templatedlg.ui:207
msgctxt "templatedlg|filter_application|tooltip_text"
msgid "Filter by Application"
msgstr ""
#. tqVhJ
-#: sfx2/uiconfig/ui/templatedlg.ui:210
+#: sfx2/uiconfig/ui/templatedlg.ui:209
msgctxt "templatedlg|applist"
msgid "All Applications"
msgstr ""
#. pD6pU
-#: sfx2/uiconfig/ui/templatedlg.ui:211
+#: sfx2/uiconfig/ui/templatedlg.ui:210
msgctxt "templatedlg|applist"
msgid "Text Documents"
msgstr ""
#. eECt7
-#: sfx2/uiconfig/ui/templatedlg.ui:212
+#: sfx2/uiconfig/ui/templatedlg.ui:211
msgctxt "templatedlg|applist"
msgid "Spreadsheets"
msgstr "Spreadsheets"
#. ajLbV
-#: sfx2/uiconfig/ui/templatedlg.ui:213
+#: sfx2/uiconfig/ui/templatedlg.ui:212
msgctxt "templatedlg|applist"
msgid "Presentations"
msgstr "Presentations"
#. LfUzB
-#: sfx2/uiconfig/ui/templatedlg.ui:214
+#: sfx2/uiconfig/ui/templatedlg.ui:213
#, fuzzy
msgctxt "templatedlg|applist"
msgid "Drawings"
msgstr "Drawing"
#. t7zE7
-#: sfx2/uiconfig/ui/templatedlg.ui:228
+#: sfx2/uiconfig/ui/templatedlg.ui:227
msgctxt "templatedlg|filter_folder|tooltip_text"
msgid "Filter by Category"
msgstr ""
#. 93CGw
-#: sfx2/uiconfig/ui/templatedlg.ui:230
+#: sfx2/uiconfig/ui/templatedlg.ui:229
msgctxt "templatedlg|folderlist"
msgid "All Categories"
msgstr ""
#. NF9wE
-#: sfx2/uiconfig/ui/templatedlg.ui:251
+#: sfx2/uiconfig/ui/templatedlg.ui:250
msgctxt "templatedlg|label1"
msgid "Filter"
msgstr "Filter"
#. ewTL3
-#: sfx2/uiconfig/ui/templatedlg.ui:357
+#: sfx2/uiconfig/ui/templatedlg.ui:356
msgctxt "templatedlg|treeviewcolumn1"
msgid "Name"
msgstr ""
#. 7EJRA
-#: sfx2/uiconfig/ui/templatedlg.ui:374
+#: sfx2/uiconfig/ui/templatedlg.ui:373
msgctxt "templatedlg|treeviewcolumn2"
msgid "Category"
msgstr ""
#. AC27i
-#: sfx2/uiconfig/ui/templatedlg.ui:389
+#: sfx2/uiconfig/ui/templatedlg.ui:388
msgctxt "templatedlg|treeviewcolumn3"
msgid "Application"
msgstr ""
#. eSaBw
-#: sfx2/uiconfig/ui/templatedlg.ui:404
+#: sfx2/uiconfig/ui/templatedlg.ui:403
msgctxt "templatedlg|treeviewcolumn4"
msgid "Modified"
msgstr ""
#. pNzYA
-#: sfx2/uiconfig/ui/templatedlg.ui:419
+#: sfx2/uiconfig/ui/templatedlg.ui:418
msgctxt "templatedlg|treeviewcolumn5"
msgid "Size"
msgstr ""
#. j39jM
-#: sfx2/uiconfig/ui/templatedlg.ui:445
+#: sfx2/uiconfig/ui/templatedlg.ui:444
msgctxt "templatedlg|thumbnailviewlabel"
msgid "Template List"
msgstr ""
#. yEhgP
-#: sfx2/uiconfig/ui/templatedlg.ui:464
+#: sfx2/uiconfig/ui/templatedlg.ui:463
msgctxt "templatedlg|thumbnail_view_btn|tooltip_text"
msgid "Thumbnail View"
msgstr ""
#. j76ke
-#: sfx2/uiconfig/ui/templatedlg.ui:481
+#: sfx2/uiconfig/ui/templatedlg.ui:480
msgctxt "templatedlg|list_view_btn|tooltip_text"
msgid "List View"
msgstr ""
diff --git a/source/eo/helpcontent2/source/auxiliary.po b/source/eo/helpcontent2/source/auxiliary.po
index 4a5b80086e0..21c28616184 100644
--- a/source/eo/helpcontent2/source/auxiliary.po
+++ b/source/eo/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-11-25 19:33+0100\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
"PO-Revision-Date: 2020-02-24 11:26+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Esperanto <https://weblate.documentfoundation.org/projects/libo_help-master/auxiliary/eo/>\n"
@@ -313,11 +313,11 @@ msgctxt ""
msgid "Writing Calc Macros"
msgstr ""
-#. Q59GN
+#. vBXqp
#: scalc.tree
msgctxt ""
"scalc.tree\n"
-"0815\n"
+"0816\n"
"node.text"
msgid "Miscellaneous"
msgstr "Diversaj"
diff --git a/source/eo/sfx2/messages.po b/source/eo/sfx2/messages.po
index e4f1ca1c114..ad94f5c19bc 100644
--- a/source/eo/sfx2/messages.po
+++ b/source/eo/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-08-24 12:29+0200\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
"PO-Revision-Date: 2022-08-07 18:13+0000\n"
"Last-Translator: Donald Rogers <donr2648@fastmail.fm>\n"
"Language-Team: Esperanto <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/eo/>\n"
@@ -2961,7 +2961,7 @@ msgid "No"
msgstr "Ne"
#. kDKBB
-#: sfx2/uiconfig/ui/commandpopup.ui:36
+#: sfx2/uiconfig/ui/commandpopup.ui:35
msgctxt "commandpopup|entry"
msgid "Search command"
msgstr "Serĉi komandojn"
@@ -4901,139 +4901,139 @@ msgid "or Create a New Category"
msgstr "aŭ elekti novan kategorion"
#. eUWTy
-#: sfx2/uiconfig/ui/templatedlg.ui:46
+#: sfx2/uiconfig/ui/templatedlg.ui:44
msgctxt "templatedlg|TemplateDialog"
msgid "Templates"
msgstr "Ŝablonoj"
#. rhuYP
-#: sfx2/uiconfig/ui/templatedlg.ui:77
+#: sfx2/uiconfig/ui/templatedlg.ui:76
msgctxt "templatedlg|hidedialogcb"
msgid "Show this dialog at startup"
msgstr "Vidigi ĉi tiun dialogon je startigo"
#. 32zsB
-#: sfx2/uiconfig/ui/templatedlg.ui:144
+#: sfx2/uiconfig/ui/templatedlg.ui:143
msgctxt "templatedlg|search_filter|tooltip_text"
msgid "Search"
msgstr "Serĉi"
#. sGZMC
-#: sfx2/uiconfig/ui/templatedlg.ui:148
+#: sfx2/uiconfig/ui/templatedlg.ui:147
msgctxt "templatedlg|search_filter"
msgid "Search..."
msgstr "Serĉi..."
#. DF5YC
-#: sfx2/uiconfig/ui/templatedlg.ui:167
+#: sfx2/uiconfig/ui/templatedlg.ui:166
msgctxt "templatedlg|action_menu|label"
msgid "_Manage"
msgstr "Mastrumi"
#. LUs2m
-#: sfx2/uiconfig/ui/templatedlg.ui:181
+#: sfx2/uiconfig/ui/templatedlg.ui:180
msgctxt "templatedlg|extended_tip|action_menu"
msgid "Provides commands to create, rename and delete categories, reset default templates, and refresh the template manager."
msgstr "Donas komandojn por krei, alinomi kaj forigi kategoriojn, reagordi apriorajn ŝablonojn, kaj refreŝigi la ŝablonan mastrumilon."
#. fXVNY
-#: sfx2/uiconfig/ui/templatedlg.ui:208
+#: sfx2/uiconfig/ui/templatedlg.ui:207
msgctxt "templatedlg|filter_application|tooltip_text"
msgid "Filter by Application"
msgstr "Filtri laŭ aplikaĵo"
#. tqVhJ
-#: sfx2/uiconfig/ui/templatedlg.ui:210
+#: sfx2/uiconfig/ui/templatedlg.ui:209
msgctxt "templatedlg|applist"
msgid "All Applications"
msgstr "Ĉiuj aplikaĵoj"
#. pD6pU
-#: sfx2/uiconfig/ui/templatedlg.ui:211
+#: sfx2/uiconfig/ui/templatedlg.ui:210
msgctxt "templatedlg|applist"
msgid "Text Documents"
msgstr "Tekstaj dokumentoj"
#. eECt7
-#: sfx2/uiconfig/ui/templatedlg.ui:212
+#: sfx2/uiconfig/ui/templatedlg.ui:211
msgctxt "templatedlg|applist"
msgid "Spreadsheets"
msgstr "Kalkultabeloj"
#. ajLbV
-#: sfx2/uiconfig/ui/templatedlg.ui:213
+#: sfx2/uiconfig/ui/templatedlg.ui:212
msgctxt "templatedlg|applist"
msgid "Presentations"
msgstr "Prezentaĵoj"
#. LfUzB
-#: sfx2/uiconfig/ui/templatedlg.ui:214
+#: sfx2/uiconfig/ui/templatedlg.ui:213
msgctxt "templatedlg|applist"
msgid "Drawings"
msgstr "Desegnaĵoj"
#. t7zE7
-#: sfx2/uiconfig/ui/templatedlg.ui:228
+#: sfx2/uiconfig/ui/templatedlg.ui:227
msgctxt "templatedlg|filter_folder|tooltip_text"
msgid "Filter by Category"
msgstr "Filtri laŭ kategorio"
#. 93CGw
-#: sfx2/uiconfig/ui/templatedlg.ui:230
+#: sfx2/uiconfig/ui/templatedlg.ui:229
msgctxt "templatedlg|folderlist"
msgid "All Categories"
msgstr "Ĉiuj kategorioj"
#. NF9wE
-#: sfx2/uiconfig/ui/templatedlg.ui:251
+#: sfx2/uiconfig/ui/templatedlg.ui:250
msgctxt "templatedlg|label1"
msgid "Filter"
msgstr "Filtrilo"
#. ewTL3
-#: sfx2/uiconfig/ui/templatedlg.ui:357
+#: sfx2/uiconfig/ui/templatedlg.ui:356
msgctxt "templatedlg|treeviewcolumn1"
msgid "Name"
msgstr "Nomo"
#. 7EJRA
-#: sfx2/uiconfig/ui/templatedlg.ui:374
+#: sfx2/uiconfig/ui/templatedlg.ui:373
msgctxt "templatedlg|treeviewcolumn2"
msgid "Category"
msgstr "Kategorio"
#. AC27i
-#: sfx2/uiconfig/ui/templatedlg.ui:389
+#: sfx2/uiconfig/ui/templatedlg.ui:388
msgctxt "templatedlg|treeviewcolumn3"
msgid "Application"
msgstr "Aplikaĵo"
#. eSaBw
-#: sfx2/uiconfig/ui/templatedlg.ui:404
+#: sfx2/uiconfig/ui/templatedlg.ui:403
msgctxt "templatedlg|treeviewcolumn4"
msgid "Modified"
msgstr "Modifita"
#. pNzYA
-#: sfx2/uiconfig/ui/templatedlg.ui:419
+#: sfx2/uiconfig/ui/templatedlg.ui:418
msgctxt "templatedlg|treeviewcolumn5"
msgid "Size"
msgstr "Grando"
#. j39jM
-#: sfx2/uiconfig/ui/templatedlg.ui:445
+#: sfx2/uiconfig/ui/templatedlg.ui:444
msgctxt "templatedlg|thumbnailviewlabel"
msgid "Template List"
msgstr "Listo de ŝablonoj"
#. yEhgP
-#: sfx2/uiconfig/ui/templatedlg.ui:464
+#: sfx2/uiconfig/ui/templatedlg.ui:463
msgctxt "templatedlg|thumbnail_view_btn|tooltip_text"
msgid "Thumbnail View"
msgstr "Vidi bildeton"
#. j76ke
-#: sfx2/uiconfig/ui/templatedlg.ui:481
+#: sfx2/uiconfig/ui/templatedlg.ui:480
msgctxt "templatedlg|list_view_btn|tooltip_text"
msgid "List View"
msgstr "Vidi liston"
diff --git a/source/es/cui/messages.po b/source/es/cui/messages.po
index d016d395070..0f8e4f52953 100644
--- a/source/es/cui/messages.po
+++ b/source/es/cui/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-07-08 12:15+0200\n"
-"PO-Revision-Date: 2022-09-09 11:26+0000\n"
-"Last-Translator: drodriguez <drodriguez@libreoffice.org>\n"
+"PO-Revision-Date: 2022-09-21 09:48+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/es/>\n"
"Language: es\n"
"MIME-Version: 1.0\n"
@@ -3006,7 +3006,7 @@ msgstr "Para eliminar varios comentarios, seleccione las celdas con comentarios
#: cui/inc/tipoftheday.hrc:188
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar."
-msgstr "Convierta fácilmente sus documentos en PDF al instante pulsando en el icono correspondiente de la barra de herramientas."
+msgstr "Convierta de forma fácil sus documentos en PDF: basta con pulsar en el icono correspondiente de la barra de herramientas."
#. UwBoZ
#: cui/inc/tipoftheday.hrc:189
@@ -3654,7 +3654,7 @@ msgstr "La interfaz Contextual sencilla muestra las funciones en una barra de he
#: cui/inc/toolbarmode.hrc:31
msgctxt "RID_CUI_TOOLBARMODES"
msgid "The Contextual Groups interface focuses on beginners. It exposes the most frequently used functions on groups with the core action as large icon and a couple of small additional features. All functions have a label. Depending on the context, an additional section provides access to those functions."
-msgstr "La interfaz Contextual en grupos se centra en los principiantes. Expone las funciones utilizadas más frecuentemente en grupos, con la acción principal como icono grande y un par de funciones adicionales en pequeño. Todas las funciones tienen una etiqueta. En función del contexto, una sección adicional proporciona acceso a esas funciones."
+msgstr "La interfaz Contextual en grupos se centra en los principiantes. Expone las funciones utilizadas más frecuentemente en grupos, con la acción principal como icono grande y un par de funciones adicionales en pequeño. Todas las funciones tienen una etiqueta. En función del contexto, una sección adicional brinda acceso a más funciones."
#. Xnz8J
#: cui/inc/treeopt.hrc:34
@@ -6347,7 +6347,7 @@ msgstr "Apilado _verticalmente"
#: cui/uiconfig/ui/cellalignment.ui:132
msgctxt "cellalignment|extended_tip|checkVertStack"
msgid "Text direction vertically."
-msgstr ""
+msgstr "Texto en dirección vertical."
#. XBFYt
#: cui/uiconfig/ui/cellalignment.ui:143
@@ -7163,7 +7163,7 @@ msgstr "Coloración de sintaxis SQL"
#: cui/uiconfig/ui/colorconfigwin.ui:1877
msgctxt "colorconfigwin|sgml"
msgid "SGML syntax highlighting"
-msgstr "Resalte de sintaxis SGML"
+msgstr "Coloración de sintaxis SGML"
#. uYB5C
#: cui/uiconfig/ui/colorconfigwin.ui:1892
@@ -10270,25 +10270,25 @@ msgstr "Original"
#: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:274
msgctxt "hangulhanjaeditdictdialog|extended_tip|edit1"
msgid "Type a suggested replacement for the entry that is selected in the Original text box. The replacement word can contain a maximum of eight characters."
-msgstr "Digite el remplazo sugerido para la entrada seleccionada en la caja de texto original. La palabra de reemplazo puede contener máximo ocho caracteres."
+msgstr "Digite una sugerencia de reemplazo para la entrada seleccionada en el cuadro de texto Original. La palabra de reemplazo puede tener hasta ocho caracteres."
#. qFDF8
#: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:293
msgctxt "hangulhanjaeditdictdialog|extended_tip|edit2"
msgid "Type a suggested replacement for the entry that is selected in the Original text box. The replacement word can contain a maximum of eight characters."
-msgstr "Digite el remplazo sugerido para la entrada seleccionada en la caja de texto original. La palabra de reemplazo puede contener máximo ocho caracteres."
+msgstr "Digite una sugerencia de reemplazo para la entrada seleccionada en el cuadro de texto Original. La palabra de reemplazo puede tener hasta ocho caracteres."
#. rFF8x
#: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:312
msgctxt "hangulhanjaeditdictdialog|extended_tip|edit3"
msgid "Type a suggested replacement for the entry that is selected in the Original text box. The replacement word can contain a maximum of eight characters."
-msgstr "Digite el remplazo sugerido para la entrada seleccionada en la caja de texto original. La palabra de reemplazo puede contener máximo ocho caracteres."
+msgstr "Digite una sugerencia de reemplazo para la entrada seleccionada en el cuadro de texto Original. La palabra de reemplazo puede tener hasta ocho caracteres."
#. HNSTX
#: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:331
msgctxt "hangulhanjaeditdictdialog|extended_tip|edit4"
msgid "Type a suggested replacement for the entry that is selected in the Original text box. The replacement word can contain a maximum of eight characters."
-msgstr "Digite el remplazo sugerido para la entrada seleccionada en la caja de texto original. La palabra de reemplazo puede contener máximo ocho caracteres."
+msgstr "Digite una sugerencia de reemplazo para la entrada seleccionada en el cuadro de texto Original. La palabra de reemplazo puede tener hasta ocho caracteres."
#. ZiDNN
#: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:351
@@ -17533,7 +17533,7 @@ msgstr "Márgenes"
#: cui/uiconfig/ui/pageformatpage.ui:521
msgctxt "pageformatpage|labelPageLayout"
msgid "_Page layout:"
-msgstr "Disposición de _página:"
+msgstr "Disposición de _páginas:"
#. vnXWF
#: cui/uiconfig/ui/pageformatpage.ui:535
@@ -17655,7 +17655,7 @@ msgstr "Cualquier fondo recubrirá también los márgenes de la página"
#: cui/uiconfig/ui/pageformatpage.ui:724
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
-msgstr ""
+msgstr "Si se activa, un eventual fondo cubrirá la página entera, incluidos los márgenes. Si se desactiva, este fondo cubrirá la página solamente al interior de los márgenes."
#. xdECe
#: cui/uiconfig/ui/pageformatpage.ui:754
@@ -21194,13 +21194,13 @@ msgstr "Cara_cteres a principio de renglón"
#: cui/uiconfig/ui/textflowpage.ui:213
msgctxt "textflowpage|labelMaxNum"
msgid "_Maximum consecutive hyphenated lines"
-msgstr "Renglones con guion consecutivos _máximos"
+msgstr "Renglones con guion consecutivos má_ximos"
#. JkHBB
#: cui/uiconfig/ui/textflowpage.ui:227
msgctxt "textflowpage|labelMinLen"
msgid "_Minimum word length in characters"
-msgstr ""
+msgstr "Longitud mín_ima de palabra en caracteres"
#. GgHhP
#: cui/uiconfig/ui/textflowpage.ui:238
@@ -21212,7 +21212,7 @@ msgstr "No dividir palabras en MA_YÚSCULAS"
#: cui/uiconfig/ui/textflowpage.ui:253
msgctxt "textflowpage|checkNoLastWord"
msgid "Don't hyphenate the last word"
-msgstr ""
+msgstr "No dividir la última palabra"
#. 582fA
#: cui/uiconfig/ui/textflowpage.ui:292
@@ -21410,7 +21410,7 @@ msgstr "Opciones"
#: cui/uiconfig/ui/textflowpage.ui:724
msgctxt "textflowpage|extended_tip|TextFlowPage"
msgid "Specify hyphenation and pagination options."
-msgstr "Especifique opciones de separación de palabras y paginación."
+msgstr "Especifique opciones de división de palabras y paginación."
#. K58BF
#: cui/uiconfig/ui/themetabpage.ui:30
@@ -21434,25 +21434,25 @@ msgstr "Nombre:"
#: cui/uiconfig/ui/themetabpage.ui:121
msgctxt "themetabpage|lbDk1"
msgid "Background - Dark 1:"
-msgstr ""
+msgstr "Fondo oscuro 1:"
#. J3qNF
#: cui/uiconfig/ui/themetabpage.ui:136
msgctxt "themetabpage|lbLt1"
msgid "Text - Light 1:"
-msgstr ""
+msgstr "Texto claro 1:"
#. zFCDe
#: cui/uiconfig/ui/themetabpage.ui:151
msgctxt "themetabpage|lbDk2"
msgid "Background - Dark 2:"
-msgstr ""
+msgstr "Fondo oscuro 2:"
#. RVZjG
#: cui/uiconfig/ui/themetabpage.ui:166
msgctxt "themetabpage|lbLt2"
msgid "Text - Light 2:"
-msgstr ""
+msgstr "Texto claro 2:"
#. kwdwQ
#: cui/uiconfig/ui/themetabpage.ui:181
diff --git a/source/es/desktop/messages.po b/source/es/desktop/messages.po
index a4310e8cff5..ae68885384c 100644
--- a/source/es/desktop/messages.po
+++ b/source/es/desktop/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-05-25 12:36+0200\n"
-"PO-Revision-Date: 2022-07-04 16:15+0000\n"
+"PO-Revision-Date: 2022-09-21 09:48+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_ui-master/desktopmessages/es/>\n"
"Language: es\n"
@@ -1079,7 +1079,7 @@ msgstr "Lea el acuerdo completo. Utilice la barra de desplazamiento o el botón
#: desktop/uiconfig/ui/licensedialog.ui:160
msgctxt "licensedialog|label5"
msgid "Accept the License Agreement for the extension by pressing the 'Accept' button."
-msgstr "Si está de acuerdo con el contrato, pulse «Aceptar»."
+msgstr "Si está de acuerdo con el contrato, pulse en «Aceptar»."
#. ydBcE
#: desktop/uiconfig/ui/licensedialog.ui:173
diff --git a/source/es/helpcontent2/source/auxiliary.po b/source/es/helpcontent2/source/auxiliary.po
index d025ba63ab5..423cfb44b96 100644
--- a/source/es/helpcontent2/source/auxiliary.po
+++ b/source/es/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-11-25 19:33+0100\n"
+"POT-Creation-Date: 2022-09-21 11:43+0200\n"
"PO-Revision-Date: 2022-06-15 20:39+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/auxiliary/es/>\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.12.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562203919.000000\n"
#. fEEXD
@@ -313,11 +313,11 @@ msgctxt ""
msgid "Writing Calc Macros"
msgstr "Escribir macros de Calc"
-#. Q59GN
+#. vBXqp
#: scalc.tree
msgctxt ""
"scalc.tree\n"
-"0815\n"
+"0816\n"
"node.text"
msgid "Miscellaneous"
msgstr "Miscelánea"
diff --git a/source/es/helpcontent2/source/text/sbasic/guide.po b/source/es/helpcontent2/source/text/sbasic/guide.po
index b9d50fcc068..41fa2aa9e97 100644
--- a/source/es/helpcontent2/source/text/sbasic/guide.po
+++ b/source/es/helpcontent2/source/text/sbasic/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-07-04 18:04+0200\n"
-"PO-Revision-Date: 2022-09-09 14:36+0000\n"
+"PO-Revision-Date: 2022-09-21 09:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicguide/es/>\n"
"Language: es\n"
@@ -1022,7 +1022,7 @@ msgctxt ""
"par_id641630542724480\n"
"help.text"
msgid "In addition to top, bottom, left and right borders, <literal>TableBorder2</literal> also defines vertical and horizontal borders. The macro below applies only the top and bottom borders to the range \"B2:E5\"."
-msgstr ""
+msgstr "Además de los bordes superior, inferior, izquierdo y derecho, <literal>TableBorder2</literal> también define los bordes vertical y horizontal. La siguiente macro afecta solo a los bordes superior e inferior del intervalo «B2:E5»."
#. k7afV
#: calc_borders.xhp
@@ -1031,7 +1031,7 @@ msgctxt ""
"bas_id191630543332073\n"
"help.text"
msgid "' Defines the new line format"
-msgstr "' Define el nuevo formato de línea"
+msgstr "' Define el formato de línea nuevo"
#. hSdDm
#: calc_borders.xhp
diff --git a/source/es/helpcontent2/source/text/sbasic/python.po b/source/es/helpcontent2/source/text/sbasic/python.po
index 157aca491fe..d3b9c2c25a7 100644
--- a/source/es/helpcontent2/source/text/sbasic/python.po
+++ b/source/es/helpcontent2/source/text/sbasic/python.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-04-11 15:28+0200\n"
-"PO-Revision-Date: 2022-09-09 14:36+0000\n"
-"Last-Translator: drodriguez <drodriguez@libreoffice.org>\n"
+"PO-Revision-Date: 2022-09-21 09:55+0000\n"
+"Last-Translator: Dante Espejel <dante.misael.espejel@estudiante.uacm.edu.mx>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicpython/es/>\n"
"Language: es\n"
"MIME-Version: 1.0\n"
@@ -806,7 +806,7 @@ msgctxt ""
"N0613\n"
"help.text"
msgid "(Back/Fore)ground console to report/log program execution."
-msgstr ""
+msgstr "Puesta en primer o segundo plano de la consola para registrar la ejecución del programa."
#. Qph5m
#: python_document_events.xhp
@@ -1337,7 +1337,7 @@ msgctxt ""
"N0677\n"
"help.text"
msgid "Events assigned actions should mention the <literal>vnd.sun.star.UNO:</literal> protocol."
-msgstr ""
+msgstr "Las acciones asignadas a los eventos deben mencionar el protocolo <literal>vnd.sun.star.UNO:</literal>."
#. BTnaF
#: python_handler.xhp
@@ -3560,7 +3560,7 @@ msgctxt ""
"hd_id381633446811095\n"
"help.text"
msgid "Using the Terminal"
-msgstr ""
+msgstr "Utilización de la terminal"
#. CNFdD
#: python_shell.xhp
@@ -3596,7 +3596,7 @@ msgctxt ""
"par_id81632760673283\n"
"help.text"
msgid "Use <link href=\"https://extensions.libreoffice.org/extensions/apso-alternative-script-organizer-for-Python\" name=\"APSO extension\">APSO extension</link> console as an alternative:"
-msgstr ""
+msgstr "Utilice la consola de la <link href=\"https://extensions.libreoffice.org/extensions/apso-alternative-script-organizer-for-Python\" name=\"APSO extension\">extensión APSO</link> como alternativa:"
#. 6h9CS
#: python_shell.xhp
@@ -3614,4 +3614,4 @@ msgctxt ""
"par_id351633599611244\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03/sf_exception.xhp?#PythonShell\" name=\"PythonShell method\"><literal>PythonShell</literal></link> function in <link href=\"text/sbasic/shared/03/sf_exception.xhp\" name=\"ScriptForge.Exception service\"><literal>ScriptForge.Exception</literal></link> service"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03/sf_exception.xhp?#PythonShell\" name=\"PythonShell method\">Función <literal>PythonShell</literal></link> del servicio <link href=\"text/sbasic/shared/03/sf_exception.xhp\" name=\"ScriptForge.Exception service\"><literal>ScriptForge.Exception</literal></link>"
diff --git a/source/es/helpcontent2/source/text/sbasic/shared.po b/source/es/helpcontent2/source/text/sbasic/shared.po
index daa84a80139..417640d09a1 100644
--- a/source/es/helpcontent2/source/text/sbasic/shared.po
+++ b/source/es/helpcontent2/source/text/sbasic/shared.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-07-04 18:04+0200\n"
-"PO-Revision-Date: 2022-09-09 14:36+0000\n"
-"Last-Translator: drodriguez <drodriguez@libreoffice.org>\n"
+"PO-Revision-Date: 2022-09-21 09:55+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared/es/>\n"
"Language: es\n"
"MIME-Version: 1.0\n"
@@ -1418,7 +1418,7 @@ msgctxt ""
"par_id3150282\n"
"help.text"
msgid "<variable id=\"err446\">446 Named arguments are not supported by given object</variable>"
-msgstr "<variable id=\"err446\">446 El objeto indicado no admite los argumentos nominados</variable>"
+msgstr "<variable id=\"err446\">446 El objeto indicado no admite los argumentos con nombre</variable>"
#. hPPNr
#: 00000003.xhp
@@ -1436,7 +1436,7 @@ msgctxt ""
"par_id3152771\n"
"help.text"
msgid "<variable id=\"err448\">448 Named argument not found</variable>"
-msgstr "<variable id=\"err448\">448 No se encontró el argumento nominado</variable>"
+msgstr "<variable id=\"err448\">448 No se encontró el argumento con nombre</variable>"
#. uA2bA
#: 00000003.xhp
@@ -2543,7 +2543,7 @@ msgctxt ""
"par_id381599081637549\n"
"help.text"
msgid "In BASIC String functions, the first character of the string has index 1."
-msgstr ""
+msgstr "En las funciones de BASIC para cadenas, el primer carácter de una cadena tiene el índice 1."
#. wDbuF
#: 01020100.xhp
@@ -2984,7 +2984,7 @@ msgctxt ""
"hd_id3153770\n"
"help.text"
msgid "Passing Variables to Procedures, Functions or Properties"
-msgstr ""
+msgstr "Pasar variables a procedimientos, funciones o propiedades"
#. v9JPn
#: 01020300.xhp
@@ -3101,7 +3101,7 @@ msgctxt ""
"hd_id3156276\n"
"help.text"
msgid "Passing Variables by Value or Reference"
-msgstr "Pase de variables por valor o por referencia"
+msgstr "Pasar variables por valor o por referencia"
#. d2PgC
#: 01020300.xhp
@@ -6287,7 +6287,7 @@ msgctxt ""
"par_idN108D0\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the delay in milliseconds between scrollbar trigger events.</ahelp> A trigger event occurs when you click a scrollbar arrow or click the background area in a scrollbar. Repeated trigger events occur if you keep the mouse button pressed when you click a scrollbar arrow or background area in a scrollbar. If you want, you can include valid time units with the number that you enter, for example, 2 s or 500 ms."
-msgstr "<ahelp hid=\".\">Especifica el retraso en milisegundos entre los eventos disparadores de la barra de desplazamiento.</ahelp> Un evento disparador tiene lugar al pulsar en una flecha de la barra de desplazamiento o en el área de fondo de esta. Los eventos disparadores se repiten si mantiene el botón del ratón oprimido al pulsar en una flecha de la barra de desplazamiento o en su área de fondo. Si lo prefiere, puede incluir unidades temporales válidas con el número especificado, por ejemplo, «2 s» o «500 ms»."
+msgstr "<ahelp hid=\".\">Especifica la demora en milisegundos entre los eventos desencadenadores de la barra de desplazamiento.</ahelp> Un evento desencadenador tiene lugar al pulsar en una flecha de la barra de desplazamiento o en el área de fondo de esta. Los eventos desencadenadores se repiten si mantiene el botón del ratón oprimido al pulsar en una flecha de la barra de desplazamiento o en su área de fondo. Si lo prefiere, puede incluir unidades de tiempo válidas con el número especificado, por ejemplo, «2 s» o «500 ms»."
#. jFKSh
#: 01170101.xhp
@@ -7070,7 +7070,7 @@ msgctxt ""
"par_idN11128\n"
"help.text"
msgid "<ahelp hid=\".\">Repeats trigger events when you keep the mouse button pressed on a control such as a spin button.</ahelp>"
-msgstr "<ahelp hid=\".\">Repite los eventos disparadores al mantener el botón del ratón oprimido sobre un control como un botón de selección.</ahelp>"
+msgstr "<ahelp hid=\".\">Repite los eventos desencadenadores al mantener el botón del ratón oprimido sobre un control como un botón de selección.</ahelp>"
#. RP3VX
#: 01170101.xhp
@@ -7097,7 +7097,7 @@ msgctxt ""
"par_id9174779\n"
"help.text"
msgid "If Root displayed is set to FALSE, the root node of a model is no longer a valid node for the tree control and can't be used with any method of XTreeControl."
-msgstr "Si \"Raíz mostrado\" se fija a FALSE, el nodo raíz de un modelo es no más un nodo valido para el control árbol y no puede ser usado con cualquier método de XTreeControl."
+msgstr "Si Raíz mostrada se establece a FALSO, el nodo raíz del modelo ya no se considera un nodo válido del control de árbol y no podrá utilizarse con ningún método de XTreeControl."
#. KucrS
#: 01170101.xhp
@@ -13109,7 +13109,7 @@ msgctxt ""
"bas_id461643047301827\n"
"help.text"
msgid "' Prints the localized date"
-msgstr ""
+msgstr "' Devuelve la fecha regionalizada"
#. tSeu3
#: 03030102.xhp
@@ -13118,7 +13118,7 @@ msgctxt ""
"bas_id616430473023063\n"
"help.text"
msgid "' Extracts the year, month and day from the date object"
-msgstr ""
+msgstr "' Extrae el año, el mes y el día del objeto Date"
#. NkfKq
#: 03030102.xhp
@@ -13127,7 +13127,7 @@ msgctxt ""
"bas_id601643047303420\n"
"help.text"
msgid "' Prints the numeric value corresponding to the date (as Long type)"
-msgstr ""
+msgstr "' Devuelve el valor numérico correspondiente a la fecha (como entero de tipo largo)"
#. wDviP
#: 03030103.xhp
@@ -29003,7 +29003,7 @@ msgctxt ""
"par_idN10653\n"
"help.text"
msgid "MsgBox bIsStruct ' Displays True because aProperty is a struct"
-msgstr "MsgBox bIsStruct ' Displays True because aProperty is a struct"
+msgstr "MsgBox bIsStruct ' Muestra True porque aProperty es una estructura"
#. yJT9o
#: 03104500.xhp
@@ -29012,7 +29012,7 @@ msgctxt ""
"par_idN1065B\n"
"help.text"
msgid "MsgBox bIsStruct ' Displays False because 42 is NO struct"
-msgstr "MsgBox bIsStruct ' Displays False because 42 is NO struct"
+msgstr "MsgBox bIsStruct ' Muestra False porque 42 no es ninguna estructura"
#. dBKzM
#: 03104600.xhp
@@ -32027,7 +32027,7 @@ msgctxt ""
"bm_id3156027\n"
"help.text"
msgid "<bookmark_value>StrComp function</bookmark_value>"
-msgstr "<bookmark_value>StrComp function</bookmark_value>"
+msgstr "<bookmark_value>función StrComp</bookmark_value>"
#. hyUAD
#: 03120403.xhp
diff --git a/source/es/helpcontent2/source/text/sbasic/shared/02.po b/source/es/helpcontent2/source/text/sbasic/shared/02.po
index 1b9dead2561..286b40df841 100644
--- a/source/es/helpcontent2/source/text/sbasic/shared/02.po
+++ b/source/es/helpcontent2/source/text/sbasic/shared/02.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-10-04 19:51+0200\n"
-"PO-Revision-Date: 2022-07-06 16:22+0000\n"
-"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"PO-Revision-Date: 2022-09-21 09:55+0000\n"
+"Last-Translator: Cristopher Daniel Ramos Lara <cristopher.ramos.lara@gmail.com>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared02/es/>\n"
"Language: es\n"
"MIME-Version: 1.0\n"
@@ -1310,7 +1310,7 @@ msgctxt ""
"par_id3153781\n"
"help.text"
msgid "<image id=\"img_id3149530\" src=\"cmd/sc_hscrollbar.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149530\">Icon Horizontal Scrollbar</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149530\" src=\"cmd/sc_hscrollbar.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149530\">Icono Barra de desplazamiento horizontal</alt></image>"
#. Vbp2o
#: 20000000.xhp
@@ -1337,7 +1337,7 @@ msgctxt ""
"par_id3150515\n"
"help.text"
msgid "<image id=\"img_id3150203\" src=\"cmd/sc_vscrollbar.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150203\">Icon Vertical Scrollbar</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150203\" src=\"cmd/sc_vscrollbar.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150203\">Icono Barra de desplazamiento vertical</alt></image>"
#. NmKDo
#: 20000000.xhp
@@ -1364,7 +1364,7 @@ msgctxt ""
"par_id3151184\n"
"help.text"
msgid "<image id=\"img_id3151335\" src=\"cmd/sc_groupbox.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151335\">Icon Group Box</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151335\" src=\"cmd/sc_groupbox.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151335\">Icono Marco de grupo</alt></image>"
#. aMgsB
#: 20000000.xhp
@@ -1391,7 +1391,7 @@ msgctxt ""
"hd_id3149330\n"
"help.text"
msgid "Progress Bar"
-msgstr "Barra de progresión"
+msgstr "Barra de progreso"
#. SDEqL
#: 20000000.xhp
diff --git a/source/es/helpcontent2/source/text/sbasic/shared/03.po b/source/es/helpcontent2/source/text/sbasic/shared/03.po
index 2cf07bbce1c..1fa6669793e 100644
--- a/source/es/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/es/helpcontent2/source/text/sbasic/shared/03.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: 2022-07-04 18:04+0200\n"
-"PO-Revision-Date: 2022-09-09 14:36+0000\n"
+"PO-Revision-Date: 2022-09-21 09:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared03/es/>\n"
"Language: es\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.12.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1548211825.000000\n"
#. ViEWM
@@ -2111,7 +2111,7 @@ msgctxt ""
"par_id591582648204013\n"
"help.text"
msgid "<emph>from</emph>: Value of the first item."
-msgstr ""
+msgstr "<emph>de</emph>: Valor del primer elemento."
#. ciMBJ
#: sf_array.xhp
@@ -2120,7 +2120,7 @@ msgctxt ""
"par_id31582648204013\n"
"help.text"
msgid "<emph>upto</emph>: The last item should not exceed <literal>UpTo</literal>."
-msgstr ""
+msgstr "<emph>hasta</emph>: El último elemento no debe exceder de <literal>Hasta</literal>."
#. 2QZtd
#: sf_array.xhp
@@ -2129,7 +2129,7 @@ msgctxt ""
"par_id581582648204014\n"
"help.text"
msgid "<emph>bystep</emph>: The difference between two successive items (Default = 1)."
-msgstr ""
+msgstr "<emph>bystep</emph>: la diferencia entre dos elementos sucesivos (de manera predeterminada es 1)."
#. SbVGG
#: sf_array.xhp
@@ -2138,7 +2138,7 @@ msgctxt ""
"par_id451582648806764\n"
"help.text"
msgid "Return the reversed one dimension input array."
-msgstr ""
+msgstr "Devuelve la matriz unidimensional de entrada invertida."
#. dG6d8
#: sf_array.xhp
@@ -2147,7 +2147,7 @@ msgctxt ""
"par_id31582648806765\n"
"help.text"
msgid "<emph>array_1d</emph>: The array to reverse."
-msgstr ""
+msgstr "<emph>array_1d</emph>: la matriz para invertir."
#. tkEUv
#: sf_array.xhp
@@ -2156,7 +2156,7 @@ msgctxt ""
"par_id151582649200088\n"
"help.text"
msgid "Returns a random permutation of a one-dimensional array."
-msgstr ""
+msgstr "Devuelve una permutación aleatoria de una matriz unidimensional."
#. xFwWY
#: sf_array.xhp
@@ -25610,7 +25610,7 @@ msgctxt ""
"par_id781580047088954\n"
"help.text"
msgid "<emph>osname</emph>: The operating system name, as a string. It can be \"WINDOWS\", \"LINUX\", \"MACOSX\" or \"SOLARIS\"."
-msgstr ""
+msgstr "<emph>osname</emph>: el nombre del sistema operativo, como una cadena. Puede ser «WINDOWS», «LINUX», «MACOSX» o «SOLARIS»."
#. GnrxA
#: sf_string.xhp
@@ -25619,7 +25619,7 @@ msgctxt ""
"par_id991612372824234\n"
"help.text"
msgid "The default value is the current operating system on which the script is running."
-msgstr ""
+msgstr "El valor predeterminado es el sistema operativo actual en el que se ejecuta la secuencia de órdenes."
#. FPuAV
#: sf_string.xhp
@@ -25718,7 +25718,7 @@ msgctxt ""
"par_id31580049154551\n"
"help.text"
msgid "<emph>pattern</emph>: The pattern as a string. Wildcards are:"
-msgstr ""
+msgstr "<emph>pattern</emph>: la pauta como cadena. Los comodines son:"
#. ZCzDP
#: sf_string.xhp
@@ -25736,7 +25736,7 @@ msgctxt ""
"par_id861612377611438\n"
"help.text"
msgid "\"*\" represents zero, one, or multiple characters."
-msgstr ""
+msgstr "«*» representa cero, uno o varios caracteres."
#. eLYBF
#: sf_string.xhp
@@ -28904,7 +28904,7 @@ msgctxt ""
"hd_id31656351967453\n"
"help.text"
msgid "Test Case"
-msgstr ""
+msgstr "Caso de prueba"
#. 2SE2W
#: sf_unittest.xhp
diff --git a/source/es/helpcontent2/source/text/scalc/01.po b/source/es/helpcontent2/source/text/scalc/01.po
index c7bc01c5851..2543a833358 100644
--- a/source/es/helpcontent2/source/text/scalc/01.po
+++ b/source/es/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-07-04 18:04+0200\n"
-"PO-Revision-Date: 2022-09-09 14:35+0000\n"
+"PO-Revision-Date: 2022-09-21 09:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/es/>\n"
"Language: es\n"
@@ -563,7 +563,7 @@ msgctxt ""
"par_id3153415\n"
"help.text"
msgid "The <emph>Headers/Footers</emph> dialog contains the tabs for defining headers and footers. There will be separate tabs for the left and right page headers and footers if the <emph>Same content left/right</emph> option was not marked in the <link href=\"text/scalc/01/05070000.xhp\" name=\"Page Style\"><emph>Page Style</emph></link> dialog."
-msgstr "El cuadro de diálogo <emph>Cabeceras/Pies de página</emph> contiene las pestañas para definir las cabeceras y los pies de página. Habrá pestañas separadas para los encabezados y pies de página izquierdo y derecho si la opción <emph>Mismo contenido izquierdo/derecho</emph> no fue marcada en el diálogo <link href=\"text/scalc/01/05070000.xhp\" name=\"Estilo de página\"><emph>Estilo de página</emph></link>."
+msgstr "El cuadro de diálogo <emph>Cabeceras/pies</emph> contiene pestañas que permiten definir cabeceras y pies de página. Si en el cuadro de diálogo <link href=\"text/scalc/01/05070000.xhp\" name=\"Page Style\"><emph>Estilo de página</emph></link> se desmarca la casilla <emph>Mismo contenido en páginas izquierdas y derechas</emph>, en este cuadro de diálogo habrá pestañas separadas para configurar las cabeceras y los pies de las páginas izquierdas y las derechas."
#. CTq6U
#: 02120100.xhp
@@ -44873,7 +44873,7 @@ msgctxt ""
"hd_id3154021\n"
"help.text"
msgid "Number format"
-msgstr "Formato de números"
+msgstr "Formato numérico"
#. BCCRb
#: 05110000.xhp
@@ -44999,7 +44999,7 @@ msgctxt ""
"par_id3163710\n"
"help.text"
msgid "<variable id=\"bedingtetext\"><ahelp hid=\".\">Use <emph>Conditional Formatting</emph> to define range-based conditions that determine which cell style will be applied to each cell in a given range based on its contents.</ahelp></variable> The cell style corresponding to the first condition that evaluates to <emph>true</emph> is applied. Cell styles applied through Conditional Formatting override cell styles applied manually using the <link href=\"text/scalc/main0202.xhp\" name=\"FormattingBar_link\"><emph>Formatting Bar</emph></link> or the <emph>Styles</emph> sidebar."
-msgstr "<variable id=\"bedingtetext\"><ahelp hid=\".\">Utilice<emph>Formato condicional</emph>para definir condiciones basadas en rangos que determinen qué estilo de celda se aplicará a cada celda de un rango determinado en función de su contenido.</ahelp></variable>El estilo de celda correspondiente a la primera condición que se evalúa como<emph>verdadero</emph>se aplica. Los estilos de celda aplicados a través de Formato Condicional invalidan los estilos de celda aplicados manualmente mediante la función<link href=\"text/scalc/main0202.xhp\" name=\"FormattingBar_link\"><emph>Barra de Formato</emph></link>o la<emph>Estilos</emph>barra lateral."
+msgstr "<variable id=\"bedingtetext\"><ahelp hid=\".\">Sírvase del <emph>formato condicional</emph> para definir condiciones basadas en intervalos que determinen qué estilo de celda se aplicará a cada una de las celdas de un intervalo dado en función de su contenido.</ahelp></variable> Se aplica el estilo de celda que se corresponde con la primera condición considerada <emph>verdadera</emph>. Los estilos de celda aplicados mediante el formato condicional tienen prevalencia sobre los estilos de celda aplicados manualmente a través de la <link href=\"text/scalc/main0202.xhp\" name=\"FormattingBar_link\"><emph>barra Formato</emph></link> o el grupo <emph>Estilos</emph> de la barra lateral."
#. 2GWTv
#: 05120000.xhp
@@ -45008,7 +45008,7 @@ msgctxt ""
"par_id3163711\n"
"help.text"
msgid "You can enter several conditions that query the cell values or results of formulas. The conditions are evaluated from first to the last. If <emph>Condition 1</emph> is true based on the current cell contents, the corresponding cell style is applied. Otherwise, <emph>Condition 2</emph> is evaluated to determine if its corresponding style will be applied. If none of the conditions match cell contents, then no changes are made to the cell format."
-msgstr "Puede introducir varias condiciones que consulten los valores de las celdas o los resultados de las fórmulas. Las condiciones se evalúan de la primera a la última. Si<emph> Condición 1</emph>es verdadera basándose en el contenido actual de la celda, se aplica el estilo de celda correspondiente. En caso contrario,<emph>Condición 2</emph>se evalúa para determinar si se aplicará el estilo correspondiente. Si ninguna de las condiciones coincide con el contenido de la celda, entonces no se realiza ningún cambio en el formato de la celda."
+msgstr "Puede introducir varias condiciones que consulten los valores de las celdas o los resultados de las fórmulas. Las condiciones se calculan de la primera a la última. Si la <emph>condición 1</emph> es verdadera en función del contenido actual de una celda, se aplica el estilo de celda correspondiente. Si no, se ejecuta la <emph>condición 2</emph> para determinar si su estilo correspondiente debe aplicarse. Si ninguna de las condiciones se corresponde con el contenido de la celda, no se efectúa ningún cambio en el formato de esta."
#. GNdvU
#: 05120000.xhp
@@ -47638,7 +47638,7 @@ msgctxt ""
"par_id3158212\n"
"help.text"
msgid "<ahelp hid=\".\"><variable id=\"sytext\">Sorts the selection from the highest to the lowest value, or from the lowest to the highest value. Number fields are sorted by size and text fields by the order of the characters. You can define the sort rules on Data - Sort - Options.</variable></ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages."
-msgstr "<ahelp hid=\".\"><variable id=\"sytext\">Ordena la selección de mayor a menor valor, o de menor a mayor valor. Los campos numéricos se ordenan por tamaño y los campos de texto por el orden de los caracteres. Puede definir las reglas de ordenación en Datos - Ordenar - Opciones.</variable></ahelp>El orden por defecto se define en<switchinline select=\"sys\"><caseinline select=\"MAC\">%NOMBRE DEL PRODUCTO-Preferencias</caseinline><defaultinline>Herramientas - Opciones</defaultinline></switchinline>Configuración del idioma - Idiomas."
+msgstr "<ahelp hid=\".\"><variable id=\"sytext\">Ordena la selección de mayor a menor valor, o de menor a mayor valor. Los campos numéricos se ordenan por tamaño y los campos de texto por el orden de los caracteres. Puede definir las reglas de ordenación en Datos ▸ Ordenar ▸ Opciones.</variable></ahelp> El orden predeterminado se puede definir en <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME ▸ Preferencias</caseinline><defaultinline>Herramientas ▸ Opciones</defaultinline></switchinline>Configuración de idiomas ▸ Idiomas."
#. cAFdw
#: 12030100.xhp
@@ -47782,7 +47782,7 @@ msgctxt ""
"par_id431610757186031\n"
"help.text"
msgid "Range boundary columns (for sorting rows) or boundary rows (for sorting columns) of a sorting range are not sorted by default if they are empty. Check this option if boundary columns or boundary rows containing comments are also to be sorted."
-msgstr "Las columnas límite del rango (para ordenar las filas) o las filas límite (para ordenar las columnas) de un rango de ordenación no se ordenan por defecto si están vacías. Marque esta opción si las columnas o filas límite que contienen comentarios también deben ordenarse."
+msgstr "Las columnas límite (para ordenar las filas) o las filas límite (para ordenar las columnas) de un intervalo de ordenación no se ordenan de manera predeterminada si están vacías. Marque esta opción si las columnas o filas límite que contienen comentarios también deben ordenarse."
#. zDzUQ
#: 12030200.xhp
@@ -47800,7 +47800,7 @@ msgctxt ""
"par_id181610758875786\n"
"help.text"
msgid "Border columns (for sorting rows) or border rows (for sorting columns) of a sorting area are not sorted by default if they are empty. Check this option if boundary columns or boundary rows containing images are also to be sorted."
-msgstr "Las columnas límite (para clasificar filas) o las filas límite (para clasificar columnas) de un área de clasificación no se clasifican por defecto si están vacías. Marque esta opción si las columnas de los bordes o las filas de los bordes que contienen imágenes también deben clasificarse."
+msgstr "Las columnas límite (para clasificar filas) o las filas límite (para clasificar columnas) de un área de ordenación no se ordenan de manera predeterminada si están vacías. Marque esta opción si las columnas de los bordes o las filas de los bordes que contienen imágenes también deben ordenarse."
#. LBnqi
#: 12030200.xhp
@@ -57520,7 +57520,7 @@ msgctxt ""
"par_id579641593251685\n"
"help.text"
msgid "US survey mile"
-msgstr "Milla de agrimensura de EE. UU."
+msgstr "Milla de agrimensura estadounidense"
#. bHo6X
#: func_convert.xhp
@@ -58132,7 +58132,7 @@ msgctxt ""
"par_id976829653577442\n"
"help.text"
msgid "US bushel"
-msgstr "Bushel de EE.UU."
+msgstr "Fanega estadounidense"
#. Fb3dj
#: func_convert.xhp
@@ -65683,7 +65683,7 @@ msgctxt ""
"par_id321641927458888\n"
"help.text"
msgid "The rounding method used by this function is known as <emph>rounding towards zero</emph>. The resulting number will always be smaller than or equal to the original number."
-msgstr "El método de redondeo utilizado en esta función se conoce como <emph> redondeo a cero </emph>.El número resultante siempre será menor o igual al número original."
+msgstr "El método de redondeo utilizado en esta función se conoce como <emph>redondeo hacia cero</emph>. El número resultante siempre será menor que o igual al número original."
#. SqCQv
#: func_trunc.xhp
diff --git a/source/es/helpcontent2/source/text/schart/01.po b/source/es/helpcontent2/source/text/schart/01.po
index 9f63b059792..6067c59f289 100644
--- a/source/es/helpcontent2/source/text/schart/01.po
+++ b/source/es/helpcontent2/source/text/schart/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-09-10 23:11+0200\n"
-"PO-Revision-Date: 2022-09-09 14:35+0000\n"
+"PO-Revision-Date: 2022-09-21 09:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textschart01/es/>\n"
"Language: es\n"
@@ -6044,7 +6044,7 @@ msgctxt ""
"par_id5081942\n"
"help.text"
msgid "Click an entry, then edit the contents in the text box below."
-msgstr "Pulse en un elemento, después edite su contenido en la caja de texto inferior."
+msgstr "Pulse en una entrada y, acto seguido, edite su contenido en el cuadro de texto de más abajo."
#. xpiMy
#: type_column_line.xhp
@@ -8690,7 +8690,7 @@ msgctxt ""
"par_id9475081\n"
"help.text"
msgid "Click an entry, then edit the contents in the text box below."
-msgstr "Pulse en un elemento, después edite su contenido en la caja de texto inferior."
+msgstr "Pulse en una entrada y, acto seguido, edite su contenido en el cuadro de texto de más abajo."
#. MeE6G
#: wiz_data_series.xhp
diff --git a/source/es/helpcontent2/source/text/sdatabase.po b/source/es/helpcontent2/source/text/sdatabase.po
index cda8b2e4136..33c86749078 100644
--- a/source/es/helpcontent2/source/text/sdatabase.po
+++ b/source/es/helpcontent2/source/text/sdatabase.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: 2022-05-25 12:36+0200\n"
-"PO-Revision-Date: 2022-09-09 14:36+0000\n"
+"PO-Revision-Date: 2022-09-21 09:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textsdatabase/es/>\n"
"Language: es\n"
@@ -2344,7 +2344,7 @@ msgctxt ""
"par_id3151265\n"
"help.text"
msgid "=1 returns all records where the Yes/No field has the status \"Yes\" or \"On\" (selected in black),"
-msgstr "=1 devuelve todos los registros donde el campo Sí/No tiene el estado \"Sí\" o \"Activado\" (seleccionado en negro),"
+msgstr "=1 devuelve todos los registros donde el campo Sí/No tiene el estado «Sí» o «Activado» (seleccionado en negro),"
#. 3P4ZB
#: 02010100.xhp
@@ -2425,7 +2425,7 @@ msgctxt ""
"par_id191120151905346795\n"
"help.text"
msgid "Parameter queries allow the user to input values at run-time. These values are used within the criteria for selecting the records to be displayed. Each such value has a parameter name associated with it, which is used to prompt the user when the query is run."
-msgstr ""
+msgstr "Las consultas con parámetros permiten al usuario introducir valores en el momento de la ejecución. Estos valores se usan junto con los demás criterios para seleccionar los registros que se mostrarán. Cada uno de esos valores tiene un nombre de parámetro asociado que se usa para mostrarlo al usuario en el momento de ejecutar la consulta."
#. Be7XG
#: 02010100.xhp
@@ -2434,7 +2434,7 @@ msgctxt ""
"par_id191120151905439551\n"
"help.text"
msgid "Parameter names are preceded by a colon in both the Design and SQL views of a query. This can be used wherever a value can appear. If the same value is to appear more than once in the query, the same parameter name is used."
-msgstr ""
+msgstr "Los nombres de los parámetros van precedidos de dos puntos, tanto en la vista de diseño como en la vista SQL. Se pueden usar en cualquier sitio donde quiera que aparezca el valor. Si el mismo valor debe aparecer más de una vez, se usa el mismo nombre de parámetro."
#. f2NMg
#: 02010100.xhp
@@ -2443,7 +2443,7 @@ msgctxt ""
"par_id191120151905518123\n"
"help.text"
msgid "In the simplest case, where the user enters a value which is matched for equality, the parameter name with its preceding colon is simply entered in the Criterion row. In <link href=\"text/sdatabase/02010100.xhp#sqlmode\">SQL mode</link> this should be typed as <item type=\"input\">WHERE \"Field\" = :Parameter_name</item>"
-msgstr ""
+msgstr "En el caso más simple, en el que el usuario introduce un valor para una relación de igualdad, el nombre del parámetro, precedido por dos puntos, simplemente se introduce en la fila Criterio. En el <link href=\"text/sdatabase/02010100.xhp#sqlmode\">modo SQL</link>, esto debe escribirse como <item type=\"input\">WHERE \"Campo\" = :Nombre_del_parámetro</item>"
#. DZCXm
#: 02010100.xhp
@@ -2488,7 +2488,7 @@ msgctxt ""
"par_id3153596\n"
"help.text"
msgid "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">The <emph>Parameter Input</emph> dialog asks the user to enter the parameter values. Enter a value for each query parameter and confirm by clicking <emph>OK</emph> or typing <emph>Enter</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">El cuadro de diálogo <emph>Entrada de parámetros</emph> solicita al usuario que ingrese los valores de los parámetros. Introduzca un valor para cada parámetro de consulta y confirme pulsando en <emph>Aceptar</emph> u oprimiendo <emph>Intro</emph>.</ahelp>"
#. eGETM
#: 02010100.xhp
@@ -2497,7 +2497,7 @@ msgctxt ""
"par_id191120151924165870\n"
"help.text"
msgid "The values entered by the user may consist of any characters which are allowable for the SQL for the relevant criterion; this may depend on the underlying database system."
-msgstr ""
+msgstr "Los valores proporcionados por el usuario pueden estar compuestos de cualesquier caracteres admisibles en SQL para el criterio relevante; esto puede depender del sistema de bases de datos subyacente."
#. seFhG
#: 02010100.xhp
@@ -5512,7 +5512,7 @@ msgctxt ""
"hd_id3154011\n"
"help.text"
msgid "Use Catalog for file-based databases"
-msgstr "Usar catálogo con bases de datos basadas en archivo"
+msgstr "Usar catálogo con bases de datos basadas en archivos"
#. BaWgu
#: 11020000.xhp
@@ -5620,7 +5620,7 @@ msgctxt ""
"par_id3161656\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/dbasepage/indiciesButton\">Opens the <link href=\"text/sdatabase/11030100.xhp\" name=\"Indexes\"><emph>Indexes</emph></link> dialog, where you can organize the table indexes in the current dBASE database.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/dbasepage/indiciesButton\">Abre el cuadro de diálogo <link href=\"text/sdatabase/11030100.xhp\" name=\"Indexes\"><emph>Índices</emph></link>, donde puede organizar los índices de la tabla en la base de datos dBASE actual.</ahelp>"
#. vMA8w
#: 11030100.xhp
@@ -5647,7 +5647,7 @@ msgctxt ""
"par_id3150247\n"
"help.text"
msgid "<ahelp hid=\".\">Lets you organize dBASE database indexes.</ahelp> An index allows you to access a database quickly, provided that you query the data in the selection that was defined through the index. When you design a table, you can define the indexes on the <emph>Indexes </emph>tab page."
-msgstr ""
+msgstr "<ahelp hid=\".\">Le permite organizar los índices de la base de datos dBASE.</ahelp> Un índice le permite acceder rápidamente a una base de datos, siempre que se efectúen consultas en los datos en la selección que se definió a través del índice. Cuando diseña una tabla, puede definir los índices en la pestaña <emph>Índices</emph>."
#. Aj5Uz
#: 11030100.xhp
@@ -5737,7 +5737,7 @@ msgctxt ""
"par_id3145315\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\">Moves all of the free indexes to the <emph>Table Indexes</emph> list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\">Mueve todos los índices libres a la lista <emph>Índices de tabla</emph>.</ahelp>"
#. Ba8Z9
#: 11030100.xhp
@@ -5755,7 +5755,7 @@ msgctxt ""
"par_id3149795\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/remove\">Moves the selected table indexes to the <emph>Free Indexes</emph> list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/remove\">Mueve los índices de tabla seleccionados a la lista <emph>Índices libres</emph>.</ahelp>"
#. sAASQ
#: 11030100.xhp
@@ -5773,7 +5773,7 @@ msgctxt ""
"par_id3151245\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/removeall\">Moves all of the table indexes to the <emph>Free Indexes</emph> list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/removeall\">Mueve todos los índices de la tabla a la lista <emph>Índices libres</emph>.</ahelp>"
#. LQcMC
#: 11080000.xhp
@@ -5791,7 +5791,7 @@ msgctxt ""
"bm_id3148983\n"
"help.text"
msgid "<bookmark_value>SQL; executing SQL statements (Base)</bookmark_value><bookmark_value>databases; administration through SQL (Base)</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>SQL; ejecutar instrucciones SQL (Base)</bookmark_value><bookmark_value>bases de datos; administración a través de SQL (Base)</bookmark_value>"
#. JsqKF
#: 11080000.xhp
@@ -5890,7 +5890,7 @@ msgctxt ""
"par_id281652481037143\n"
"help.text"
msgid "Show the result of the SQL SELECT command in the Output box."
-msgstr ""
+msgstr "Muestra el resultado de la orden SELECT de SQL en el cuadro Salida."
#. uaXF8
#: 11080000.xhp
@@ -11785,7 +11785,7 @@ msgctxt ""
"par_idN1055D\n"
"help.text"
msgid "Display query"
-msgstr ""
+msgstr "Mostrar consulta"
#. BJa3G
#: querywizard08.xhp
@@ -11794,7 +11794,7 @@ msgctxt ""
"par_idN10561\n"
"help.text"
msgid "<ahelp hid=\".\">Select to save and display the query.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Seleccione esta opción para guardar y mostrar la consulta.</ahelp>"
#. yN4FB
#: querywizard08.xhp
@@ -11803,7 +11803,7 @@ msgctxt ""
"par_idN10564\n"
"help.text"
msgid "Modify query"
-msgstr ""
+msgstr "Modificar consulta"
#. VKpNF
#: querywizard08.xhp
@@ -11812,7 +11812,7 @@ msgctxt ""
"par_idN10568\n"
"help.text"
msgid "<ahelp hid=\".\">Select to save the query and open it for editing.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Seleccione esta opción para guardar la consulta y abrirla para su edición.</ahelp>"
#. 3ww32
#: querywizard08.xhp
@@ -11830,7 +11830,7 @@ msgctxt ""
"par_idN1056F\n"
"help.text"
msgid "<ahelp hid=\".\">Displays a summary of the query.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Muestra un resumen de la consulta.</ahelp>"
#. 8k8Fx
#: querywizard08.xhp
@@ -11875,7 +11875,7 @@ msgctxt ""
"par_id6278878\n"
"help.text"
msgid "Press <item type=\"keycode\">Shift-F1</item> and point with the mouse at an input box to see a help text for this input box."
-msgstr ""
+msgstr "Presione <item type=\"keycode\">Mayús + F1</item> y apunte con el ratón a un cuadro de entrada para que aparezca un texto de ayuda al respecto de ese cuadro."
#. ppg4k
#: rep_datetime.xhp
@@ -13135,7 +13135,7 @@ msgctxt ""
"par_id1068758\n"
"help.text"
msgid "Press <item type=\"keycode\">Shift-F1</item> and point with the mouse at an input box to see a help text for this input box."
-msgstr "Presione <item type=\"keycode\">Mayúsculas-F1</item> y señale con el ratón un cuadro de entrada para ver un texto de ayuda para ese cuadro de entrada."
+msgstr "Presione <item type=\"keycode\">Mayús + F1</item> y apunte con el ratón a un cuadro de entrada para que aparezca un texto de ayuda al respecto de ese cuadro."
#. Cz9Sk
#: rep_pagenumbers.xhp
diff --git a/source/es/helpcontent2/source/text/shared.po b/source/es/helpcontent2/source/text/shared.po
index 065df639347..7c16f0a3e69 100644
--- a/source/es/helpcontent2/source/text/shared.po
+++ b/source/es/helpcontent2/source/text/shared.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-07-04 18:04+0200\n"
-"PO-Revision-Date: 2022-09-09 14:36+0000\n"
+"PO-Revision-Date: 2022-09-21 09:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textshared/es/>\n"
"Language: es\n"
@@ -221,7 +221,7 @@ msgctxt ""
"par_id761641582194558\n"
"help.text"
msgid "Opens the <link href=\"text/swriter/guide/finding.xhp\" name=\"Find_Replace\">Find and Replace</link> dialog, which provides more options for searching the document."
-msgstr ""
+msgstr "Abre el cuadro de diálogo <link href=\"text/swriter/guide/finding.xhp\" name=\"Find_Replace\">Buscar y reemplazar</link>, que brinda más opciones para efectuar búsquedas en el documento."
#. rx3mH
#: find_toolbar.xhp
diff --git a/source/es/helpcontent2/source/text/shared/00.po b/source/es/helpcontent2/source/text/shared/00.po
index 113b58c7303..f13122ad9a2 100644
--- a/source/es/helpcontent2/source/text/shared/00.po
+++ b/source/es/helpcontent2/source/text/shared/00.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-07-04 18:04+0200\n"
-"PO-Revision-Date: 2022-09-09 14:36+0000\n"
-"Last-Translator: drodriguez <drodriguez@libreoffice.org>\n"
+"PO-Revision-Date: 2022-09-21 09:55+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textshared00/es/>\n"
"Language: es\n"
"MIME-Version: 1.0\n"
@@ -3065,7 +3065,7 @@ msgctxt ""
"par_id3149748\n"
"help.text"
msgid "<variable id=\"diaobjektleiste\">Icon on the Slide View Bar: </variable>"
-msgstr "<variable id=\"diaobjektleiste\">Icono de la barra Vista diapositiva: </variable>"
+msgstr "<variable id=\"diaobjektleiste\">Icono de la barra Vista de diapositivas: </variable>"
#. VXAaB
#: 00000007.xhp
diff --git a/source/es/helpcontent2/source/text/shared/01.po b/source/es/helpcontent2/source/text/shared/01.po
index 8df89ff2057..cc244a67221 100644
--- a/source/es/helpcontent2/source/text/shared/01.po
+++ b/source/es/helpcontent2/source/text/shared/01.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-07-04 18:04+0200\n"
-"PO-Revision-Date: 2022-09-09 14:35+0000\n"
-"Last-Translator: drodriguez <drodriguez@libreoffice.org>\n"
+"PO-Revision-Date: 2022-09-21 09:55+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/es/>\n"
"Language: es\n"
"MIME-Version: 1.0\n"
@@ -4910,7 +4910,7 @@ msgctxt ""
"hd_id0818200912285112\n"
"help.text"
msgid "Page Layout"
-msgstr "Diseño de página"
+msgstr "Disposición de páginas"
#. AERDJ
#: 01130000.xhp
@@ -12047,7 +12047,7 @@ msgctxt ""
"par_id3159104\n"
"help.text"
msgid "<image id=\"img_id3149735\" src=\"cmd/sc_modifyframe.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149735\">Icon Properties</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149735\" src=\"cmd/sc_modifyframe.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149735\">Icono Propiedades</alt></image>"
#. imNDz
#: 02220000.xhp
@@ -12083,7 +12083,7 @@ msgctxt ""
"hd_id3146132\n"
"help.text"
msgid "Text Alternative"
-msgstr ""
+msgstr "Alternativa textual"
#. ccR9n
#: 02220000.xhp
@@ -12200,7 +12200,7 @@ msgctxt ""
"par_id3152349\n"
"help.text"
msgid "Lists the properties of the URL that is attached to the hotspot."
-msgstr "Muestra las propiedades del URL vinculado a la zona activa."
+msgstr "Muestra las propiedades del URL asociado a la zona activa."
#. m5ej6
#: 02220100.xhp
@@ -12218,7 +12218,7 @@ msgctxt ""
"par_id3155831\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/cuiimapdlg/urlentry\">Enter the URL for the file that you want to open when you click the selected hotspot.</ahelp> If you want to jump to a named anchor within the current document, the address should be of the form \"file:///C:/Documents/[current_document_name]#anchor_name\"."
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/cuiimapdlg/urlentry\">Introduzca el URL hacia el archivo que desee que se abra al pulsar en la zona activa seleccionada.</ahelp> Si quiere saltar a una ancla con nombre del documento actual, la dirección debe especificarse en la forma «file:///C:/Documents/[nombre_del_documento_actual]#nombre_de_ancla»."
#. 5rChM
#: 02220100.xhp
@@ -12227,7 +12227,7 @@ msgctxt ""
"hd_id3153827\n"
"help.text"
msgid "Text Alternative"
-msgstr ""
+msgstr "Alternativa textual"
#. dgZr8
#: 02220100.xhp
@@ -12362,7 +12362,7 @@ msgctxt ""
"par_id3155599\n"
"help.text"
msgid "<ahelp hid=\".\">Tracks each change that is made in the current document by author and date.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Registra todos los cambios efectuados en el documento actual, por autor y por fecha.</ahelp>"
#. FCvXm
#: 02230100.xhp
@@ -23981,7 +23981,7 @@ msgctxt ""
"hd_id3145744\n"
"help.text"
msgid "Page layout"
-msgstr "Disposición de página"
+msgstr "Disposición de páginas"
#. DMwZG
#: 05040200.xhp
@@ -26627,7 +26627,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "New Style from Selection"
-msgstr ""
+msgstr "Estilo nuevo a partir de selección"
#. LRY9y
#: 05140100.xhp
@@ -26636,7 +26636,7 @@ msgctxt ""
"hd_id3152823\n"
"help.text"
msgid "New Style from Selection"
-msgstr ""
+msgstr "Estilo nuevo a partir de selección"
#. CTRWm
#: 05140100.xhp
@@ -26663,7 +26663,7 @@ msgctxt ""
"par_id841608260799161\n"
"help.text"
msgid "Press <keycode>Shift+F11</keycode>"
-msgstr ""
+msgstr "Presione <keycode>Mayús + F11</keycode>"
#. KhFGr
#: 05140100.xhp
@@ -26690,7 +26690,7 @@ msgctxt ""
"par_id441608302065414\n"
"help.text"
msgid "<emph>For all style categories:</emph>"
-msgstr ""
+msgstr "<emph>Para todas las categorías de estilos:</emph>"
#. ZCV8q
#: 05140100.xhp
@@ -26771,7 +26771,7 @@ msgctxt ""
"hd_id3154682\n"
"help.text"
msgid "Custom Styles for Current Document"
-msgstr ""
+msgstr "Estilos personalizados para el documento actual"
#. wWSGE
#: 05140100.xhp
@@ -26789,7 +26789,7 @@ msgctxt ""
"par_id401608258192415\n"
"help.text"
msgid "<link href=\"text/scalc/01/05100000.xhp\" name=\"Calc Styles\">Styles in Calc</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/05100000.xhp\" name=\"Calc Styles\">Estilos en Calc</link>"
#. whwZY
#: 05140100.xhp
@@ -26798,7 +26798,7 @@ msgctxt ""
"par_id641608263698887\n"
"help.text"
msgid "<link href=\"text/simpress/01/05100000.xhp\" name=\"Impress Styles\">Styles in Impress</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/05100000.xhp\" name=\"Impress Styles\">Estilos en Impress</link>"
#. CCTFZ
#: 05140100.xhp
@@ -26807,7 +26807,7 @@ msgctxt ""
"par_id641369863698831\n"
"help.text"
msgid "<link href=\"text/simpress/01/05100000.xhp\" name=\"Draw Styles\">Styles</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/05100000.xhp\" name=\"Draw Styles\">Estilos</link>"
#. CJiJX
#: 05190000.xhp
@@ -26924,7 +26924,7 @@ msgctxt ""
"hd_id2576982\n"
"help.text"
msgid "Text Alternative"
-msgstr ""
+msgstr "Alternativa textual"
#. uQ5RY
#: 05190100.xhp
@@ -45284,7 +45284,7 @@ msgctxt ""
"par_idN105CD\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/hangulhanjaeditdictdialog/edit1\">Type a suggested replacement for the entry that is selected in the Original text box. The replacement word can contain a maximum of eight characters.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/hangulhanjaeditdictdialog/edit1\">Digite el remplazo sugerido para la entrada seleccionada en la caja de texto original. La palabra de reemplazo puede contener máximo ocho caracteres.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/hangulhanjaeditdictdialog/edit1\">Digite una sugerencia de reemplazo para la entrada seleccionada en el cuadro de texto Original. La palabra de reemplazo puede tener hasta ocho caracteres.</ahelp>"
#. pDJ5D
#: 06202000.xhp
@@ -51179,7 +51179,7 @@ msgctxt ""
"par_id51602451783950\n"
"help.text"
msgid "Sets options for diverse features such as bookmarks, comments, page layout."
-msgstr "Permite definir opciones para varias funcionalidades, tales como los marcadores, los comentarios y la disposición de páginas."
+msgstr "Permite definir opciones para varias funcionalidades, tales como los marcadores, los comentarios y la disposición de las páginas."
#. ZbwvD
#: ref_pdf_export_general.xhp
diff --git a/source/es/helpcontent2/source/text/shared/02.po b/source/es/helpcontent2/source/text/shared/02.po
index a811c20961b..b62a2a6c9e2 100644
--- a/source/es/helpcontent2/source/text/shared/02.po
+++ b/source/es/helpcontent2/source/text/shared/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-06-09 11:50+0200\n"
-"PO-Revision-Date: 2022-09-09 14:36+0000\n"
+"PO-Revision-Date: 2022-09-21 09:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textshared02/es/>\n"
"Language: es\n"
@@ -1760,7 +1760,7 @@ msgctxt ""
"par_idN11D3B\n"
"help.text"
msgid "Specifies the delay in milliseconds between scrollbar trigger events. For example, the delay that occurs when you click an arrow button on the scrollbar and hold down the mouse button."
-msgstr "Especifica el retraso en milisegundos entre los eventos disparadores de la barra de desplazamiento. Por ejemplo, el retraso que se produce al pulsar en un botón de flecha de la barra de desplazamiento y mantener oprimido el botón del ratón."
+msgstr "Especifica la demora en milisegundos entre los eventos desencadenadores de la barra de desplazamiento. Por ejemplo, la demora que se produce al pulsar en un botón de flecha de la barra de desplazamiento y mantener oprimido el botón del ratón."
#. 4cEzG
#: 01170000.xhp
@@ -14180,7 +14180,7 @@ msgctxt ""
"par_id3151234\n"
"help.text"
msgid "<image id=\"img_id3147261\" src=\"cmd/lc_datafilterautofilter.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147261\">Icon AutoFilter</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147261\" src=\"cmd/lc_datafilterautofilter.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147261\">Icono Filtro automático</alt></image>"
#. qhCWv
#: 12030000.xhp
@@ -16061,7 +16061,7 @@ msgctxt ""
"par_id3152941\n"
"help.text"
msgid "in forms on control properties."
-msgstr "en el formulario a través de las Propiedades de campo de control"
+msgstr "en el formulario a través de las propiedades del control."
#. nrANt
#: 12100200.xhp
@@ -16556,7 +16556,7 @@ msgctxt ""
"par_id3163720\n"
"help.text"
msgid "In very large databases, finding the record in reverse search order can take some time. In this case, the <emph>status bar</emph> informs you that the records are still being counted."
-msgstr ""
+msgstr "En bases de datos muy extensas, hallar registros en dirección inversa puede demorar mucho. En tal caso, la <emph>barra de estado</emph> le informará de que el recuento de los registros sigue en curso."
#. DshRy
#: 12100200.xhp
@@ -16565,7 +16565,7 @@ msgctxt ""
"hd_id3147389\n"
"help.text"
msgid "Search/Cancel"
-msgstr ""
+msgstr "Buscar/Cancelar"
#. duEJs
#: 12100200.xhp
diff --git a/source/es/helpcontent2/source/text/shared/guide.po b/source/es/helpcontent2/source/text/shared/guide.po
index 1361e7d3658..280584d3ad9 100644
--- a/source/es/helpcontent2/source/text/shared/guide.po
+++ b/source/es/helpcontent2/source/text/shared/guide.po