summaryrefslogtreecommitdiff
path: root/slideshow/source/engine/soundplayer.cxx
blob: 2736d6e6feb12e745dc8db15bea2df5becb9cffd (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
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
 *
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * Copyright 2000, 2010 Oracle and/or its affiliates.
 *
 * OpenOffice.org - a multi-platform office productivity suite
 *
 * 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.
 *
 ************************************************************************/


#include <canvas/debug.hxx>
#include <tools/diagnose_ex.h>
#include <canvas/verbosetrace.hxx>

#include <comphelper/anytostring.hxx>
#include <cppuhelper/exc_hlp.hxx>

#include <com/sun/star/lang/XMultiComponentFactory.hpp>
#include <com/sun/star/lang/NoSupportException.hpp>
#include <com/sun/star/lang/XComponent.hdl>

#include <tools/urlobj.hxx>

#include <avmedia/mediawindow.hxx>

#include "soundplayer.hxx"

#include <algorithm>

using namespace ::com::sun::star;


namespace slideshow
{
    namespace internal
    {
        // TODO(Q3): Move the whole SoundPlayer class to avmedia.

        boost::shared_ptr<SoundPlayer> SoundPlayer::create(
            EventMultiplexer & rEventMultiplexer,
            const ::rtl::OUString& rSoundURL,
            const uno::Reference< uno::XComponentContext>&  rComponentContext )
        {
            boost::shared_ptr<SoundPlayer> pPlayer(
                new SoundPlayer( rEventMultiplexer,
                                 rSoundURL,
                                 rComponentContext ) );
            rEventMultiplexer.addPauseHandler( pPlayer );
            pPlayer->mThis = pPlayer;
            return pPlayer;
        }

        bool SoundPlayer::handlePause( bool bPauseShow )
        {
            return bPauseShow ? stopPlayback() : startPlayback();
        }

        void SoundPlayer::dispose()
        {
            if( mThis )
            {
                mrEventMultiplexer.removePauseHandler( mThis );
                mThis.reset();
            }

            if( mxPlayer.is() )
            {
                mxPlayer->stop();
                uno::Reference<lang::XComponent> xComponent(
                    mxPlayer, uno::UNO_QUERY );
                if( xComponent.is() )
                    xComponent->dispose();
                mxPlayer.clear();
            }
        }

        SoundPlayer::SoundPlayer(
            EventMultiplexer & rEventMultiplexer,
            const ::rtl::OUString& rSoundURL,
            const uno::Reference< uno::XComponentContext>&  rComponentContext )
            : mrEventMultiplexer(rEventMultiplexer),
              mThis(),
              mxPlayer()
        {
            ENSURE_OR_THROW( rComponentContext.is(),
                              "SoundPlayer::SoundPlayer(): Invalid component context" );

            try
            {
                const INetURLObject aURL( rSoundURL );
                mxPlayer.set( avmedia::MediaWindow::createPlayer(
                                aURL.GetMainURL( INetURLObject::DECODE_UNAMBIGUOUS ) ),
                                uno::UNO_QUERY);
            }
            catch( uno::RuntimeException& )
            {
                throw;
            }
            catch( uno::Exception& )
            {
            }

            if( !mxPlayer.is() )
                throw lang::NoSupportException(
                    rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(
                                       "No sound support for ") ) + rSoundURL,
                    uno::Reference<uno::XInterface>() );
        }

        SoundPlayer::~SoundPlayer()
        {
            try
            {
                dispose();
            }
            catch (uno::Exception &) {
                OSL_FAIL( rtl::OUStringToOString(
                                comphelper::anyToString(
                                    cppu::getCaughtException() ),
                                RTL_TEXTENCODING_UTF8 ).getStr() );
            }
        }

        double SoundPlayer::getDuration() const
        {
            if( !mxPlayer.is() )
                return 0.0;

            const double nDuration( mxPlayer->getDuration() );
            if( mxPlayer->isPlaying() )
                return ::std::max( 0.0,
                                   nDuration - mxPlayer->getMediaTime() );
            else
                return nDuration;
        }

        bool SoundPlayer::startPlayback()
        {
            if( !mxPlayer.is() )
                return false;

            if( mxPlayer->isPlaying() )
                mxPlayer->stop();

            mxPlayer->start();
            return true;
        }

        bool SoundPlayer::stopPlayback()
        {
            if( mxPlayer.is() )
                mxPlayer->stop();

            return true;
        }

        void SoundPlayer::setPlaybackLoop( bool bLoop )
        {
            if( mxPlayer.is() )
                mxPlayer->setPlaybackLoop( bLoop );
        }
    }
}

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
.1%;'/> -rw-r--r--source/ast/svx/messages.po8
-rw-r--r--source/ast/sw/messages.po13
-rw-r--r--source/az/cui/messages.po58
-rw-r--r--source/az/sfx2/messages.po6
-rw-r--r--source/be/cui/messages.po58
-rw-r--r--source/be/sfx2/messages.po6
-rw-r--r--source/bg/cui/messages.po62
-rw-r--r--source/bg/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/bg/helpcontent2/source/text/shared/00.po198
-rw-r--r--source/bg/helpcontent2/source/text/swriter/guide.po10
-rw-r--r--source/bg/sfx2/messages.po10
-rw-r--r--source/bn-IN/cui/messages.po58
-rw-r--r--source/bn-IN/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/bn-IN/sfx2/messages.po6
-rw-r--r--source/bn/cui/messages.po58
-rw-r--r--source/bn/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/bn/sfx2/messages.po6
-rw-r--r--source/bo/cui/messages.po58
-rw-r--r--source/bo/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/bo/sfx2/messages.po6
-rw-r--r--source/br/cui/messages.po58
-rw-r--r--source/br/sfx2/messages.po6
-rw-r--r--source/brx/cui/messages.po58
-rw-r--r--source/brx/sfx2/messages.po6
-rw-r--r--source/bs/cui/messages.po58
-rw-r--r--source/bs/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/bs/sfx2/messages.po6
-rw-r--r--source/ca-valencia/cui/messages.po60
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/ca-valencia/sfx2/messages.po8
-rw-r--r--source/ca/cui/messages.po62
-rw-r--r--source/ca/filter/messages.po10
-rw-r--r--source/ca/helpcontent2/source/text/sbasic/guide.po10
-rw-r--r--source/ca/helpcontent2/source/text/sbasic/python.po4
-rw-r--r--source/ca/helpcontent2/source/text/sbasic/shared.po119
-rw-r--r--source/ca/helpcontent2/source/text/sbasic/shared/03.po20
-rw-r--r--source/ca/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/ca/helpcontent2/source/text/scalc/04.po6
-rw-r--r--source/ca/helpcontent2/source/text/scalc/guide.po66
-rw-r--r--source/ca/helpcontent2/source/text/sdraw/guide.po4
-rw-r--r--source/ca/helpcontent2/source/text/shared/00.po4
-rw-r--r--source/ca/helpcontent2/source/text/shared/01.po8
-rw-r--r--source/ca/helpcontent2/source/text/shared/02.po44
-rw-r--r--source/ca/helpcontent2/source/text/shared/05.po12
-rw-r--r--source/ca/helpcontent2/source/text/shared/06.po10
-rw-r--r--source/ca/helpcontent2/source/text/shared/guide.po18
-rw-r--r--source/ca/helpcontent2/source/text/shared/help.po12
-rw-r--r--source/ca/helpcontent2/source/text/simpress/02.po36
-rw-r--r--source/ca/helpcontent2/source/text/simpress/guide.po4
-rw-r--r--source/ca/helpcontent2/source/text/swriter.po8
-rw-r--r--source/ca/helpcontent2/source/text/swriter/00.po8
-rw-r--r--source/ca/helpcontent2/source/text/swriter/01.po35
-rw-r--r--source/ca/helpcontent2/source/text/swriter/guide.po18
-rw-r--r--source/ca/helpcontent2/source/text/swriter/librelogo.po4
-rw-r--r--source/ca/sc/messages.po4
-rw-r--r--source/ca/sfx2/messages.po10
-rw-r--r--source/ckb/cui/messages.po60
-rw-r--r--source/ckb/sfx2/messages.po6
-rw-r--r--source/cs/cui/messages.po62
-rw-r--r--source/cs/helpcontent2/source/text/swriter/guide.po10
-rw-r--r--source/cs/sfx2/messages.po10
-rw-r--r--source/cy/cui/messages.po60
-rw-r--r--source/cy/sfx2/messages.po8
-rw-r--r--source/da/cui/messages.po70
-rw-r--r--source/da/helpcontent2/source/text/swriter/guide.po8
-rw-r--r--source/da/officecfg/registry/data/org/openoffice/Office/UI.po4
-rw-r--r--source/da/sfx2/messages.po8
-rw-r--r--source/de/cui/messages.po62
-rw-r--r--source/de/helpcontent2/source/text/sbasic/shared/03.po784
-rw-r--r--source/de/helpcontent2/source/text/swriter/guide.po10
-rw-r--r--source/de/sc/messages.po12
-rw-r--r--source/de/sfx2/messages.po10
-rw-r--r--source/dgo/cui/messages.po58
-rw-r--r--source/dgo/sfx2/messages.po6
-rw-r--r--source/dsb/cui/messages.po60
-rw-r--r--source/dsb/helpcontent2/source/text/sbasic/shared.po14
-rw-r--r--source/dsb/helpcontent2/source/text/shared/02.po142
-rw-r--r--source/dsb/helpcontent2/source/text/shared/05.po8
-rw-r--r--source/dsb/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/dsb/sfx2/messages.po8
-rw-r--r--source/dz/cui/messages.po58
-rw-r--r--source/dz/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/dz/sfx2/messages.po6
-rw-r--r--source/el/cui/messages.po60
-rw-r--r--source/el/helpcontent2/source/text/swriter/guide.po10
-rw-r--r--source/el/sfx2/messages.po8
-rw-r--r--source/en-GB/cui/messages.po60
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter/guide.po8
-rw-r--r--source/en-GB/sfx2/messages.po8
-rw-r--r--source/en-ZA/cui/messages.po58
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/en-ZA/sfx2/messages.po6
-rw-r--r--source/eo/cui/messages.po60
-rw-r--r--source/eo/helpcontent2/source/text/swriter/guide.po8
-rw-r--r--source/eo/sfx2/messages.po10
-rw-r--r--source/eo/svx/messages.po9
-rw-r--r--source/es/cui/messages.po88
-rw-r--r--source/es/dbaccess/messages.po6
-rw-r--r--source/es/editeng/messages.po6
-rw-r--r--source/es/extensions/messages.po6
-rw-r--r--source/es/filter/messages.po8
-rw-r--r--source/es/helpcontent2/source/text/sbasic/guide.po10
-rw-r--r--source/es/helpcontent2/source/text/sbasic/python.po10
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared.po74
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared/01.po8
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared/02.po6
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared/03.po22
-rw-r--r--source/es/helpcontent2/source/text/scalc/01.po14
-rw-r--r--source/es/helpcontent2/source/text/shared/00.po8
-rw-r--r--source/es/helpcontent2/source/text/shared/01.po20
-rw-r--r--source/es/helpcontent2/source/text/shared/02.po44
-rw-r--r--source/es/helpcontent2/source/text/shared/guide.po18
-rw-r--r--source/es/helpcontent2/source/text/shared/optionen.po40
-rw-r--r--source/es/helpcontent2/source/text/simpress/00.po4
-rw-r--r--source/es/helpcontent2/source/text/simpress/02.po16
-rw-r--r--source/es/helpcontent2/source/text/simpress/guide.po4
-rw-r--r--source/es/helpcontent2/source/text/swriter/00.po8
-rw-r--r--source/es/helpcontent2/source/text/swriter/01.po12
-rw-r--r--source/es/helpcontent2/source/text/swriter/guide.po24
-rw-r--r--source/es/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/es/sc/messages.po4
-rw-r--r--source/es/sd/messages.po6
-rw-r--r--source/es/sfx2/messages.po16
-rw-r--r--source/es/svtools/messages.po8
-rw-r--r--source/es/svx/messages.po4
-rw-r--r--source/es/sw/messages.po16
-rw-r--r--source/es/vcl/messages.po6
-rw-r--r--source/et/cui/messages.po60
-rw-r--r--source/et/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/et/sfx2/messages.po8
-rw-r--r--source/eu/cui/messages.po60
-rw-r--r--source/eu/helpcontent2/source/text/swriter/guide.po8
-rw-r--r--source/eu/sfx2/messages.po8
-rw-r--r--source/fa/cui/messages.po60
-rw-r--r--source/fa/sfx2/messages.po6
-rw-r--r--source/fi/cui/messages.po62
-rw-r--r--source/fi/editeng/messages.po14
-rw-r--r--source/fi/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/fi/sc/messages.po6
-rw-r--r--source/fi/sd/messages.po8
-rw-r--r--source/fi/sfx2/messages.po10
-rw-r--r--source/fr/cui/messages.po62
-rw-r--r--source/fr/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/fr/helpcontent2/source/text/swriter/guide.po8
-rw-r--r--source/fr/sfx2/messages.po10
-rw-r--r--source/fur/cui/messages.po60
-rw-r--r--source/fur/sfx2/messages.po6
-rw-r--r--source/fy/cui/messages.po60
-rw-r--r--source/fy/sfx2/messages.po8
-rw-r--r--source/ga/cui/messages.po60
-rw-r--r--source/ga/sfx2/messages.po6
-rw-r--r--source/gd/cui/messages.po58
-rw-r--r--source/gd/sfx2/messages.po6
-rw-r--r--source/gl/cui/messages.po62
-rw-r--r--source/gl/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/gl/sfx2/messages.po10
-rw-r--r--source/gl/sw/messages.po6
-rw-r--r--source/gu/cui/messages.po58
-rw-r--r--source/gu/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/gu/sfx2/messages.po6
-rw-r--r--source/gug/cui/messages.po60
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/guide.po10
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/python.po10
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/shared.po74
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/shared/01.po8
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/shared/02.po6
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/shared/03.po22
-rw-r--r--source/gug/helpcontent2/source/text/scalc/01.po14
-rw-r--r--source/gug/helpcontent2/source/text/shared/00.po8
-rw-r--r--source/gug/helpcontent2/source/text/shared/01.po20
-rw-r--r--source/gug/helpcontent2/source/text/shared/02.po44
-rw-r--r--source/gug/helpcontent2/source/text/shared/guide.po18
-rw-r--r--source/gug/helpcontent2/source/text/shared/optionen.po40
-rw-r--r--source/gug/helpcontent2/source/text/simpress/00.po4
-rw-r--r--source/gug/helpcontent2/source/text/simpress/02.po16
-rw-r--r--source/gug/helpcontent2/source/text/simpress/guide.po4
-rw-r--r--source/gug/helpcontent2/source/text/swriter/00.po8
-rw-r--r--source/gug/helpcontent2/source/text/swriter/01.po12
-rw-r--r--source/gug/helpcontent2/source/text/swriter/guide.po24
-rw-r--r--source/gug/sfx2/messages.po6
-rw-r--r--source/he/basctl/messages.po14
-rw-r--r--source/he/cui/messages.po66
-rw-r--r--source/he/dbaccess/messages.po11
-rw-r--r--source/he/extensions/messages.po23
-rw-r--r--source/he/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/he/sfx2/messages.po10
-rw-r--r--source/he/svx/messages.po10
-rw-r--r--source/he/sw/messages.po109
-rw-r--r--source/hi/cui/messages.po58
-rw-r--r--source/hi/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/hi/sfx2/messages.po6
-rw-r--r--source/hr/cui/messages.po58
-rw-r--r--source/hr/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/hr/sfx2/messages.po6
-rw-r--r--source/hsb/cui/messages.po62
-rw-r--r--source/hsb/helpcontent2/source/text/shared/02.po6
-rw-r--r--source/hsb/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/hsb/sfx2/messages.po8
-rw-r--r--source/hu/cui/messages.po62
-rw-r--r--source/hu/helpcontent2/source/text/swriter/guide.po8
-rw-r--r--source/hu/sfx2/messages.po10
-rw-r--r--source/hy/cui/messages.po60
-rw-r--r--source/hy/sfx2/messages.po10
-rw-r--r--source/id/cui/messages.po62
-rw-r--r--source/id/helpcontent2/source/text/swriter/guide.po8
-rw-r--r--source/id/sfx2/messages.po8
-rw-r--r--source/is/chart2/messages.po36
-rw-r--r--source/is/cui/messages.po242
-rw-r--r--source/is/dbaccess/messages.po50
-rw-r--r--source/is/desktop/messages.po12
-rw-r--r--source/is/dictionaries/pt_BR/dialog.po34
-rw-r--r--source/is/extensions/messages.po10
-rw-r--r--source/is/filter/messages.po236
-rw-r--r--source/is/filter/source/config/fragments/filters.po22
-rw-r--r--source/is/filter/source/config/fragments/types.po14
-rw-r--r--source/is/forms/messages.po10
-rw-r--r--source/is/formula/messages.po24
-rw-r--r--source/is/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/is/nlpsolver/src/locale.po20
-rw-r--r--source/is/officecfg/registry/data/org/openoffice/Office.po22
-rw-r--r--source/is/officecfg/registry/data/org/openoffice/Office/UI.po302
-rw-r--r--source/is/readlicense_oo/docs.po12
-rw-r--r--source/is/scp2/source/calc.po10
-rw-r--r--source/is/scp2/source/ooo.po10
-rw-r--r--source/is/sd/messages.po317
-rw-r--r--source/is/setup_native/source/mac.po8
-rw-r--r--source/is/sfx2/messages.po251
-rw-r--r--source/is/svtools/messages.po24
-rw-r--r--source/is/svx/messages.po172
-rw-r--r--source/is/sw/messages.po268
-rw-r--r--source/is/uui/messages.po25
-rw-r--r--source/is/vcl/messages.po26
-rw-r--r--source/is/xmlsecurity/messages.po21
-rw-r--r--source/it/cui/messages.po72
-rw-r--r--source/it/helpcontent2/source/text/shared/01.po216
-rw-r--r--source/it/helpcontent2/source/text/swriter/guide.po10
-rw-r--r--source/it/sfx2/messages.po10
-rw-r--r--source/ja/cui/messages.po62
-rw-r--r--source/ja/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/ja/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/ja/sfx2/messages.po8
-rw-r--r--source/ja/svx/messages.po4
-rw-r--r--source/ja/sw/messages.po10
-rw-r--r--source/jv/cui/messages.po58
-rw-r--r--source/jv/sfx2/messages.po6
-rw-r--r--source/ka/cui/messages.po58
-rw-r--r--source/ka/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/ka/sfx2/messages.po6
-rw-r--r--source/kab/cui/messages.po58
-rw-r--r--source/kab/sfx2/messages.po6
-rw-r--r--source/kk/cui/messages.po60
-rw-r--r--source/kk/sfx2/messages.po8
-rw-r--r--source/kl/cui/messages.po58
-rw-r--r--source/kl/sfx2/messages.po6
-rw-r--r--source/km/cui/messages.po58
-rw-r--r--source/km/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/km/sfx2/messages.po6
-rw-r--r--source/kmr-Latn/cui/messages.po58
-rw-r--r--source/kmr-Latn/sfx2/messages.po6
-rw-r--r--source/kn/cui/messages.po58
-rw-r--r--source/kn/sfx2/messages.po6
-rw-r--r--source/ko/cui/messages.po60
-rw-r--r--source/ko/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/ko/sfx2/messages.po6
-rw-r--r--source/kok/cui/messages.po58
-rw-r--r--source/kok/sfx2/messages.po6
-rw-r--r--source/ks/cui/messages.po58
-rw-r--r--source/ks/sfx2/messages.po6
-rw-r--r--source/ky/cui/messages.po58
-rw-r--r--source/ky/sfx2/messages.po6
-rw-r--r--source/lb/cui/messages.po58
-rw-r--r--source/lb/sfx2/messages.po6
-rw-r--r--source/lo/cui/messages.po58
-rw-r--r--source/lo/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/lo/sfx2/messages.po6
-rw-r--r--source/lt/cui/messages.po60
-rw-r--r--source/lt/helpcontent2/source/text/swriter/guide.po8
-rw-r--r--source/lt/sfx2/messages.po8
-rw-r--r--source/lv/cui/messages.po60
-rw-r--r--source/lv/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/lv/sfx2/messages.po8
-rw-r--r--source/mai/cui/messages.po58
-rw-r--r--source/mai/sfx2/messages.po6
-rw-r--r--source/mk/cui/messages.po58
-rw-r--r--source/mk/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/mk/sfx2/messages.po6
-rw-r--r--source/ml/cui/messages.po58
-rw-r--r--source/ml/sfx2/messages.po6
-rw-r--r--source/mn/cui/messages.po60
-rw-r--r--source/mn/sfx2/messages.po8
-rw-r--r--source/mni/cui/messages.po58
-rw-r--r--source/mni/sfx2/messages.po6
-rw-r--r--source/mr/cui/messages.po58
-rw-r--r--source/mr/sfx2/messages.po6
-rw-r--r--source/my/cui/messages.po58
-rw-r--r--source/my/sfx2/messages.po6
-rw-r--r--source/nb/cui/messages.po60
-rw-r--r--source/nb/helpcontent2/source/text/swriter/guide.po10
-rw-r--r--source/nb/sfx2/messages.po10
-rw-r--r--source/ne/cui/messages.po60
-rw-r--r--source/ne/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/ne/sfx2/messages.po6
-rw-r--r--source/nl/cui/messages.po68
-rw-r--r--source/nl/helpcontent2/source/text/swriter/guide.po10
-rw-r--r--source/nl/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/nl/sc/messages.po20
-rw-r--r--source/nl/sfx2/messages.po10
-rw-r--r--source/nn/cui/messages.po62
-rw-r--r--source/nn/helpcontent2/source/text/swriter/guide.po10
-rw-r--r--source/nn/sfx2/messages.po8
-rw-r--r--source/nr/cui/messages.po58
-rw-r--r--source/nr/sfx2/messages.po6
-rw-r--r--source/nso/cui/messages.po58
-rw-r--r--source/nso/sfx2/messages.po6
-rw-r--r--source/oc/cui/messages.po62
-rw-r--r--source/oc/sfx2/messages.po10
-rw-r--r--source/om/cui/messages.po58
-rw-r--r--source/om/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/om/sfx2/messages.po6
-rw-r--r--source/or/cui/messages.po58
-rw-r--r--source/or/sfx2/messages.po6
-rw-r--r--source/pa-IN/cui/messages.po60
-rw-r--r--source/pa-IN/sfx2/messages.po8
-rw-r--r--source/pl/cui/messages.po62
-rw-r--r--source/pl/helpcontent2/source/text/swriter/guide.po10
-rw-r--r--source/pl/sfx2/messages.po8
-rw-r--r--source/pl/svx/messages.po6
-rw-r--r--source/pl/sw/messages.po18
-rw-r--r--source/pt-BR/cui/messages.po62
-rw-r--r--source/pt-BR/helpcontent2/source/text/sbasic/shared.po10
-rw-r--r--source/pt-BR/helpcontent2/source/text/scalc/01.po4
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/01.po8
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/01.po14
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/guide.po10
-rw-r--r--source/pt-BR/sfx2/messages.po10
-rw-r--r--source/pt-BR/sw/messages.po8
-rw-r--r--source/pt/cui/messages.po60
-rw-r--r--source/pt/helpcontent2/source/text/swriter/guide.po8
-rw-r--r--source/pt/sfx2/messages.po10
-rw-r--r--source/ro/cui/messages.po60
-rw-r--r--source/ro/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/ro/sfx2/messages.po8
-rw-r--r--source/ru/cui/messages.po60
-rw-r--r--source/ru/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/ru/sfx2/messages.po8
-rw-r--r--source/rw/cui/messages.po58
-rw-r--r--source/rw/sfx2/messages.po6
-rw-r--r--source/sa-IN/cui/messages.po58
-rw-r--r--source/sa-IN/sfx2/messages.po6
-rw-r--r--source/sah/cui/messages.po58
-rw-r--r--source/sah/sfx2/messages.po6
-rw-r--r--source/sat/cui/messages.po58
-rw-r--r--source/sat/sfx2/messages.po6
-rw-r--r--source/sd/cui/messages.po58
-rw-r--r--source/sd/sfx2/messages.po6
-rw-r--r--source/si/cui/messages.po60
-rw-r--r--source/si/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/si/sfx2/messages.po6
-rw-r--r--source/sid/cui/messages.po58
-rw-r--r--source/sid/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/sid/sfx2/messages.po6
-rw-r--r--source/sk/cui/messages.po60
-rw-r--r--source/sk/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/sk/sfx2/messages.po10
-rw-r--r--source/sq/cui/messages.po58
-rw-r--r--source/sq/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/sq/sfx2/messages.po6
-rw-r--r--source/sr-Latn/cui/messages.po58
-rw-r--r--source/sr-Latn/sfx2/messages.po6
-rw-r--r--source/sr/cui/messages.po60
-rw-r--r--source/sr/sfx2/messages.po6
-rw-r--r--source/ss/cui/messages.po58
-rw-r--r--source/ss/sfx2/messages.po6
-rw-r--r--source/st/cui/messages.po58
-rw-r--r--source/st/sfx2/messages.po6
-rw-r--r--source/sv/cui/messages.po60
-rw-r--r--source/sv/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/sv/sfx2/messages.po8
-rw-r--r--source/sw-TZ/cui/messages.po58
-rw-r--r--source/sw-TZ/sfx2/messages.po6
-rw-r--r--source/szl/cui/messages.po58
-rw-r--r--source/szl/sfx2/messages.po6
-rw-r--r--source/ta/cui/messages.po58
-rw-r--r--source/ta/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/ta/sfx2/messages.po6
-rw-r--r--source/te/cui/messages.po58
-rw-r--r--source/te/sfx2/messages.po6
-rw-r--r--source/tg/cui/messages.po58
-rw-r--r--source/tg/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/tg/sfx2/messages.po6
-rw-r--r--source/th/cui/messages.po62
-rw-r--r--source/th/sfx2/messages.po8
-rw-r--r--source/th/svtools/messages.po919
-rw-r--r--source/ti/cui/messages.po58
-rw-r--r--source/ti/sfx2/messages.po6
-rw-r--r--source/tn/cui/messages.po58
-rw-r--r--source/tn/sfx2/messages.po6
-rw-r--r--source/tr/cui/messages.po62
-rw-r--r--source/tr/helpcontent2/source/text/swriter/guide.po8
-rw-r--r--source/tr/sfx2/messages.po10
-rw-r--r--source/ts/cui/messages.po58
-rw-r--r--source/ts/sfx2/messages.po6
-rw-r--r--source/tt/cui/messages.po58
-rw-r--r--source/tt/sfx2/messages.po6
-rw-r--r--source/ug/cui/messages.po62
-rw-r--r--source/ug/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/ug/sfx2/messages.po6
-rw-r--r--source/uk/cui/messages.po62
-rw-r--r--source/uk/helpcontent2/source/text/swriter/guide.po10
-rw-r--r--source/uk/sfx2/messages.po8
-rw-r--r--source/ur/cui/messages.po58
-rw-r--r--source/ur/sfx2/messages.po6
-rw-r--r--source/uz/cui/messages.po58
-rw-r--r--source/uz/sfx2/messages.po6
-rw-r--r--source/ve/cui/messages.po58
-rw-r--r--source/ve/sfx2/messages.po6
-rw-r--r--source/vec/cui/messages.po60
-rw-r--r--source/vec/sfx2/messages.po8
-rw-r--r--source/vi/cui/messages.po60
-rw-r--r--source/vi/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/vi/sfx2/messages.po6
-rw-r--r--source/xh/cui/messages.po58
-rw-r--r--source/xh/sfx2/messages.po6
-rw-r--r--source/zh-CN/cui/messages.po80
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/guide.po8
-rw-r--r--source/zh-CN/sfx2/messages.po8
-rw-r--r--source/zh-TW/cui/messages.po60
-rw-r--r--source/zh-TW/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/zh-TW/sfx2/messages.po10
-rw-r--r--source/zu/cui/messages.po58
-rw-r--r--source/zu/sfx2/messages.po6
521 files changed, 8016 insertions, 8071 deletions
diff --git a/source/ab/chart2/messages.po b/source/ab/chart2/messages.po
index f0abfddd713..b9c51173af5 100644
--- a/source/ab/chart2/messages.po
+++ b/source/ab/chart2/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-11-22 14:43+0100\n"
-"PO-Revision-Date: 2024-02-27 21:37+0000\n"
+"PO-Revision-Date: 2024-03-08 12:38+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-24-2/chart2messages/ab/>\n"
"Language: ab\n"
@@ -1265,7 +1265,7 @@ msgstr "Иаԥсахуеит уажәтәи ацәаҳәеи иара алада
#: chart2/uiconfig/ui/chartdatadialog.ui:357
msgctxt "chartdatadialog|extended_tip|ChartDataDialog"
msgid "Opens the Data Table dialog where you can edit the chart data."
-msgstr ""
+msgstr "Иаанартуеит адиалог «Адырқәа ртабдица», ара иауеит адиаграмма адырқәа аредакциа рзура."
#. KbkRw
#: chart2/uiconfig/ui/charttypedialog.ui:8
diff --git a/source/ab/cui/messages.po b/source/ab/cui/messages.po
index 5dd5840f6fd..c4c70412e8d 100644
--- a/source/ab/cui/messages.po
+++ b/source/ab/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-01-22 14:04+0100\n"
-"PO-Revision-Date: 2024-02-22 21:37+0000\n"
+"POT-Creation-Date: 2024-03-18 13:15+0100\n"
+"PO-Revision-Date: 2024-03-13 07:37+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-24-2/cuimessages/ab/>\n"
"Language: ab\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 5.3.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195162.000000\n"
#. GyY9M
@@ -1978,14 +1978,14 @@ msgstr "URL <%1> афаилтә системахь аконвертациа ау
#. YfSb4
#: cui/inc/strings.hrc:361
msgctxt "aboutdialog|copyright"
-msgid "Copyright © 2000–2023 LibreOffice contributors."
-msgstr "Copyright © 2000–2023 LibreOffice ахеилак алахәылацәа."
+msgid "Copyright © 2000–2024 LibreOffice contributors."
+msgstr "Copyright © 2000–2024 LibreOffice ахеилак алахәылацәа."
#. WCnhx
#: cui/inc/strings.hrc:362
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
-msgstr ""
+msgstr "Ари аҭыжьымҭа ҳадыргалеит %OOOVENDOR."
#. Lz9nx
#: cui/inc/strings.hrc:363
@@ -1997,7 +1997,7 @@ msgstr "LibreOffice базас иамоуп OpenOffice.org."
#: cui/inc/strings.hrc:364
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org"
-msgstr ""
+msgstr "%PRODUCTNAME LibreOffice иахылҿиааит, иара OpenOffice.org шьаҭас иамоуп"
#. q5Myk
#: cui/inc/strings.hrc:365
@@ -12280,163 +12280,163 @@ msgid "Colo_r:"
msgstr "Аԥштәы:"
#. sBL64
-#: cui/uiconfig/ui/linetabpage.ui:259
+#: cui/uiconfig/ui/linetabpage.ui:260
msgctxt "linetabpage|FT_LINE_WIDTH"
msgid "T_hickness:"
msgstr ""
#. MzAeD
-#: cui/uiconfig/ui/linetabpage.ui:301
+#: cui/uiconfig/ui/linetabpage.ui:302
msgctxt "linetabpage|FT_TRANSPARENT"
msgid "_Transparency:"
msgstr "Аҵәцара:"
#. 6TFWn
-#: cui/uiconfig/ui/linetabpage.ui:339
+#: cui/uiconfig/ui/linetabpage.ui:340
msgctxt "linetabpage|label1"
msgid "Line Properties"
msgstr "Аҵәаӷәа аҷыдаҟазшьақәа"
#. HyxSJ
-#: cui/uiconfig/ui/linetabpage.ui:382
+#: cui/uiconfig/ui/linetabpage.ui:383
msgctxt "linetabpage|FT_LINE_ENDS_STYLE"
msgid "Start st_yle:"
msgstr "Алагамҭа астиль:"
#. aZYyn
-#: cui/uiconfig/ui/linetabpage.ui:423
+#: cui/uiconfig/ui/linetabpage.ui:424
msgctxt "linetabpage|TSB_CENTER_START"
msgid "Ce_nter"
msgstr "Ацентр ала"
#. 5RYtu
-#: cui/uiconfig/ui/linetabpage.ui:441
+#: cui/uiconfig/ui/linetabpage.ui:442
msgctxt "linetabpage|FT_LINE_START_WIDTH"
msgid "Wi_dth:"
msgstr "Ашәпара:"
#. pQfyE
-#: cui/uiconfig/ui/linetabpage.ui:467
+#: cui/uiconfig/ui/linetabpage.ui:468
msgctxt "linetabpage|CBX_SYNCHRONIZE"
msgid "Synchroni_ze ends"
msgstr "Исинхронтәуп анҵәамҭақәа"
#. cCsuG
-#: cui/uiconfig/ui/linetabpage.ui:533
+#: cui/uiconfig/ui/linetabpage.ui:534
msgctxt "linetabpage|label5"
msgid "End sty_le:"
msgstr "Анҵәамҭа астиль:"
#. zm8Ga
-#: cui/uiconfig/ui/linetabpage.ui:554
+#: cui/uiconfig/ui/linetabpage.ui:555
msgctxt "linetabpage|FT_LINE_END_WIDTH"
msgid "W_idth:"
msgstr "Ашәпара:"
#. g2gLY
-#: cui/uiconfig/ui/linetabpage.ui:580
+#: cui/uiconfig/ui/linetabpage.ui:581
msgctxt "linetabpage|TSB_CENTER_END"
msgid "C_enter"
msgstr "Ацентр ала"
#. sged5
-#: cui/uiconfig/ui/linetabpage.ui:624
+#: cui/uiconfig/ui/linetabpage.ui:625
msgctxt "linetabpage|label2"
msgid "Arrow Styles"
msgstr "Ахыцқәа рстильқәа"
#. BdoBN
-#: cui/uiconfig/ui/linetabpage.ui:656
+#: cui/uiconfig/ui/linetabpage.ui:657
msgctxt "linetabpage|FT_EDGE_STYLE"
msgid "_Corner style:"
msgstr "Акәакь астиль:"
#. kCtQm
-#: cui/uiconfig/ui/linetabpage.ui:670
+#: cui/uiconfig/ui/linetabpage.ui:671
msgctxt "linetabpage|FT_CAP_STYLE"
msgid "Ca_p style:"
msgstr "Анҵәамҭа астиль:"
#. Qx3Ur
-#: cui/uiconfig/ui/linetabpage.ui:685
+#: cui/uiconfig/ui/linetabpage.ui:686
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Rounded"
msgstr "Ихаргьежьу"
#. XH7Z6
-#: cui/uiconfig/ui/linetabpage.ui:686
+#: cui/uiconfig/ui/linetabpage.ui:687
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "- none -"
msgstr "- иап -"
#. HZoVf
-#: cui/uiconfig/ui/linetabpage.ui:687
+#: cui/uiconfig/ui/linetabpage.ui:688
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Mitered"
msgstr "Иаабац"
#. RjDyz
-#: cui/uiconfig/ui/linetabpage.ui:688
+#: cui/uiconfig/ui/linetabpage.ui:689
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Beveled"
msgstr "Илгәыгәу"
#. biCBC
-#: cui/uiconfig/ui/linetabpage.ui:701
+#: cui/uiconfig/ui/linetabpage.ui:702
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Flat"
msgstr "Иҟьаԥсу"
#. GqrYS
-#: cui/uiconfig/ui/linetabpage.ui:702
+#: cui/uiconfig/ui/linetabpage.ui:703
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Round"
msgstr "Ихаргьежьу"
#. 3hNSB
-#: cui/uiconfig/ui/linetabpage.ui:703
+#: cui/uiconfig/ui/linetabpage.ui:704
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Square"
msgstr "Аквадрат"
#. Y4Gmw
-#: cui/uiconfig/ui/linetabpage.ui:717
+#: cui/uiconfig/ui/linetabpage.ui:718
msgctxt "linetabpage|label3"
msgid "Corner and Cap Styles"
msgstr "Акәакьқәеи анҵәамҭақеи рстильқәа"
#. 4YTBE
-#: cui/uiconfig/ui/linetabpage.ui:745
+#: cui/uiconfig/ui/linetabpage.ui:746
msgctxt "linetabpage|MB_SYMBOL_BITMAP"
msgid "Select..."
msgstr "Алхра..."
#. LaBcU
-#: cui/uiconfig/ui/linetabpage.ui:774
+#: cui/uiconfig/ui/linetabpage.ui:775
msgctxt "linetabpage|FT_SYMBOL_WIDTH"
msgid "Widt_h:"
msgstr "Аҭбаара:"
#. yhVmm
-#: cui/uiconfig/ui/linetabpage.ui:799
+#: cui/uiconfig/ui/linetabpage.ui:800
msgctxt "linetabpage|CB_SYMBOL_RATIO"
msgid "_Keep ratio"
msgstr "Ипропорционалны"
#. oV6GJ
-#: cui/uiconfig/ui/linetabpage.ui:817
+#: cui/uiconfig/ui/linetabpage.ui:818
msgctxt "linetabpage|FT_SYMBOL_HEIGHT"
msgid "Hei_ght:"
msgstr "Аҳаракыра:"
#. 9eaQs
-#: cui/uiconfig/ui/linetabpage.ui:853
+#: cui/uiconfig/ui/linetabpage.ui:854
msgctxt "linetabpage|label4"
msgid "Icon"
msgstr "Адыргаҷ"
#. vPJAG
-#: cui/uiconfig/ui/linetabpage.ui:891
+#: cui/uiconfig/ui/linetabpage.ui:892
msgctxt "linetabpage|CTL_PREVIEW-atkobject"
msgid "Example"
msgstr "Аҿырԥштәы"
diff --git a/source/ab/dictionaries/en/dialog.po b/source/ab/dictionaries/en/dialog.po
index 21292c6b1b4..765c80f7970 100644
--- a/source/ab/dictionaries/en/dialog.po
+++ b/source/ab/dictionaries/en/dialog.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: 2023-04-19 12:23+0200\n"
-"PO-Revision-Date: 2023-12-29 01:45+0000\n"
+"PO-Revision-Date: 2024-03-16 16:37+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
-"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/dictionariesendialog/ab/>\n"
+"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-24-2/dictionariesendialog/ab/>\n"
"Language: ab\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.1.1\n"
+"X-Generator: Weblate 5.3.1\n"
"X-POOTLE-MTIME: 1516028969.000000\n"
#. fyB4s
@@ -239,7 +239,7 @@ msgctxt ""
"hlp_minus\n"
"property.text"
msgid "Change hyphen characters to real minus signs."
-msgstr ""
+msgstr "Аиагага символқәа ԥсахлатәуп адефис ала."
#. nAjtQ
#: en_en_US.properties
diff --git a/source/ab/editeng/messages.po b/source/ab/editeng/messages.po
index 57cc87cd71b..12be7dc17f5 100644
--- a/source/ab/editeng/messages.po
+++ b/source/ab/editeng/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-11-14 14:35+0100\n"
-"PO-Revision-Date: 2024-02-26 07:37+0000\n"
+"PO-Revision-Date: 2024-03-16 16:37+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-24-2/editengmessages/ab/>\n"
"Language: ab\n"
@@ -994,7 +994,7 @@ msgstr "Еихацалаку акернинг"
#: include/editeng/editrids.hrc:178
msgctxt "RID_SVXITEMS_AUTOKERN_FALSE"
msgid "No pair kerning"
-msgstr ""
+msgstr "Еихацалаку акернинг ада"
#. bzpB5
#: include/editeng/editrids.hrc:179
diff --git a/source/ab/sfx2/messages.po b/source/ab/sfx2/messages.po
index 458a404f731..1378c17a89d 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: 2023-12-04 15:07+0100\n"
+"POT-Creation-Date: 2024-03-18 13:16+0100\n"
"PO-Revision-Date: 2023-08-24 11:38+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/ab/>\n"
@@ -3765,7 +3765,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2023 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2024 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
@@ -4408,7 +4408,7 @@ msgid "Specifies the print setting options."
msgstr "Акьыԥхьра апараметрқәа разалхра."
#. NEo7g
-#: sfx2/uiconfig/ui/panel.ui:73 sfx2/uiconfig/ui/panel.ui:78
+#: sfx2/uiconfig/ui/panel.ui:74 sfx2/uiconfig/ui/panel.ui:79
msgctxt "panel|SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Еиҭа"
diff --git a/source/ab/svtools/messages.po b/source/ab/svtools/messages.po
index 2a4adb38c8a..a25c8ef6799 100644
--- a/source/ab/svtools/messages.po
+++ b/source/ab/svtools/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: 2023-12-21 13:21+0100\n"
-"PO-Revision-Date: 2024-03-07 09:37+0000\n"
+"PO-Revision-Date: 2024-03-12 06:25+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-24-2/svtoolsmessages/ab/>\n"
"Language: ab\n"
@@ -5384,13 +5384,13 @@ msgstr ""
#: svtools/uiconfig/ui/graphicexport.ui:698
msgctxt "graphicexport|label16"
msgid "Encoding"
-msgstr ""
+msgstr "Акодркра"
#. aeV52
#: svtools/uiconfig/ui/graphicexport.ui:730
msgctxt "graphicexport|tiffpreviewcb"
msgid "Image preview (TIFF)"
-msgstr ""
+msgstr "Асахьа ахәаԥшра (TIFF)"
#. H8vtD
#: svtools/uiconfig/ui/graphicexport.ui:739
diff --git a/source/ab/svx/messages.po b/source/ab/svx/messages.po
index 659607b4f68..63bd6c45c85 100644
--- a/source/ab/svx/messages.po
+++ b/source/ab/svx/messages.po
@@ -4,9 +4,9 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2023-12-04 15:07+0100\n"
-"PO-Revision-Date: 2024-01-20 01:45+0000\n"
+"PO-Revision-Date: 2024-03-08 12:38+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
-"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/ab/>\n"
+"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-24-2/svxmessages/ab/>\n"
"Language: ab\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -3503,13 +3503,13 @@ msgstr ""
#: include/svx/strings.hrc:613
msgctxt "RID_SVXSTR_COLOR_VIOLET"
msgid "Violet"
-msgstr ""
+msgstr "Адәыкрынԥштәы"
#. GgboW
#: include/svx/strings.hrc:614
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
-msgstr ""
+msgstr "Адәыкрынԥштәы (агамма анҭыҵ)"
#. mz3Eo
#: include/svx/strings.hrc:615
@@ -3545,7 +3545,7 @@ msgstr ""
#: include/svx/strings.hrc:620
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
-msgstr ""
+msgstr "Апатырқалԥштәы (агамма анҭыҵ)"
#. A8i2G
#: include/svx/strings.hrc:621
@@ -3557,7 +3557,7 @@ msgstr "Аҟаԥшь (агамма анҭыҵ)"
#: include/svx/strings.hrc:622
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
-msgstr ""
+msgstr "Агәилԥштәы (агамма анҭыҵ)"
#. qBpvR
#: include/svx/strings.hrc:623
@@ -3569,7 +3569,7 @@ msgstr ""
#: include/svx/strings.hrc:624
msgctxt "RID_SVXSTR_COLOR_CYAN"
msgid "Cyan"
-msgstr ""
+msgstr "Ажәҩангәыԥштәы"
#. 583vY
#: include/svx/strings.hrc:625
@@ -3587,7 +3587,7 @@ msgstr ""
#: include/svx/strings.hrc:627
msgctxt "RID_SVXSTR_COLOR_ROSE"
msgid "Rose"
-msgstr ""
+msgstr "Агәилԥштәы"
#. BZGUS
#. Elements of the Material color palette
@@ -3606,19 +3606,19 @@ msgstr "Аҩежь A"
#: include/svx/strings.hrc:631
msgctxt "RID_SVXSTR_COLOR_MATERIAL_AMBER_A"
msgid "Amber A"
-msgstr ""
+msgstr "Ақаруа A"
#. nFENC
#: include/svx/strings.hrc:632
msgctxt "RID_SVXSTR_COLOR_MATERIAL_AMBER"
msgid "Amber"
-msgstr ""
+msgstr "Ақаруа"
#. i8Tx3
#: include/svx/strings.hrc:633
msgctxt "RID_SVXSTR_COLOR_MATERIAL_ORANGE_A"
msgid "Orange A"
-msgstr ""
+msgstr "Апатырқалԥштәы"
#. DMVTT
#: include/svx/strings.hrc:634
@@ -3642,13 +3642,13 @@ msgstr "Аҟаԥшь А"
#: include/svx/strings.hrc:637
msgctxt "RID_SVXSTR_COLOR_MATERIAL_PINK_A"
msgid "Pink A"
-msgstr ""
+msgstr "Агәилԥштәы A"
#. cFBzv
#: include/svx/strings.hrc:638
msgctxt "RID_SVXSTR_COLOR_MATERIAL_PURPLE_A"
msgid "Purple A"
-msgstr ""
+msgstr "Адәыкрынԥштәы A"
#. p6AAX
#: include/svx/strings.hrc:639
@@ -3684,7 +3684,7 @@ msgstr ""
#: include/svx/strings.hrc:644
msgctxt "RID_SVXSTR_COLOR_MATERIAL_CYAN_A"
msgid "Cyan A"
-msgstr ""
+msgstr "Ажәҩангәыԥштәы A"
#. PvkCw
#: include/svx/strings.hrc:645
@@ -3708,7 +3708,7 @@ msgstr ""
#: include/svx/strings.hrc:648
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIME_A"
msgid "Lime A"
-msgstr ""
+msgstr "Лаим A"
#. vuq8i
#: include/svx/strings.hrc:649
@@ -5063,7 +5063,7 @@ msgstr "Аба"
#: include/svx/strings.hrc:886
msgctxt "RID_SVXSTR_BMP57"
msgid "Plaid"
-msgstr ""
+msgstr "Аплед"
#. ZrVMS
#: include/svx/strings.hrc:887
@@ -5105,13 +5105,13 @@ msgstr "Ашар"
#: include/svx/strings.hrc:893
msgctxt "RID_SVXSTR_BMP64"
msgid "Small Grid"
-msgstr ""
+msgstr "Иссоу акаҭа"
#. a33Ci
#: include/svx/strings.hrc:894
msgctxt "RID_SVXSTR_BMP65"
msgid "Large Grid"
-msgstr ""
+msgstr "Иҭбаау акаҭа"
#. BCSZY
#: include/svx/strings.hrc:895
@@ -5129,7 +5129,7 @@ msgstr ""
#: include/svx/strings.hrc:897
msgctxt "RID_SVXSTR_BMP68"
msgid "Outlined Diamond"
-msgstr ""
+msgstr "Аконтуртә ромбқәа"
#. RNNkR
#: include/svx/strings.hrc:898
@@ -8213,7 +8213,7 @@ msgstr "Акириллица"
#: include/svx/strings.hrc:1486
msgctxt "RID_SUBSETMAP"
msgid "Armenian"
-msgstr ""
+msgstr "Аерман"
#. kXEQY
#: include/svx/strings.hrc:1487
@@ -8249,7 +8249,7 @@ msgstr "Деванагари"
#: include/svx/strings.hrc:1492
msgctxt "RID_SUBSETMAP"
msgid "Bengali"
-msgstr ""
+msgstr "Бнгалтәи"
#. iWzLc
#: include/svx/strings.hrc:1493
@@ -8514,7 +8514,7 @@ msgstr "Ахатә символқәа робласт"
#: include/svx/strings.hrc:1536
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs"
-msgstr ""
+msgstr "CJK - аишьашәаларатә иероглифқәа"
#. BEfFQ
#: include/svx/strings.hrc:1537
@@ -8724,7 +8724,7 @@ msgstr "Егеитәи ахыԥхтаӡарақәа"
#: include/svx/strings.hrc:1571
msgctxt "RID_SUBSETMAP"
msgid "Ugaritic"
-msgstr ""
+msgstr "Угариттәи"
#. nBtk5
#: include/svx/strings.hrc:1572
@@ -8862,7 +8862,7 @@ msgstr ""
#: include/svx/strings.hrc:1594
msgctxt "RID_SUBSETMAP"
msgid "Tagalog"
-msgstr ""
+msgstr "Тагалтәи"
#. BVieL
#: include/svx/strings.hrc:1595
@@ -8886,7 +8886,7 @@ msgstr "Бухид"
#: include/svx/strings.hrc:1598
msgctxt "RID_SUBSETMAP"
msgid "Kanbun"
-msgstr ""
+msgstr "Вениан"
#. cL7Vo
#: include/svx/strings.hrc:1599
@@ -8898,7 +8898,7 @@ msgstr ""
#: include/svx/strings.hrc:1600
msgctxt "RID_SUBSETMAP"
msgid "Katakana Phonetics"
-msgstr ""
+msgstr "Афонетикатә Катакана"
#. fCpRM
#: include/svx/strings.hrc:1601
@@ -8958,7 +8958,7 @@ msgstr ""
#: include/svx/strings.hrc:1610
msgctxt "RID_SUBSETMAP"
msgid "Coptic"
-msgstr ""
+msgstr "Копттәи"
#. CANHf
#: include/svx/strings.hrc:1611
@@ -10613,7 +10613,7 @@ msgstr "Алацәҟәра"
#: include/svx/svxitems.hrc:70
msgctxt "RID_ATTR_NAMES"
msgid "Page line-spacing"
-msgstr ""
+msgstr "Адаҟьа ацәаҳәабжьаратәи аинтервал"
#. t2uX7
#: include/svx/svxitems.hrc:71
@@ -10655,7 +10655,7 @@ msgstr ""
#: include/svx/svxitems.hrc:77
msgctxt "RID_ATTR_NAMES"
msgid "CTL"
-msgstr ""
+msgstr "Иуадаҩу аҩырақәа рсистема"
#. p45An
#: include/svx/svxitems.hrc:78
@@ -11070,7 +11070,7 @@ msgstr "Анавигациа апанель"
#: svx/inc/frmsel.hrc:31
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Border setting"
-msgstr ""
+msgstr "Аҿыкәыршара архиара"
#. CBSYv
#: svx/inc/frmsel.hrc:32
@@ -13907,7 +13907,7 @@ msgstr ""
#: svx/uiconfig/ui/chinesedictionary.ui:313
msgctxt "chinesedictionary|property"
msgid "Adjective"
-msgstr ""
+msgstr "Аҟазшьарба"
#. VKjdE
#: svx/uiconfig/ui/chinesedictionary.ui:314
@@ -14112,7 +14112,7 @@ msgstr ""
#: svx/uiconfig/ui/classificationdialog.ui:605
msgctxt "classificationdialog|label-IntellectualProperty"
msgid "Intellectual Property"
-msgstr ""
+msgstr "Аинтеллектуалтә хатәра"
#. gogLP
#: svx/uiconfig/ui/colorwindow.ui:58
@@ -16367,7 +16367,7 @@ msgstr "Акомментари"
#: svx/uiconfig/ui/findreplacedialog-mobile.ui:914
msgctxt "findreplacedialog-mobile|replace_backwards"
msgid "Replace _backwards"
-msgstr ""
+msgstr "Шьҭахьла"
#. EjXBb
#: svx/uiconfig/ui/findreplacedialog-mobile.ui:950
@@ -16733,7 +16733,7 @@ msgstr ""
#: svx/uiconfig/ui/findreplacedialog.ui:1056
msgctxt "findreplacedialog|replace_backwards"
msgid "Replace _backwards"
-msgstr ""
+msgstr "Шьҭахьла"
#. qrgkN
#: svx/uiconfig/ui/findreplacedialog.ui:1064
diff --git a/source/ab/uui/messages.po b/source/ab/uui/messages.po
index 0acc03f1ab3..35b72c0d9f9 100644
--- a/source/ab/uui/messages.po
+++ b/source/ab/uui/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2023-12-15 12:24+0100\n"
-"PO-Revision-Date: 2024-02-16 07:37+0000\n"
+"PO-Revision-Date: 2024-03-16 16:37+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-24-2/uuimessages/ab/>\n"
"Language: ab\n"
@@ -876,7 +876,7 @@ msgstr ""
#: uui/inc/strings.hrc:80
msgctxt "STR_RELOADEDITABLE_BTN"
msgid "~Reload"
-msgstr ""
+msgstr "~Ҿыц идәықәҵатәуп"
#. QCVhW
#: uui/inc/strings.hrc:81
diff --git a/source/af/basctl/messages.po b/source/af/basctl/messages.po
index 2eba99ddcb7..70da7714f66 100644
--- a/source/af/basctl/messages.po
+++ b/source/af/basctl/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2023-04-19 12:23+0200\n"
-"PO-Revision-Date: 2024-02-27 21:37+0000\n"
+"PO-Revision-Date: 2024-03-16 16:37+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-24-2/basctlmessages/af/>\n"
"Language: af\n"
@@ -722,7 +722,7 @@ msgstr "Open dialoogvenster \"Aanpas\" waarin u die geselekteerde makro kan toew
#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:349
msgctxt "basicmacrodialog|edit"
msgid "Edit"
-msgstr "Redigeer"
+msgstr "Bywerk"
#. zrPXg
#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:356
diff --git a/source/af/cui/messages.po b/source/af/cui/messages.po
index 921c0b3e75e..d081759b009 100644
--- a/source/af/cui/messages.po
+++ b/source/af/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-01-22 14:04+0100\n"
+"POT-Creation-Date: 2024-03-18 13:15+0100\n"
"PO-Revision-Date: 2024-02-27 21:37+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-24-2/cuimessages/af/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.3.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1560976497.000000\n"
#. GyY9M
@@ -1982,8 +1982,8 @@ msgstr "Die URL <%1> kan nie omgeskakel word na 'n lêersisteem pad nie."
#. YfSb4
#: cui/inc/strings.hrc:361
msgctxt "aboutdialog|copyright"
-msgid "Copyright © 2000–2023 LibreOffice contributors."
-msgstr "Kopiereg © 2000–2023 LibreOffice bydraers."
+msgid "Copyright © 2000–2024 LibreOffice contributors."
+msgstr "Kopiereg © 2000–2024 LibreOffice bydraers."
#. WCnhx
#: cui/inc/strings.hrc:362
@@ -12291,163 +12291,163 @@ msgid "Colo_r:"
msgstr "Kleu_r:"
#. sBL64
-#: cui/uiconfig/ui/linetabpage.ui:259
+#: cui/uiconfig/ui/linetabpage.ui:260
msgctxt "linetabpage|FT_LINE_WIDTH"
msgid "T_hickness:"
msgstr "_Dikte:"
#. MzAeD
-#: cui/uiconfig/ui/linetabpage.ui:301
+#: cui/uiconfig/ui/linetabpage.ui:302
msgctxt "linetabpage|FT_TRANSPARENT"
msgid "_Transparency:"
msgstr "Deursig_tigheid:"
#. 6TFWn
-#: cui/uiconfig/ui/linetabpage.ui:339
+#: cui/uiconfig/ui/linetabpage.ui:340
msgctxt "linetabpage|label1"
msgid "Line Properties"
msgstr "Lyneienskappe"
#. HyxSJ
-#: cui/uiconfig/ui/linetabpage.ui:382
+#: cui/uiconfig/ui/linetabpage.ui:383
msgctxt "linetabpage|FT_LINE_ENDS_STYLE"
msgid "Start st_yle:"
msgstr "Beginst_yl:"
#. aZYyn
-#: cui/uiconfig/ui/linetabpage.ui:423
+#: cui/uiconfig/ui/linetabpage.ui:424
msgctxt "linetabpage|TSB_CENTER_START"
msgid "Ce_nter"
msgstr "Plaas middelpu_nt"
#. 5RYtu
-#: cui/uiconfig/ui/linetabpage.ui:441
+#: cui/uiconfig/ui/linetabpage.ui:442
msgctxt "linetabpage|FT_LINE_START_WIDTH"
msgid "Wi_dth:"
msgstr "Wy_dte:"
#. pQfyE
-#: cui/uiconfig/ui/linetabpage.ui:467
+#: cui/uiconfig/ui/linetabpage.ui:468
msgctxt "linetabpage|CBX_SYNCHRONIZE"
msgid "Synchroni_ze ends"
msgstr "Sin_chroniseer punte"
#. cCsuG
-#: cui/uiconfig/ui/linetabpage.ui:533
+#: cui/uiconfig/ui/linetabpage.ui:534
msgctxt "linetabpage|label5"
msgid "End sty_le:"
msgstr "Eindsty_l:"
#. zm8Ga
-#: cui/uiconfig/ui/linetabpage.ui:554
+#: cui/uiconfig/ui/linetabpage.ui:555
msgctxt "linetabpage|FT_LINE_END_WIDTH"
msgid "W_idth:"
msgstr "_Wydte:"
#. g2gLY
-#: cui/uiconfig/ui/linetabpage.ui:580
+#: cui/uiconfig/ui/linetabpage.ui:581
msgctxt "linetabpage|TSB_CENTER_END"
msgid "C_enter"
msgstr "Plaas midd_elpunt"
#. sged5
-#: cui/uiconfig/ui/linetabpage.ui:624
+#: cui/uiconfig/ui/linetabpage.ui:625
msgctxt "linetabpage|label2"
msgid "Arrow Styles"
msgstr "Pyltjiestyle"
#. BdoBN
-#: cui/uiconfig/ui/linetabpage.ui:656
+#: cui/uiconfig/ui/linetabpage.ui:657
msgctxt "linetabpage|FT_EDGE_STYLE"
msgid "_Corner style:"
msgstr "_Hoekstyle:"
#. kCtQm
-#: cui/uiconfig/ui/linetabpage.ui:670
+#: cui/uiconfig/ui/linetabpage.ui:671
msgctxt "linetabpage|FT_CAP_STYLE"
msgid "Ca_p style:"
msgstr "Afkapping styl:"
#. Qx3Ur
-#: cui/uiconfig/ui/linetabpage.ui:685
+#: cui/uiconfig/ui/linetabpage.ui:686
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Rounded"
msgstr "Afgerond"
#. XH7Z6
-#: cui/uiconfig/ui/linetabpage.ui:686
+#: cui/uiconfig/ui/linetabpage.ui:687
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "- none -"
msgstr "- geen -"
#. HZoVf
-#: cui/uiconfig/ui/linetabpage.ui:687
+#: cui/uiconfig/ui/linetabpage.ui:688
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Mitered"
msgstr "Verstek"
#. RjDyz
-#: cui/uiconfig/ui/linetabpage.ui:688
+#: cui/uiconfig/ui/linetabpage.ui:689
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Beveled"
msgstr "Afgeskuins"
#. biCBC
-#: cui/uiconfig/ui/linetabpage.ui:701
+#: cui/uiconfig/ui/linetabpage.ui:702
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Flat"
msgstr "Plat"
#. GqrYS
-#: cui/uiconfig/ui/linetabpage.ui:702
+#: cui/uiconfig/ui/linetabpage.ui:703
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Round"
msgstr "Rond"
#. 3hNSB
-#: cui/uiconfig/ui/linetabpage.ui:703
+#: cui/uiconfig/ui/linetabpage.ui:704
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Square"
msgstr "Vierkantig"
#. Y4Gmw
-#: cui/uiconfig/ui/linetabpage.ui:717
+#: cui/uiconfig/ui/linetabpage.ui:718
msgctxt "linetabpage|label3"
msgid "Corner and Cap Styles"
msgstr "Hoek- en endstyle"
#. 4YTBE
-#: cui/uiconfig/ui/linetabpage.ui:745
+#: cui/uiconfig/ui/linetabpage.ui:746
msgctxt "linetabpage|MB_SYMBOL_BITMAP"
msgid "Select..."
msgstr "Kies..."
#. LaBcU
-#: cui/uiconfig/ui/linetabpage.ui:774
+#: cui/uiconfig/ui/linetabpage.ui:775
msgctxt "linetabpage|FT_SYMBOL_WIDTH"
msgid "Widt_h:"
msgstr "_Wydte:"
#. yhVmm
-#: cui/uiconfig/ui/linetabpage.ui:799
+#: cui/uiconfig/ui/linetabpage.ui:800
msgctxt "linetabpage|CB_SYMBOL_RATIO"
msgid "_Keep ratio"
msgstr "_Behou verhouding"
#. oV6GJ
-#: cui/uiconfig/ui/linetabpage.ui:817
+#: cui/uiconfig/ui/linetabpage.ui:818
msgctxt "linetabpage|FT_SYMBOL_HEIGHT"
msgid "Hei_ght:"
msgstr "_Hoogte:"
#. 9eaQs
-#: cui/uiconfig/ui/linetabpage.ui:853
+#: cui/uiconfig/ui/linetabpage.ui:854
msgctxt "linetabpage|label4"
msgid "Icon"
msgstr "Ikoon"
#. vPJAG
-#: cui/uiconfig/ui/linetabpage.ui:891
+#: cui/uiconfig/ui/linetabpage.ui:892
msgctxt "linetabpage|CTL_PREVIEW-atkobject"
msgid "Example"
msgstr "Voorbeeld"
diff --git a/source/af/extensions/messages.po b/source/af/extensions/messages.po
index cab1384e32d..6ec485a4f48 100644
--- a/source/af/extensions/messages.po
+++ b/source/af/extensions/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: 2023-09-22 21:41+0200\n"
-"PO-Revision-Date: 2024-02-27 21:37+0000\n"
+"PO-Revision-Date: 2024-03-14 09:37+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-24-2/extensionsmessages/af/>\n"
"Language: af\n"
@@ -1855,7 +1855,7 @@ msgstr "Versteek seleksie"
#: extensions/inc/strings.hrc:200
msgctxt "RID_STR_VISUALEFFECT"
msgid "Style"
-msgstr "Styl"
+msgstr "Vertoonstyl"
#. DV4DC
#: extensions/inc/strings.hrc:201
diff --git a/source/af/formula/messages.po b/source/af/formula/messages.po
index 16fff4939cc..171ba174894 100644
--- a/source/af/formula/messages.po
+++ b/source/af/formula/messages.po
@@ -4,9 +4,9 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2023-05-10 12:32+0200\n"
-"PO-Revision-Date: 2023-05-17 15:41+0200\n"
+"PO-Revision-Date: 2024-03-18 14:21+0100\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
-"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/formulamessages/af/>\n"
+"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-24-2/formulamessages/af/>\n"
"Language: af\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -2225,7 +2225,7 @@ msgstr "#NAME!"
#: formula/inc/core_resource.hrc:2654
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "STYLE"
-msgstr "STYLE"
+msgstr "VERTOONSTYL"
#. Xvnfv
#: formula/inc/core_resource.hrc:2655
diff --git a/source/af/officecfg/registry/data/org/openoffice/Office/UI.po b/source/af/officecfg/registry/data/org/openoffice/Office/UI.po
index b5ac31a4d76..364c9f85686 100644
--- a/source/af/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/af/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: 2024-01-08 15:05+0100\n"
-"PO-Revision-Date: 2024-02-27 21:37+0000\n"
+"PO-Revision-Date: 2024-03-14 09:37+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-24-2/officecfgregistrydataorgopenofficeofficeui/af/>\n"
"Language: af\n"
@@ -29496,7 +29496,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Style"
-msgstr "Styl"
+msgstr "Vertoonstyl"
#. zb84E
#: Sidebar.xcu
diff --git a/source/af/sc/messages.po b/source/af/sc/messages.po
index 75390da94d0..14927e47679 100644
--- a/source/af/sc/messages.po
+++ b/source/af/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: 2024-01-08 15:05+0100\n"
-"PO-Revision-Date: 2024-02-27 21:37+0000\n"
+"PO-Revision-Date: 2024-03-14 09:36+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-24-2/scmessages/af/>\n"
"Language: af\n"
@@ -14498,7 +14498,7 @@ msgstr "Pas 'n styl op die formulesel toe."
#: sc/inc/scfuncs.hrc:3464
msgctxt "SC_OPCODE_STYLE"
msgid "Style"
-msgstr "Styl"
+msgstr "Vertoonstyl"
#. BoEep
#: sc/inc/scfuncs.hrc:3465
@@ -26518,7 +26518,7 @@ msgstr "Knipbord"
#: sc/uiconfig/scalc/ui/notebookbar_groups.ui:738
msgctxt "notebookbar_groups|paragraphstyleb"
msgid "Style"
-msgstr "Styl"
+msgstr "Vertoonstyl"
#. vmMtE
#: sc/uiconfig/scalc/ui/notebookbar_groups.ui:939
@@ -26620,7 +26620,7 @@ msgstr "Voeg in"
#: sc/uiconfig/scalc/ui/notebookbar_groups.ui:1878
msgctxt "notebookbar_groups|imagestyleb"
msgid "Style"
-msgstr "Styl"
+msgstr "Vertoonstyl"
#. E7zcE
#: sc/uiconfig/scalc/ui/notebookbar_groups.ui:1921
diff --git a/source/af/sd/messages.po b/source/af/sd/messages.po
index df478bd9ec1..0fd396c350d 100644
--- a/source/af/sd/messages.po
+++ b/source/af/sd/messages.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: 2024-01-10 15:11+0100\n"
-"PO-Revision-Date: 2023-12-25 01:45+0000\n"
+"PO-Revision-Date: 2024-03-14 09:37+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
-"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/af/>\n"
+"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-24-2/sdmessages/af/>\n"
"Language: af\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.3.1\n"
"X-POOTLE-MTIME: 1560928573.000000\n"
#. WDjkB
@@ -7623,7 +7623,7 @@ msgstr "Knipbord"
#: sd/uiconfig/simpress/ui/notebookbar_groups.ui:697
msgctxt "notebookbar_groups|shapestyleb"
msgid "Style"
-msgstr "Styl"
+msgstr "Vertoonstyl"
#. vmMtE
#: sd/uiconfig/simpress/ui/notebookbar_groups.ui:829
@@ -7701,7 +7701,7 @@ msgstr "Voeg in"
#: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1621
msgctxt "notebookbar_groups|imagestyleb"
msgid "Style"
-msgstr "Styl"
+msgstr "Vertoonstyl"
#. E7zcE
#: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1663
diff --git a/source/af/sfx2/messages.po b/source/af/sfx2/messages.po
index 6fa4efbcbe5..4bbe34660cf 100644
--- a/source/af/sfx2/messages.po
+++ b/source/af/sfx2/messages.po
@@ -3,10 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2023-12-04 15:07+0100\n"
-"PO-Revision-Date: 2023-11-06 05:37+0000\n"
+"POT-Creation-Date: 2024-03-18 13:16+0100\n"
+"PO-Revision-Date: 2024-03-14 09:37+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
-"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/af/>\n"
+"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-24-2/sfx2messages/af/>\n"
"Language: af\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -3795,7 +3795,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2023 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2024 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
@@ -3805,7 +3805,7 @@ msgstr ""
"\n"
"Die genoemde handelsmerke en geregistreerde handelsmerke is die eiendom van hul onderskeie eienaars.\n"
"\n"
-"Kopiereg © 2000–2023 LibreOffice-bydraers. Alle regte voorbehou.\n"
+"Kopiereg © 2000–2024 LibreOffice-bydraers. Alle regte voorbehou.\n"
"\n"
"Hierdie produk is geskep deur %OOOVENDOR gebaseer op OpenOffice.org, wat outeursreg 2000, 2011 Oracle en/of sy vennote. %OOOVENDOR erken alle lede van die gemeenskap, sien http://www.libreoffice.org/ vir meer besonderhede."
@@ -4101,7 +4101,7 @@ msgstr "Enige paragraafformatering veranderinge in die dokument aan 'n paragraaf
#: sfx2/uiconfig/ui/managestylepage.ui:193
msgctxt "managestylepage|label1"
msgid "Style"
-msgstr "Styl"
+msgstr "Vertoonstyl"
#. NXG9o
#: sfx2/uiconfig/ui/managestylepage.ui:231
@@ -4446,7 +4446,7 @@ msgid "Specifies the print setting options."
msgstr "Spesifiseer die druk opstellings."
#. NEo7g
-#: sfx2/uiconfig/ui/panel.ui:73 sfx2/uiconfig/ui/panel.ui:78
+#: sfx2/uiconfig/ui/panel.ui:74 sfx2/uiconfig/ui/panel.ui:79
msgctxt "panel|SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Meer Opsies"
diff --git a/source/af/svx/messages.po b/source/af/svx/messages.po
index 615cc2d77d6..6f53aae3857 100644
--- a/source/af/svx/messages.po
+++ b/source/af/svx/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: 2023-12-04 15:07+0100\n"
-"PO-Revision-Date: 2024-02-27 21:37+0000\n"
+"PO-Revision-Date: 2024-03-14 09:36+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-24-2/svxmessages/af/>\n"
"Language: af\n"
@@ -6471,7 +6471,7 @@ msgstr "met"
#: include/svx/strings.hrc:1165
msgctxt "RID_SVXSTR_A11Y_STYLE"
msgid "Style"
-msgstr "Styl"
+msgstr "Vertoonstyl"
#. fEHXC
#: include/svx/strings.hrc:1166
diff --git a/source/af/sw/messages.po b/source/af/sw/messages.po
index 685d3420b34..44439154fd4 100644
--- a/source/af/sw/messages.po
+++ b/source/af/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: 2023-12-15 12:24+0100\n"
-"PO-Revision-Date: 2024-02-27 21:37+0000\n"
+"PO-Revision-Date: 2024-03-18 06:37+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-24-2/swmessages/af/>\n"
"Language: af\n"
@@ -6116,7 +6116,7 @@ msgstr "Globale Oorsig"
#: sw/inc/strings.hrc:681
msgctxt "STR_ACCESS_TL_CONTENT"
msgid "Content Navigation View"
-msgstr "Aansig vir inhoudnavigering"
+msgstr "Inhoud Wys-item"
#. UAExA
#: sw/inc/strings.hrc:682
@@ -6296,7 +6296,7 @@ msgstr "~Werk by"
#: sw/inc/strings.hrc:712
msgctxt "STR_EDIT_CONTENT"
msgid "Edit"
-msgstr "Redigeer"
+msgstr "Bywerk"
#. w3ZrD
#: sw/inc/strings.hrc:713
@@ -10934,7 +10934,7 @@ msgstr "Skuif die geselekteerde paragraafstyl 'n vlak af in die indekshiërargie
#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:273
msgctxt "assignstylesdialog|stylecolumn"
msgid "Style"
-msgstr "Styl"
+msgstr "Vertoonstyl"
#. 3MYjK
#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462
@@ -14300,7 +14300,7 @@ msgstr "Formaat"
#: sw/uiconfig/swriter/ui/envformatpage.ui:236
msgctxt "envformatpage|addredit"
msgid "Edit"
-msgstr "Redigeer"
+msgstr "Bywerk"
#. Ayz4D
#: sw/uiconfig/swriter/ui/envformatpage.ui:247
@@ -14354,7 +14354,7 @@ msgstr "Formaat"
#: sw/uiconfig/swriter/ui/envformatpage.ui:442
msgctxt "envformatpage|senderedit"
msgid "Edit"
-msgstr "Redigeer"
+msgstr "Bywerk"
#. 8yXaA
#: sw/uiconfig/swriter/ui/envformatpage.ui:453
@@ -21373,7 +21373,7 @@ msgstr "Voer in die bladsynommer en druk \"Enter\". Gebruik die pyle om vorentoe
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:416
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
-msgstr "Aansig vir inhoudnavigering"
+msgstr "Inhoud Wys-item"
#. RCE5p
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:420
@@ -21577,19 +21577,19 @@ msgstr "Voeg in 'n lêer, 'n indeks of 'n nuwe dokument in die hoofdokument."
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
-msgstr "Stoor inhoud ook"
+msgstr "Stoor ook die Inhoud"
#. KBDdA
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:855
msgctxt "navigatorpanel|extended_tip|save"
msgid "Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed."
-msgstr "Stoor die inhoud van die gekoppelde lêers in die hoofdokument as 'n kopie. Dit verseker dat die huidige dokumentinhoud beskikbaar is, selfs al is daar nie toegang tot die gekoppelde lêers nie."
+msgstr "Stoor die inhoud van die gekoppelde lêers in die hoof-dokument as 'n kopie. Dit verseker dat die huidige dokumentinhoud beskikbaar is, selfs al is daar nie toegang tot die gekoppelde lêers nie."
#. yEETn
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:877
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
-msgstr "Skuif op"
+msgstr "Skuif Op"
#. rEFCS
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:881
@@ -22754,7 +22754,7 @@ msgstr "knipbord"
#: sw/uiconfig/swriter/ui/notebookbar_groups.ui:953
msgctxt "notebookbar_groups|paragraphstyleb"
msgid "Style"
-msgstr "Styl"
+msgstr "Vertoonstyl"
#. nyg3m
#: sw/uiconfig/swriter/ui/notebookbar_groups.ui:1445
@@ -22784,7 +22784,7 @@ msgstr "Voeg in"
#: sw/uiconfig/swriter/ui/notebookbar_groups.ui:1760
msgctxt "notebookbar_groups|tablestyleb"
msgid "Style"
-msgstr "Styl"
+msgstr "Vertoonstyl"
#. Cswyz
#: sw/uiconfig/swriter/ui/notebookbar_groups.ui:1784
@@ -22808,7 +22808,7 @@ msgstr "Tabel"
#: sw/uiconfig/swriter/ui/notebookbar_groups.ui:2043
msgctxt "notebookbar_groups|imagestyleb"
msgid "Style"
-msgstr "Styl"
+msgstr "Vertoonstyl"
#. E7zcE
#: sw/uiconfig/swriter/ui/notebookbar_groups.ui:2087
diff --git a/source/af/wizards/messages.po b/source/af/wizards/messages.po
index 754e37694a2..6c812cd80b1 100644
--- a/source/af/wizards/messages.po
+++ b/source/af/wizards/messages.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: 2022-12-12 14:06+0100\n"
-"PO-Revision-Date: 2023-02-10 10:31+0000\n"
+"PO-Revision-Date: 2024-03-16 16:36+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
-"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/wizardsmessages/af/>\n"
+"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-24-2/wizardsmessages/af/>\n"
"Language: af\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.15.2\n"
+"X-Generator: Weblate 5.3.1\n"
"X-POOTLE-MTIME: 1560928613.000000\n"
#. gbiMx
@@ -428,7 +428,7 @@ msgstr "Ontvanger se adres"
#: wizards/com/sun/star/wizards/common/strings.hrc:101
msgctxt "RID_LETTERWIZARDDIALOG_START_47"
msgid "Footer"
-msgstr "Voetnota"
+msgstr "Voet"
#. Pgcir
#: wizards/com/sun/star/wizards/common/strings.hrc:102
diff --git a/source/am/cui/messages.po b/source/am/cui/messages.po
index 2ef86b3a4a9..39be9e9cb1a 100644
--- a/source/am/cui/messages.po
+++ b/source/am/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-01-22 14:04+0100\n"
+"POT-Creation-Date: 2024-03-18 13:15+0100\n"
"PO-Revision-Date: 2023-02-05 17:34+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/am/>\n"
@@ -1982,8 +1982,8 @@ msgstr "ይህን URL <%1> ወደ ፋይል ስርአት መቀየር አይቻ
#. YfSb4
#: cui/inc/strings.hrc:361
msgctxt "aboutdialog|copyright"
-msgid "Copyright © 2000–2023 LibreOffice contributors."
-msgstr "Copyright © 2000–2023 LibreOffice contributors."
+msgid "Copyright © 2000–2024 LibreOffice contributors."
+msgstr "Copyright © 2000–2024 LibreOffice contributors."
#. WCnhx
#: cui/inc/strings.hrc:362
@@ -12287,163 +12287,163 @@ msgid "Colo_r:"
msgstr "ቀለ_ም:"
#. sBL64
-#: cui/uiconfig/ui/linetabpage.ui:259
+#: cui/uiconfig/ui/linetabpage.ui:260
msgctxt "linetabpage|FT_LINE_WIDTH"
msgid "T_hickness:"
msgstr ""
#. MzAeD
-#: cui/uiconfig/ui/linetabpage.ui:301
+#: cui/uiconfig/ui/linetabpage.ui:302
msgctxt "linetabpage|FT_TRANSPARENT"
msgid "_Transparency:"
msgstr "_ግልጽነት:"
#. 6TFWn
-#: cui/uiconfig/ui/linetabpage.ui:339
+#: cui/uiconfig/ui/linetabpage.ui:340
msgctxt "linetabpage|label1"
msgid "Line Properties"
msgstr "የ መስመር ባህሪዎች"
#. HyxSJ
-#: cui/uiconfig/ui/linetabpage.ui:382
+#: cui/uiconfig/ui/linetabpage.ui:383
msgctxt "linetabpage|FT_LINE_ENDS_STYLE"
msgid "Start st_yle:"
msgstr "ዘዴ_ዎች ማስጀመሪያ:"
#. aZYyn
-#: cui/uiconfig/ui/linetabpage.ui:423
+#: cui/uiconfig/ui/linetabpage.ui:424
msgctxt "linetabpage|TSB_CENTER_START"
msgid "Ce_nter"
msgstr "መሀ_ከል"
#. 5RYtu
-#: cui/uiconfig/ui/linetabpage.ui:441
+#: cui/uiconfig/ui/linetabpage.ui:442
msgctxt "linetabpage|FT_LINE_START_WIDTH"
msgid "Wi_dth:"
msgstr "ስፋ_ት:"
#. pQfyE
-#: cui/uiconfig/ui/linetabpage.ui:467
+#: cui/uiconfig/ui/linetabpage.ui:468
msgctxt "linetabpage|CBX_SYNCHRONIZE"
msgid "Synchroni_ze ends"
msgstr "መጨረሻውን ማስማ_ሚያ"
#. cCsuG
-#: cui/uiconfig/ui/linetabpage.ui:533
+#: cui/uiconfig/ui/linetabpage.ui:534
msgctxt "linetabpage|label5"
msgid "End sty_le:"
msgstr "ዘዴ_ዎች መጨረሻ:"
#. zm8Ga
-#: cui/uiconfig/ui/linetabpage.ui:554
+#: cui/uiconfig/ui/linetabpage.ui:555
msgctxt "linetabpage|FT_LINE_END_WIDTH"
msgid "W_idth:"
msgstr "ስ_ፋት:"
#. g2gLY
-#: cui/uiconfig/ui/linetabpage.ui:580
+#: cui/uiconfig/ui/linetabpage.ui:581
msgctxt "linetabpage|TSB_CENTER_END"
msgid "C_enter"
msgstr "መ_ሀከል"
#. sged5
-#: cui/uiconfig/ui/linetabpage.ui:624
+#: cui/uiconfig/ui/linetabpage.ui:625
msgctxt "linetabpage|label2"
msgid "Arrow Styles"
msgstr "የ ቀስት ዘዴዎች"
#. BdoBN
-#: cui/uiconfig/ui/linetabpage.ui:656
+#: cui/uiconfig/ui/linetabpage.ui:657
msgctxt "linetabpage|FT_EDGE_STYLE"
msgid "_Corner style:"
msgstr "የ _ጠርዝ ዘዴ:"
#. kCtQm
-#: cui/uiconfig/ui/linetabpage.ui:670
+#: cui/uiconfig/ui/linetabpage.ui:671
msgctxt "linetabpage|FT_CAP_STYLE"
msgid "Ca_p style:"
msgstr "የ ባር_ኔጣ ዘዴ:"
#. Qx3Ur
-#: cui/uiconfig/ui/linetabpage.ui:685
+#: cui/uiconfig/ui/linetabpage.ui:686
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Rounded"
msgstr "የተከበበ"
#. XH7Z6
-#: cui/uiconfig/ui/linetabpage.ui:686
+#: cui/uiconfig/ui/linetabpage.ui:687
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "- none -"
msgstr "- ምንም -"
#. HZoVf
-#: cui/uiconfig/ui/linetabpage.ui:687
+#: cui/uiconfig/ui/linetabpage.ui:688
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Mitered"
msgstr "መጋጠሚያ"
#. RjDyz
-#: cui/uiconfig/ui/linetabpage.ui:688
+#: cui/uiconfig/ui/linetabpage.ui:689
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Beveled"
msgstr "ስላሽ"
#. biCBC
-#: cui/uiconfig/ui/linetabpage.ui:701
+#: cui/uiconfig/ui/linetabpage.ui:702
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Flat"
msgstr "ጠፍጣፋ"
#. GqrYS
-#: cui/uiconfig/ui/linetabpage.ui:702
+#: cui/uiconfig/ui/linetabpage.ui:703
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Round"
msgstr "ክብ"
#. 3hNSB
-#: cui/uiconfig/ui/linetabpage.ui:703
+#: cui/uiconfig/ui/linetabpage.ui:704
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Square"
msgstr "ስኴር"
#. Y4Gmw
-#: cui/uiconfig/ui/linetabpage.ui:717
+#: cui/uiconfig/ui/linetabpage.ui:718
msgctxt "linetabpage|label3"
msgid "Corner and Cap Styles"
msgstr "የ ጠርዝ እና የ ባርኔጣ ዘዴ"
#. 4YTBE
-#: cui/uiconfig/ui/linetabpage.ui:745
+#: cui/uiconfig/ui/linetabpage.ui:746
msgctxt "linetabpage|MB_SYMBOL_BITMAP"
msgid "Select..."
msgstr "ይምረጡ..."
#. LaBcU
-#: cui/uiconfig/ui/linetabpage.ui:774
+#: cui/uiconfig/ui/linetabpage.ui:775
msgctxt "linetabpage|FT_SYMBOL_WIDTH"
msgid "Widt_h:"
msgstr "ስፋ_ት:"
#. yhVmm
-#: cui/uiconfig/ui/linetabpage.ui:799
+#: cui/uiconfig/ui/linetabpage.ui:800
msgctxt "linetabpage|CB_SYMBOL_RATIO"
msgid "_Keep ratio"
msgstr "_መጠን መጠበቂያ"
#. oV6GJ
-#: cui/uiconfig/ui/linetabpage.ui:817
+#: cui/uiconfig/ui/linetabpage.ui:818
msgctxt "linetabpage|FT_SYMBOL_HEIGHT"
msgid "Hei_ght:"
msgstr "እርዝ_መት:"
#. 9eaQs
-#: cui/uiconfig/ui/linetabpage.ui:853
+#: cui/uiconfig/ui/linetabpage.ui:854
msgctxt "linetabpage|label4"
msgid "Icon"
msgstr "ምልክት"
#. vPJAG
-#: cui/uiconfig/ui/linetabpage.ui:891
+#: cui/uiconfig/ui/linetabpage.ui:892
msgctxt "linetabpage|CTL_PREVIEW-atkobject"
msgid "Example"
msgstr "ለምሳሌ"
diff --git a/source/am/helpcontent2/source/text/swriter/guide.po b/source/am/helpcontent2/source/text/swriter/guide.po
index 000f82f4065..61da3f45d85 100644
--- a/source/am/helpcontent2/source/text/swriter/guide.po
+++ b/source/am/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2023-12-04 15:06+0100\n"
+"POT-Creation-Date: 2024-03-18 13:16+0100\n"
"PO-Revision-Date: 2018-12-09 17:44+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15757,14 +15757,14 @@ msgctxt ""
msgid "You can manually check the spelling and grammar of a text selection or the entire document."
msgstr "እርስዎ በ እጅ ማረም ይችላሉ ፊደል እና ሰዋሰው የ ተመረጠውን ጽሁፍ ወይንም ጠቅላላ ሰነዱን"
-#. 66nTi
+#. TV7Aa
#: spellcheck_dialog.xhp
msgctxt ""
"spellcheck_dialog.xhp\n"
"par_id0525200902184476\n"
"help.text"
-msgid "To check the spelling and the grammar of a text, the appropriate dictionaries must be installed. For many languages three different dictionaries exist: a spellchecker, a hyphenation dictionary, and a thesaurus. Each dictionary covers one language only. Grammar checkers can be downloaded and installed as extensions. See the <link href=\"https://extensions.libreoffice.org/extension-center?getCategories=Dictionary\">extensions web page</link>."
-msgstr "በ ጽሁፍ ውስጥ ፊደል እና ሰዋሰው ለማረም: ተገቢው መዝገበ ቃላት መገጠም አለበት: ለ በርካታ ቋንቋዎች ሶስት የ ተለያዩ መዝገበ ቃላቶች አሉ: ፊደል ማረሚያ: የ ጭረት መዝገበ ቃላት: እና ተመሳሳይ: እያንዳንዱ መዝገበ ቃላት የሚሸፍነው አንድ ቋንቋ ብቻ ነው: የ ሰዋሰው መዝገበ ቃላት ማውረድ እና መግጠም ይቻላል እንደ ተጨማሪዎች: ይህን ይመልከቱ <link href=\"https://extensions.libreoffice.org/extension-center?getCategories=Dictionary\"> የ ተጨማሪዎች ድህረ ገጽ </link>"
+msgid "To check the spelling and the grammar of a text, the appropriate dictionaries must be installed. For many languages three different dictionaries exist: a spellchecker, a hyphenation dictionary, and a thesaurus. Each dictionary covers one language only. Grammar checkers can be downloaded and installed as extensions. See the <link href=\"https://extensions.libreoffice.org/?Tags[]=50\">extensions web page</link>."
+msgstr "በ ጽሁፍ ውስጥ ፊደል እና ሰዋሰው ለማረም: ተገቢው መዝገበ ቃላት መገጠም አለበት: ለ በርካታ ቋንቋዎች ሶስት የ ተለያዩ መዝገበ ቃላቶች አሉ: ፊደል ማረሚያ: የ ጭረት መዝገበ ቃላት: እና ተመሳሳይ: እያንዳንዱ መዝገበ ቃላት የሚሸፍነው አንድ ቋንቋ ብቻ ነው: የ ሰዋሰው መዝገበ ቃላት ማውረድ እና መግጠም ይቻላል እንደ ተጨማሪዎች: ይህን ይመልከቱ <link href=\"https://extensions.libreoffice.org/?Tags[]=50\"> የ ተጨማሪዎች ድህረ ገጽ </link>"
#. X3zXc
#: spellcheck_dialog.xhp
diff --git a/source/am/sfx2/messages.po b/source/am/sfx2/messages.po
index ae5a3b3dcb2..783857eca00 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: 2023-12-04 15:07+0100\n"
+"POT-Creation-Date: 2024-03-18 13:16+0100\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"
@@ -3781,7 +3781,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2023 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2024 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
@@ -4423,7 +4423,7 @@ msgid "Specifies the print setting options."
msgstr "የ ማተሚያ ማሰናጃ ምርጫዎች መወሰኛ"
#. NEo7g
-#: sfx2/uiconfig/ui/panel.ui:73 sfx2/uiconfig/ui/panel.ui:78
+#: sfx2/uiconfig/ui/panel.ui:74 sfx2/uiconfig/ui/panel.ui:79
msgctxt "panel|SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "ተጨማሪ ምርጫዎች"
diff --git a/source/an/cui/messages.po b/source/an/cui/messages.po
index 43ddc03c689..dfb7b875cdc 100644
--- a/source/an/cui/messages.po
+++ b/source/an/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-01-22 14:04+0100\n"
+"POT-Creation-Date: 2024-03-18 13:15+0100\n"
"PO-Revision-Date: 2024-03-05 01:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-24-2/cuimessages/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: Weblate 5.3.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195185.000000\n"
#. GyY9M
@@ -1967,7 +1967,7 @@ msgstr ""
#. YfSb4
#: cui/inc/strings.hrc:361
msgctxt "aboutdialog|copyright"
-msgid "Copyright © 2000–2023 LibreOffice contributors."
+msgid "Copyright © 2000–2024 LibreOffice contributors."
msgstr ""
#. WCnhx
@@ -12345,163 +12345,163 @@ msgid "Colo_r:"
msgstr ""
#. sBL64
-#: cui/uiconfig/ui/linetabpage.ui:259
+#: cui/uiconfig/ui/linetabpage.ui:260
msgctxt "linetabpage|FT_LINE_WIDTH"
msgid "T_hickness:"
msgstr ""
#. MzAeD
-#: cui/uiconfig/ui/linetabpage.ui:301
+#: cui/uiconfig/ui/linetabpage.ui:302
msgctxt "linetabpage|FT_TRANSPARENT"
msgid "_Transparency:"
msgstr ""
#. 6TFWn
-#: cui/uiconfig/ui/linetabpage.ui:339
+#: cui/uiconfig/ui/linetabpage.ui:340
msgctxt "linetabpage|label1"
msgid "Line Properties"
msgstr ""
#. HyxSJ
-#: cui/uiconfig/ui/linetabpage.ui:382
+#: cui/uiconfig/ui/linetabpage.ui:383
msgctxt "linetabpage|FT_LINE_ENDS_STYLE"
msgid "Start st_yle:"
msgstr ""
#. aZYyn
-#: cui/uiconfig/ui/linetabpage.ui:423
+#: cui/uiconfig/ui/linetabpage.ui:424
msgctxt "linetabpage|TSB_CENTER_START"
msgid "Ce_nter"
msgstr ""
#. 5RYtu
-#: cui/uiconfig/ui/linetabpage.ui:441
+#: cui/uiconfig/ui/linetabpage.ui:442
msgctxt "linetabpage|FT_LINE_START_WIDTH"
msgid "Wi_dth:"
msgstr ""
#. pQfyE
-#: cui/uiconfig/ui/linetabpage.ui:467
+#: cui/uiconfig/ui/linetabpage.ui:468
msgctxt "linetabpage|CBX_SYNCHRONIZE"
msgid "Synchroni_ze ends"
msgstr ""
#. cCsuG
-#: cui/uiconfig/ui/linetabpage.ui:533
+#: cui/uiconfig/ui/linetabpage.ui:534
msgctxt "linetabpage|label5"
msgid "End sty_le:"
msgstr ""
#. zm8Ga
-#: cui/uiconfig/ui/linetabpage.ui:554
+#: cui/uiconfig/ui/linetabpage.ui:555
msgctxt "linetabpage|FT_LINE_END_WIDTH"
msgid "W_idth:"
msgstr ""
#. g2gLY
-#: cui/uiconfig/ui/linetabpage.ui:580
+#: cui/uiconfig/ui/linetabpage.ui:581
msgctxt "linetabpage|TSB_CENTER_END"
msgid "C_enter"
msgstr ""
#. sged5
-#: cui/uiconfig/ui/linetabpage.ui:624
+#: cui/uiconfig/ui/linetabpage.ui:625
msgctxt "linetabpage|label2"
msgid "Arrow Styles"
msgstr ""
#. BdoBN
-#: cui/uiconfig/ui/linetabpage.ui:656
+#: cui/uiconfig/ui/linetabpage.ui:657
msgctxt "linetabpage|FT_EDGE_STYLE"
msgid "_Corner style:"
msgstr ""
#. kCtQm
-#: cui/uiconfig/ui/linetabpage.ui:670
+#: cui/uiconfig/ui/linetabpage.ui:671
msgctxt "linetabpage|FT_CAP_STYLE"
msgid "Ca_p style:"
msgstr ""
#. Qx3Ur
-#: cui/uiconfig/ui/linetabpage.ui:685
+#: cui/uiconfig/ui/linetabpage.ui:686
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Rounded"
msgstr ""
#. XH7Z6
-#: cui/uiconfig/ui/linetabpage.ui:686
+#: cui/uiconfig/ui/linetabpage.ui:687
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "- none -"
msgstr "- garra -"
#. HZoVf
-#: cui/uiconfig/ui/linetabpage.ui:687
+#: cui/uiconfig/ui/linetabpage.ui:688
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Mitered"
msgstr ""
#. RjDyz
-#: cui/uiconfig/ui/linetabpage.ui:688
+#: cui/uiconfig/ui/linetabpage.ui:689
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Beveled"
msgstr ""
#. biCBC
-#: cui/uiconfig/ui/linetabpage.ui:701
+#: cui/uiconfig/ui/linetabpage.ui:702
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Flat"
msgstr ""
#. GqrYS
-#: cui/uiconfig/ui/linetabpage.ui:702
+#: cui/uiconfig/ui/linetabpage.ui:703
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Round"
msgstr ""
#. 3hNSB
-#: cui/uiconfig/ui/linetabpage.ui:703
+#: cui/uiconfig/ui/linetabpage.ui:704
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Square"
msgstr ""
#. Y4Gmw
-#: cui/uiconfig/ui/linetabpage.ui:717
+#: cui/uiconfig/ui/linetabpage.ui:718
msgctxt "linetabpage|label3"
msgid "Corner and Cap Styles"
msgstr ""
#. 4YTBE
-#: cui/uiconfig/ui/linetabpage.ui:745
+#: cui/uiconfig/ui/linetabpage.ui:746
msgctxt "linetabpage|MB_SYMBOL_BITMAP"
msgid "Select..."
msgstr ""
#. LaBcU
-#: cui/uiconfig/ui/linetabpage.ui:774
+#: cui/uiconfig/ui/linetabpage.ui:775
msgctxt "linetabpage|FT_SYMBOL_WIDTH"
msgid "Widt_h:"
msgstr ""
#. yhVmm
-#: cui/uiconfig/ui/linetabpage.ui:799
+#: cui/uiconfig/ui/linetabpage.ui:800
msgctxt "linetabpage|CB_SYMBOL_RATIO"
msgid "_Keep ratio"
msgstr ""
#. oV6GJ
-#: cui/uiconfig/ui/linetabpage.ui:817
+#: cui/uiconfig/ui/linetabpage.ui:818
msgctxt "linetabpage|FT_SYMBOL_HEIGHT"
msgid "Hei_ght:"
msgstr ""
#. 9eaQs
-#: cui/uiconfig/ui/linetabpage.ui:853
+#: cui/uiconfig/ui/linetabpage.ui:854
msgctxt "linetabpage|label4"
msgid "Icon"
msgstr ""
#. vPJAG
-#: cui/uiconfig/ui/linetabpage.ui:891
+#: cui/uiconfig/ui/linetabpage.ui:892
msgctxt "linetabpage|CTL_PREVIEW-atkobject"
msgid "Example"
msgstr "Eixemplo"
diff --git a/source/an/sfx2/messages.po b/source/an/sfx2/messages.po
index bccc9a27684..7f62824bc2e 100644
--- a/source/an/sfx2/messages.po
+++ b/source/an/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2023-12-04 15:07+0100\n"
+"POT-Creation-Date: 2024-03-18 13:16+0100\n"
"PO-Revision-Date: 2024-03-05 01:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-24-2/sfx2messages/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: Weblate 5.3.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1540149298.000000\n"
#. bHbFE
@@ -3744,7 +3744,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2023 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2024 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
@@ -4387,7 +4387,7 @@ msgid "Specifies the print setting options."
msgstr ""
#. NEo7g
-#: sfx2/uiconfig/ui/panel.ui:73 sfx2/uiconfig/ui/panel.ui:78
+#: sfx2/uiconfig/ui/panel.ui:74 sfx2/uiconfig/ui/panel.ui:79
msgctxt "panel|SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr ""
diff --git a/source/ar/cui/messages.po b/source/ar/cui/messages.po
index 70e1d53da32..3d5b792a170 100644
--- a/source/ar/cui/messages.po
+++ b/source/ar/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-01-22 14:04+0100\n"
+"POT-Creation-Date: 2024-03-18 13:15+0100\n"
"PO-Revision-Date: 2023-09-25 09:36+0000\n"
"Last-Translator: خالد حسني <khaled@libreoffice.org>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/ar/>\n"
@@ -1982,8 +1982,8 @@ msgstr "تعذّر تحويل المسار <%1> إلى مسار نظام ملف
#. YfSb4
#: cui/inc/strings.hrc:361
msgctxt "aboutdialog|copyright"
-msgid "Copyright © 2000–2023 LibreOffice contributors."
-msgstr "الحقوق محفوظة © 2000–2023 لمساهمي ليبر أوفيس."
+msgid "Copyright © 2000–2024 LibreOffice contributors."
+msgstr "الحقوق محفوظة © 2000–2024 لمساهمي ليبر أوفيس."
#. WCnhx
#: cui/inc/strings.hrc:362
@@ -12287,163 +12287,163 @@ msgid "Colo_r:"
msgstr "ال_لون:"
#. sBL64
-#: cui/uiconfig/ui/linetabpage.ui:259
+#: cui/uiconfig/ui/linetabpage.ui:260
msgctxt "linetabpage|FT_LINE_WIDTH"
msgid "T_hickness:"
msgstr ""
#. MzAeD
-#: cui/uiconfig/ui/linetabpage.ui:301
+#: cui/uiconfig/ui/linetabpage.ui:302
msgctxt "linetabpage|FT_TRANSPARENT"
msgid "_Transparency:"
msgstr "ال_شفافية:"
#. 6TFWn
-#: cui/uiconfig/ui/linetabpage.ui:339
+#: cui/uiconfig/ui/linetabpage.ui:340
msgctxt "linetabpage|label1"
msgid "Line Properties"
msgstr "خصائص الخط"
#. HyxSJ
-#: cui/uiconfig/ui/linetabpage.ui:382
+#: cui/uiconfig/ui/linetabpage.ui:383
msgctxt "linetabpage|FT_LINE_ENDS_STYLE"
msgid "Start st_yle:"
msgstr "ط_راز البداية:"
#. aZYyn
-#: cui/uiconfig/ui/linetabpage.ui:423
+#: cui/uiconfig/ui/linetabpage.ui:424
msgctxt "linetabpage|TSB_CENTER_START"
msgid "Ce_nter"
msgstr "ال_وسط"
#. 5RYtu
-#: cui/uiconfig/ui/linetabpage.ui:441
+#: cui/uiconfig/ui/linetabpage.ui:442
msgctxt "linetabpage|FT_LINE_START_WIDTH"
msgid "Wi_dth:"
msgstr "العُ_رض:"
#. pQfyE
-#: cui/uiconfig/ui/linetabpage.ui:467
+#: cui/uiconfig/ui/linetabpage.ui:468
msgctxt "linetabpage|CBX_SYNCHRONIZE"
msgid "Synchroni_ze ends"
msgstr "ت_كرار النهايات"
#. cCsuG
-#: cui/uiconfig/ui/linetabpage.ui:533
+#: cui/uiconfig/ui/linetabpage.ui:534
msgctxt "linetabpage|label5"
msgid "End sty_le:"
msgstr "ن_مط النهاية:"
#. zm8Ga
-#: cui/uiconfig/ui/linetabpage.ui:554
+#: cui/uiconfig/ui/linetabpage.ui:555
msgctxt "linetabpage|FT_LINE_END_WIDTH"
msgid "W_idth:"
msgstr "العر_ض:"
#. g2gLY
-#: cui/uiconfig/ui/linetabpage.ui:580
+#: cui/uiconfig/ui/linetabpage.ui:581
msgctxt "linetabpage|TSB_CENTER_END"
msgid "C_enter"
msgstr "الو_سط"
#. sged5
-#: cui/uiconfig/ui/linetabpage.ui:624
+#: cui/uiconfig/ui/linetabpage.ui:625
msgctxt "linetabpage|label2"
msgid "Arrow Styles"
msgstr "طُرُز الأسهم"
#. BdoBN
-#: cui/uiconfig/ui/linetabpage.ui:656
+#: cui/uiconfig/ui/linetabpage.ui:657
msgctxt "linetabpage|FT_EDGE_STYLE"
msgid "_Corner style:"
msgstr "طراز ال_زاوية:"
#. kCtQm
-#: cui/uiconfig/ui/linetabpage.ui:670
+#: cui/uiconfig/ui/linetabpage.ui:671
msgctxt "linetabpage|FT_CAP_STYLE"
msgid "Ca_p style:"
msgstr "طراز ال_غطاء:"
#. Qx3Ur
-#: cui/uiconfig/ui/linetabpage.ui:685
+#: cui/uiconfig/ui/linetabpage.ui:686
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Rounded"
msgstr "مستديرة"
#. XH7Z6
-#: cui/uiconfig/ui/linetabpage.ui:686
+#: cui/uiconfig/ui/linetabpage.ui:687
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "- none -"
msgstr "- بلا -"
#. HZoVf
-#: cui/uiconfig/ui/linetabpage.ui:687
+#: cui/uiconfig/ui/linetabpage.ui:688
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Mitered"
msgstr "عادية"
#. RjDyz
-#: cui/uiconfig/ui/linetabpage.ui:688
+#: cui/uiconfig/ui/linetabpage.ui:689
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Beveled"
msgstr "مائلة"
#. biCBC
-#: cui/uiconfig/ui/linetabpage.ui:701
+#: cui/uiconfig/ui/linetabpage.ui:702
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Flat"
msgstr "مسطّح"
#. GqrYS
-#: cui/uiconfig/ui/linetabpage.ui:702
+#: cui/uiconfig/ui/linetabpage.ui:703
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Round"
msgstr "دائرية"
#. 3hNSB
-#: cui/uiconfig/ui/linetabpage.ui:703
+#: cui/uiconfig/ui/linetabpage.ui:704
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Square"
msgstr "مربع"
#. Y4Gmw
-#: cui/uiconfig/ui/linetabpage.ui:717
+#: cui/uiconfig/ui/linetabpage.ui:718
msgctxt "linetabpage|label3"
msgid "Corner and Cap Styles"
msgstr "طُرُز الزاوية والرأس"
#. 4YTBE
-#: cui/uiconfig/ui/linetabpage.ui:745
+#: cui/uiconfig/ui/linetabpage.ui:746
msgctxt "linetabpage|MB_SYMBOL_BITMAP"
msgid "Select..."
msgstr "حدّد..."
#. LaBcU
-#: cui/uiconfig/ui/linetabpage.ui:774
+#: cui/uiconfig/ui/linetabpage.ui:775
msgctxt "linetabpage|FT_SYMBOL_WIDTH"
msgid "Widt_h:"
msgstr "ال_عرض:"
#. yhVmm
-#: cui/uiconfig/ui/linetabpage.ui:799
+#: cui/uiconfig/ui/linetabpage.ui:800
msgctxt "linetabpage|CB_SYMBOL_RATIO"
msgid "_Keep ratio"
msgstr "أب_قِ التناسب"
#. oV6GJ
-#: cui/uiconfig/ui/linetabpage.ui:817
+#: cui/uiconfig/ui/linetabpage.ui:818
msgctxt "linetabpage|FT_SYMBOL_HEIGHT"
msgid "Hei_ght:"
msgstr "الارت_فاع:"
#. 9eaQs
-#: cui/uiconfig/ui/linetabpage.ui:853
+#: cui/uiconfig/ui/linetabpage.ui:854
msgctxt "linetabpage|label4"
msgid "Icon"
msgstr "الأيقونة"
#. vPJAG
-#: cui/uiconfig/ui/linetabpage.ui:891
+#: cui/uiconfig/ui/linetabpage.ui:892
msgctxt "linetabpage|CTL_PREVIEW-atkobject"
msgid "Example"
msgstr "مثال"
diff --git a/source/ar/helpcontent2/source/text/swriter/guide.po b/source/ar/helpcontent2/source/text/swriter/guide.po
index 36c121d36ce..11daa62938c 100644
--- a/source/ar/helpcontent2/source/text/swriter/guide.po
+++ b/source/ar/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2023-12-04 15:06+0100\n"
+"POT-Creation-Date: 2024-03-18 13:16+0100\n"
"PO-Revision-Date: 2021-03-07 18:15+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/ar/>\n"
@@ -15757,13 +15757,13 @@ msgctxt ""
msgid "You can manually check the spelling and grammar of a text selection or the entire document."
msgstr ""
-#. 66nTi
+#. TV7Aa
#: spellcheck_dialog.xhp
msgctxt ""
"spellcheck_dialog.xhp\n"
"par_id0525200902184476\n"
"help.text"
-msgid "To check the spelling and the grammar of a text, the appropriate dictionaries must be installed. For many languages three different dictionaries exist: a spellchecker, a hyphenation dictionary, and a thesaurus. Each dictionary covers one language only. Grammar checkers can be downloaded and installed as extensions. See the <link href=\"https://extensions.libreoffice.org/extension-center?getCategories=Dictionary\">extensions web page</link>."
+msgid "To check the spelling and the grammar of a text, the appropriate dictionaries must be installed. For many languages three different dictionaries exist: a spellchecker, a hyphenation dictionary, and a thesaurus. Each dictionary covers one language only. Grammar checkers can be downloaded and installed as extensions. See the <link href=\"https://extensions.libreoffice.org/?Tags[]=50\">extensions web page</link>."
msgstr ""
#. X3zXc
diff --git a/source/ar/sfx2/messages.po b/source/ar/sfx2/messages.po
index 2f0ec1c357e..35646b4c29f 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: 2023-12-04 15:07+0100\n"
+"POT-Creation-Date: 2024-03-18 13:16+0100\n"
"PO-Revision-Date: 2023-09-25 09:36+0000\n"
"Last-Translator: خالد حسني <khaled@libreoffice.org>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/ar/>\n"
@@ -3791,7 +3791,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2023 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2024 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
@@ -3801,7 +3801,7 @@ msgstr ""
"\n"
"كل العلامات التجارية والعلامات التجارية المسجلة المذكورة ها هنا هي ملكية أصحابها المذكورين.\n"
"\n"
-"حقوق النسخ © 2000–2023 مساهمو ليبرأوفيس LibreOffice. كل الحقوق محفوظة.\n"
+"حقوق النسخ © 2000–2024 مساهمو ليبرأوفيس LibreOffice. كل الحقوق محفوظة.\n"
"\n"
"أُنشئ هذا المنتَج بـ %OOOVENDOR، استنادًا إلى أوبن أوفيس أورغ ، والذي حقوق نسخه 2000، 2011 أوراكل Oracle و،أو مشاركيهم. يدين %OOOVENDOR بالعرفان لكل أعضاء المجتمع، لطفًا راجع http://www.libreoffice.org/ لمزيد من التفاصيل."
@@ -4442,7 +4442,7 @@ msgid "Specifies the print setting options."
msgstr ""
#. NEo7g
-#: sfx2/uiconfig/ui/panel.ui:73 sfx2/uiconfig/ui/panel.ui:78
+#: sfx2/uiconfig/ui/panel.ui:74 sfx2/uiconfig/ui/panel.ui:79
msgctxt "panel|SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "خيارات أكثر"
diff --git a/source/as/cui/messages.po b/source/as/cui/messages.po
index f8e38ae18a2..24aed85d763 100644
--- a/source/as/cui/messages.po
+++ b/source/as/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-01-22 14:04+0100\n"
+"POT-Creation-Date: 2024-03-18 13:15+0100\n"
"PO-Revision-Date: 2021-05-13 23:37+0000\n"
"Last-Translator: Mondeep Kalita <epicdeep09@gmail.com>\n"
"Language-Team: Assamese <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/as/>\n"
@@ -1990,7 +1990,7 @@ msgstr ""
#. YfSb4
#: cui/inc/strings.hrc:361
msgctxt "aboutdialog|copyright"
-msgid "Copyright © 2000–2023 LibreOffice contributors."
+msgid "Copyright © 2000–2024 LibreOffice contributors."
msgstr ""
#. WCnhx
@@ -12543,165 +12543,165 @@ msgid "Colo_r:"
msgstr "ৰঙ (_r):"
#. sBL64
-#: cui/uiconfig/ui/linetabpage.ui:259
+#: cui/uiconfig/ui/linetabpage.ui:260
msgctxt "linetabpage|FT_LINE_WIDTH"
msgid "T_hickness:"
msgstr ""
#. MzAeD
-#: cui/uiconfig/ui/linetabpage.ui:301
+#: cui/uiconfig/ui/linetabpage.ui:302
msgctxt "linetabpage|FT_TRANSPARENT"
msgid "_Transparency:"
msgstr "স্বচ্ছতা (_T):"
#. 6TFWn
-#: cui/uiconfig/ui/linetabpage.ui:339
+#: cui/uiconfig/ui/linetabpage.ui:340
#, fuzzy
msgctxt "linetabpage|label1"
msgid "Line Properties"
msgstr "শৈলীৰ বৈশিষ্ট্যসমূহ"
#. HyxSJ
-#: cui/uiconfig/ui/linetabpage.ui:382
+#: cui/uiconfig/ui/linetabpage.ui:383
msgctxt "linetabpage|FT_LINE_ENDS_STYLE"
msgid "Start st_yle:"
msgstr "আৰম্ভণি শৈলী (_y):"
#. aZYyn
-#: cui/uiconfig/ui/linetabpage.ui:423
+#: cui/uiconfig/ui/linetabpage.ui:424
msgctxt "linetabpage|TSB_CENTER_START"
msgid "Ce_nter"
msgstr "কেন্দ্ৰ (_n)"
#. 5RYtu
-#: cui/uiconfig/ui/linetabpage.ui:441
+#: cui/uiconfig/ui/linetabpage.ui:442
msgctxt "linetabpage|FT_LINE_START_WIDTH"
msgid "Wi_dth:"
msgstr "প্ৰস্থ (_d):"
#. pQfyE
-#: cui/uiconfig/ui/linetabpage.ui:467
+#: cui/uiconfig/ui/linetabpage.ui:468
msgctxt "linetabpage|CBX_SYNCHRONIZE"
msgid "Synchroni_ze ends"
msgstr "শেষ সংমিহলি কৰক (_z)"
#. cCsuG
-#: cui/uiconfig/ui/linetabpage.ui:533
+#: cui/uiconfig/ui/linetabpage.ui:534
msgctxt "linetabpage|label5"
msgid "End sty_le:"
msgstr "সমাপ্তিৰ শৈলী (_l):"
#. zm8Ga
-#: cui/uiconfig/ui/linetabpage.ui:554
+#: cui/uiconfig/ui/linetabpage.ui:555
msgctxt "linetabpage|FT_LINE_END_WIDTH"
msgid "W_idth:"
msgstr "প্ৰস্থ (_i):"
#. g2gLY
-#: cui/uiconfig/ui/linetabpage.ui:580
+#: cui/uiconfig/ui/linetabpage.ui:581
msgctxt "linetabpage|TSB_CENTER_END"
msgid "C_enter"
msgstr "কেন্দ্ৰ (_e)"
#. sged5
-#: cui/uiconfig/ui/linetabpage.ui:624
+#: cui/uiconfig/ui/linetabpage.ui:625
msgctxt "linetabpage|label2"
msgid "Arrow Styles"
msgstr "এৰ'ৰ শৈলীবোৰ"
#. BdoBN
-#: cui/uiconfig/ui/linetabpage.ui:656
+#: cui/uiconfig/ui/linetabpage.ui:657
msgctxt "linetabpage|FT_EDGE_STYLE"
msgid "_Corner style:"
msgstr "চুকৰ শৈলী (_C):"
#. kCtQm
-#: cui/uiconfig/ui/linetabpage.ui:670
+#: cui/uiconfig/ui/linetabpage.ui:671
msgctxt "linetabpage|FT_CAP_STYLE"
msgid "Ca_p style:"
msgstr "কেপৰ শৈলী (_p):"
#. Qx3Ur
-#: cui/uiconfig/ui/linetabpage.ui:685
+#: cui/uiconfig/ui/linetabpage.ui:686
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Rounded"
msgstr "ঘূৰণীয়া"
#. XH7Z6
-#: cui/uiconfig/ui/linetabpage.ui:686
+#: cui/uiconfig/ui/linetabpage.ui:687
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "- none -"
msgstr "- কোনো নহয় -"
#. HZoVf
-#: cui/uiconfig/ui/linetabpage.ui:687
+#: cui/uiconfig/ui/linetabpage.ui:688
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Mitered"
msgstr "মিটাৰ্ড"
#. RjDyz
-#: cui/uiconfig/ui/linetabpage.ui:688
+#: cui/uiconfig/ui/linetabpage.ui:689
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Beveled"
msgstr "বিভেল্ড"
#. biCBC
-#: cui/uiconfig/ui/linetabpage.ui:701
+#: cui/uiconfig/ui/linetabpage.ui:702
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Flat"
msgstr "ফ্লেট"
#. GqrYS
-#: cui/uiconfig/ui/linetabpage.ui:702
+#: cui/uiconfig/ui/linetabpage.ui:703
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Round"
msgstr "গোলাকাৰ"
#. 3hNSB
-#: cui/uiconfig/ui/linetabpage.ui:703
+#: cui/uiconfig/ui/linetabpage.ui:704
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Square"
msgstr "বৰ্গ"
#. Y4Gmw
-#: cui/uiconfig/ui/linetabpage.ui:717
+#: cui/uiconfig/ui/linetabpage.ui:718
#, fuzzy
msgctxt "linetabpage|label3"
msgid "Corner and Cap Styles"
msgstr "চুক আৰু কেপৰ শৈলীসমূহ"
#. 4YTBE
-#: cui/uiconfig/ui/linetabpage.ui:745
+#: cui/uiconfig/ui/linetabpage.ui:746
msgctxt "linetabpage|MB_SYMBOL_BITMAP"
msgid "Select..."
msgstr "বাছক..."
#. LaBcU
-#: cui/uiconfig/ui/linetabpage.ui:774
+#: cui/uiconfig/ui/linetabpage.ui:775
msgctxt "linetabpage|FT_SYMBOL_WIDTH"
msgid "Widt_h:"
msgstr "প্ৰস্থ (_h):"
#. yhVmm
-#: cui/uiconfig/ui/linetabpage.ui:799
+#: cui/uiconfig/ui/linetabpage.ui:800
msgctxt "linetabpage|CB_SYMBOL_RATIO"
msgid "_Keep ratio"
msgstr "অনুপাত ৰাখক (_K)"
#. oV6GJ
-#: cui/uiconfig/ui/linetabpage.ui:817
+#: cui/uiconfig/ui/linetabpage.ui:818
msgctxt "linetabpage|FT_SYMBOL_HEIGHT"
msgid "Hei_ght:"
msgstr "উচ্চতা (_g):"
#. 9eaQs
-#: cui/uiconfig/ui/linetabpage.ui:853
+#: cui/uiconfig/ui/linetabpage.ui:854
msgctxt "linetabpage|label4"
msgid "Icon"
msgstr "আইকন"
#. vPJAG
-#: cui/uiconfig/ui/linetabpage.ui:891
+#: cui/uiconfig/ui/linetabpage.ui:892
msgctxt "linetabpage|CTL_PREVIEW-atkobject"
msgid "Example"
msgstr "উদাহৰণ"
diff --git a/source/as/sfx2/messages.po b/source/as/sfx2/messages.po
index 5ce200204bc..9fc2c7a7ae6 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: 2023-12-04 15:07+0100\n"
+"POT-Creation-Date: 2024-03-18 13:16+0100\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"
@@ -3832,7 +3832,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2023 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2024 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
@@ -4491,7 +4491,7 @@ msgid "Specifies the print setting options."
msgstr ""
#. NEo7g
-#: sfx2/uiconfig/ui/panel.ui:73 sfx2/uiconfig/ui/panel.ui:78
+#: sfx2/uiconfig/ui/panel.ui:74 sfx2/uiconfig/ui/panel.ui:79
msgctxt "panel|SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr ""
diff --git a/source/ast/connectivity/messages.po b/source/ast/connectivity/messages.po
index e976fa638e6..aba1ad500a7 100644
--- a/source/ast/connectivity/messages.po
+++ b/source/ast/connectivity/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-06 20:18+0200\n"
-"PO-Revision-Date: 2024-03-05 01:37+0000\n"
+"PO-Revision-Date: 2024-03-13 07:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-24-2/connectivitymessages/ast/>\n"
"Language: ast\n"
@@ -353,13 +353,13 @@ msgstr "Nun pudo añadese la columna «$columnname$». El sistema de ficheros qu
#: connectivity/inc/strings.hrc:80
msgctxt "STR_COLUMN_NOT_DROP"
msgid "The column at position “$position$” could not be dropped. Maybe the file system is write-protected."
-msgstr "Nun se pudo descartar la columna de la posición “$position$”. El sistema de ficheros quiciabes tea protexíu contra escritura."
+msgstr "Nun se pudo descartar la columna de la posición «$position$». El sistema de ficheros quiciabes tea protexíu contra escritura."
#. KfedE
#: connectivity/inc/strings.hrc:81
msgctxt "STR_TABLE_NOT_DROP"
msgid "The table “$tablename$” could not be dropped. Maybe the file system is write-protected."
-msgstr "Nun se pudo descartar la tabla “$tablename$”. El sistema de ficheros quiciabes tea protexíu contra escritura."
+msgstr "Nun se pudo descartar la tabla «$tablename$». El sistema de ficheros quiciabes tea protexíu contra escritura."
#. R3BGx
#: connectivity/inc/strings.hrc:82
@@ -371,7 +371,7 @@ msgstr "La tabla nun pue alterase."
#: connectivity/inc/strings.hrc:83
msgctxt "STR_INVALID_DBASE_FILE"
msgid "The file “$filename$” is an invalid (or unrecognized) dBASE file."
-msgstr "El ficheru “$filename$” nun ye un ficheru dBASE válidu (o nun lu reconoz)."
+msgstr "El ficheru «$filename$» nun ye un ficheru dBASE válidu (o nun lu reconoz)."
#. LhHTA
#. Evoab2
@@ -391,13 +391,13 @@ msgstr "Namái se pue ordenar peles columnes de la tabla."
#: connectivity/inc/strings.hrc:88
msgctxt "STR_QUERY_COMPLEX_COUNT"
msgid "The query cannot be executed. It is too complex. Only “COUNT(*)” is supported."
-msgstr "Nun se pue executar la consulta. Ye demasiao complexa. Namás almite “COUNT(*)”."
+msgstr "Nun se pue executar la consulta. Ye demasiao complexa. Namás almite «COUNT(*)»."
#. PJivi
#: connectivity/inc/strings.hrc:89
msgctxt "STR_QUERY_INVALID_BETWEEN"
msgid "The query cannot be executed. The “BETWEEN” arguments are not correct."
-msgstr "Nun se pue executar la consulta. Los argumentos de “BETWEEN” nun son correutos."
+msgstr "Nun se pue executar la consulta. Los argumentos de «BETWEEN» nun son correutos."
#. CHRju
#: connectivity/inc/strings.hrc:90
@@ -481,19 +481,19 @@ msgstr "La execución de la instrucción d'anovamientu nun afeuta a fila nenguna
#: connectivity/inc/strings.hrc:103
msgctxt "STR_NO_CLASSNAME_PATH"
msgid "The additional driver class path is “$classpath$”."
-msgstr "La ruta de les clases de los controladores ye “$classpath$”."
+msgstr "El camín de les clases de los controladores ye «$classpath$»."
#. sX2NM
#: connectivity/inc/strings.hrc:104
msgctxt "STR_UNKNOWN_PARA_TYPE"
msgid "The type of parameter at position “$position$” is unknown."
-msgstr "La triba de parámetru na posición “$position$” ye desconocida."
+msgstr "La triba de parámetru na posición «$position$» ye desconocida."
#. gSPCX
#: connectivity/inc/strings.hrc:105
msgctxt "STR_UNKNOWN_COLUMN_TYPE"
msgid "The type of column at position “$position$” is unknown."
-msgstr "La triba de columna na posición “$position$” ye desconocida."
+msgstr "La triba de columna na posición «$position$» ye desconocida."
#. 3FmFX
#. KAB
diff --git a/source/ast/cui/messages.po b/source/ast/cui/messages.po
index c102a9d4c40..8b5154366fe 100644
--- a/source/ast/cui/messages.po
+++ b/source/ast/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-01-22 14:04+0100\n"
-"PO-Revision-Date: 2024-03-07 09:37+0000\n"
+"POT-Creation-Date: 2024-03-18 13:15+0100\n"
+"PO-Revision-Date: 2024-03-11 08:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-24-2/cuimessages/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 5.3.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195213.000000\n"
#. GyY9M
@@ -1586,7 +1586,7 @@ msgstr "Revisar la gramática al escribir"
#: cui/inc/strings.hrc:289
msgctxt "RID_SVXSTR_NUM_MIN_WORDLEN"
msgid "Minimal number of characters for hyphenation: "
-msgstr "Cantidá mínima de caráuteres pal dixebráu silábicu: "
+msgstr "Cantidá mínima de caráuteres pal guionáu: "
#. BCrEf
#: cui/inc/strings.hrc:290
@@ -1982,8 +1982,8 @@ msgstr "L'URL <%1> nun pue convertise nun camín del sistema de ficheros."
#. YfSb4
#: cui/inc/strings.hrc:361
msgctxt "aboutdialog|copyright"
-msgid "Copyright © 2000–2023 LibreOffice contributors."
-msgstr "Copyright © 2000–2023 Collaboradores de LibreOffice."
+msgid "Copyright © 2000–2024 LibreOffice contributors."
+msgstr "Copyright © 2000–2024 Collaboradores de LibreOffice."
#. WCnhx
#: cui/inc/strings.hrc:362
@@ -2594,7 +2594,7 @@ msgstr "Usa %MOD1+%MOD2+Maiús+V pa pegar el conteníu del portapapeles como tes
#: cui/inc/tipoftheday.hrc:122
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Customize footnote appearance with Tools ▸ Footnote/Endnote Settings…"
-msgstr ""
+msgstr "Personaliza l'aspeutu de les notes pie de páxina con Erbíes ▸ Notes a pie de páxina y notes finales…"
#. muc5F
#: cui/inc/tipoftheday.hrc:123
@@ -11304,7 +11304,7 @@ msgstr "Pallabra"
#: cui/uiconfig/ui/hyphenate.ui:196
msgctxt "hyphenate|extended_tip|worded"
msgid "Displays the hyphenation suggestion(s) for the selected word."
-msgstr "Amuesa les suxerencies de separación silábica pa la pallabra seleicionada."
+msgstr "Amuesa les suxerencies de guionáu pa la pallabra esbillada."
#. 3ujN5
#: cui/uiconfig/ui/hyphenate.ui:211
@@ -12309,165 +12309,165 @@ msgid "Colo_r:"
msgstr "Colo_r:"
#. sBL64
-#: cui/uiconfig/ui/linetabpage.ui:259
+#: cui/uiconfig/ui/linetabpage.ui:260
msgctxt "linetabpage|FT_LINE_WIDTH"
msgid "T_hickness:"
msgstr ""
#. MzAeD
-#: cui/uiconfig/ui/linetabpage.ui:301
+#: cui/uiconfig/ui/linetabpage.ui:302
msgctxt "linetabpage|FT_TRANSPARENT"
msgid "_Transparency:"
msgstr "_Tresparencia:"
#. 6TFWn
-#: cui/uiconfig/ui/linetabpage.ui:339
+#: cui/uiconfig/ui/linetabpage.ui:340
#, fuzzy
msgctxt "linetabpage|label1"
msgid "Line Properties"
msgstr "Propiedaes de la llinia"
#. HyxSJ
-#: cui/uiconfig/ui/linetabpage.ui:382
+#: cui/uiconfig/ui/linetabpage.ui:383
msgctxt "linetabpage|FT_LINE_ENDS_STYLE"
msgid "Start st_yle:"
msgstr "Est_ilu inicial:"
#. aZYyn
-#: cui/uiconfig/ui/linetabpage.ui:423
+#: cui/uiconfig/ui/linetabpage.ui:424
msgctxt "linetabpage|TSB_CENTER_START"
msgid "Ce_nter"
msgstr "Ce_ntrar"
#. 5RYtu
-#: cui/uiconfig/ui/linetabpage.ui:441
+#: cui/uiconfig/ui/linetabpage.ui:442
msgctxt "linetabpage|FT_LINE_START_WIDTH"
msgid "Wi_dth:"
msgstr "Anc_hor:"
#. pQfyE
-#: cui/uiconfig/ui/linetabpage.ui:467
+#: cui/uiconfig/ui/linetabpage.ui:468
msgctxt "linetabpage|CBX_SYNCHRONIZE"
msgid "Synchroni_ze ends"
msgstr "Sincroni_zar estremos"
#. cCsuG
-#: cui/uiconfig/ui/linetabpage.ui:533
+#: cui/uiconfig/ui/linetabpage.ui:534
msgctxt "linetabpage|label5"
msgid "End sty_le:"
msgstr "Esti_lu final:"
#. zm8Ga
-#: cui/uiconfig/ui/linetabpage.ui:554
+#: cui/uiconfig/ui/linetabpage.ui:555
msgctxt "linetabpage|FT_LINE_END_WIDTH"
msgid "W_idth:"
msgstr "Anch_or:"
#. g2gLY
-#: cui/uiconfig/ui/linetabpage.ui:580
+#: cui/uiconfig/ui/linetabpage.ui:581
msgctxt "linetabpage|TSB_CENTER_END"
msgid "C_enter"
msgstr "C_entrar"
#. sged5
-#: cui/uiconfig/ui/linetabpage.ui:624
+#: cui/uiconfig/ui/linetabpage.ui:625
msgctxt "linetabpage|label2"
msgid "Arrow Styles"
msgstr "Estilos de flecha"
#. BdoBN
-#: cui/uiconfig/ui/linetabpage.ui:656
+#: cui/uiconfig/ui/linetabpage.ui:657
msgctxt "linetabpage|FT_EDGE_STYLE"
msgid "_Corner style:"
msgstr "Estilu d'es_quina:"
#. kCtQm
-#: cui/uiconfig/ui/linetabpage.ui:670
+#: cui/uiconfig/ui/linetabpage.ui:671
msgctxt "linetabpage|FT_CAP_STYLE"
msgid "Ca_p style:"
msgstr "Estilu de _final:"
#. Qx3Ur
-#: cui/uiconfig/ui/linetabpage.ui:685
+#: cui/uiconfig/ui/linetabpage.ui:686
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Rounded"
msgstr "Redondiáu"
#. XH7Z6
-#: cui/uiconfig/ui/linetabpage.ui:686
+#: cui/uiconfig/ui/linetabpage.ui:687
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "- none -"
msgstr "- dengún -"
#. HZoVf
-#: cui/uiconfig/ui/linetabpage.ui:687
+#: cui/uiconfig/ui/linetabpage.ui:688
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Mitered"
msgstr "Cortáu"
#. RjDyz
-#: cui/uiconfig/ui/linetabpage.ui:688
+#: cui/uiconfig/ui/linetabpage.ui:689
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Beveled"
msgstr "Sesgáu"
#. biCBC
-#: cui/uiconfig/ui/linetabpage.ui:701
+#: cui/uiconfig/ui/linetabpage.ui:702
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Flat"
msgstr "Planu"
#. GqrYS
-#: cui/uiconfig/ui/linetabpage.ui:702
+#: cui/uiconfig/ui/linetabpage.ui:703
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Round"
msgstr "Redondiáu"
#. 3hNSB
-#: cui/uiconfig/ui/linetabpage.ui:703
+#: cui/uiconfig/ui/linetabpage.ui:704
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Square"
msgstr "Cuadráu"
#. Y4Gmw
-#: cui/uiconfig/ui/linetabpage.ui:717
+#: cui/uiconfig/ui/linetabpage.ui:718
#, fuzzy
msgctxt "linetabpage|label3"
msgid "Corner and Cap Styles"
msgstr "Estilos d'esquina y final"
#. 4YTBE
-#: cui/uiconfig/ui/linetabpage.ui:745
+#: cui/uiconfig/ui/linetabpage.ui:746
msgctxt "linetabpage|MB_SYMBOL_BITMAP"
msgid "Select..."
msgstr "Esbillar..."
#. LaBcU
-#: cui/uiconfig/ui/linetabpage.ui:774
+#: cui/uiconfig/ui/linetabpage.ui:775
msgctxt "linetabpage|FT_SYMBOL_WIDTH"
msgid "Widt_h:"
msgstr "Anc_hor:"
#. yhVmm
-#: cui/uiconfig/ui/linetabpage.ui:799
+#: cui/uiconfig/ui/linetabpage.ui:800
msgctxt "linetabpage|CB_SYMBOL_RATIO"
msgid "_Keep ratio"
msgstr "_Caltener la proporción"
#. oV6GJ
-#: cui/uiconfig/ui/linetabpage.ui:817
+#: cui/uiconfig/ui/linetabpage.ui:818
msgctxt "linetabpage|FT_SYMBOL_HEIGHT"
msgid "Hei_ght:"
msgstr "A_ltor:"
#. 9eaQs
-#: cui/uiconfig/ui/linetabpage.ui:853
+#: cui/uiconfig/ui/linetabpage.ui:854
msgctxt "linetabpage|label4"
msgid "Icon"
msgstr "Iconu"
#. vPJAG
-#: cui/uiconfig/ui/linetabpage.ui:891
+#: cui/uiconfig/ui/linetabpage.ui:892
msgctxt "linetabpage|CTL_PREVIEW-atkobject"
msgid "Example"
msgstr "Exemplu"
@@ -13166,7 +13166,7 @@ msgstr ""
#: cui/uiconfig/ui/numberingformatpage.ui:121
msgctxt "numberingformatpage|edit|tooltip_text"
msgid "Edit Comment"
-msgstr "Editar Comentariu"
+msgstr "Editar el comentariu"
#. DGYGu
#: cui/uiconfig/ui/numberingformatpage.ui:127
@@ -13184,7 +13184,7 @@ msgstr "Desaniciar"
#: cui/uiconfig/ui/numberingformatpage.ui:147
msgctxt "numberingformatpage|extended_tip|delete"
msgid "Deletes the selected number format."
-msgstr ""
+msgstr "Desanicia'l formatu numbéricu esbilláu."
#. BFF82
#: cui/uiconfig/ui/numberingformatpage.ui:172
@@ -13202,7 +13202,7 @@ msgstr ""
#: cui/uiconfig/ui/numberingformatpage.ui:192
msgctxt "numberingformatpage|formatf"
msgid "_Format Code"
-msgstr ""
+msgstr "Códigu de _formatu"
#. 5GA9p
#: cui/uiconfig/ui/numberingformatpage.ui:236
@@ -13440,7 +13440,7 @@ msgstr "Anchor:"
#: cui/uiconfig/ui/numberingoptionspage.ui:315
msgctxt "numberingoptionspage|extended_tip|widthmf"
msgid "Enter a width for the graphic."
-msgstr ""
+msgstr "Pon l'anchor de la imaxe."
#. PBvy6
#: cui/uiconfig/ui/numberingoptionspage.ui:328
@@ -13452,7 +13452,7 @@ msgstr "Altor:"
#: cui/uiconfig/ui/numberingoptionspage.ui:349
msgctxt "numberingoptionspage|extended_tip|heightmf"
msgid "Enter a height for the graphic."
-msgstr ""
+msgstr "Pon l'altor de la imaxe."
#. bRHQn
#: cui/uiconfig/ui/numberingoptionspage.ui:360
diff --git a/source/ast/dictionaries/af_ZA.po b/source/ast/dictionaries/af_ZA.po
index 52550447875..36f5db522d0 100644
--- a/source/ast/dictionaries/af_ZA.po
+++ b/source/ast/dictionaries/af_ZA.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: LibO 350-l10n\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-05-23 22:25+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: none\n"
+"PO-Revision-Date: 2024-03-10 05:37+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-24-2/dictionariesaf_za/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"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.3.1\n"
"X-POOTLE-MTIME: 1369347957.000000\n"
#. iTCNn
@@ -23,4 +23,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Afrikaans spelling dictionary, and hyphenation rules"
-msgstr "Diccionariu ortográficu y regles de separtación silábica pal afrikaans"
+msgstr "Diccionariu ortográficu y regles de guionáu pal afrikaans"
diff --git a/source/ast/dictionaries/ar.po b/source/ast/dictionaries/ar.po
index ae9e91e8c36..bb1f47b87f7 100644
--- a/source/ast/dictionaries/ar.po
+++ b/source/ast/dictionaries/ar.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: LibO 350-l10n\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-05-23 22:25+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: none\n"
+"PO-Revision-Date: 2024-03-10 05:37+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-24-2/dictionariesar/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"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.3.1\n"
"X-POOTLE-MTIME: 1369347958.000000\n"
#. RiGWP
@@ -23,4 +23,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Arabic spelling dictionary, and thesaurus"
-msgstr "Diccionariu ortográficu y regles de separtación silábica pal árabe"
+msgstr "Diccionariu ortográficu y regles de guionáu pal árabe"
diff --git a/source/ast/dictionaries/bg_BG.po b/source/ast/dictionaries/bg_BG.po
index 0cdede91a43..c103c821ce5 100644
--- a/source/ast/dictionaries/bg_BG.po
+++ b/source/ast/dictionaries/bg_BG.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: LibO 350-l10n\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-05-23 22:25+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: none\n"
+"PO-Revision-Date: 2024-03-10 05:37+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-24-2/dictionariesbg_bg/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"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.3.1\n"
"X-POOTLE-MTIME: 1369347958.000000\n"
#. g34TG
@@ -23,4 +23,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Bulgarian spelling dictionary, hyphenation rules, and thesaurus"
-msgstr "Diccionariu ortográficu y regles de separtación silábica y sinónimos pal búlgaru"
+msgstr "Diccionariu ortográficu y regles de guionáu y sinónimos pal búlgaru"
diff --git a/source/ast/dictionaries/ca.po b/source/ast/dictionaries/ca.po
index 747579fdeec..9d40a07586e 100644
--- a/source/ast/dictionaries/ca.po
+++ b/source/ast/dictionaries/ca.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: 2018-01-15 15:12+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"PO-Revision-Date: 2024-03-10 05:37+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-24-2/dictionariesca/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"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.3.1\n"
"X-POOTLE-MTIME: 1516029126.000000\n"
#. PAXGz
@@ -23,4 +23,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Catalan spelling dictionary, hyphenation rules, and thesaurus"
-msgstr "Diccionariu ortográficu, patrones de separación silábica y diccionariu de sinónimos pal catalán"
+msgstr "Diccionariu ortográficu, patrones de guionáu y diccionariu de sinónimos pal catalán"
diff --git a/source/ast/dictionaries/cs_CZ.po b/source/ast/dictionaries/cs_CZ.po
index 6cc560dc0bd..a09ca6edaeb 100644
--- a/source/ast/dictionaries/cs_CZ.po
+++ b/source/ast/dictionaries/cs_CZ.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: 2020-02-21 01:15+0000\n"
-"Last-Translator: Xandru Martino Ruz <xandrumartino@softastur.org>\n"
-"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_ui-master/dictionariescs_cz/ast/>\n"
+"PO-Revision-Date: 2024-03-10 05:37+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-24-2/dictionariescs_cz/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: Weblate 3.10.3\n"
+"X-Generator: Weblate 5.3.1\n"
"X-POOTLE-MTIME: 1513251149.000000\n"
#. DG9ET
@@ -23,4 +23,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Czech spell check dictionary, hyphenation rules and thesaurus"
-msgstr "Diccionariu de correición ortográficu, regles de separación silábica y diccionariu de sinónimos pal checu"
+msgstr "Diccionariu de correición ortográficu, regles de guionáu y diccionariu de sinónimos pal checu"
diff --git a/source/ast/dictionaries/da_DK.po b/source/ast/dictionaries/da_DK.po
index f060dabe375..3a8d33bec50 100644
--- a/source/ast/dictionaries/da_DK.po
+++ b/source/ast/dictionaries/da_DK.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: LibO 350-l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-25 14:55+0100\n"
-"PO-Revision-Date: 2023-12-08 01:45+0000\n"
-"Last-Translator: Xesús González Rato <esbardu@softastur.org>\n"
-"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/dictionariesda_dk/ast/>\n"
+"PO-Revision-Date: 2024-03-10 05:37+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-24-2/dictionariesda_dk/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: Weblate 5.1.1\n"
+"X-Generator: Weblate 5.3.1\n"
"X-POOTLE-MTIME: 1369347958.000000\n"
#. M5yh2
@@ -23,7 +23,7 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Danish spelling dictionary, hyphenation rules, and thesaurus"
-msgstr "Diccionariu ortográficu y regles de separtación silábica y sinónimos pal danés"
+msgstr "Diccionariu ortográficu y regles de guionáu y sinónimos pal danés"
#. CSpFA
#: description.xml
diff --git a/source/ast/dictionaries/de.po b/source/ast/dictionaries/de.po
index 77ad0269b43..7da852e69a4 100644
--- a/source/ast/dictionaries/de.po
+++ b/source/ast/dictionaries/de.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: LibO 350-l10n\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-05-23 22:25+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: none\n"
+"PO-Revision-Date: 2024-03-10 05:37+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-24-2/dictionariesde/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"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.3.1\n"
"X-POOTLE-MTIME: 1369347959.000000\n"
#. N47Mb
@@ -23,4 +23,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "German (Austria, Germany, Switzerland) spelling dictionaries, hyphenation rules, and thesaurus"
-msgstr "Diccionariu ortográficu, regles de separtación silábica y sinónimos alemanes (Austria, Alemaña, Suiza)"
+msgstr "Diccionariu ortográficu, regles de guionáu y sinónimos alemanes (Austria, Alemaña, Suiza)"
diff --git a/source/ast/dictionaries/el_GR.po b/source/ast/dictionaries/el_GR.po
index b6e1fe072bd..ac90e41b76e 100644
--- a/source/ast/dictionaries/el_GR.po
+++ b/source/ast/dictionaries/el_GR.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-05-23 22:25+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"PO-Revision-Date: 2024-03-10 05:37+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-24-2/dictionariesel_gr/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"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.3.1\n"
"X-POOTLE-MTIME: 1369347959.000000\n"
#. 23zDf
@@ -23,4 +23,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Greek spelling dictionary, and hyphenation rules"
-msgstr "Diccionariu ortográficu griegu, y regles de dixebra silábica"
+msgstr "Diccionariu ortográficu griegu, y regles de guionáu"
diff --git a/source/ast/dictionaries/en.po b/source/ast/dictionaries/en.po
index 7e816637fe8..2e4380cba0f 100644
--- a/source/ast/dictionaries/en.po
+++ b/source/ast/dictionaries/en.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: LibO 350-l10n\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-05-23 22:25+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: none\n"
+"PO-Revision-Date: 2024-03-10 05:37+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-24-2/dictionariesen/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"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.3.1\n"
"X-POOTLE-MTIME: 1369347959.000000\n"
#. X9B3t
@@ -23,4 +23,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "English spelling dictionaries, hyphenation rules, thesaurus, and grammar checker"
-msgstr "Diccionarios de correición ortográfica, regles de xebra silábica, sinónimos y correutor gramatical d'inglés"
+msgstr "Diccionarios de correición ortográfica, regles de guionáu, sinónimos y correutor gramatical d'inglés"
diff --git a/source/ast/dictionaries/fr_FR.po b/source/ast/dictionaries/fr_FR.po
index bdd2f3af64e..89a0724ff7b 100644
--- a/source/ast/dictionaries/fr_FR.po
+++ b/source/ast/dictionaries/fr_FR.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: LibO 350-l10n\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-05-23 22:26+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: none\n"
+"PO-Revision-Date: 2024-03-10 05:37+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-24-2/dictionariesfr_fr/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"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.3.1\n"
"X-POOTLE-MTIME: 1369347960.000000\n"
#. 2uDqM
@@ -23,4 +23,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "French spelling dictionary, hyphenation rules, and thesaurus"
-msgstr "Diccionariu ortográficu y regles de separtación silábica y sinónimos pal francés"
+msgstr "Diccionariu ortográficu y regles de guionáu y sinónimos pal francés"
diff --git a/source/ast/dictionaries/gl.po b/source/ast/dictionaries/gl.po
index 9bd5b6ca081..4e57e23ab7d 100644
--- a/source/ast/dictionaries/gl.po
+++ b/source/ast/dictionaries/gl.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: LibO 350-l10n\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-05-23 22:26+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: none\n"
+"PO-Revision-Date: 2024-03-10 05:37+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-24-2/dictionariesgl/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"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.3.1\n"
"X-POOTLE-MTIME: 1369347960.000000\n"
#. vgdB6
@@ -23,4 +23,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Galician spelling dictionary, hyphenation rules, and thesaurus"
-msgstr "Diccionariu ortográficu, regles de separación silábica y sinónimos pal gallegu"
+msgstr "Diccionariu ortográficu, regles de guionáu y sinónimos pal gallegu"
diff --git a/source/ast/dictionaries/hr_HR.po b/source/ast/dictionaries/hr_HR.po
index 4c5d8f06324..077c98e0371 100644
--- a/source/ast/dictionaries/hr_HR.po
+++ b/source/ast/dictionaries/hr_HR.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: LibO 350-l10n\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-05-23 22:26+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: none\n"
+"PO-Revision-Date: 2024-03-10 05:37+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-24-2/dictionarieshr_hr/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"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.3.1\n"
"X-POOTLE-MTIME: 1369347961.000000\n"
#. 4dSZm
@@ -23,4 +23,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Croatian spelling dictionary, and hyphenation rules"
-msgstr "Diccionariu ortográficu y regles de separtación silábica pal croata"
+msgstr "Diccionariu ortográficu y regles de guionáu pal croata"
diff --git a/source/ast/dictionaries/hu_HU.po b/source/ast/dictionaries/hu_HU.po
index 32d57225e55..f75aa78fd3d 100644
--- a/source/ast/dictionaries/hu_HU.po
+++ b/source/ast/dictionaries/hu_HU.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: LibO 350-l10n\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-05-23 22:26+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: none\n"
+"PO-Revision-Date: 2024-03-10 05:37+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-24-2/dictionarieshu_hu/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"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.3.1\n"
"X-POOTLE-MTIME: 1369347961.000000\n"
#. nmJB3
@@ -23,4 +23,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Hungarian spelling dictionary, hyphenation rules, thesaurus, and grammar checker"
-msgstr "Diccionariu ortográficu, regles de separación silábica, sinónimos y correutor pal húngaru"
+msgstr "Diccionariu ortográficu, regles de guionáu, sinónimos y correutor pal húngaru"
diff --git a/source/ast/dictionaries/it_IT.po b/source/ast/dictionaries/it_IT.po
index db6c48c3f16..690858e96fa 100644
--- a/source/ast/dictionaries/it_IT.po
+++ b/source/ast/dictionaries/it_IT.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: LibO 350-l10n\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-05-23 22:26+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: none\n"
+"PO-Revision-Date: 2024-03-10 05:37+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-24-2/dictionariesit_it/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"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.3.1\n"
"X-POOTLE-MTIME: 1369347961.000000\n"
#. Vn53T
@@ -23,4 +23,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Italian spelling dictionary, hyphenation rules, and thesaurus"
-msgstr "Diccionariu ortográficu, regles de separación silábica y sinónimos pal italianu"
+msgstr "Diccionariu ortográficu, regles de guionáu y sinónimos pal italianu"
diff --git a/source/ast/dictionaries/lt_LT.po b/source/ast/dictionaries/lt_LT.po
index 51e15af3760..a6640d0570f 100644
--- a/source/ast/dictionaries/lt_LT.po
+++ b/source/ast/dictionaries/lt_LT.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: LibO 350-l10n\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-05-23 22:26+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: none\n"
+"PO-Revision-Date: 2024-03-10 05:37+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-24-2/dictionarieslt_lt/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"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.3.1\n"
"X-POOTLE-MTIME: 1369347962.000000\n"
#. HNGCr
@@ -23,4 +23,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Lithuanian spelling dictionary, and hyphenation rules"
-msgstr "Diccionariu ortográficu y regles de separación silábica pal lituanu"
+msgstr "Diccionariu ortográficu y regles de guionáu pal lituanu"
diff --git a/source/ast/dictionaries/lv_LV.po b/source/ast/dictionaries/lv_LV.po
index f7e920e18aa..72d21c9ae62 100644
--- a/source/ast/dictionaries/lv_LV.po
+++ b/source/ast/dictionaries/lv_LV.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: LibO 350-l10n\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-05-23 22:26+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: none\n"
+"PO-Revision-Date: 2024-03-10 05:37+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-24-2/dictionarieslv_lv/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"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.3.1\n"
"X-POOTLE-MTIME: 1369347962.000000\n"
#. J5QQq
@@ -23,4 +23,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Latvian spelling dictionary, and hyphenation rules"
-msgstr "Diccionariu ortográficu y regles de separación silábica pal letón"
+msgstr "Diccionariu ortográficu y regles de guionáu pal letón"
diff --git a/source/ast/dictionaries/ne_NP.po b/source/ast/dictionaries/ne_NP.po
index e14c3fb2ec6..b85b5d49ea7 100644
--- a/source/ast/dictionaries/ne_NP.po
+++ b/source/ast/dictionaries/ne_NP.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: LibO 350-l10n\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-05-23 22:26+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: none\n"
+"PO-Revision-Date: 2024-03-10 05:37+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-24-2/dictionariesne_np/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"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.3.1\n"
"X-POOTLE-MTIME: 1369347962.000000\n"
#. 4azSE
@@ -23,4 +23,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Nepali spelling dictionary, and thesaurus"
-msgstr "Diccionariu ortográficu y regles de separación silábica pal nepalés"
+msgstr "Diccionariu ortográficu y regles de guionáu pal nepalés"
diff --git a/source/ast/dictionaries/nl_NL.po b/source/ast/dictionaries/nl_NL.po
index f30fff09d87..a3f2d6a902e 100644
--- a/source/ast/dictionaries/nl_NL.po
+++ b/source/ast/dictionaries/nl_NL.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: LibO 350-l10n\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-05-23 22:26+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: none\n"
+"PO-Revision-Date: 2024-03-10 05:37+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-24-2/dictionariesnl_nl/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"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.3.1\n"
"X-POOTLE-MTIME: 1369347962.000000\n"
#. EGax2
@@ -23,4 +23,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Dutch spelling dictionary, and hyphenation rules"
-msgstr "Diccionariu ortográficu y regles de separación silábica pal neerlandés"
+msgstr "Diccionariu ortográficu y regles de guionáu pal neerlandés"
diff --git a/source/ast/dictionaries/no.po b/source/ast/dictionaries/no.po
index f5802d7db4b..9e5ecee3f2d 100644
--- a/source/ast/dictionaries/no.po
+++ b/source/ast/dictionaries/no.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: LibO 350-l10n\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-02 20:35+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: none\n"
+"PO-Revision-Date: 2024-03-10 05:37+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-24-2/dictionariesno/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"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.3.1\n"
"X-POOTLE-MTIME: 1370205338.000000\n"
#. ykygF
@@ -23,4 +23,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Norwegian (Nynorsk and Bokmål) spelling dictionary, hyphenation rules, and thesaurus"
-msgstr "Diccionariu ortográficu y regles de separación silábica y sinónimos pal noruegu (Nynorsk y Bokmål)"
+msgstr "Diccionariu ortográficu y regles de guionáu y sinónimos pal noruegu (Nynorsk y Bokmål)"
diff --git a/source/ast/dictionaries/pl_PL.po b/source/ast/dictionaries/pl_PL.po
index d1f36848778..50e528c43dc 100644
--- a/source/ast/dictionaries/pl_PL.po
+++ b/source/ast/dictionaries/pl_PL.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: LibO 350-l10n\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-05-23 22:26+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: none\n"
+"PO-Revision-Date: 2024-03-10 05:37+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-24-2/dictionariespl_pl/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"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.3.1\n"
"X-POOTLE-MTIME: 1369347962.000000\n"
#. F8DK3
@@ -23,4 +23,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Polish spelling dictionary, hyphenation rules, and thesaurus"
-msgstr "Diccionariu ortográficu, regles de separtación silábica y sinónimos pal polacu"
+msgstr "Diccionariu ortográficu, regles de guionáu y sinónimos pal polacu"
diff --git a/source/ast/dictionaries/ro.po b/source/ast/dictionaries/ro.po
index d5b4f215ab9..10b2a8323c3 100644
--- a/source/ast/dictionaries/ro.po
+++ b/source/ast/dictionaries/ro.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: LibO 350-l10n\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-05-23 22:26+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: none\n"
+"PO-Revision-Date: 2024-03-10 05:37+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-24-2/dictionariesro/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"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.3.1\n"
"X-POOTLE-MTIME: 1369347963.000000\n"
#. syfj5
@@ -23,4 +23,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Romanian spelling dictionary, hyphenation rules, and thesaurus"
-msgstr "Diccionariu ortográficu, regles de separtación silábica y sinónimos pal rumanu"
+msgstr "Diccionariu ortográficu, regles de guionáu y sinónimos pal rumanu"
diff --git a/source/ast/dictionaries/ru_RU.po b/source/ast/dictionaries/ru_RU.po
index eab5baf7f92..3e0d18ddfb9 100644
--- a/source/ast/dictionaries/ru_RU.po
+++ b/source/ast/dictionaries/ru_RU.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: LibO 350-l10n\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-05-23 22:26+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: none\n"
+"PO-Revision-Date: 2024-03-10 05:37+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-24-2/dictionariesru_ru/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"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.3.1\n"
"X-POOTLE-MTIME: 1369347964.000000\n"
#. hkYDW
@@ -23,4 +23,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Russian spelling dictionary, hyphenation rules, thesaurus, and grammar checker"
-msgstr "Diccionariu ortográficu, regles de separación silábica y sinónimos pal rusu"
+msgstr "Diccionariu ortográficu, regles de guionáu y sinónimos pal rusu"
diff --git a/source/ast/dictionaries/sk_SK.po b/source/ast/dictionaries/sk_SK.po
index 8005054d115..ef55e42dc29 100644
--- a/source/ast/dictionaries/sk_SK.po
+++ b/source/ast/dictionaries/sk_SK.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: LibO 350-l10n\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-05-23 22:26+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: none\n"
+"PO-Revision-Date: 2024-03-10 05:37+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-24-2/dictionariessk_sk/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"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.3.1\n"
"X-POOTLE-MTIME: 1369347964.000000\n"
#. BNRdU
@@ -23,4 +23,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Slovak spelling dictionary, hyphenation rules, and thesaurus"
-msgstr "Diccionariu ortográficu, regles de separtación silábica y sinónimos pal eslovacu"
+msgstr "Diccionariu ortográficu, regles de guionáu y sinónimos pal eslovacu"
diff --git a/source/ast/dictionaries/sl_SI.po b/source/ast/dictionaries/sl_SI.po
index 9365fe2ce4a..7653c53556e 100644
--- a/source/ast/dictionaries/sl_SI.po
+++ b/source/ast/dictionaries/sl_SI.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: LibO 350-l10n\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-05-23 22:26+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: none\n"
+"PO-Revision-Date: 2024-03-10 05:37+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-24-2/dictionariessl_si/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"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.3.1\n"
"X-POOTLE-MTIME: 1369347964.000000\n"
#. wSSE5
@@ -23,4 +23,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Slovenian spelling dictionary, hyphenation rules, and thesaurus"
-msgstr "Diccionariu ortográficu, regles de separtación silábica y sinónimos pal eslovenu"
+msgstr "Diccionariu ortográficu, regles de guionáu y sinónimos pal eslovenu"
diff --git a/source/ast/dictionaries/sr.po b/source/ast/dictionaries/sr.po
index c4fb36f013e..95e5bf8ab1c 100644
--- a/source/ast/dictionaries/sr.po
+++ b/source/ast/dictionaries/sr.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: LibO 350-l10n\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-05-23 22:26+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: none\n"
+"PO-Revision-Date: 2024-03-10 05:37+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-24-2/dictionariessr/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"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.3.1\n"
"X-POOTLE-MTIME: 1369347964.000000\n"
#. GWwoG
@@ -23,4 +23,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Serbian (Cyrillic and Latin) spelling dictionary, and hyphenation rules"
-msgstr "Diccionariu ortográficu, regles de separtación silábica y sinónimos pal serbiu (Cirílicu y llatín)"
+msgstr "Diccionariu ortográficu, regles de guionáu y sinónimos pal serbiu (Cirílicu y llatín)"
diff --git a/source/ast/dictionaries/te_IN.po b/source/ast/dictionaries/te_IN.po
index f185f86486a..435fa15ed1b 100644
--- a/source/ast/dictionaries/te_IN.po
+++ b/source/ast/dictionaries/te_IN.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-05-23 22:26+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"PO-Revision-Date: 2024-03-10 05:37+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-24-2/dictionarieste_in/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"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.3.1\n"
"X-POOTLE-MTIME: 1369347965.000000\n"
#. mgjk8
@@ -23,4 +23,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Telugu spelling dictionary, and hyphenation rules"
-msgstr "Diccionariu ortográficu telugu, y regles de dixebra silábica"
+msgstr "Diccionariu ortográficu telugu, y regles de guionáu"
diff --git a/source/ast/dictionaries/uk_UA.po b/source/ast/dictionaries/uk_UA.po
index d279e61af66..77c5f78ba37 100644
--- a/source/ast/dictionaries/uk_UA.po
+++ b/source/ast/dictionaries/uk_UA.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: LibO 350-l10n\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-05-23 22:26+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: none\n"
+"PO-Revision-Date: 2024-03-10 05:37+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-24-2/dictionariesuk_ua/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"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.3.1\n"
"X-POOTLE-MTIME: 1369347965.000000\n"
#. iCnNA
@@ -23,4 +23,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Ukrainian spelling dictionary, hyphenation rules, and thesaurus"
-msgstr "Diccionariu ortográficu, regles de separtación silábica y sinónimos pal ucraín"
+msgstr "Diccionariu ortográficu, regles de guionáu y sinónimos pal ucraín"
diff --git a/source/ast/dictionaries/zu_ZA.po b/source/ast/dictionaries/zu_ZA.po
index 40380d43ee1..41b4f64ef00 100644
--- a/source/ast/dictionaries/zu_ZA.po
+++ b/source/ast/dictionaries/zu_ZA.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: LibO 350-l10n\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-05-23 22:26+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: none\n"
+"PO-Revision-Date: 2024-03-10 05:37+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-24-2/dictionarieszu_za/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"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.3.1\n"
"X-POOTLE-MTIME: 1369347965.000000\n"
#. ccA4G
@@ -23,4 +23,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Zulu hyphenation rules"
-msgstr "Regles de separtación silábica pal zulú"
+msgstr "Regles de guionáu pal zulú"
diff --git a/source/ast/extensions/messages.po b/source/ast/extensions/messages.po
index cd57c9a066e..2f76b5f360e 100644
--- a/source/ast/extensions/messages.po
+++ b/source/ast/extensions/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: 2023-09-22 21:41+0200\n"
-"PO-Revision-Date: 2024-03-06 07:37+0000\n"
-"Last-Translator: Xandru Martino Ruz <xandrumartino@softastur.org>\n"
+"PO-Revision-Date: 2024-03-16 16:37+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-24-2/extensionsmessages/ast/>\n"
"Language: ast\n"
"MIME-Version: 1.0\n"
@@ -1813,7 +1813,7 @@ msgstr "Caxella venceyada"
#: extensions/inc/strings.hrc:193
msgctxt "RID_STR_LIST_CELL_RANGE"
msgid "Source cell range"
-msgstr "Rangu de caxelles d'orixe"
+msgstr "Estaya de caxelles fonte"
#. Fmnnf
#: extensions/inc/strings.hrc:194
diff --git a/source/ast/helpcontent2/source/text/sbasic/guide.po b/source/ast/helpcontent2/source/text/sbasic/guide.po
index 0acb3ca0258..4ef5417ca8d 100644
--- a/source/ast/helpcontent2/source/text/sbasic/guide.po
+++ b/source/ast/helpcontent2/source/text/sbasic/guide.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: 2023-10-11 14:17+0200\n"
-"PO-Revision-Date: 2023-11-17 09:38+0000\n"
-"Last-Translator: Xandru Martino Ruz <xandrumartino@softastur.org>\n"
-"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicguide/ast/>\n"
+"PO-Revision-Date: 2024-03-14 14:37+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-24-2/textsbasicguide/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: Weblate 5.1.1\n"
+"X-Generator: Weblate 5.3.1\n"
"X-POOTLE-MTIME: 1524659419.000000\n"
#. WcTKB
@@ -1868,7 +1868,7 @@ msgctxt ""
"par_id3153157\n"
"help.text"
msgid "When you execute this code, \"Dialog1\" opens. To close the dialog, click the close button (x) on its title bar."
-msgstr "Cuando s'executa esti códigu, ábrese \"Dialog1\". Pa zarrar el diálogu, faiga clic nel iconu de zarru (x) d'esta barra de títulu."
+msgstr "Cuando s'executa esti códigu, ábrese «Dialog1». Pa zarrar el diálogu, calca nel iconu de zarru (✕) na so barra de títulu."
#. s79uv
#: translation.xhp
diff --git a/source/ast/helpcontent2/source/text/sbasic/shared.po b/source/ast/helpcontent2/source/text/sbasic/shared.po
index d7a850c74bd..e1ae5cb1eb6 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: 2023-12-04 15:06+0100\n"
-"PO-Revision-Date: 2024-02-22 11:37+0000\n"
+"PO-Revision-Date: 2024-03-17 00:04+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-24-2/textsbasicshared/ast/>\n"
"Language: ast\n"
@@ -167,7 +167,7 @@ msgctxt ""
"par_id3153415\n"
"help.text"
msgid "URLs (<emph>Uniform Resource Locators</emph>) are used to determine the location of a resource like a file in a file system, typically inside a network environment. A URL consists of a protocol specifier, a host specifier and a file and path specifier:"
-msgstr "Les URL (<emph>Uniform Resource Locators</emph>) usar pa determinar la posición d'un recursu, como un ficheru, nun sistema de ficheros, de normal dientro d'un entornu de rede. Una URL componer d'un especificador de protocolu, unu d'ordenador y unu de ficheru y ruta d'accesu:"
+msgstr "Los URL (<emph>Uniform Resource Locators</emph>) úsense pa determinar la posición d'un recursu, como un ficheru, nun sistema de ficheros, de normal dientro d'un entornu de rede. Un URL compónse d'un especificador de protocolu, unu d'agospiu y unu de ficheru y camín d'accesu:"
#. rjDFF
#: 00000002.xhp
@@ -4136,7 +4136,7 @@ msgctxt ""
"par_id3153726\n"
"help.text"
msgid "Click the <emph>Libraries</emph> tab."
-msgstr "Calque na ficha <emph>Biblioteques</emph>."
+msgstr "Calca na llingüeta <emph>Biblioteques</emph>."
#. htC8c
#: 01030400.xhp
@@ -4181,7 +4181,7 @@ msgctxt ""
"par_id3146972\n"
"help.text"
msgid "Click the <emph>Libraries</emph> tab."
-msgstr "Calque na ficha <emph>Biblioteques</emph>."
+msgstr "Calca na llingüeta <emph>Biblioteques</emph>."
#. 7w5hH
#: 01030400.xhp
@@ -4262,7 +4262,7 @@ msgctxt ""
"par_id3147006\n"
"help.text"
msgid "Click the <emph>Libraries</emph> tab."
-msgstr "Calque na ficha <emph>Biblioteques</emph>."
+msgstr "Calca na llingüeta <emph>Biblioteques</emph>."
#. VJ8AJ
#: 01030400.xhp
@@ -4343,7 +4343,7 @@ msgctxt ""
"par_id3146808\n"
"help.text"
msgid "Click the <emph>Libraries</emph> tab."
-msgstr "Calque na ficha <emph>Biblioteques</emph>."
+msgstr "Calca na llingüeta <emph>Biblioteques</emph>."
#. UJzRs
#: 01030400.xhp
@@ -4424,7 +4424,7 @@ msgctxt ""
"par_id3146781\n"
"help.text"
msgid "Click the <emph>Modules</emph> tab or the <emph>Dialogs</emph> tab."
-msgstr "Faiga clic na ficha <emph>Módulos</emph> o la ficha <emph>Diálogos</emph>."
+msgstr "Calca na llingüeta <emph>Módulos</emph> o la llingüeta <emph>Diálogos</emph>."
#. UFNnu
#: 01030400.xhp
@@ -4514,7 +4514,7 @@ msgctxt ""
"par_id3150958\n"
"help.text"
msgid "Click the <emph>Modules</emph> tab or the <emph>Dialogs</emph> tab."
-msgstr "Faiga clic na ficha <emph>Módulos</emph> o la ficha <emph>Diálogos</emph>."
+msgstr "Calca na llingüeta <emph>Módulos</emph> o la llingüeta <emph>Diálogos</emph>."
#. 92xwp
#: 01030400.xhp
@@ -5468,7 +5468,7 @@ msgctxt ""
"par_id431696550928389\n"
"help.text"
msgid "Choose <menuitem>Tools - Macro - Edit Macro</menuitem>."
-msgstr ""
+msgstr "Escueyi <menuitem>Ferramientes - Macro - Editar la macro</menuitem>."
#. zmtUX
#: 01050000.xhp
@@ -5477,7 +5477,7 @@ msgctxt ""
"par_id451696550923767\n"
"help.text"
msgid "Choose <menuitem>Tools - Basic</menuitem>."
-msgstr ""
+msgstr "Escueyi <menuitem>Ferramientes - BASIC</menuitem>."
#. FMBZo
#: 01050000.xhp
@@ -5486,7 +5486,7 @@ msgctxt ""
"par_id741696551014785\n"
"help.text"
msgid "On the <menuitem>Tools</menuitem> menu of the <menuitem>Tools</menuitem> tab, choose <menuitem>Edit Macro</menuitem>."
-msgstr ""
+msgstr "Nel menú <menuitem>Ferramientes</menuitem> de la llingüeta <menuitem>Ferramientes</menuitem>, escueyi <menuitem>Editar la macro</menuitem>."
#. TvEWG
#: 01050000.xhp
@@ -5495,7 +5495,7 @@ msgctxt ""
"par_id831696550904634\n"
"help.text"
msgid "<image src=\"cmd/lc_basicideappear.svg\" id=\"img_id271696550904635\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id661696550904636\">Icon Edit Macro</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_basicideappear.svg\" id=\"img_id271696550904635\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id661696550904636\">Iconu Editar la macro</alt></image>"
#. bv9fy
#: 01050000.xhp
@@ -8618,7 +8618,7 @@ msgctxt ""
"par_id3145364\n"
"help.text"
msgid "<emph>pos</emph>: Spaces are inserted until the specified position."
-msgstr ""
+msgstr "<emph>pos</emph>: inxértense espacios hasta la posición especificada."
#. GiAKc
#: 03010103.xhp
diff --git a/source/ast/helpcontent2/source/text/sbasic/shared/03.po b/source/ast/helpcontent2/source/text/sbasic/shared/03.po
index 2c2858b8c4d..5a6b60f74c9 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: 2024-01-22 14:04+0100\n"
-"PO-Revision-Date: 2024-02-18 23:38+0000\n"
+"PO-Revision-Date: 2024-03-14 14:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-24-2/textsbasicshared03/ast/>\n"
"Language: ast\n"
@@ -2642,7 +2642,7 @@ msgctxt ""
"par_id351619100723505\n"
"help.text"
msgid "If form documents are organized in folders, it is necessary to include the folder name to specify the form document to be opened, as illustrated in the following examples:"
-msgstr ""
+msgstr "Si los documentos de formulariu tán organizaos en carpetes, cal incluyir el nome de la carpeta pa especificar el documentu de formulariu que se va abrir, como s'ilustra nos exemplos siguientes:"
#. TQCNn
#: sf_base.xhp
@@ -3668,7 +3668,7 @@ msgctxt ""
"hd_id751618825527776\n"
"help.text"
msgid "Formatting Codes"
-msgstr ""
+msgstr "Códigos de formatu"
#. G2TzF
#: sf_basic.xhp
@@ -10229,7 +10229,7 @@ msgctxt ""
"hd_id731582733781114\n"
"help.text"
msgid "<variable id=\"DatasetService\"><link href=\"text/sbasic/shared/03/sf_dataset.xhp\"><literal>SFDatabases</literal>.<literal>Dataset</literal> service</link></variable>"
-msgstr ""
+msgstr "<variable id=\"DatasetService\"><link href=\"text/sbasic/shared/03/sf_dataset.xhp\">Serviciu <literal>SFDatabases</literal>.<literal>Dataset</literal></link></variable>"
#. CmkuE
#: sf_dataset.xhp
@@ -10715,7 +10715,7 @@ msgctxt ""
"par_id651606319520519\n"
"help.text"
msgid "List of Methods in the Dataset Service"
-msgstr ""
+msgstr "Llista de métodos nel serviciu Dataset"
#. HPN2T
#: sf_dataset.xhp
@@ -24404,7 +24404,7 @@ msgctxt ""
"par_id451619034669263\n"
"help.text"
msgid "List of Methods in the FormDocument Service"
-msgstr ""
+msgstr "Llista de métodos nel serviciu FormDocument"
#. jY8vp
#: sf_formdocument.xhp
@@ -34196,7 +34196,7 @@ msgctxt ""
"par_id651606319520519\n"
"help.text"
msgid "List of Methods in the Toolbar Service"
-msgstr ""
+msgstr "Llista de métodos nel serviciu Toolbar"
#. FED3g
#: sf_toolbar.xhp
@@ -34736,7 +34736,7 @@ msgctxt ""
"par_id651606319520519\n"
"help.text"
msgid "List of Methods in the ToolbarButton Service"
-msgstr ""
+msgstr "Llista de métodos nel serviciu ToolbarButton"
#. oGWqY
#: sf_toolbarbutton.xhp
diff --git a/source/ast/helpcontent2/source/text/scalc/00.po b/source/ast/helpcontent2/source/text/scalc/00.po
index 0dfce83bd83..7412e9fa8c3 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: 2023-12-21 13:21+0100\n"
-"PO-Revision-Date: 2024-03-07 07:49+0000\n"
+"PO-Revision-Date: 2024-03-14 14:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-24-2/textscalc00/ast/>\n"
"Language: ast\n"
@@ -3551,7 +3551,7 @@ msgctxt ""
"par_id3153815\n"
"help.text"
msgid "<variable id=\"dngda\">Choose <emph>Data - Group and Outline - Hide Details</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"dngda\">Escueyi <emph>Datos - Grupu y esquema - Anubrir detalles</emph>.</variable>"
#. A6P9g
#: 00000412.xhp
diff --git a/source/ast/helpcontent2/source/text/scalc/01.po b/source/ast/helpcontent2/source/text/scalc/01.po
index 70574a04f6c..66760c24d44 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: 2023-12-21 13:21+0100\n"
-"PO-Revision-Date: 2024-03-07 07:49+0000\n"
+"PO-Revision-Date: 2024-03-15 19:11+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-24-2/textscalc01/ast/>\n"
"Language: ast\n"
@@ -46248,7 +46248,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Hyphenation"
-msgstr "Separtamientu silábicu"
+msgstr "Guionáu"
#. fFwFU
#: 06020000.xhp
@@ -46257,7 +46257,7 @@ msgctxt ""
"bm_id3159399\n"
"help.text"
msgid "<bookmark_value>automatic hyphenation in spreadsheets</bookmark_value><bookmark_value>hyphenation; in spreadsheets</bookmark_value><bookmark_value>syllables in spreadsheets</bookmark_value>"
-msgstr "<bookmark_value>separación silábica automática en fueyes de cálculu</bookmark_value><bookmark_value>separación silábica; en fueyes de cálculu</bookmark_value><bookmark_value>sílabes en fueyes de cálculu</bookmark_value>"
+msgstr "<bookmark_value>guionáu automáticu en fueyes de cálculu</bookmark_value><bookmark_value>guionáu; en fueyes de cálculu</bookmark_value><bookmark_value>sílabes en fueyes de cálculu</bookmark_value>"
#. RFvCe
#: 06020000.xhp
@@ -46266,7 +46266,7 @@ msgctxt ""
"hd_id3159399\n"
"help.text"
msgid "Hyphenation"
-msgstr "Separtamientu silábicu"
+msgstr "Guionáu"
#. uDEz3
#: 06020000.xhp
@@ -46275,7 +46275,7 @@ msgctxt ""
"par_id3145068\n"
"help.text"
msgid "<variable id=\"silben\"><ahelp hid=\".uno:Hyphenate\">The <emph>Hyphenation </emph>command calls the dialog for setting the hyphenation in $[officename] Calc.</ahelp></variable>"
-msgstr "<variable id=\"silben\"><ahelp hid=\".uno:Hyphenate\">El comandu <emph>Separación silábica</emph> abre'l diálogu pa configurar la separación de sílabes en $[officename] Calc.</ahelp></variable>"
+msgstr "<variable id=\"silben\"><ahelp hid=\".uno:Hyphenate\">La orde <emph>Guionáu</emph> abre'l diálogu pa configurar el guionáu nel Calc de $[officename].</ahelp></variable>"
#. QkdtX
#: 06020000.xhp
@@ -46284,7 +46284,7 @@ msgctxt ""
"par_id3154366\n"
"help.text"
msgid "You can only turn on the automatic hyphenation in $[officename] Calc when the <link href=\"text/shared/01/05340300.xhp\">row break</link> feature is active."
-msgstr "Namái ye posible activar la separación silábica automática en $[officename] Calc si ta activada la función de <link href=\"text/shared/01/05340300.xhp\">saltu de filera</link>."
+msgstr "Namái ye posible activar el guionáu automáticu nel Calc de $[officename] si ta activada la función de <link href=\"text/shared/01/05340300.xhp\">saltu de filera</link>."
#. 26g7N
#: 06020000.xhp
@@ -46293,7 +46293,7 @@ msgctxt ""
"hd_id3153192\n"
"help.text"
msgid "Hyphenation for selected cells."
-msgstr "Separación silábica pa caxelles escoyíes."
+msgstr "Guionáu pa caxelles esbillaes."
#. g7WAn
#: 06020000.xhp
@@ -46302,7 +46302,7 @@ msgctxt ""
"par_id3150868\n"
"help.text"
msgid "Select the cells for which you want to change the hyphenation."
-msgstr "Escueya les caxelles pa les que desee camudar la separación silábica."
+msgstr "Escueyi les caxelles pa les que quies camudar el guionáu."
#. cECJ8
#: 06020000.xhp
@@ -46338,7 +46338,7 @@ msgctxt ""
"hd_id3153094\n"
"help.text"
msgid "Hyphenation for Drawing Objects"
-msgstr "Separación silábica pa oxetos de dibuxu."
+msgstr "Guionáu pa oxetos de dibuxu"
#. jMPZJ
#: 06020000.xhp
@@ -46365,7 +46365,7 @@ msgctxt ""
"par_id3147394\n"
"help.text"
msgid "Each time you call the command you turn the hyphenation for the drawing object on or off. A check mark shows the current status."
-msgstr "Con cada execución del comandu va activar o va desactivar la separación silábica pal oxetu de dibuxu. Una marca amuesa l'estáu actual."
+msgstr "Con cada invocación de la orde vas activar o desactivar el guionáu pal oxetu de dibuxu. Una marca amuesa l'estáu actual."
#. HDYd5
#: 06030000.xhp
@@ -54087,7 +54087,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Select Visible Columns"
-msgstr ""
+msgstr "Esbillar columnes visibles"
#. FxkBH
#: SelectVisibleColumns.xhp
@@ -54096,7 +54096,7 @@ msgctxt ""
"bm_id401697550910277\n"
"help.text"
msgid "<bookmark_value>select;visible columns</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>esbillar;columnes visibles</bookmark_value>"
#. tvv9r
#: SelectVisibleColumns.xhp
@@ -54105,7 +54105,7 @@ msgctxt ""
"hd_id91697506550043\n"
"help.text"
msgid "<variable id=\"h1\"><link href=\"text/scalc/01/SelectVisibleColumns.xhp\">Select Visible Columns</link></variable>"
-msgstr ""
+msgstr "<variable id=\"h1\"><link href=\"text/scalc/01/SelectVisibleColumns.xhp\">Esbillar columnes visibles</link></variable>"
#. ABCAg
#: SelectVisibleColumns.xhp
@@ -55401,7 +55401,7 @@ msgctxt ""
"hd_id731610569777368\n"
"help.text"
msgid "Position of vertical axis:"
-msgstr ""
+msgstr "Posición de la exa vertical:"
#. jrmur
#: databar_more_options.xhp
@@ -55446,7 +55446,7 @@ msgctxt ""
"hd_id591610569865757\n"
"help.text"
msgid "Color of vertical axis:"
-msgstr ""
+msgstr "Color de la exa vertical:"
#. 2cZEy
#: databar_more_options.xhp
diff --git a/source/ast/helpcontent2/source/text/scalc/guide.po b/source/ast/helpcontent2/source/text/scalc/guide.po
index e3745e0a67a..a4c65ba91bb 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: 2023-12-15 12:24+0100\n"
-"PO-Revision-Date: 2024-02-16 18:37+0000\n"
+"PO-Revision-Date: 2024-03-15 19:11+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-24-2/textscalcguide/ast/>\n"
"Language: ast\n"
@@ -11166,7 +11166,7 @@ msgctxt ""
"par_id090920081050298\n"
"help.text"
msgid "asterisk <literal>*</literal>"
-msgstr ""
+msgstr "asteriscu <literal>*</literal>"
#. sAMTR
#: rename_table.xhp
@@ -12948,7 +12948,7 @@ msgctxt ""
"par_id3155443\n"
"help.text"
msgid "Close the Basic-IDE window."
-msgstr "Zarru la ventana de la IDE de Basic."
+msgstr "Zarra la ventana de la IDE de Basic."
#. nWiEx
#: userdefined_function.xhp
@@ -13020,7 +13020,7 @@ msgctxt ""
"par_idN1081D\n"
"help.text"
msgid "Close the Basic-IDE."
-msgstr "Zarru la IDE de Basic."
+msgstr "Zarra la IDE de Basic."
#. rYyws
#: userdefined_function.xhp
diff --git a/source/ast/helpcontent2/source/text/schart/00.po b/source/ast/helpcontent2/source/text/schart/00.po
index 08a43da29cb..dea7d28dc1e 100644
--- a/source/ast/helpcontent2/source/text/schart/00.po
+++ b/source/ast/helpcontent2/source/text/schart/00.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: 2024-01-18 09:45+0000\n"
+"PO-Revision-Date: 2024-03-15 19:11+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
-"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textschart00/ast/>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-24-2/textschart00/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: Weblate 5.1.1\n"
+"X-Generator: Weblate 5.3.1\n"
"X-POOTLE-MTIME: 1525794593.000000\n"
#. E9tti
@@ -50,7 +50,7 @@ msgctxt ""
"par_id3154686\n"
"help.text"
msgid "On Formatting bar, click"
-msgstr "Na barra Formatu, calque"
+msgstr "Na barra Formatu, calca"
#. GDpSu
#: 00000004.xhp
@@ -95,7 +95,7 @@ msgctxt ""
"par_id3155444\n"
"help.text"
msgid "Choose <emph>Format - Legend - Position</emph> tab (Charts)"
-msgstr "Escoyer <emph>Formatu - Lleenda - Posición</emph> (Gráficos)"
+msgstr "Escueyi <emph>Formatu - Lleenda - Posición</emph> (gráfiques)"
#. EH75q
#: 00000004.xhp
@@ -140,7 +140,7 @@ msgctxt ""
"par_id3145789\n"
"help.text"
msgid "On Formatting bar, click"
-msgstr "Na barra Formatu, calque"
+msgstr "Na barra Formatu, calca"
#. zTF9a
#: 00000004.xhp
@@ -329,7 +329,7 @@ msgctxt ""
"par_id1006200812385491\n"
"help.text"
msgid "<variable id=\"positioning\">Choose <emph>Format - Axis - X Axis - Positioning</emph> tab (Charts)</variable>"
-msgstr "<variable id=\"positioning\">Escueya la llingüeta <emph>Formatu - Eje - Exa X - Posición</emph> (Gráficos)</variable>"
+msgstr "<variable id=\"positioning\">Escueyi la llingüeta <emph>Formatu - Exa - Exa X - Posición</emph> (gráfiques)</variable>"
#. 7T8FZ
#: 00000004.xhp
@@ -338,7 +338,7 @@ msgctxt ""
"par_id31493459\n"
"help.text"
msgid "<variable id=\"positioningy\">Choose <emph>Format - Axis - Y Axis - Positioning</emph> tab (Charts)</variable>"
-msgstr "<variable id=\"positioningy\">Escueya la llingüeta <emph>Formatu - Eje - Exa Y - Posición</emph> (Gráficos)</variable>"
+msgstr "<variable id=\"positioningy\">Escueyi la llingüeta <emph>Formatu - Exa - Exa Y - Posición</emph> (gráfiques)</variable>"
#. kLZUK
#: 00000004.xhp
@@ -401,7 +401,7 @@ msgctxt ""
"par_id3145140\n"
"help.text"
msgid "On Formatting bar, click"
-msgstr "Na barra Formatu, calque"
+msgstr "Na barra Formatu, calca"
#. sucpX
#: 00000004.xhp
diff --git a/source/ast/helpcontent2/source/text/sdatabase.po b/source/ast/helpcontent2/source/text/sdatabase.po
index 32c812cccaa..b93580fbe8d 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: 2023-11-02 14:48+0100\n"
-"PO-Revision-Date: 2024-02-21 09:39+0000\n"
+"PO-Revision-Date: 2024-03-17 00:04+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-24-2/textsdatabase/ast/>\n"
"Language: ast\n"
@@ -6736,7 +6736,7 @@ msgctxt ""
"par_idN10575\n"
"help.text"
msgid "Host name"
-msgstr ""
+msgstr "Nome d'agospiu"
#. X6fnx
#: dabapropadd.xhp
diff --git a/source/ast/helpcontent2/source/text/sdraw/guide.po b/source/ast/helpcontent2/source/text/sdraw/guide.po
index c4787351455..db4a24105e4 100644
--- a/source/ast/helpcontent2/source/text/sdraw/guide.po
+++ b/source/ast/helpcontent2/source/text/sdraw/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2023-04-19 12:24+0200\n"
-"PO-Revision-Date: 2024-02-24 20:37+0000\n"
+"PO-Revision-Date: 2024-03-13 08:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-24-2/textsdrawguide/ast/>\n"
"Language: ast\n"
@@ -1436,7 +1436,7 @@ msgctxt ""
"par_id3150659\n"
"help.text"
msgid "To adjust the transparency of an object, select the object, choose <emph>Format - Area</emph> and click the <emph>Transparency</emph> tab."
-msgstr "P'axustar la tresparencia d'un oxetu, escuéyalo, escueya <emph>Formatu - Rellenu</emph> y faiga clic na ficha <emph>Tresparencia</emph>."
+msgstr "P'axustar la tresparencia d'un oxetu, esbíllalu, escueyi <emph>Formatu - Rellenu</emph> y calca na llingüeta <emph>Tresparencia</emph>."
#. KE8fj
#: graphic_insert.xhp
diff --git a/source/ast/helpcontent2/source/text/shared/00.po b/source/ast/helpcontent2/source/text/shared/00.po
index 7a1c155e75c..e469b80b851 100644
--- a/source/ast/helpcontent2/source/text/shared/00.po
+++ b/source/ast/helpcontent2/source/text/shared/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2023-12-21 13:21+0100\n"
-"PO-Revision-Date: 2024-03-07 07:49+0000\n"
+"PO-Revision-Date: 2024-03-14 14:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-24-2/textshared00/ast/>\n"
"Language: ast\n"
@@ -1625,7 +1625,7 @@ msgctxt ""
"par_id711684934483926\n"
"help.text"
msgid "From the tabbed interface:"
-msgstr ""
+msgstr "Dende la interfaz con llingüetes:"
#. sXy2C
#: 00000004.xhp
diff --git a/source/ast/helpcontent2/source/text/shared/01.po b/source/ast/helpcontent2/source/text/shared/01.po
index 9facb6e815a..61a480da752 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: 2023-12-21 13:21+0100\n"
-"PO-Revision-Date: 2024-03-07 07:49+0000\n"
+"PO-Revision-Date: 2024-03-14 14:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-24-2/textshared01/ast/>\n"
"Language: ast\n"
@@ -293,7 +293,7 @@ msgctxt ""
"par_idN107BF\n"
"help.text"
msgid "<image id=\"Graphic2\" src=\"res/lx03251.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_\">Icon XML Form Document</alt></image>"
-msgstr ""
+msgstr "<image id=\"Graphic2\" src=\"res/lx03251.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_\">Iconu Documentu de formulariu XML</alt></image>"
#. 77KZQ
#: 01010000.xhp
@@ -8033,7 +8033,7 @@ msgctxt ""
"par_id3150771\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/findreplacedialog/replace_backwards\">Search starts at the current cursor position and goes backwards to the beginning of the file.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/findreplacedialog/replace_backwards\">La gueta empieza na posición actual del cursor y recula hasta l'entamu del ficheru.</ahelp>"
#. NCwXM
#: 02100000.xhp
@@ -8060,7 +8060,7 @@ msgctxt ""
"hd_id3144439\n"
"help.text"
msgid "<switchinline select=\"appl\"> <caseinline select=\"DRAW\"/> <caseinline select=\"IMPRESS\"/> <defaultinline>Regular expressions</defaultinline> </switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\"/><caseinline select=\"IMPRESS\"/><defaultinline>Espresiones regulares</defaultinline></switchinline>"
#. YTjDH
#: 02100000.xhp
@@ -9851,7 +9851,7 @@ msgctxt ""
"hd_id3147124\n"
"help.text"
msgid "Hyphenation"
-msgstr "Separtamientu silábicu"
+msgstr "Guionáu"
#. NN2ds
#: 02100200.xhp
@@ -9860,7 +9860,7 @@ msgctxt ""
"par_id3153877\n"
"help.text"
msgid "Finds the <emph>Hyphenation</emph> attribute."
-msgstr ""
+msgstr "Alcuentra l'atributu <emph>Guionáu</emph>."
#. 5AbaD
#: 02100200.xhp
@@ -29894,7 +29894,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Position and Size (Text Box and Shape)"
-msgstr ""
+msgstr "Posición y tamañu (Caxa de testu y forma)"
#. tnQ2D
#: 05230100.xhp
@@ -31946,7 +31946,7 @@ msgctxt ""
"par_id3153957\n"
"help.text"
msgid "<image id=\"img_id3151019\" src=\"svx/res/fw020.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151019\">Icon Distance</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151019\" src=\"svx/res/fw020.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151019\">Iconu Distancia</alt></image>"
#. XDeLC
#: 05280000.xhp
@@ -37220,7 +37220,7 @@ msgctxt ""
"par_idN105AF\n"
"help.text"
msgid "Hyphenation"
-msgstr "Separtamientu silábicu"
+msgstr "Guionáu"
#. q4h2B
#: 06010500.xhp
@@ -37238,7 +37238,7 @@ msgctxt ""
"par_idN105D0\n"
"help.text"
msgid "Hyphenation"
-msgstr "Separtamientu silábicu"
+msgstr "Guionáu"
#. AL6nJ
#: 06010500.xhp
@@ -37247,7 +37247,7 @@ msgctxt ""
"par_idN105D4\n"
"help.text"
msgid "Turns hyphenation on and off."
-msgstr "Activa y desactiva'l separtamientu silábicu."
+msgstr "Activa y desactiva'l guionáu."
#. EczZc
#: 06010500.xhp
@@ -37256,7 +37256,7 @@ msgctxt ""
"par_idN105E7\n"
"help.text"
msgid "Hyphenation"
-msgstr "Separtamientu silábicu"
+msgstr "Guionáu"
#. vFxAn
#: 06010500.xhp
@@ -37265,7 +37265,7 @@ msgctxt ""
"par_idN105EB\n"
"help.text"
msgid "Turns hyphenation on and off."
-msgstr ""
+msgstr "Activa y desactiva'l guionáu."
#. pSG6a
#: 06010500.xhp
@@ -57227,7 +57227,7 @@ msgctxt ""
"par_idN10619\n"
"help.text"
msgid "Show Details"
-msgstr ""
+msgstr "Amosar detalles"
#. kYLvS
#: xformsdata.xhp
diff --git a/source/ast/helpcontent2/source/text/shared/02.po b/source/ast/helpcontent2/source/text/shared/02.po
index a7b59412c33..338801659a5 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: 2023-12-04 15:06+0100\n"
-"PO-Revision-Date: 2024-03-07 07:49+0000\n"
+"PO-Revision-Date: 2024-03-17 00:04+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-24-2/textshared02/ast/>\n"
"Language: ast\n"
@@ -9546,7 +9546,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "HTML Filters and Forms"
-msgstr "Formularios y filtru HTML"
+msgstr "Peñeres y formularios HTML"
#. XQSWD
#: 01170700.xhp
@@ -9555,7 +9555,7 @@ msgctxt ""
"bm_id3163829\n"
"help.text"
msgid "<bookmark_value>forms; HTML filters</bookmark_value>"
-msgstr "<bookmark_value>formularios;filtru HTML</bookmark_value>"
+msgstr "<bookmark_value>formularios;peñeres HTML</bookmark_value>"
#. TGTEU
#: 01170700.xhp
@@ -9564,7 +9564,7 @@ msgctxt ""
"hd_id3163829\n"
"help.text"
msgid "HTML Filters and Forms"
-msgstr "Formularios y filtru HTML"
+msgstr "Peñeres y formularios HTML"
#. NfBcc
#: 01170700.xhp
@@ -19176,7 +19176,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Red"
-msgstr "Colloráu"
+msgstr "Bermeyu"
#. StpuV
#: 24030000.xhp
@@ -19185,7 +19185,7 @@ msgctxt ""
"hd_id3151097\n"
"help.text"
msgid "<link href=\"text/shared/02/24030000.xhp\">Red</link>"
-msgstr "<link href=\"text/shared/02/24030000.xhp\">Coloráu</link>"
+msgstr "<link href=\"text/shared/02/24030000.xhp\">Bermeyu</link>"
#. DFUxs
#: 24030000.xhp
@@ -19203,7 +19203,7 @@ msgctxt ""
"par_id581692822229175\n"
"help.text"
msgid "Choose <menuitem>Format - Image - Color</menuitem>."
-msgstr ""
+msgstr "Escueyi <menuitem>Formatu - Imaxe - Color</menuitem>."
#. c6JqG
#: 24030000.xhp
@@ -19212,7 +19212,7 @@ msgctxt ""
"par_id3149511\n"
"help.text"
msgid "<image id=\"img_id3146130\" src=\"cmd/lc_grafred.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146130\">Icon Red</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3146130\" src=\"cmd/lc_grafred.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146130\">Iconu Bermeyu</alt></image>"
#. ALeBa
#: 24030000.xhp
@@ -19221,7 +19221,7 @@ msgctxt ""
"par_id3147571\n"
"help.text"
msgid "Red"
-msgstr "Colloráu"
+msgstr "Bermeyu"
#. EDGU6
#: 24040000.xhp
@@ -19257,7 +19257,7 @@ msgctxt ""
"par_id581692822229175\n"
"help.text"
msgid "Choose <menuitem>Format - Image - Color</menuitem>."
-msgstr ""
+msgstr "Escueyi <menuitem>Formatu - Imaxe - Color</menuitem>."
#. p3oEN
#: 24040000.xhp
@@ -19266,7 +19266,7 @@ msgctxt ""
"par_id3149511\n"
"help.text"
msgid "<image id=\"img_id3146130\" src=\"cmd/lc_grafgreen.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146130\">Icon Green</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3146130\" src=\"cmd/lc_grafgreen.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146130\">Iconu Verde</alt></image>"
#. EXFC2
#: 24040000.xhp
@@ -19275,7 +19275,7 @@ msgctxt ""
"par_id3147571\n"
"help.text"
msgid "Green"
-msgstr ""
+msgstr "Verde"
#. XGdbm
#: 24050000.xhp
@@ -19311,7 +19311,7 @@ msgctxt ""
"par_id581692822229175\n"
"help.text"
msgid "Choose <menuitem>Format - Image - Color</menuitem>."
-msgstr ""
+msgstr "Escueyi <menuitem>Formatu - Imaxe - Color</menuitem>."
#. uFHNL
#: 24050000.xhp
@@ -19320,7 +19320,7 @@ msgctxt ""
"par_id3149511\n"
"help.text"
msgid "<image id=\"img_id3146130\" src=\"cmd/lc_grafblue.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146130\">Icon Blue</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3146130\" src=\"cmd/lc_grafblue.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146130\">Iconu Azul</alt></image>"
#. JphtH
#: 24050000.xhp
@@ -19329,7 +19329,7 @@ msgctxt ""
"par_id3147571\n"
"help.text"
msgid "Blue"
-msgstr ""
+msgstr "Azul"
#. WXWjP
#: 24060000.xhp
@@ -19365,7 +19365,7 @@ msgctxt ""
"par_id581692822229175\n"
"help.text"
msgid "Choose <menuitem>Format - Image - Color</menuitem>."
-msgstr ""
+msgstr "Escueyi <menuitem>Formatu - Imaxe - Color</menuitem>."
#. giNuz
#: 24060000.xhp
@@ -19374,7 +19374,7 @@ msgctxt ""
"par_id3149511\n"
"help.text"
msgid "<image id=\"img_id3146130\" src=\"cmd/lc_grafluminance.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146130\">Icon Brightness</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3146130\" src=\"cmd/lc_grafluminance.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146130\">Iconu Rellumu</alt></image>"
#. SGDgg
#: 24060000.xhp
@@ -19383,7 +19383,7 @@ msgctxt ""
"par_id3147571\n"
"help.text"
msgid "Brightness"
-msgstr ""
+msgstr "Rellumu"
#. D6AnR
#: 24070000.xhp
@@ -19419,7 +19419,7 @@ msgctxt ""
"par_id581692822229175\n"
"help.text"
msgid "Choose <menuitem>Format - Image - Color</menuitem>."
-msgstr ""
+msgstr "Escueyi <menuitem>Formatu - Imaxe - Color</menuitem>."
#. jCGCt
#: 24070000.xhp
@@ -19428,7 +19428,7 @@ msgctxt ""
"par_id3149511\n"
"help.text"
msgid "<image id=\"img_id3146130\" src=\"cmd/lc_grafcontrast.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146130\">Icon Contrast</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3146130\" src=\"cmd/lc_grafcontrast.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146130\">Iconu Contraste</alt></image>"
#. jtCLn
#: 24070000.xhp
@@ -19437,7 +19437,7 @@ msgctxt ""
"par_id3147571\n"
"help.text"
msgid "Contrast"
-msgstr ""
+msgstr "Contraste"
#. b3opY
#: 24080000.xhp
@@ -19464,7 +19464,7 @@ msgctxt ""
"par_id3154873\n"
"help.text"
msgid "<ahelp hid=\".uno:GrafGamma\">Specifies the gamma value for the view of the selected object, which affects the brightness of the midtone values.</ahelp> Values from 0.10 (minimum Gamma) to 10 (maximum Gamma) are possible."
-msgstr "<ahelp hid=\".uno:GrafGamma\">Establez el valor gamma pa ver l'oxetu escoyíu, que afecta los valores del rellumu del tonomedio.</ahelp> Son posibles valores dende 0.10 (Gamma mínima) hasta 10 (Gamma máxima)."
+msgstr "<ahelp hid=\".uno:GrafGamma\">Establez el valor gamma pa ver l'oxetu escoyíu; esto afeuta'l rellumu de los tonos medios.</ahelp> Son posibles valores dende 0,10 (gamma mínima) hasta 10 (gamma máxima)."
#. EimsU
#: 24080000.xhp
@@ -19473,7 +19473,7 @@ msgctxt ""
"par_id581692822229175\n"
"help.text"
msgid "Choose <menuitem>Format - Image - Color</menuitem>."
-msgstr ""
+msgstr "Escueyi <menuitem>Formatu - Imaxe - Color</menuitem>."
#. RMTrD
#: 24080000.xhp
@@ -19788,7 +19788,7 @@ msgctxt ""
"par_id341692819918936\n"
"help.text"
msgid "Choose <menuitem>Format - Image - Color</menuitem>."
-msgstr ""
+msgstr "Escueyi <menuitem>Formatu - Imaxe - Color</menuitem>."
#. fDnZ8
#: colortoolbar.xhp
@@ -19797,7 +19797,7 @@ msgctxt ""
"par_id771692819965914\n"
"help.text"
msgid "Choose <menuitem>Image - Color</menuitem>."
-msgstr ""
+msgstr "Escueyi <menuitem>Imaxe - Color</menuitem>."
#. b3D2x
#: colortoolbar.xhp
@@ -19806,7 +19806,7 @@ msgctxt ""
"par_id261643820762014\n"
"help.text"
msgid "<image src=\"cmd/lc_colorsettings.svg\" id=\"img_id901643820760103\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id831643820768266\">Icon Color</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_colorsettings.svg\" id=\"img_id901643820760103\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id831643820768266\">Iconu Color</alt></image>"
#. iK8uZ
#: colortoolbar.xhp
@@ -19815,7 +19815,7 @@ msgctxt ""
"par_id13164382076547\n"
"help.text"
msgid "Color"
-msgstr ""
+msgstr "Color"
#. oQ5tj
#: flowcharts.xhp
@@ -19824,7 +19824,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Flowchart"
-msgstr "Diagrama de Fluxu"
+msgstr "Diagrama de fluxu"
#. UNP7F
#: flowcharts.xhp
@@ -19833,7 +19833,7 @@ msgctxt ""
"par_idN10557\n"
"help.text"
msgid "<link href=\"text/shared/02/flowcharts.xhp\">Flowchart</link>"
-msgstr "<link href=\"text/shared/02/flowcharts.xhp\">Diagrama de Fluxu</link>"
+msgstr "<link href=\"text/shared/02/flowcharts.xhp\">Diagrama de fluxu</link>"
#. bttSw
#: flowcharts.xhp
diff --git a/source/ast/helpcontent2/source/text/shared/guide.po b/source/ast/helpcontent2/source/text/shared/guide.po
index 908978ecf27..94eee682292 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: 2024-01-08 15:05+0100\n"
-"PO-Revision-Date: 2024-02-21 09:39+0000\n"
+"PO-Revision-Date: 2024-03-18 12:20+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-24-2/textsharedguide/ast/>\n"
"Language: ast\n"
@@ -302,7 +302,7 @@ msgctxt ""
"par_id3157958\n"
"help.text"
msgid "<emph>Extended tips</emph> provide a brief description of the function of a particular icon, text box or menu command when you rest your cursor on that item."
-msgstr "La <emph>Ayuda emerxente</emph> apurre una curtia descripción de la función d'un símbolu concretu, cuadru de testu o orde de menú cuando dexa'l cursor sobre esi elementu."
+msgstr "L’<emph>Ayuda emerxente</emph> apurre una curtia descripción de la función d'un símbolu concretu, caxa de testu o orde de menú cuando dexes el cursor sobre esi elementu."
#. BpAEj
#: active_help_on_off.xhp
@@ -410,7 +410,7 @@ msgctxt ""
"par_id3153821\n"
"help.text"
msgid "Close $[officename] and the Quickstarter."
-msgstr "Zarru $[officename] y l'Entamu rápidu."
+msgstr "Zarra $[officename] y l'Entamu rápidu."
#. BYuEA
#: activex.xhp
@@ -1688,7 +1688,7 @@ msgctxt ""
"hd_id861702496632045\n"
"help.text"
msgid "Installing the Built-in Help"
-msgstr ""
+msgstr "Instalar l'ayuda interna"
#. Ui94A
#: builtin_help.xhp
@@ -1940,7 +1940,7 @@ msgctxt ""
"par_id731702511460352\n"
"help.text"
msgid "Linux distributions usually provide their own %PRODUCTNAME packages, hence the method to install the built-in help will be different for each distribution."
-msgstr ""
+msgstr "Les distribuciones Linux suelen aprovir los sos propios paquetes del %PRODUCTNAME; por esta razón, el métodu d'instalación de l'ayuda interna va ser distintu pa cada distribución."
#. Qf5GN
#: builtin_help.xhp
@@ -1967,7 +1967,7 @@ msgctxt ""
"par_id481702513852446\n"
"help.text"
msgid "Open the <menuitem>Terminal</menuitem> application and run the following command (the example below installs the en_US built-in help):"
-msgstr ""
+msgstr "Abri l'aplicación <menuitem>Terminal</menuitem> y executa l'orde siguiente (l'exemplu déxate instalar l'ayuda interna n'asturianu):"
#. EVxEc
#: builtin_help.xhp
@@ -1976,7 +1976,7 @@ msgctxt ""
"par_id511702513867478\n"
"help.text"
msgid "<input>$ sudo apt install libreoffice-help-en-us</input>"
-msgstr ""
+msgstr "<input>$ sudo apt install libreoffice-help-ast</input>"
#. nHiFu
#: builtin_help.xhp
@@ -1985,7 +1985,7 @@ msgctxt ""
"hd_id851702514430704\n"
"help.text"
msgid "Fedora"
-msgstr ""
+msgstr "Fedora"
#. XsnaG
#: builtin_help.xhp
@@ -1994,7 +1994,7 @@ msgctxt ""
"par_id651702514440648\n"
"help.text"
msgid "Open the <menuitem>Terminal</menuitem> application and run the following command (the example below installs the en_US built-in help):"
-msgstr ""
+msgstr "Abri l'aplicación <menuitem>Terminal</menuitem> y executa l'orde siguiente (l'exemplu déxate instalar l'ayuda interna n'asturianu):"
#. X4UBr
#: builtin_help.xhp
@@ -2003,7 +2003,7 @@ msgctxt ""
"par_id1001702515062635\n"
"help.text"
msgid "<input>$ sudo dnf install libreoffice-langpack-en</input>"
-msgstr ""
+msgstr "<input>$ sudo dnf install libreoffice-langpack-ast</input>"
#. JiB53
#: builtin_help.xhp
@@ -2264,7 +2264,7 @@ msgctxt ""
"par_id3147275\n"
"help.text"
msgid "In the context menu choose <emph>Object Properties</emph>. Then choose the <emph>Area</emph> tab."
-msgstr "Escueya nel menú contestual la entrada <emph>Propiedaes del oxetu</emph> y vaya a la ficha <emph>Área</emph>."
+msgstr "Esbilla nel menú contestual la entrada <emph>Propiedaes del oxetu</emph> y escueyi la llingüeta <emph>Área</emph>."
#. uLD5N
#: chart_barformat.xhp
@@ -7268,7 +7268,7 @@ msgctxt ""
"par_idN10784\n"
"help.text"
msgid "When finished, close the dialog with <emph>OK</emph>."
-msgstr "Cuando acabe, zarru'l diálogu faciendo clic en <emph>Aceutar</emph>."
+msgstr "Cuando acabes, zarra'l diálogu calcando <emph>Aceutar</emph>."
#. TPBSB
#: data_addressbook.xhp
@@ -12569,7 +12569,7 @@ msgctxt ""
"par_idN106F6\n"
"help.text"
msgid "The <emph>Toolbar</emph>s tab page of the <emph>Customize</emph> dialog appears."
-msgstr "Apaez la ficha <emph>Barra de ferramientes</emph> del diálogu <emph>Personalizar</emph>."
+msgstr "Apaez la llingüeta <emph>Barra de ferramientes</emph> del diálogu <emph>Personalizar</emph>."
#. 6a7qH
#: fax.xhp
@@ -12920,7 +12920,7 @@ msgctxt ""
"par_id3163802\n"
"help.text"
msgid "On the <emph>View</emph> tab page, select the <emph>Toolbar icon size</emph>."
-msgstr "Na ficha <emph>Ver</emph>, escueya'l tamañu del iconu <emph>Barra de ferramientes</emph>."
+msgstr "Na llingüeta <emph>Ver</emph>, escueyi'l <emph>tamañu de los iconos nes barres de ferramientes</emph>."
#. EMnkE
#: flat_icons.xhp
@@ -13550,7 +13550,7 @@ msgctxt ""
"par_id3154923\n"
"help.text"
msgid "To change the button label, click the <emph>General</emph> tab, and edit the text in the <emph>Label</emph> box."
-msgstr "Pa camudar la etiqueta del botón, faiga clic na ficha <emph>Xeneral</emph> y edite el testu del cuadru <emph>Etiqueta</emph>."
+msgstr "Pa camudar la etiqueta del botón, calca na llingüeta <emph>Xeneral</emph> y edita'l testu de la caxa <emph>Etiqueta</emph>."
#. AKKqx
#: formfields.xhp
@@ -13568,7 +13568,7 @@ msgctxt ""
"par_idN10814\n"
"help.text"
msgid "Close the <emph>Properties</emph> dialog."
-msgstr "Zarru'l diálogu <emph>Propiedaes</emph>."
+msgstr "Zarra'l diálogu <emph>Propiedaes</emph>."
#. 8873U
#: formfields.xhp
@@ -13604,7 +13604,7 @@ msgctxt ""
"par_idN10837\n"
"help.text"
msgid "Specify the properties for the form and then close the dialog."
-msgstr "Especifique les propiedaes pal formulariu y depués zarru'l diálogu."
+msgstr "Especifica les propiedaes pal formulariu y dempués zarra'l diálogu."
#. zkMcS
#: gallery_insert.xhp
@@ -15692,7 +15692,7 @@ msgctxt ""
"par_id3145365\n"
"help.text"
msgid "Close the toolbar with Esc. It is not possible to move the toolbar without a mouse."
-msgstr "Zarru la barra de ferramientes calcando Esc. Nun ye posible mover la barra de ferramientes ensin un mur."
+msgstr "Zarra la barra de ferramientes calcando Esc. Nun ye posible mover la barra de ferramientes ensin un mur."
#. QUtqD
#: keyboard.xhp
@@ -16853,7 +16853,7 @@ msgctxt ""
"par_id3143271\n"
"help.text"
msgid "On the <emph>Labels</emph> tab, under <emph>Inscription</emph>, you can choose what you want written on the labels."
-msgstr "Na ficha <emph>Etiquetes</emph> y nel área <emph>Testu d'etiqueta</emph> escueya'l testu de la etiqueta."
+msgstr "Na llingüeta <emph>Etiquetes</emph> y nel área <emph>Testu d'etiqueta</emph> escueyi'l testu de la etiqueta."
#. 5NA5N
#: labels.xhp
@@ -16880,7 +16880,7 @@ msgctxt ""
"par_id3147560\n"
"help.text"
msgid "On the <emph>Format</emph> tab you can define your own label formats, not covered by the predefined formats. To do this, select \"User\" from the <emph>Type</emph> list box. On the <emph>Options</emph> tab, you can specify whether all labels or only certain ones are to be created."
-msgstr "Na ficha <emph>Formatu</emph> pue definir formatos d'etiqueta personalizaos, non incluyíos nos formatos predefiníos. Pa ello, escueya \"Usuariu\" nel cuadru de llista <emph>Tipu</emph>. La ficha <emph>Opciones</emph> dexa especificar si van crease toles etiquetes o namái delles concretes."
+msgstr "Na llingüeta <emph>Formatu</emph> pues definir formatos d'etiqueta personalizaos, non incluyíos nos formatos predefiníos. Pa ello, escueyi «Usuariu» na caxa de llista <emph>Triba</emph>. La llingüeta <emph>Opciones</emph> dexa especificar si van crease toles etiquetes o namái delles concretes."
#. JxMzr
#: labels.xhp
@@ -17078,7 +17078,7 @@ msgctxt ""
"par_id3153093\n"
"help.text"
msgid "The language you select applies to the whole document."
-msgstr "L'idioma escoyíu aplicar al documentu enteru."
+msgstr "L'idioma escoyíu aplícase al documentu ensembre."
#. G4jcE
#: language_select.xhp
@@ -17672,7 +17672,7 @@ msgctxt ""
"par_id3153361\n"
"help.text"
msgid "Release the mouse button once the line has the desired direction and length. You can then draw more lines. End this function by pressing the Esc key or by clicking the <emph>Select</emph> icon from the <emph>Drawing </emph>bar."
-msgstr "Suelte'l botón del mur cuando la llinia algame la direición y llargor deseyaes. De siguío, va poder dibuxar más llinies. Zarru esta función calcando la tecla Esc o faciendo clic nel iconu <emph>Seleición</emph> de la barra <emph>Dibuxu</emph>."
+msgstr "Suelta'l botón del mur cuando la llinia algame la direición y llargor deseyaes. De siguío, vas poder dibuxar más llinies. Zarra esta función calcando la tecla Esc o faciendo clic nel iconu <emph>Esbillar</emph> de la barra <emph>Dibuxu</emph>."
#. NjGFB
#: line_intext.xhp
@@ -19814,7 +19814,7 @@ msgctxt ""
"par_id3147335\n"
"help.text"
msgid "On the <emph>General</emph> tab page, select the measurement unit. Close the dialog with <emph>OK</emph>."
-msgstr "Na ficha <emph>Xeneral</emph>, escueya la unidá de midida. Zarru'l diálogu faciendo clic en <emph>Aceutar</emph>."
+msgstr "Na llingüeta <emph>Xeneral</emph>, escueyi la unidá de midida. Zarra'l diálogu calcando <emph>Aceutar</emph>."
#. 8VEM5
#: measurement_units.xhp
@@ -25268,7 +25268,7 @@ msgctxt ""
"par_idN10758\n"
"help.text"
msgid "Choose <emph>Tools - Customize</emph>, and click the <emph>Menus</emph> tab."
-msgstr "Escueya <emph>Ferramientes - Personalizar</emph> y faiga clic na ficha <emph>Menúes</emph>."
+msgstr "Escueyi <emph>Ferramientes - Personalizar</emph> y calca na llingüeta <emph>Menús</emph>."
#. ideyn
#: scripting.xhp
@@ -25682,7 +25682,7 @@ msgctxt ""
"par_idN10B5D\n"
"help.text"
msgid "Click the <emph>Events</emph> tab of the Properties dialog."
-msgstr "Faiga clic na ficha <emph>Eventos</emph> del diálogu Propiedaes."
+msgstr "Calca na llingüeta <emph>Eventos</emph> del diálogu Propiedaes."
#. EjEFv
#: scripting.xhp
@@ -25727,7 +25727,7 @@ msgctxt ""
"par_idN10B87\n"
"help.text"
msgid "Click the <emph>Events</emph> tab of the Properties dialog."
-msgstr "Faiga clic na ficha <emph>Eventos</emph> del diálogu Propiedaes."
+msgstr "Calca na llingüeta <emph>Eventos</emph> del diálogu Propiedaes."
#. JiPEE
#: scripting.xhp
@@ -27698,7 +27698,7 @@ msgctxt ""
"par_id3145646\n"
"help.text"
msgid "To change tab type, click the tab you want to change on the ruler, then right-click to open the context menu."
-msgstr "Pa camudar el tipu de ficha, faiga clic na ficha que deseye camudar de la regla; de siguío, faiga clic col botón derechu p'abrir el menú contestual."
+msgstr "Pa camudar la triba de tabulador, calca nel tabulador que deseyes camudar de la regla; de siguío, calca col botón derechu p'abrir el menú contestual."
#. aS2C9
#: tabs.xhp
@@ -29120,7 +29120,7 @@ msgctxt ""
"par_idN10665\n"
"help.text"
msgid "Click the <emph>Outline</emph> tab to open outline view."
-msgstr "Faiga clic na ficha <emph>Esquema</emph> p'abrir la vista d'esquema."
+msgstr "Calca na llingüeta <emph>Esquema</emph> p'abrir la vista d'esquema."
#. RHrbx
#: undo_formatting.xhp
@@ -29948,7 +29948,7 @@ msgctxt ""
"par_idN109FC\n"
"help.text"
msgid "In the <emph>XML Filter</emph> dialog, click the <emph>General</emph> tab, and define the properties of the filter."
-msgstr "Nel diálogu <emph>Filtru XML</emph>, faiga clic na ficha <emph>Xeneral</emph> y defina les propiedaes del filtru."
+msgstr "Nel diálogu <emph>Peñera XML</emph>, calca na llingüeta <emph>Xeneral</emph> y defini les propiedaes de la peñera."
#. 8M2d6
#: xsltfilter_create.xhp
diff --git a/source/ast/helpcontent2/source/text/shared/optionen.po b/source/ast/helpcontent2/source/text/shared/optionen.po
index 93ad4350da3..b8ad7cc370d 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: 2023-12-04 15:06+0100\n"
-"PO-Revision-Date: 2024-03-07 07:49+0000\n"
+"PO-Revision-Date: 2024-03-14 14:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-24-2/textsharedoptionen/ast/>\n"
"Language: ast\n"
@@ -95,7 +95,7 @@ msgctxt ""
"par_id631696600350892\n"
"help.text"
msgid "On the top right menu (☰), choose <menuitem>Options</menuitem>."
-msgstr ""
+msgstr "Nel menú na derecha cimera (☰), escueyi <menuitem>Opciones</menuitem>."
#. qGR9U
#: 01000000.xhp
@@ -4469,7 +4469,7 @@ msgctxt ""
"par_id3153541\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/optappearancepage/colorschemelb\">Selects the color scheme you want to use.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optappearancepage/colorschemelb\">Escueye l'esquema de color que deseya utilizar.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optappearancepage/colorschemelb\">Escueye l'esquema de color que quies utilizar.</ahelp>"
#. z8ZWF
#: 01012000.xhp
@@ -18221,7 +18221,7 @@ msgctxt ""
"par_idN10564\n"
"help.text"
msgid "The dialog has the following tab pages:"
-msgstr "El diálogu cunta coles siguientes fiches:"
+msgstr "El diálogu cunta coles siguientes llingüetes:"
#. qTkAE
#: viewcertificate_c.xhp
diff --git a/source/ast/helpcontent2/source/text/simpress/01.po b/source/ast/helpcontent2/source/text/simpress/01.po
index 4eddd98d178..095ecec58a4 100644
--- a/source/ast/helpcontent2/source/text/simpress/01.po
+++ b/source/ast/helpcontent2/source/text/simpress/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: 2023-12-04 15:06+0100\n"
-"PO-Revision-Date: 2024-03-07 07:49+0000\n"
+"PO-Revision-Date: 2024-03-14 14:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-24-2/textsimpress01/ast/>\n"
"Language: ast\n"
@@ -1859,7 +1859,7 @@ msgctxt ""
"par_idN10697\n"
"help.text"
msgid "The <emph>Header and Footer</emph> dialog contains the following tab pages:"
-msgstr "El diálogu <emph>Testera y pie de páxina</emph> contién les siguientes fiches:"
+msgstr "El diálogu <emph>Testera y pie de páxina</emph> contién les llingüetes siguientes:"
#. vaXNa
#: 03152000.xhp
@@ -2930,7 +2930,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Date (fixed)"
-msgstr "Fecha (fixa)"
+msgstr "Data (fixa)"
#. fVAhk
#: 04990100.xhp
@@ -4496,7 +4496,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Hyphenation"
-msgstr "Separtamientu silábicu"
+msgstr "Guionáu"
#. n6Ywh
#: 06030000.xhp
@@ -4505,7 +4505,7 @@ msgctxt ""
"hd_id3154011\n"
"help.text"
msgid "<link href=\"text/simpress/01/06030000.xhp\">Hyphenation</link>"
-msgstr "<link href=\"text/simpress/01/06030000.xhp\">Separtamientu silábicu</link>"
+msgstr "<link href=\"text/simpress/01/06030000.xhp\">Guionáu</link>"
#. zdARD
#: 06030000.xhp
@@ -8258,7 +8258,7 @@ msgctxt ""
"par_idN1056E\n"
"help.text"
msgid "The dialog contains the following tab pages:"
-msgstr "El diálogu contién les siguientes fiches:"
+msgstr "El diálogu contién les siguientes llingüetes:"
#. WDEqw
#: effectoptionseffect.xhp
diff --git a/source/ast/helpcontent2/source/text/simpress/02.po b/source/ast/helpcontent2/source/text/simpress/02.po
index ede3daa8c48..d9e41220dff 100644
--- a/source/ast/helpcontent2/source/text/simpress/02.po
+++ b/source/ast/helpcontent2/source/text/simpress/02.po
@@ -4,9 +4,9 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2023-12-04 15:06+0100\n"
-"PO-Revision-Date: 2024-01-23 09:45+0000\n"
+"PO-Revision-Date: 2024-03-18 00:38+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
-"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsimpress02/ast/>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-24-2/textsimpress02/ast/>\n"
"Language: ast\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
@@ -59,7 +59,7 @@ msgctxt ""
"par_id3148772\n"
"help.text"
msgid "<image id=\"img_id3156067\" src=\"cmd/lc_hideslide.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3156067\">Icon Hide Slide</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3156067\" src=\"cmd/lc_hideslide.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3156067\">Iconu Anubrir la diapositiva</alt></image>"
#. sLDAL
#: 04010000.xhp
@@ -1067,7 +1067,7 @@ msgctxt ""
"par_id3154104\n"
"help.text"
msgid "To display the <menuitem>Color Bar</menuitem>, choose <menuitem>View - Color Bar</menuitem>."
-msgstr ""
+msgstr "P'amosar la <menuitem>barra de colores</menuitem>, escueyi <menuitem>Ver - Barra de colores</menuitem>."
#. 7z8fd
#: 10030000.xhp
@@ -1076,7 +1076,7 @@ msgctxt ""
"par_id3154602\n"
"help.text"
msgid "<image id=\"img_id3154790\" src=\"cmd/lc_interactivetransparence.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154790\">Icon Transparency</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154790\" src=\"cmd/lc_interactivetransparence.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154790\">Iconu Tresparencia</alt></image>"
#. xZb79
#: 10030000.xhp
@@ -1112,7 +1112,7 @@ msgctxt ""
"par_id3151311\n"
"help.text"
msgid "To display the <menuitem>Color Bar</menuitem>, choose <menuitem>View - Color Bar</menuitem>."
-msgstr ""
+msgstr "P'amosar la <menuitem>barra de colores</menuitem>, escueyi <menuitem>Ver - Barra de colores</menuitem>."
#. HMYUP
#: 10030000.xhp
@@ -1121,7 +1121,7 @@ msgctxt ""
"par_id3150990\n"
"help.text"
msgid "<image id=\"img_id3151102\" src=\"cmd/lc_interactivegradient.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151102\">Icon Gradient</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151102\" src=\"cmd/lc_interactivegradient.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151102\">Iconu Dilíu</alt></image>"
#. nVb58
#: 10030000.xhp
@@ -3047,7 +3047,7 @@ msgctxt ""
"par_id3145593\n"
"help.text"
msgid "<ahelp hid=\".uno:Cube\">Draws a filled cube where you drag in the slide. To draw a 3D rectangle, hold down <keycode>Shift</keycode> while you drag.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:Cube\">Dibuxa un cubu rellenu al abasnar na diapositiva. Pa dibuxar un reutángulu 3D, caltén calcada la tecla <keycode>Mayús</keycode> al abasnar.</ahelp>"
#. DG2Aa
#: 10090000.xhp
diff --git a/source/ast/helpcontent2/source/text/simpress/guide.po b/source/ast/helpcontent2/source/text/simpress/guide.po
index 2fd3eb7f696..90c03c8d675 100644
--- a/source/ast/helpcontent2/source/text/simpress/guide.po
+++ b/source/ast/helpcontent2/source/text/simpress/guide.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: 2023-12-04 15:06+0100\n"
-"PO-Revision-Date: 2024-01-18 09:45+0000\n"
+"PO-Revision-Date: 2024-03-13 08:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
-"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsimpressguide/ast/>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-24-2/textsimpressguide/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: Weblate 5.1.1\n"
+"X-Generator: Weblate 5.3.1\n"
"X-POOTLE-MTIME: 1535978253.000000\n"
#. S83CC
@@ -113,7 +113,7 @@ msgctxt ""
"par_id31506541\n"
"help.text"
msgid "The Status bar displays \"Shape selected\". The Custom Shapes can be viewed in a 2D mode or in a 3D mode. At any time, you can switch the view between the two modes. You use the Basic Shapes, Symbol Shapes, and the following icons on the Drawing toolbar to create Custom Shapes. The Custom Shapes can be changed using the 3D Settings toolbar. They do not form a 3D scene, they cannot be illuminated by more than one light source, they show no reflections, and there are some more limitations. You can convert them to a 3D scene, but then they are no longer Custom Shapes. Custom Shapes in 2D or 3D mode can be exported to and imported from Microsoft Office formats."
-msgstr "La barra d'estáu amuesa \"Forma escoyida\". Pue visualizar les formes personalizaes en mou 2D o 3D. Pue camudar la vista ente los dos maneres en cualquier momentu. Pa crear formes personalizaes, pue usar les formes básiques, les formes de símbolos y los iconos posteriores de la barra de ferramientes \"Dibuxu\". Les formes personalizaes puen camudase usando la barra de ferramientes \"Configuración 3D\". Nun formen una escena 3D, nun puen allumase más que por una fonte de lluz, nun s'amuesen los reflexos, y hai delles llimitaciones más. Pue convertiles a una escena 3D, pero entós yá nun van ser formes personalizaes. Les formes personalizaes en mou 2D y 3D puen importase y esportase al formatu de Microsoft Office."
+msgstr "La barra d'estáu amuesa «Forma esbillada». Pues visualizar les formes personalizaes en mou 2D o 3D. Pues camudar la vista ente los dos moos en cualquier momentu. Pa crear formes personalizaes, pues usar les formes básiques, les formes de símbolos y los iconos siguientes de la barra de ferramientes Dibuxu. Les formes personalizaes puen camudase usando la barra de ferramientes Axustes 3D. Nun formen una escena 3D, nun puen allumase más que por una fonte de lluz, nun s'amuesen los reflexos, y hai delles llimitaciones más. Pues convertiles a una escena 3D, pero entós yá nun van ser formes personalizaes. Les formes personalizaes en mou 2D y 3D puen importase y esportase a los formatos del Office de Microsoft."
#. EQ8nD
#: 3d_create.xhp
@@ -644,7 +644,7 @@ msgctxt ""
"par_id2629474\n"
"help.text"
msgid "If you select \"Curve\", \"Polygon\", or \"Freeform Line\", the dialog closes and you can draw your own path. If the drawing is finished and not canceled, the created path is removed from the document and inserted as a motion path effect."
-msgstr "Si escueyes, \"Curva\", \"Polígonu\", o \"Llinia de Forma Llibre\", el diálogu zarros y pue dibuxar la so ruta deseyada. Si'l dibuxu esta completáu y non encaboxáu, la ruta creada ta removida del documentu y inxertáu como un efeutu de ruta de moción."
+msgstr "Si escueyes «Curva», «Polígonu» o «Llinia de forma llibre», el diálogu zarraráse y pues dibuxar el to camín deseyáu. Si'l dibuxu ta completáu y non encaboxáu, la ruta creada desaníciase del documentu y s'inxerta como un efeutu de ruta de moción."
#. 2w7Di
#: animated_objects.xhp
@@ -2957,7 +2957,7 @@ msgctxt ""
"par_id3156382\n"
"help.text"
msgid "Choose <emph>Format - Line</emph>, and then click the <emph>Line Styles</emph> tab."
-msgstr "Escueya <emph>Formatu - Llinia</emph> y faiga clic na ficha <emph>Estilos de llinia</emph>."
+msgstr "Escueyi <emph>Formatu - Llinia</emph> y calca na llingüeta <emph>Estilos de llinia</emph>."
#. XyRPn
#: line_arrow_styles.xhp
@@ -3002,7 +3002,7 @@ msgctxt ""
"par_id3153070\n"
"help.text"
msgid "Choose <emph>Format - Line</emph>, and then click the <emph>Arrow Styles</emph> tab."
-msgstr "Escueya <emph>Formatu - Llinia</emph> y faiga clic na ficha <emph>Estilos de flecha</emph>."
+msgstr "Escueyi <emph>Formatu - Llinia</emph> y calca na llingüeta <emph>Estilos de flecha</emph>."
#. B2qaq
#: line_arrow_styles.xhp
diff --git a/source/ast/helpcontent2/source/text/swriter/00.po b/source/ast/helpcontent2/source/text/swriter/00.po
index 39067020279..963df8598e4 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: 2023-12-15 12:24+0100\n"
-"PO-Revision-Date: 2024-02-25 20:37+0000\n"
+"PO-Revision-Date: 2024-03-14 14:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-24-2/textswriter00/ast/>\n"
"Language: ast\n"
@@ -1040,7 +1040,7 @@ msgctxt ""
"par_id3154654\n"
"help.text"
msgid "Choose <menuitem>Insert - Field</menuitem>"
-msgstr ""
+msgstr "Escueyi <menuitem>Inxertar - Campu</menuitem>."
#. L4pYz
#: 00000404.xhp
@@ -1067,7 +1067,7 @@ msgctxt ""
"par_id51689980575206\n"
"help.text"
msgid "Choose <menuitem>Reference - Field</menuitem>."
-msgstr ""
+msgstr "Escueyi <menuitem>Referencia - Campu</menuitem>."
#. nAVFo
#: 00000404.xhp
@@ -1085,7 +1085,7 @@ msgctxt ""
"par_id521689980363695\n"
"help.text"
msgid "<image src=\"cmd/lc_insertfieldctrl.svg\" id=\"img_id541689980363696\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id601689980363697\">Icon Insert Field</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_insertfieldctrl.svg\" id=\"img_id541689980363696\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id601689980363697\">Iconu Inxertar un campu</alt></image>"
#. wdYGC
#: 00000404.xhp
@@ -1094,7 +1094,7 @@ msgctxt ""
"par_id601689980363699\n"
"help.text"
msgid "Insert Field"
-msgstr ""
+msgstr "Inxertar un campu"
#. N7Gis
#: 00000404.xhp
@@ -1130,7 +1130,7 @@ msgctxt ""
"par_id3146325\n"
"help.text"
msgid "<variable id=\"feldbefehlseitennummer\">Choose <menuitem>Insert - Field - Page Number</menuitem></variable>"
-msgstr ""
+msgstr "<variable id=\"feldbefehlseitennummer\">Escueyi <menuitem>Inxertar - Campu - Númberu de páxina</menuitem></variable>"
#. DFTjZ
#: 00000404.xhp
diff --git a/source/ast/helpcontent2/source/text/swriter/01.po b/source/ast/helpcontent2/source/text/swriter/01.po
index 3238fc5611e..64ec9969d66 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: 2023-12-04 15:06+0100\n"
-"PO-Revision-Date: 2024-03-07 07:49+0000\n"
+"PO-Revision-Date: 2024-03-10 03:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-24-2/textswriter01/ast/>\n"
"Language: ast\n"
@@ -16241,7 +16241,7 @@ msgctxt ""
"hd_id3149882\n"
"help.text"
msgid "Hyphenation"
-msgstr "Separtamientu silábicu"
+msgstr "Guionáu"
#. GTZB7
#: 05030200.xhp
@@ -25079,7 +25079,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Hyphenation"
-msgstr "Separtamientu silábicu"
+msgstr "Guionáu"
#. v7yJY
#: 06030000.xhp
@@ -25169,7 +25169,7 @@ msgctxt ""
"par_id3150019\n"
"help.text"
msgid "To end hyphenation, click <emph>Close</emph>. The hyphenation that is applied already will not be reverted. You can use <emph>Edit - Undo</emph> to undo all hyphenation that was applied while the Hyphenation dialog was open."
-msgstr "Pa finar el separtamientu silábicu, faiga clic en <emph>Zarrar</emph>. El separtamientu silábicu yá fechu nun va revertise. Pue usar <emph>Editar - Desfacer</emph>pa desfacer toles separaciones silábiques realizaes mientres el diálogu de \"Separtamientu silábicu\" tuvo abiertu."
+msgstr "Pa finar el guionáu, calca en <emph>Zarrar</emph>. El guionáu yá fechu nun va revertise. Pues usar <emph>Editar - Desfacer</emph> pa desfacer toles separaciones silábiques realizaes mientres el diálogu Guionáu tuvo abiertu."
#. qc5UE
#: 06030000.xhp
@@ -25241,7 +25241,7 @@ msgctxt ""
"par_id3149687\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/hyphenate/worded\">Displays the hyphenation suggestion(s) for the selected word.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/hyphenate/worded\">Amuesa les suxerencies de separación silábica pa la pallabra seleicionada.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/hyphenate/worded\">Amuesa les suxerencies de guionáu pa la pallabra esbillada.</ahelp>"
#. wK7ZD
#: 06030000.xhp
@@ -28508,7 +28508,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Frame and Object"
-msgstr ""
+msgstr "Marcu y oxetu"
#. jAXTw
#: format_frame.xhp
@@ -28517,7 +28517,7 @@ msgctxt ""
"hd_id891692882707233\n"
"help.text"
msgid "<variable id=\"h1\"><link href=\"text/swriter/01/format_frame.xhp\">Frame and Object</link></variable>"
-msgstr ""
+msgstr "<variable id=\"h1\"><link href=\"text/swriter/01/format_frame.xhp\">Marcu y oxetu</link></variable>"
#. QDG8c
#: format_frame.xhp
@@ -28553,7 +28553,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Text Box and Shape"
-msgstr ""
+msgstr "Caxa de testu y forma"
#. 5XTkz
#: format_object.xhp
@@ -28562,7 +28562,7 @@ msgctxt ""
"par_idN10548\n"
"help.text"
msgid "<link href=\"text/swriter/01/format_object.xhp\">Text Box and Shape</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/format_object.xhp\">Caxa de testu y forma</link>"
#. RfLw2
#: format_object.xhp
@@ -28580,7 +28580,7 @@ msgctxt ""
"par_id201692832345816\n"
"help.text"
msgid "Choose <menuitem>Format - Text Box and Shape</menuitem>."
-msgstr ""
+msgstr "Escueyi <menuitem>Formatu - Caxa de testu y forma</menuitem>."
#. UWnvc
#: format_object.xhp
diff --git a/source/ast/helpcontent2/source/text/swriter/02.po b/source/ast/helpcontent2/source/text/swriter/02.po
index 57100aa9207..f8b80cf8b1f 100644
--- a/source/ast/helpcontent2/source/text/swriter/02.po
+++ b/source/ast/helpcontent2/source/text/swriter/02.po
@@ -4,9 +4,9 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2023-11-02 14:48+0100\n"
-"PO-Revision-Date: 2024-01-23 09:45+0000\n"
+"PO-Revision-Date: 2024-03-13 08:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
-"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textswriter02/ast/>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-24-2/textswriter02/ast/>\n"
"Language: ast\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
@@ -3695,7 +3695,7 @@ msgctxt ""
"hd_id3151175\n"
"help.text"
msgid "<link href=\"text/swriter/02/18030100.xhp\">Date</link>"
-msgstr "<link href=\"text/swriter/02/18030100.xhp\">Fecha</link>"
+msgstr "<link href=\"text/swriter/02/18030100.xhp\">Data</link>"
#. FfGqq
#: 18030100.xhp
diff --git a/source/ast/helpcontent2/source/text/swriter/guide.po b/source/ast/helpcontent2/source/text/swriter/guide.po
index 960b509f037..ff413fc8209 100644
--- a/source/ast/helpcontent2/source/text/swriter/guide.po
+++ b/source/ast/helpcontent2/source/text/swriter/guide.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2023-12-04 15:06+0100\n"
-"PO-Revision-Date: 2024-03-07 07:49+0000\n"
+"POT-Creation-Date: 2024-03-18 13:16+0100\n"
+"PO-Revision-Date: 2024-03-13 08:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-24-2/textswriterguide/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 5.3.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542028604.000000\n"
#. XAt2Y
@@ -3623,7 +3623,7 @@ msgctxt ""
"par_id3151212\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Insert - Field - More Fields</item>, and then click the <item type=\"menuitem\">Functions</item> tab."
-msgstr "Escueya <item type=\"menuitem\">Inxertar - Campos - Otros</item> y de siguío faiga clic na ficha <item type=\"menuitem\">Funciones</item>."
+msgstr "Escueyi <item type=\"menuitem\">Inxertar - Campos - Otros</item> y de siguío calca na llingüeta <item type=\"menuitem\">Funciones</item>."
#. d5FDU
#: conditional_text.xhp
@@ -3785,7 +3785,7 @@ msgctxt ""
"par_id3150537\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Insert - Field - More Fields</item>, and then click the <item type=\"menuitem\">Functions</item> tab."
-msgstr "Escueya <item type=\"menuitem\">Inxertar - Campos - Otros</item> y de siguío faiga clic na ficha <item type=\"menuitem\">Funciones</item>."
+msgstr "Escueyi <item type=\"menuitem\">Inxertar - Campos - Otros</item> y de siguío calca na llingüeta <item type=\"menuitem\">Funciones</item>."
#. tzesF
#: conditional_text2.xhp
@@ -4811,7 +4811,7 @@ msgctxt ""
"par_id3145776\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Insert - Field - More Fields</item> and click the <item type=\"menuitem\">Functions</item> tab."
-msgstr "Escueya <item type=\"menuitem\">Inxertar - Campos - Otros</item> y de siguío faiga clic na ficha <item type=\"menuitem\">Funciones</item>."
+msgstr "Escueyi <item type=\"menuitem\">Inxertar - Campos - Otros</item> y de siguío calca na llingüeta <item type=\"menuitem\">Funciones</item>."
#. mvGzC
#: fields_enter.xhp
@@ -6206,7 +6206,7 @@ msgctxt ""
"par_id3155620\n"
"help.text"
msgid "Choose <emph>View - Styles</emph>."
-msgstr ""
+msgstr "Escueyi <emph>Ver - Estilos</emph>."
#. GChRw
#: footnote_with_line.xhp
@@ -12191,7 +12191,7 @@ msgctxt ""
"par_idN10727\n"
"help.text"
msgid "Choose <emph>View - Styles</emph>."
-msgstr ""
+msgstr "Escueyi <emph>Ver - Estilos</emph>."
#. eFUAG
#: pageorientation.xhp
@@ -12218,7 +12218,7 @@ msgctxt ""
"par_idN10751\n"
"help.text"
msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
-msgstr "Na ficha <emph>Organizador</emph>, asigne un nome al estilu de páxina nel cuadru <emph>Nome</emph>, por exemplu \"El mio paisaxe\"."
+msgstr "Na llingüeta <emph>Organizador</emph>, asigna un nome al estilu de páxina nel cuadru <emph>Nome</emph>; por exemplu, «El mio paisaxe»."
#. i7WYZ
#: pageorientation.xhp
@@ -12236,7 +12236,7 @@ msgctxt ""
"par_idN10775\n"
"help.text"
msgid "Click the <emph>Page</emph> tab."
-msgstr "Faiga clic na ficha <emph>Páxina</emph>."
+msgstr "Calca na llingüeta <emph>Páxina</emph>."
#. ZNfQD
#: pageorientation.xhp
@@ -13307,7 +13307,7 @@ msgctxt ""
"par_id3149841\n"
"help.text"
msgid "Choose <emph>View - Styles</emph>."
-msgstr ""
+msgstr "Escueyi <emph>Ver - Estilos</emph>."
#. 62pGH
#: printer_tray.xhp
@@ -13316,7 +13316,7 @@ msgctxt ""
"par_id3156108\n"
"help.text"
msgid "Click the <item type=\"menuitem\">Page Styles</item> icon."
-msgstr "Faiga clic nel símbolu <item type=\"menuitem\">Estilos de páxina</item>."
+msgstr "Calca nel iconu <item type=\"menuitem\">Estilos de páxina</item>."
#. HKkzj
#: printer_tray.xhp
@@ -15757,13 +15757,13 @@ msgctxt ""
msgid "You can manually check the spelling and grammar of a text selection or the entire document."
msgstr "Pue revisar manualmente la ortografía y la gramática d'una seleición de testu o de tol documentu."
-#. 66nTi
+#. TV7Aa
#: spellcheck_dialog.xhp
msgctxt ""
"spellcheck_dialog.xhp\n"
"par_id0525200902184476\n"
"help.text"
-msgid "To check the spelling and the grammar of a text, the appropriate dictionaries must be installed. For many languages three different dictionaries exist: a spellchecker, a hyphenation dictionary, and a thesaurus. Each dictionary covers one language only. Grammar checkers can be downloaded and installed as extensions. See the <link href=\"https://extensions.libreoffice.org/extension-center?getCategories=Dictionary\">extensions web page</link>."
+msgid "To check the spelling and the grammar of a text, the appropriate dictionaries must be installed. For many languages three different dictionaries exist: a spellchecker, a hyphenation dictionary, and a thesaurus. Each dictionary covers one language only. Grammar checkers can be downloaded and installed as extensions. See the <link href=\"https://extensions.libreoffice.org/?Tags[]=50\">extensions web page</link>."
msgstr ""
#. X3zXc
@@ -15890,7 +15890,7 @@ msgctxt ""
"par_id3156114\n"
"help.text"
msgid "Choose <emph>View - Styles</emph>."
-msgstr ""
+msgstr "Escueyi <emph>Ver - Estilos</emph>."
#. Lkn58
#: stylist_fillformat.xhp
@@ -15899,7 +15899,7 @@ msgctxt ""
"par_id3153128\n"
"help.text"
msgid "Click the icon of the style category that you want to apply."
-msgstr "Faiga clic nel símbolu de la categoría d'estilu que deseye aplicar."
+msgstr "Calca nel iconu de la categoría d'estilu que deseyes aplicar."
#. FWgRh
#: stylist_fillformat.xhp
@@ -18995,7 +18995,7 @@ msgctxt ""
"par_id300920161915587772\n"
"help.text"
msgid "<link href=\"text/swriter/guide/change_header.xhp\">Creating a Page Style Based on the Current Page</link>."
-msgstr ""
+msgstr "<link href=\"text/swriter/guide/change_header.xhp\">Crear un estilu de páxina basáu na páxina actual</link>."
#. 5PYCw
#: using_hyphen.xhp
@@ -19004,7 +19004,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Hyphenation"
-msgstr "Separtamientu silábicu"
+msgstr "Guionáu"
#. UnByp
#: using_hyphen.xhp
@@ -19022,7 +19022,7 @@ msgctxt ""
"hd_id3149695\n"
"help.text"
msgid "<variable id=\"using_hyphen\"><link href=\"text/swriter/guide/using_hyphen.xhp\">Hyphenation</link></variable>"
-msgstr "<variable id=\"using_hyphen\"><link href=\"text/swriter/guide/using_hyphen.xhp\">Separtamientu silábicu</link></variable>"
+msgstr "<variable id=\"using_hyphen\"><link href=\"text/swriter/guide/using_hyphen.xhp\">Guionáu</link></variable>"
#. FGgYr
#: using_hyphen.xhp
@@ -19193,7 +19193,7 @@ msgctxt ""
"hd_id3145417\n"
"help.text"
msgid "Manual Hyphenation"
-msgstr "El separtamientu silábicu manual"
+msgstr "Guionáu manual"
#. kBNEq
#: using_hyphen.xhp
diff --git a/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po
index e1199e7f78d..3ba1cfb9ad8 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: 2024-01-08 15:05+0100\n"
-"PO-Revision-Date: 2024-03-06 07:37+0000\n"
+"PO-Revision-Date: 2024-03-11 08:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-24-2/officecfgregistrydataorgopenofficeofficeui/ast/>\n"
"Language: ast\n"
@@ -812,7 +812,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Hyphenation..."
-msgstr "~Separtamientu silábicu..."
+msgstr "~Guionáu..."
#. AQgBD
#: CalcCommands.xcu
@@ -863,7 +863,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Pivot Table Filter"
-msgstr "Peñera Pivot Table"
+msgstr "Peñera de tabla dinámica"
#. BGjMw
#: CalcCommands.xcu
@@ -4533,14 +4533,13 @@ msgstr ""
#. BFRiL
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:EditAnnotation\n"
"Label\n"
"value.text"
msgid "Edit Comment"
-msgstr "Comentariu Siguiente"
+msgstr "Editar el comentariu"
#. hHc5a
#: CalcCommands.xcu
@@ -8851,7 +8850,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Hyphenation"
-msgstr "~Separtamientu silábicu"
+msgstr "~Guionáu"
#. CQf4G
#: DrawImpressCommands.xcu
@@ -35794,7 +35793,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Hyphenation..."
-msgstr "~Separtamientu silábicu..."
+msgstr "~Guionáu..."
#. ngTBv
#: WriterCommands.xcu
diff --git a/source/ast/sc/messages.po b/source/ast/sc/messages.po
index 287da9c7e76..2545c139dde 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: 2024-01-08 15:05+0100\n"
-"PO-Revision-Date: 2024-03-06 07:37+0000\n"
+"PO-Revision-Date: 2024-03-11 08:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-24-2/scmessages/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 5.3.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542022495.000000\n"
#. kBovX
@@ -925,7 +925,7 @@ msgstr "Etiquetes de les columnes"
#: sc/inc/globstr.hrc:162
msgctxt "STR_SELCOUNT"
msgid "Selected: %1, %2"
-msgstr ""
+msgstr "%1 y %2 esbillaes"
#. iUrsE
#. STR_SELCOUNT_ROWARG is %1 of STR_SELCOUNT. %d of STR_SELCOUNT_ROWARG is number of rows
diff --git a/source/ast/scp2/source/calc.po b/source/ast/scp2/source/calc.po
index 4b16e448935..b763eeb8665 100644
--- a/source/ast/scp2/source/calc.po
+++ b/source/ast/scp2/source/calc.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: 2023-06-07 13:57+0200\n"
-"PO-Revision-Date: 2023-06-08 18:35+0000\n"
+"PO-Revision-Date: 2024-03-14 09:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
-"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/scp2sourcecalc/ast/>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-24-2/scp2sourcecalc/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: Weblate 4.15.2\n"
+"X-Generator: Weblate 5.3.1\n"
"X-POOTLE-MTIME: 1492007708.000000\n"
#. rTGYE
@@ -86,7 +86,7 @@ msgctxt ""
"STR_DESC_MODULE_PRG_CALC_HELP\n"
"LngText.text"
msgid "Help about %PRODUCTNAME Calc"
-msgstr "Ayuda tocante a %PRODUCTNAME Calc"
+msgstr "Ayuda tocante al Calc de %PRODUCTNAME"
#. pturF
#: module_calc.ulf
diff --git a/source/ast/scp2/source/draw.po b/source/ast/scp2/source/draw.po
index 1575f06549f..c966aca4ad8 100644
--- a/source/ast/scp2/source/draw.po
+++ b/source/ast/scp2/source/draw.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: 2022-10-10 13:36+0200\n"
-"PO-Revision-Date: 2023-12-12 12:36+0000\n"
-"Last-Translator: Xandru Martino Ruz <xandrumartino@softastur.org>\n"
-"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/scp2sourcedraw/ast/>\n"
+"PO-Revision-Date: 2024-03-14 09:37+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-24-2/scp2sourcedraw/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 5.3.1\n"
"X-POOTLE-MTIME: 1390255726.000000\n"
#. txsAG
@@ -86,7 +86,7 @@ msgctxt ""
"STR_DESC_MODULE_PRG_DRAW_HELP\n"
"LngText.text"
msgid "Help about %PRODUCTNAME Draw"
-msgstr "Ayuda so %PRODUCTNAME Draw"
+msgstr "Ayuda tocante al Draw de %PRODUCTNAME"
#. MrkUJ
#: registryitem_draw.ulf
diff --git a/source/ast/scp2/source/impress.po b/source/ast/scp2/source/impress.po
index 82a63e98fd7..c6ff5d140ea 100644
--- a/source/ast/scp2/source/impress.po
+++ b/source/ast/scp2/source/impress.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: 2022-10-10 13:36+0200\n"
-"PO-Revision-Date: 2023-04-07 12:33+0000\n"
+"PO-Revision-Date: 2024-03-14 09:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
-"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/scp2sourceimpress/ast/>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-24-2/scp2sourceimpress/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: Weblate 4.15.2\n"
+"X-Generator: Weblate 5.3.1\n"
"X-POOTLE-MTIME: 1429823638.000000\n"
#. USjxN
@@ -86,7 +86,7 @@ msgctxt ""
"STR_DESC_MODULE_PRG_IMPRESS_HELP\n"
"LngText.text"
msgid "Help about %PRODUCTNAME Impress"
-msgstr "Ayuda tocante a Impress de %PRODUCTNAME"
+msgstr "Ayuda tocante al Impress de %PRODUCTNAME"
#. Bg4eB
#: registryitem_impress.ulf
diff --git a/source/ast/scp2/source/ooo.po b/source/ast/scp2/source/ooo.po
index c74369bdd50..dfd05bc7c69 100644
--- a/source/ast/scp2/source/ooo.po
+++ b/source/ast/scp2/source/ooo.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-01-10 15:11+0100\n"
-"PO-Revision-Date: 2024-01-11 12:37+0000\n"
+"PO-Revision-Date: 2024-03-10 05:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
-"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/scp2sourceooo/ast/>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-24-2/scp2sourceooo/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: Weblate 5.1.1\n"
+"X-Generator: Weblate 5.3.1\n"
"X-POOTLE-MTIME: 1542022495.000000\n"
#. CYBGJ
@@ -4342,7 +4342,7 @@ msgctxt ""
"STR_DESC_MODULE_EXTENSION_DICTIONARY_AF\n"
"LngText.text"
msgid "Afrikaans spelling dictionary, and hyphenation rules"
-msgstr "Diccionariu ortográficu y separación silábica pal afrikaans"
+msgstr "Diccionariu ortográficu y guionáu pal afrikaans"
#. iZib4
#: module_ooo.ulf
@@ -4414,7 +4414,7 @@ msgctxt ""
"STR_DESC_MODULE_EXTENSION_DICTIONARY_BG\n"
"LngText.text"
msgid "Bulgarian spelling dictionary, hyphenation rules, and thesaurus"
-msgstr "Diccionariu ortográficu, patrones de separación silábica y diccionariu de sinónimos pal búlgaru"
+msgstr "Diccionariu ortográficu, patrones de guionáu y diccionariu de sinónimos pal búlgaru"
#. BTti9
#: module_ooo.ulf
@@ -4504,7 +4504,7 @@ msgctxt ""
"STR_DESC_MODULE_EXTENSION_DICTIONARY_CA\n"
"LngText.text"
msgid "Catalan spelling dictionary, hyphenation rules, and thesaurus"
-msgstr "Diccionariu ortográficu, patrones de separación silábica y diccionariu de sinónimos pal catalán"
+msgstr "Diccionariu ortográficu, patrones de guionáu y diccionariu de sinónimos pal catalán"
#. CVnGE
#: module_ooo.ulf
@@ -4540,7 +4540,7 @@ msgctxt ""
"STR_DESC_MODULE_EXTENSION_DICTIONARY_CS\n"
"LngText.text"
msgid "Czech spelling dictionary, hyphenation rules, and thesaurus"
-msgstr "Diccionariu de correición ortográficu, regles de separación silábica y diccionariu de sinónimos pal checu"
+msgstr "Diccionariu de correición ortográficu, regles de guionáu y diccionariu de sinónimos pal checu"
#. gS2wr
#: module_ooo.ulf
@@ -4558,7 +4558,7 @@ msgctxt ""
"STR_DESC_MODULE_EXTENSION_DICTIONARY_DA\n"
"LngText.text"
msgid "Danish spelling dictionary, hyphenation rules, and thesaurus"
-msgstr "Diccionariu de correición ortográficu, regles de separación silábica y diccionariu de sinónimos pal danés"
+msgstr "Diccionariu de correición ortográficu, regles de guionáu y diccionariu de sinónimos pal danés"
#. 7swZQ
#: module_ooo.ulf
@@ -4576,7 +4576,7 @@ msgctxt ""
"STR_DESC_MODULE_EXTENSION_DICTIONARY_DE\n"
"LngText.text"
msgid "German (Austria, Germany, Switzerland) spelling dictionaries, hyphenation rules, and thesauri"
-msgstr "Diccionariu de correición ortográficu, regles de separtación silábica y diccionariu de sinónimos pal Alemán (Austria, Alemaña y Suiza)"
+msgstr "Diccionariu de correición ortográficu, regles de guionáu y diccionariu de sinónimos pal Alemán (Austria, Alemaña y Suiza)"
#. CkBTE
#: module_ooo.ulf
@@ -4594,7 +4594,7 @@ msgctxt ""
"STR_DESC_MODULE_EXTENSION_DICTIONARY_EN\n"
"LngText.text"
msgid "English spelling dictionaries, hyphenation rules, thesaurus, and grammar checker"
-msgstr "Correutor ortográficu, regles de xebra de sílabes, sinónimos y correutor gramatical pal inglés"
+msgstr "Correutor ortográficu, regles de guionáu, sinónimos y correutor gramatical pal inglés"
#. 2DiA4
#: module_ooo.ulf
@@ -4612,7 +4612,7 @@ msgctxt ""
"STR_DESC_MODULE_EXTENSION_DICTIONARY_EL\n"
"LngText.text"
msgid "Greek spelling dictionary, and hyphenation rules"
-msgstr "Diccionariu ortográficu griegu, y regles de dixebra silábica"
+msgstr "Diccionariu ortográficu griegu, y regles de guionáu"
#. d5cqB
#: module_ooo.ulf
@@ -4702,7 +4702,7 @@ msgctxt ""
"STR_DESC_MODULE_EXTENSION_DICTIONARY_FR\n"
"LngText.text"
msgid "French spelling dictionary, hyphenation rules, and thesaurus"
-msgstr "Diccionariu de correición ortográficu, regles de separación silábica y diccionariu de sinónimos pal francés"
+msgstr "Diccionariu de correición ortográficu, regles de guionáu y diccionariu de sinónimos pal francés"
#. gFGrA
#: module_ooo.ulf
@@ -4810,7 +4810,7 @@ msgctxt ""
"STR_DESC_MODULE_EXTENSION_DICTIONARY_HU\n"
"LngText.text"
msgid "Hungarian spelling dictionary, hyphenation rules, thesaurus, and grammar checker"
-msgstr "Correutor ortográficu, regles de xebra silábica, sinónimos y correutor gramatical pal húngaru"
+msgstr "Correutor ortográficu, regles de guionáu, sinónimos y correutor gramatical pal húngaru"
#. QDFn9
#: module_ooo.ulf
@@ -4828,7 +4828,7 @@ msgctxt ""
"STR_DESC_MODULE_EXTENSION_DICTIONARY_HR\n"
"LngText.text"
msgid "Croatian spelling dictionary, and hyphenation rules"
-msgstr "Diccionariu d'ortografía y patrones de separación en croata"
+msgstr "Diccionariu d'ortografía y patrones de guionáu en croata"
#. kfnGf
#: module_ooo.ulf
@@ -4882,7 +4882,7 @@ msgctxt ""
"STR_DESC_MODULE_EXTENSION_DICTIONARY_IT\n"
"LngText.text"
msgid "Italian spelling dictionary, hyphenation rules, and thesaurus"
-msgstr "Diccionariu ortográficu, patrones de separación silábica y diccionariu de sinónimos pal italianu"
+msgstr "Diccionariu ortográficu, patrones de guionáu y diccionariu de sinónimos pal italianu"
#. FVsWA
#: module_ooo.ulf
@@ -5044,7 +5044,7 @@ msgctxt ""
"STR_DESC_MODULE_EXTENSION_DICTIONARY_NO\n"
"LngText.text"
msgid "Norwegian (Nynorsk and Bokmal) spelling dictionary, hyphenation rules, and thesaurus"
-msgstr "Diccionariu de correición ortográficu, regles de separación silábica y sinónimos pal noruegu (Nynorsk y Bokmal)"
+msgstr "Diccionariu de correición ortográficu, regles de guionáu y sinónimos pal noruegu (Nynorsk y Bokmal)"
#. FDCJV
#: module_ooo.ulf
@@ -5080,7 +5080,7 @@ msgctxt ""
"STR_DESC_MODULE_EXTENSION_DICTIONARY_PL\n"
"LngText.text"
msgid "Polish spelling dictionary, hyphenation rules, and thesaurus"
-msgstr "Diccionariu de correición ortográficu, regles de separación silábica y diccionariu de sinónimos pal polacu"
+msgstr "Diccionariu de correición ortográficu, regles de guionáu y diccionariu de sinónimos pal polacu"
#. QGpSq
#: module_ooo.ulf
@@ -5099,7 +5099,7 @@ msgctxt ""
"STR_DESC_MODULE_EXTENSION_DICTIONARY_PT_BR\n"
"LngText.text"
msgid "Portuguese (Brazil) spelling Dictionary (1990 Spelling Agreement), and hyphenation rules"
-msgstr "Diccionariu ortográficu (normes ortográfiques de 1990), y regles de separación silábica pal brasileñu"
+msgstr "Diccionariu ortográficu (normes ortográfiques de 1990), y regles de guionáu pal brasileñu"
#. KZETs
#: module_ooo.ulf
@@ -5117,7 +5117,7 @@ msgctxt ""
"STR_DESC_MODULE_EXTENSION_DICTIONARY_PT_PT\n"
"LngText.text"
msgid "European Portuguese spelling dictionary, hyphenation rules, and thesaurus"
-msgstr "Diccionariu de correición ortográficu, regles de separación silábica y diccionariu pal portugués européu"
+msgstr "Diccionariu de correición ortográficu, regles de guionáu y diccionariu pal portugués européu"
#. pBzE7
#: module_ooo.ulf
@@ -5135,7 +5135,7 @@ msgctxt ""
"STR_DESC_MODULE_EXTENSION_DICTIONARY_RO\n"
"LngText.text"
msgid "Romanian spelling dictionary, hyphenation rules, and thesaurus"
-msgstr "Diccionariu ortográficu, patrones de separación silábica y diccionariu de sinónimos pal rumanu"
+msgstr "Diccionariu ortográficu, patrones de guionáu y diccionariu de sinónimos pal rumanu"
#. wUTBC
#: module_ooo.ulf
@@ -5189,7 +5189,7 @@ msgctxt ""
"STR_DESC_MODULE_EXTENSION_DICTIONARY_SK\n"
"LngText.text"
msgid "Slovak spelling dictionary, hyphenation rules, and thesaurus"
-msgstr "Diccionariu de correición ortográficu, regles de separación silábica y de sinónimos pal eslovacu"
+msgstr "Diccionariu de correición ortográficu, regles de guionáu y de sinónimos pal eslovacu"
#. ypzEV
#: module_ooo.ulf
@@ -5207,7 +5207,7 @@ msgctxt ""
"STR_DESC_MODULE_EXTENSION_DICTIONARY_SL\n"
"LngText.text"
msgid "Slovenian spelling dictionary, hyphenation rules, and thesaurus"
-msgstr "Diccionariu de correición ortográficu, regles de separación silábica y de sinónimos pal eslovenu"
+msgstr "Diccionariu de correición ortográficu, regles de guionáu y de sinónimos pal eslovenu"
#. S7shF
#: module_ooo.ulf
@@ -5244,7 +5244,7 @@ msgctxt ""
"STR_DESC_MODULE_EXTENSION_DICTIONARY_SR\n"
"LngText.text"
msgid "Serbian (Cyrillic and Latin) spelling dictionary, and hyphenation rules"
-msgstr "Diccionariu de correición ortográficu, regles de separación silábica y diccionariu pal Serbiu (cirílicu y llatín)"
+msgstr "Diccionariu de correición ortográficu, regles de guionáu y diccionariu pal Serbiu (cirílicu y llatín)"
#. a5sxo
#: module_ooo.ulf
@@ -5298,7 +5298,7 @@ msgctxt ""
"STR_DESC_MODULE_EXTENSION_DICTIONARY_TE\n"
"LngText.text"
msgid "Telugu spelling dictionary, and hyphenation rules"
-msgstr "Diccionariu ortográficu telugu, y regles de dixebra silábica"
+msgstr "Diccionariu ortográficu telugu, y regles de guionáu"
#. w2MSG
#: module_ooo.ulf
@@ -5388,7 +5388,7 @@ msgctxt ""
"STR_DESC_MODULE_EXTENSION_DICTIONARY_ZU\n"
"LngText.text"
msgid "Zulu hyphenation rules"
-msgstr "Regles de separación silábica pal zulú"
+msgstr "Regles de guionáu pal zulú"
#. pxQ5u
#: module_reportbuilder.ulf
diff --git a/source/ast/scp2/source/writer.po b/source/ast/scp2/source/writer.po
index b896325dd56..3e07db93994 100644
--- a/source/ast/scp2/source/writer.po
+++ b/source/ast/scp2/source/writer.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: 2022-10-10 13:36+0200\n"
-"PO-Revision-Date: 2023-04-07 12:33+0000\n"
+"PO-Revision-Date: 2024-03-14 09:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
-"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/scp2sourcewriter/ast/>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-24-2/scp2sourcewriter/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: Weblate 4.15.2\n"
+"X-Generator: Weblate 5.3.1\n"
"X-POOTLE-MTIME: 1390255351.000000\n"
#. V3iDr
@@ -95,7 +95,7 @@ msgctxt ""
"STR_DESC_MODULE_PRG_WRT_HELP\n"
"LngText.text"
msgid "Help about %PRODUCTNAME Writer"
-msgstr "Ayuda tocante a Writer de %PRODUCTNAME"
+msgstr "Ayuda tocante al Writer de %PRODUCTNAME"
#. 5BavU
#: module_writer.ulf
diff --git a/source/ast/sd/messages.po b/source/ast/sd/messages.po
index 24284866a7a..e63731d92aa 100644
--- a/source/ast/sd/messages.po
+++ b/source/ast/sd/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: 2024-01-10 15:11+0100\n"
-"PO-Revision-Date: 2024-02-19 22:37+0000\n"
+"PO-Revision-Date: 2024-03-11 08:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-24-2/sdmessages/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 5.3.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542022496.000000\n"
#. WDjkB
@@ -2762,7 +2762,7 @@ msgstr "Mover Comentariu"
#: sd/inc/strings.hrc:425
msgctxt "STR_ANNOTATION_UNDO_EDIT"
msgid "Edit Comment"
-msgstr "Editar Comentariu"
+msgstr "Editar el comentariu"
#. g6k7E
#: sd/inc/strings.hrc:426
diff --git a/source/ast/sfx2/messages.po b/source/ast/sfx2/messages.po
index ba48e8446d6..182870afd2f 100644
--- a/source/ast/sfx2/messages.po
+++ b/source/ast/sfx2/messages.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2023-12-04 15:07+0100\n"
-"PO-Revision-Date: 2024-01-25 13:25+0000\n"
-"Last-Translator: Xandru Martino Ruz <xandrumartino@softastur.org>\n"
-"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/ast/>\n"
+"POT-Creation-Date: 2024-03-18 13:16+0100\n"
+"PO-Revision-Date: 2024-03-18 06:37+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-24-2/sfx2messages/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: Weblate 5.3.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1540149375.000000\n"
#. bHbFE
@@ -1728,7 +1728,7 @@ msgstr ""
#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
-msgstr ""
+msgstr "Metrópolis"
#. FFDBk
#: include/sfx2/strings.hrc:312
@@ -3687,7 +3687,7 @@ msgstr ""
#: sfx2/uiconfig/ui/helpmanual.ui:7
msgctxt "helpmanual|onlinehelpmanual"
msgid "%PRODUCTNAME Help Not Installed"
-msgstr ""
+msgstr "Nun ta instalada l'ayuda de %PRODUCTNAME"
#. JBdnz
#: sfx2/uiconfig/ui/helpmanual.ui:12
@@ -3815,7 +3815,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2023 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2024 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
@@ -3825,7 +3825,7 @@ msgstr ""
"\n"
"Toles marques comerciales y rexistraes mentaes equí son propiedá de los sos respeutivos dueños.\n"
"\n"
-"© 2000–2023 de los collaboradores de LibreOffice. Tolos derechos reservaos.\n"
+"© 2000–2024 de los collaboradores de LibreOffice. Tolos derechos reservaos.\n"
"\n"
"Esti productu foi creáu por %OOOVENDOR. La base orixinal foi OpenOffice.org, y los sos derechos d'autor de 2000 a 2011 pertenecen a Oracle y/o los sos afiliaos. %OOOVENDOR reconoz a tolos miembros de la comunidá; pa saber más, visita http://www.libreoffice.org/."
@@ -4063,20 +4063,19 @@ msgstr "Ente_ver"
#: sfx2/uiconfig/ui/loadtemplatedialog.ui:419
msgctxt "loadtemplatedialog|extended_tip|expander"
msgid "Shows or hides a preview of a selected template."
-msgstr ""
+msgstr "Amuesa o anubre una vista previa d'una plantía esbillada."
#. CRcca
#: sfx2/uiconfig/ui/loadtemplatedialog.ui:449
msgctxt "loadtemplatedialog|extended_tip|LoadTemplateDialog"
msgid "Imports formatting styles from another document or template into the current document."
-msgstr ""
+msgstr "Importa estilos de formatu d'otru documentu o plantía nel documentu actual."
#. EAhup
#: sfx2/uiconfig/ui/managestylepage.ui:33
-#, fuzzy
msgctxt "managestylepage|nameft"
msgid "_Name:"
-msgstr "_Nome"
+msgstr "_Nome:"
#. VroAG
#: sfx2/uiconfig/ui/managestylepage.ui:47
@@ -4093,24 +4092,21 @@ msgstr ""
#. 9pGL9
#: sfx2/uiconfig/ui/managestylepage.ui:75
-#, fuzzy
msgctxt "managestylepage|categoryft"
msgid "_Category:"
-msgstr "_Categoría"
+msgstr "_Categoría:"
#. MMhJQ
#: sfx2/uiconfig/ui/managestylepage.ui:99
-#, fuzzy
msgctxt "managestylepage|editstyle"
msgid "Edit Style"
-msgstr "Editar estilos..."
+msgstr "Editar estilu"
#. 7XGEs
#: sfx2/uiconfig/ui/managestylepage.ui:123
-#, fuzzy
msgctxt "managestylepage|editlinkstyle"
msgid "Edit Style"
-msgstr "Editar estilos..."
+msgstr "Editar estilu"
#. cFCws
#: sfx2/uiconfig/ui/managestylepage.ui:147
@@ -4474,7 +4470,7 @@ msgid "Specifies the print setting options."
msgstr "Especifica les opciones de los axustes d'imprentación."
#. NEo7g
-#: sfx2/uiconfig/ui/panel.ui:73 sfx2/uiconfig/ui/panel.ui:78
+#: sfx2/uiconfig/ui/panel.ui:74 sfx2/uiconfig/ui/panel.ui:79
msgctxt "panel|SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Más opciones"
diff --git a/source/ast/svx/messages.po b/source/ast/svx/messages.po
index 175d5981889..70331fff49b 100644
--- a/source/ast/svx/messages.po
+++ b/source/ast/svx/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: 2023-12-04 15:07+0100\n"
-"PO-Revision-Date: 2024-02-21 19:37+0000\n"
+"PO-Revision-Date: 2024-03-10 05:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-24-2/svxmessages/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 5.3.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542022499.000000\n"
#. 3GkZj
@@ -6769,7 +6769,7 @@ msgstr "Camudar campu de control"
#: include/svx/strings.hrc:1215
msgctxt "RID_STR_PROPTITLE_EDIT"
msgid "Text Box"
-msgstr "Campu de testu"
+msgstr "Caxa de testu"
#. CBmAL
#: include/svx/strings.hrc:1216
@@ -11823,7 +11823,7 @@ msgstr "$(ERR) al executar la revisión ortográfica."
#: svx/inc/svxerr.hrc:35
msgctxt "RID_SVXERRCTX"
msgid "$(ERR) executing the hyphenation."
-msgstr "$(ERR) al executar la separtación silábica."
+msgstr "$(ERR) al executar el guionáu."
#. G3CuN
#: svx/inc/svxerr.hrc:37
diff --git a/source/ast/sw/messages.po b/source/ast/sw/messages.po
index 6fa0bc63445..c6d0645b8e3 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: 2023-12-15 12:24+0100\n"
-"PO-Revision-Date: 2024-03-05 01:37+0000\n"
+"PO-Revision-Date: 2024-03-18 06:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-24-2/swmessages/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 5.3.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195213.000000\n"
#. oKCHH
@@ -158,7 +158,7 @@ msgstr "Los niveles d'esquema tienen d'entamar col nivel 1, en vez del nivel %LE
#: sw/inc/AccessibilityCheckStrings.hrc:39
msgctxt "STR_FONTWORKS"
msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text."
-msgstr "Evita los oxetos de Fontwork nos tos documentos. Asegúrate que lo emplegues p'amueses o otros testos ensin sentíu."
+msgstr "Evita los oxetos de Fontwork nos tos documentos. Asegúrate que lo emplegues p'amosances o otros testos ensin sentíu."
#. EyCiU
#: sw/inc/AccessibilityCheckStrings.hrc:40
@@ -3793,13 +3793,13 @@ msgstr "Revisión ortográfica..."
#: sw/inc/strings.hrc:277
msgctxt "STR_STATSTR_HYPHEN"
msgid "Hyphenation..."
-msgstr "Separtación silábica..."
+msgstr "Guionáu..."
#. Dku8Y
#: sw/inc/strings.hrc:278
msgctxt "STR_STATSTR_TOX_INSERT"
msgid "Inserting Index..."
-msgstr "Inxertando direutoriu..."
+msgstr "Inxertando l'índiz..."
#. wvAiH
#: sw/inc/strings.hrc:279
@@ -23283,10 +23283,9 @@ msgstr ""
#. eBkEW
#: sw/uiconfig/swriter/ui/numparapage.ui:165
-#, fuzzy
msgctxt "numparapage|editnumstyle"
msgid "Edit Style"
-msgstr "Editar estilos..."
+msgstr "Editar estilu"
#. cbzvQ
#: sw/uiconfig/swriter/ui/numparapage.ui:171
diff --git a/source/az/cui/messages.po b/source/az/cui/messages.po
index 8b979a38d06..ff0fa1e3d12 100644
--- a/source/az/cui/messages.po
+++ b/source/az/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-01-22 14:04+0100\n"
+"POT-Creation-Date: 2024-03-18 13:15+0100\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1967,7 +1967,7 @@ msgstr ""
#. YfSb4
#: cui/inc/strings.hrc:361
msgctxt "aboutdialog|copyright"
-msgid "Copyright © 2000–2023 LibreOffice contributors."
+msgid "Copyright © 2000–2024 LibreOffice contributors."
msgstr ""
#. WCnhx
@@ -12352,165 +12352,165 @@ msgid "Colo_r:"
msgstr ""
#. sBL64
-#: cui/uiconfig/ui/linetabpage.ui:259
+#: cui/uiconfig/ui/linetabpage.ui:260
msgctxt "linetabpage|FT_LINE_WIDTH"
msgid "T_hickness:"
msgstr ""
#. MzAeD
-#: cui/uiconfig/ui/linetabpage.ui:301
+#: cui/uiconfig/ui/linetabpage.ui:302
msgctxt "linetabpage|FT_TRANSPARENT"
msgid "_Transparency:"
msgstr ""
#. 6TFWn
-#: cui/uiconfig/ui/linetabpage.ui:339
+#: cui/uiconfig/ui/linetabpage.ui:340
msgctxt "linetabpage|label1"
msgid "Line Properties"
msgstr ""
#. HyxSJ
-#: cui/uiconfig/ui/linetabpage.ui:382
+#: cui/uiconfig/ui/linetabpage.ui:383
msgctxt "linetabpage|FT_LINE_ENDS_STYLE"
msgid "Start st_yle:"
msgstr ""
#. aZYyn
-#: cui/uiconfig/ui/linetabpage.ui:423
+#: cui/uiconfig/ui/linetabpage.ui:424
msgctxt "linetabpage|TSB_CENTER_START"
msgid "Ce_nter"
msgstr ""
#. 5RYtu
-#: cui/uiconfig/ui/linetabpage.ui:441
+#: cui/uiconfig/ui/linetabpage.ui:442
msgctxt "linetabpage|FT_LINE_START_WIDTH"
msgid "Wi_dth:"
msgstr ""
#. pQfyE
-#: cui/uiconfig/ui/linetabpage.ui:467
+#: cui/uiconfig/ui/linetabpage.ui:468
msgctxt "linetabpage|CBX_SYNCHRONIZE"
msgid "Synchroni_ze ends"
msgstr ""
#. cCsuG
-#: cui/uiconfig/ui/linetabpage.ui:533
+#: cui/uiconfig/ui/linetabpage.ui:534
msgctxt "linetabpage|label5"
msgid "End sty_le:"
msgstr ""
#. zm8Ga
-#: cui/uiconfig/ui/linetabpage.ui:554
+#: cui/uiconfig/ui/linetabpage.ui:555
msgctxt "linetabpage|FT_LINE_END_WIDTH"
msgid "W_idth:"
msgstr ""
#. g2gLY
-#: cui/uiconfig/ui/linetabpage.ui:580
+#: cui/uiconfig/ui/linetabpage.ui:581
msgctxt "linetabpage|TSB_CENTER_END"
msgid "C_enter"
msgstr ""
#. sged5
-#: cui/uiconfig/ui/linetabpage.ui:624
+#: cui/uiconfig/ui/linetabpage.ui:625
msgctxt "linetabpage|label2"
msgid "Arrow Styles"
msgstr ""
#. BdoBN
-#: cui/uiconfig/ui/linetabpage.ui:656
+#: cui/uiconfig/ui/linetabpage.ui:657
msgctxt "linetabpage|FT_EDGE_STYLE"
msgid "_Corner style:"
msgstr ""
#. kCtQm
-#: cui/uiconfig/ui/linetabpage.ui:670
+#: cui/uiconfig/ui/linetabpage.ui:671
msgctxt "linetabpage|FT_CAP_STYLE"
msgid "Ca_p style:"
msgstr ""
#. Qx3Ur
-#: cui/uiconfig/ui/linetabpage.ui:685
+#: cui/uiconfig/ui/linetabpage.ui:686
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Rounded"
msgstr ""
#. XH7Z6
-#: cui/uiconfig/ui/linetabpage.ui:686
+#: cui/uiconfig/ui/linetabpage.ui:687
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "- none -"
msgstr ""
#. HZoVf
-#: cui/uiconfig/ui/linetabpage.ui:687
+#: cui/uiconfig/ui/linetabpage.ui:688
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Mitered"
msgstr ""
#. RjDyz
-#: cui/uiconfig/ui/linetabpage.ui:688
+#: cui/uiconfig/ui/linetabpage.ui:689
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Beveled"
msgstr ""
#. biCBC
-#: cui/uiconfig/ui/linetabpage.ui:701
+#: cui/uiconfig/ui/linetabpage.ui:702
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Flat"
msgstr ""
#. GqrYS
-#: cui/uiconfig/ui/linetabpage.ui:702
+#: cui/uiconfig/ui/linetabpage.ui:703
#, fuzzy
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Round"
msgstr "funt"
#. 3hNSB
-#: cui/uiconfig/ui/linetabpage.ui:703
+#: cui/uiconfig/ui/linetabpage.ui:704
#, fuzzy
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Square"
msgstr "dördbucaq"
#. Y4Gmw
-#: cui/uiconfig/ui/linetabpage.ui:717
+#: cui/uiconfig/ui/linetabpage.ui:718
msgctxt "linetabpage|label3"
msgid "Corner and Cap Styles"
msgstr ""
#. 4YTBE
-#: cui/uiconfig/ui/linetabpage.ui:745
+#: cui/uiconfig/ui/linetabpage.ui:746
msgctxt "linetabpage|MB_SYMBOL_BITMAP"
msgid "Select..."
msgstr ""
#. LaBcU
-#: cui/uiconfig/ui/linetabpage.ui:774
+#: cui/uiconfig/ui/linetabpage.ui:775
msgctxt "linetabpage|FT_SYMBOL_WIDTH"
msgid "Widt_h:"
msgstr ""
#. yhVmm
-#: cui/uiconfig/ui/linetabpage.ui:799
+#: cui/uiconfig/ui/linetabpage.ui:800
msgctxt "linetabpage|CB_SYMBOL_RATIO"
msgid "_Keep ratio"
msgstr ""
#. oV6GJ
-#: cui/uiconfig/ui/linetabpage.ui:817
+#: cui/uiconfig/ui/linetabpage.ui:818
msgctxt "linetabpage|FT_SYMBOL_HEIGHT"
msgid "Hei_ght:"
msgstr ""
#. 9eaQs
-#: cui/uiconfig/ui/linetabpage.ui:853
+#: cui/uiconfig/ui/linetabpage.ui:854
msgctxt "linetabpage|label4"
msgid "Icon"
msgstr ""
#. vPJAG
-#: cui/uiconfig/ui/linetabpage.ui:891
+#: cui/uiconfig/ui/linetabpage.ui:892
msgctxt "linetabpage|CTL_PREVIEW-atkobject"
msgid "Example"
msgstr ""
diff --git a/source/az/sfx2/messages.po b/source/az/sfx2/messages.po
index e01dbdad9f2..80a4fd5f368 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: 2023-12-04 15:07+0100\n"
+"POT-Creation-Date: 2024-03-18 13:16+0100\n"
"PO-Revision-Date: 2018-10-21 19:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3748,7 +3748,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2023 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2024 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
@@ -4392,7 +4392,7 @@ msgid "Specifies the print setting options."
msgstr ""
#. NEo7g
-#: sfx2/uiconfig/ui/panel.ui:73 sfx2/uiconfig/ui/panel.ui:78
+#: sfx2/uiconfig/ui/panel.ui:74 sfx2/uiconfig/ui/panel.ui:79
msgctxt "panel|SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr ""
diff --git a/source/be/cui/messages.po b/source/be/cui/messages.po
index 46962010f5b..f32c0080c5c 100644
--- a/source/be/cui/messages.po
+++ b/source/be/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-01-22 14:04+0100\n"
+"POT-Creation-Date: 2024-03-18 13:15+0100\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1980,7 +1980,7 @@ msgstr ""
#. YfSb4
#: cui/inc/strings.hrc:361
msgctxt "aboutdialog|copyright"
-msgid "Copyright © 2000–2023 LibreOffice contributors."
+msgid "Copyright © 2000–2024 LibreOffice contributors."
msgstr ""
#. WCnhx
@@ -12285,163 +12285,163 @@ msgid "Colo_r:"
msgstr "_Колер:"
#. sBL64
-#: cui/uiconfig/ui/linetabpage.ui:259
+#: cui/uiconfig/ui/linetabpage.ui:260
msgctxt "linetabpage|FT_LINE_WIDTH"
msgid "T_hickness:"
msgstr ""
#. MzAeD
-#: cui/uiconfig/ui/linetabpage.ui:301
+#: cui/uiconfig/ui/linetabpage.ui:302
msgctxt "linetabpage|FT_TRANSPARENT"
msgid "_Transparency:"
msgstr "Празрыстасць:"
#. 6TFWn
-#: cui/uiconfig/ui/linetabpage.ui:339
+#: cui/uiconfig/ui/linetabpage.ui:340
msgctxt "linetabpage|label1"
msgid "Line Properties"
msgstr "Уласцівасці лініі"
#. HyxSJ
-#: cui/uiconfig/ui/linetabpage.ui:382
+#: cui/uiconfig/ui/linetabpage.ui:383
msgctxt "linetabpage|FT_LINE_ENDS_STYLE"
msgid "Start st_yle:"
msgstr "Стыль пачатку:"
#. aZYyn
-#: cui/uiconfig/ui/linetabpage.ui:423
+#: cui/uiconfig/ui/linetabpage.ui:424
msgctxt "linetabpage|TSB_CENTER_START"
msgid "Ce_nter"
msgstr "У цэн_тры"
#. 5RYtu
-#: cui/uiconfig/ui/linetabpage.ui:441
+#: cui/uiconfig/ui/linetabpage.ui:442
msgctxt "linetabpage|FT_LINE_START_WIDTH"
msgid "Wi_dth:"
msgstr "Шырыня:"
#. pQfyE
-#: cui/uiconfig/ui/linetabpage.ui:467
+#: cui/uiconfig/ui/linetabpage.ui:468
msgctxt "linetabpage|CBX_SYNCHRONIZE"
msgid "Synchroni_ze ends"
msgstr "Сінхранізаваць канцы"
#. cCsuG
-#: cui/uiconfig/ui/linetabpage.ui:533
+#: cui/uiconfig/ui/linetabpage.ui:534
msgctxt "linetabpage|label5"
msgid "End sty_le:"
msgstr "Стыль заканчэння:"
#. zm8Ga
-#: cui/uiconfig/ui/linetabpage.ui:554
+#: cui/uiconfig/ui/linetabpage.ui:555
msgctxt "linetabpage|FT_LINE_END_WIDTH"
msgid "W_idth:"
msgstr "Шырыня:"
#. g2gLY
-#: cui/uiconfig/ui/linetabpage.ui:580
+#: cui/uiconfig/ui/linetabpage.ui:581
msgctxt "linetabpage|TSB_CENTER_END"
msgid "C_enter"
msgstr "_У цэнтры"
#. sged5
-#: cui/uiconfig/ui/linetabpage.ui:624
+#: cui/uiconfig/ui/linetabpage.ui:625
msgctxt "linetabpage|label2"
msgid "Arrow Styles"
msgstr "Стылі стрэлак"
#. BdoBN
-#: cui/uiconfig/ui/linetabpage.ui:656
+#: cui/uiconfig/ui/linetabpage.ui:657
msgctxt "linetabpage|FT_EDGE_STYLE"
msgid "_Corner style:"
msgstr "_Стыль вугла:"
#. kCtQm
-#: cui/uiconfig/ui/linetabpage.ui:670
+#: cui/uiconfig/ui/linetabpage.ui:671
msgctxt "linetabpage|FT_CAP_STYLE"
msgid "Ca_p style:"
msgstr "Стыль наканечніка:"
#. Qx3Ur
-#: cui/uiconfig/ui/linetabpage.ui:685
+#: cui/uiconfig/ui/linetabpage.ui:686
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Rounded"
msgstr "Закругленыя"
#. XH7Z6
-#: cui/uiconfig/ui/linetabpage.ui:686
+#: cui/uiconfig/ui/linetabpage.ui:687
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "- none -"
msgstr "- няма -"
#. HZoVf
-#: cui/uiconfig/ui/linetabpage.ui:687
+#: cui/uiconfig/ui/linetabpage.ui:688
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Mitered"
msgstr "Простае"
#. RjDyz
-#: cui/uiconfig/ui/linetabpage.ui:688
+#: cui/uiconfig/ui/linetabpage.ui:689
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Beveled"
msgstr "Скошанае"
#. biCBC
-#: cui/uiconfig/ui/linetabpage.ui:701
+#: cui/uiconfig/ui/linetabpage.ui:702
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Flat"
msgstr "Плоска"
#. GqrYS
-#: cui/uiconfig/ui/linetabpage.ui:702
+#: cui/uiconfig/ui/linetabpage.ui:703
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Round"
msgstr "Скругленае"
#. 3hNSB
-#: cui/uiconfig/ui/linetabpage.ui:703
+#: cui/uiconfig/ui/linetabpage.ui:704
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Square"
msgstr "Квадрат"
#. Y4Gmw
-#: cui/uiconfig/ui/linetabpage.ui:717
+#: cui/uiconfig/ui/linetabpage.ui:718
msgctxt "linetabpage|label3"
msgid "Corner and Cap Styles"
msgstr "Стылі вуглоў і наканечнікаў"
#. 4YTBE
-#: cui/uiconfig/ui/linetabpage.ui:745
+#: cui/uiconfig/ui/linetabpage.ui:746
msgctxt "linetabpage|MB_SYMBOL_BITMAP"
msgid "Select..."
msgstr "Выбраць..."
#. LaBcU
-#: cui/uiconfig/ui/linetabpage.ui:774
+#: cui/uiconfig/ui/linetabpage.ui:775
msgctxt "linetabpage|FT_SYMBOL_WIDTH"
msgid "Widt_h:"
msgstr "Шы_рыня:"
#. yhVmm
-#: cui/uiconfig/ui/linetabpage.ui:799
+#: cui/uiconfig/ui/linetabpage.ui:800
msgctxt "linetabpage|CB_SYMBOL_RATIO"
msgid "_Keep ratio"
msgstr "Захоўваць прапорцыі"
#. oV6GJ
-#: cui/uiconfig/ui/linetabpage.ui:817
+#: cui/uiconfig/ui/linetabpage.ui:818
msgctxt "linetabpage|FT_SYMBOL_HEIGHT"
msgid "Hei_ght:"
msgstr "Вышыня:"
#. 9eaQs
-#: cui/uiconfig/ui/linetabpage.ui:853
+#: cui/uiconfig/ui/linetabpage.ui:854
msgctxt "linetabpage|label4"
msgid "Icon"
msgstr "Значок"
#. vPJAG
-#: cui/uiconfig/ui/linetabpage.ui:891
+#: cui/uiconfig/ui/linetabpage.ui:892
msgctxt "linetabpage|CTL_PREVIEW-atkobject"
msgid "Example"
msgstr "Прыклад"
diff --git a/source/be/sfx2/messages.po b/source/be/sfx2/messages.po
index fdc83cccaca..080791c3ae8 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: 2023-12-04 15:07+0100\n"
+"POT-Creation-Date: 2024-03-18 13:16+0100\n"
"PO-Revision-Date: 2018-10-21 19:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3777,7 +3777,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2023 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2024 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
@@ -4419,7 +4419,7 @@ msgid "Specifies the print setting options."
msgstr ""
#. NEo7g
-#: sfx2/uiconfig/ui/panel.ui:73 sfx2/uiconfig/ui/panel.ui:78
+#: sfx2/uiconfig/ui/panel.ui:74 sfx2/uiconfig/ui/panel.ui:79
msgctxt "panel|SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr ""
diff --git a/source/bg/cui/messages.po b/source/bg/cui/messages.po
index 22f71c51f4f..1b00e1e4d89 100644
--- a/source/bg/cui/messages.po
+++ b/source/bg/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-01-22 14:04+0100\n"
+"POT-Creation-Date: 2024-03-18 13:15+0100\n"
"PO-Revision-Date: 2024-03-02 12:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-24-2/cuimessages/bg/>\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 5.3.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1564897785.000000\n"
#. GyY9M
@@ -1982,8 +1982,8 @@ msgstr "URL адресът <%1> не може да се преобразува
#. YfSb4
#: cui/inc/strings.hrc:361
msgctxt "aboutdialog|copyright"
-msgid "Copyright © 2000–2023 LibreOffice contributors."
-msgstr "© 2000–2023 сътрудниците на LibreOffice."
+msgid "Copyright © 2000–2024 LibreOffice contributors."
+msgstr "© 2000–2024 сътрудниците на LibreOffice."
#. WCnhx
#: cui/inc/strings.hrc:362
@@ -12287,163 +12287,163 @@ msgid "Colo_r:"
msgstr "_Цвят:"
#. sBL64
-#: cui/uiconfig/ui/linetabpage.ui:259
+#: cui/uiconfig/ui/linetabpage.ui:260
msgctxt "linetabpage|FT_LINE_WIDTH"
msgid "T_hickness:"
msgstr "Дебелина:"
#. MzAeD
-#: cui/uiconfig/ui/linetabpage.ui:301
+#: cui/uiconfig/ui/linetabpage.ui:302
msgctxt "linetabpage|FT_TRANSPARENT"
msgid "_Transparency:"
msgstr "_Прозрачност:"
#. 6TFWn
-#: cui/uiconfig/ui/linetabpage.ui:339
+#: cui/uiconfig/ui/linetabpage.ui:340
msgctxt "linetabpage|label1"
msgid "Line Properties"
msgstr "Свойства на линия"
#. HyxSJ
-#: cui/uiconfig/ui/linetabpage.ui:382
+#: cui/uiconfig/ui/linetabpage.ui:383
msgctxt "linetabpage|FT_LINE_ENDS_STYLE"
msgid "Start st_yle:"
msgstr "Сти_л в началото:"
#. aZYyn
-#: cui/uiconfig/ui/linetabpage.ui:423
+#: cui/uiconfig/ui/linetabpage.ui:424
msgctxt "linetabpage|TSB_CENTER_START"
msgid "Ce_nter"
msgstr "Це_нтриране"
#. 5RYtu
-#: cui/uiconfig/ui/linetabpage.ui:441
+#: cui/uiconfig/ui/linetabpage.ui:442
msgctxt "linetabpage|FT_LINE_START_WIDTH"
msgid "Wi_dth:"
msgstr "_Ширина:"
#. pQfyE
-#: cui/uiconfig/ui/linetabpage.ui:467
+#: cui/uiconfig/ui/linetabpage.ui:468
msgctxt "linetabpage|CBX_SYNCHRONIZE"
msgid "Synchroni_ze ends"
msgstr "Едн_акви краища"
#. cCsuG
-#: cui/uiconfig/ui/linetabpage.ui:533
+#: cui/uiconfig/ui/linetabpage.ui:534
msgctxt "linetabpage|label5"
msgid "End sty_le:"
msgstr "Стил в кра_я:"
#. zm8Ga
-#: cui/uiconfig/ui/linetabpage.ui:554
+#: cui/uiconfig/ui/linetabpage.ui:555
msgctxt "linetabpage|FT_LINE_END_WIDTH"
msgid "W_idth:"
msgstr "Ш_ирина:"
#. g2gLY
-#: cui/uiconfig/ui/linetabpage.ui:580
+#: cui/uiconfig/ui/linetabpage.ui:581
msgctxt "linetabpage|TSB_CENTER_END"
msgid "C_enter"
msgstr "Ц_ентриране"
#. sged5
-#: cui/uiconfig/ui/linetabpage.ui:624
+#: cui/uiconfig/ui/linetabpage.ui:625
msgctxt "linetabpage|label2"
msgid "Arrow Styles"
msgstr "Стилове за краища"
#. BdoBN
-#: cui/uiconfig/ui/linetabpage.ui:656
+#: cui/uiconfig/ui/linetabpage.ui:657
msgctxt "linetabpage|FT_EDGE_STYLE"
msgid "_Corner style:"
msgstr "Стил на _ъглите:"
#. kCtQm
-#: cui/uiconfig/ui/linetabpage.ui:670
+#: cui/uiconfig/ui/linetabpage.ui:671
msgctxt "linetabpage|FT_CAP_STYLE"
msgid "Ca_p style:"
msgstr "Стил на край_четата:"
#. Qx3Ur
-#: cui/uiconfig/ui/linetabpage.ui:685
+#: cui/uiconfig/ui/linetabpage.ui:686
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Rounded"
msgstr "Заоблени"
#. XH7Z6
-#: cui/uiconfig/ui/linetabpage.ui:686
+#: cui/uiconfig/ui/linetabpage.ui:687
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "- none -"
msgstr "- няма -"
#. HZoVf
-#: cui/uiconfig/ui/linetabpage.ui:687
+#: cui/uiconfig/ui/linetabpage.ui:688
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Mitered"
msgstr "Скосени на 45°"
#. RjDyz
-#: cui/uiconfig/ui/linetabpage.ui:688
+#: cui/uiconfig/ui/linetabpage.ui:689
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Beveled"
msgstr "Скосени"
#. biCBC
-#: cui/uiconfig/ui/linetabpage.ui:701
+#: cui/uiconfig/ui/linetabpage.ui:702
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Flat"
msgstr "Плоски"
#. GqrYS
-#: cui/uiconfig/ui/linetabpage.ui:702
+#: cui/uiconfig/ui/linetabpage.ui:703
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Round"
msgstr "Заоблени"
#. 3hNSB
-#: cui/uiconfig/ui/linetabpage.ui:703
+#: cui/uiconfig/ui/linetabpage.ui:704
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Square"
msgstr "Правоъгълни"
#. Y4Gmw
-#: cui/uiconfig/ui/linetabpage.ui:717
+#: cui/uiconfig/ui/linetabpage.ui:718
msgctxt "linetabpage|label3"
msgid "Corner and Cap Styles"
msgstr "Стилове на ъглите и крайчетата"
#. 4YTBE
-#: cui/uiconfig/ui/linetabpage.ui:745
+#: cui/uiconfig/ui/linetabpage.ui:746
msgctxt "linetabpage|MB_SYMBOL_BITMAP"
msgid "Select..."
msgstr "Избор..."
#. LaBcU
-#: cui/uiconfig/ui/linetabpage.ui:774
+#: cui/uiconfig/ui/linetabpage.ui:775
msgctxt "linetabpage|FT_SYMBOL_WIDTH"
msgid "Widt_h:"
msgstr "_Ширина:"
#. yhVmm
-#: cui/uiconfig/ui/linetabpage.ui:799
+#: cui/uiconfig/ui/linetabpage.ui:800
msgctxt "linetabpage|CB_SYMBOL_RATIO"
msgid "_Keep ratio"
msgstr "_Запазване на пропорциите"
#. oV6GJ
-#: cui/uiconfig/ui/linetabpage.ui:817
+#: cui/uiconfig/ui/linetabpage.ui:818
msgctxt "linetabpage|FT_SYMBOL_HEIGHT"
msgid "Hei_ght:"
msgstr "_Височина:"
#. 9eaQs
-#: cui/uiconfig/ui/linetabpage.ui:853
+#: cui/uiconfig/ui/linetabpage.ui:854
msgctxt "linetabpage|label4"
msgid "Icon"
msgstr "Икона"
#. vPJAG
-#: cui/uiconfig/ui/linetabpage.ui:891
+#: cui/uiconfig/ui/linetabpage.ui:892
msgctxt "linetabpage|CTL_PREVIEW-atkobject"
msgid "Example"
msgstr "Пример"
diff --git a/source/bg/helpcontent2/source/text/scalc/01.po b/source/bg/helpcontent2/source/text/scalc/01.po
index dc5f1d7a304..c6fb8f80314 100644
--- a/source/bg/helpcontent2/source/text/scalc/01.po
+++ b/source/bg/helpcontent2/source/text/scalc/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: 2023-12-21 13:21+0100\n"
-"PO-Revision-Date: 2024-03-07 07:49+0000\n"
-"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
+"PO-Revision-Date: 2024-03-13 08:37+0000\n"
+"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-24-2/textscalc01/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
@@ -44682,7 +44682,7 @@ msgctxt ""
"par_id411701538725496\n"
"help.text"
msgid "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\"><emph>Formatting Bar</emph></link> or the <link href=\"text/scalc/01/05100000.xhp\"><emph>Styles</emph> sidebar</link>."
-msgstr "Прилага се стилът на клетка, съответстващ на първото условие със стойност <emph>true</emph>. Стиловете на клетки, приложени чрез „Условно форматиране“, имат приоритет пред тези, които са приложени ръчно чрез <link href=\"text/scalc/main0202.xhp\"><emph>лентата „Форматиране</emph></link> или страничната лента <link href=\"text/scalc/01/05100000.xhp\"><emph>Стилове</link>."
+msgstr "Прилага се стилът на клетка, съответстващ на първото условие със стойност <emph>true</emph>. Стиловете на клетки, приложени чрез „Условно форматиране“, имат приоритет пред тези, които са приложени ръчно чрез <link href=\"text/scalc/main0202.xhp\"><emph>лентата „Форматиране</emph></link> или страничната лента <link href=\"text/scalc/01/05100000.xhp\"><emph>Стилове</emph></link>."
#. 2GWTv
#: 05120000.xhp
diff --git a/source/bg/helpcontent2/source/text/shared/00.po b/source/bg/helpcontent2/source/text/shared/00.po
index a8bf7f536a5..04033e09a78 100644
--- a/source/bg/helpcontent2/source/text/shared/00.po
+++ b/source/bg/helpcontent2/source/text/shared/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2023-12-21 13:21+0100\n"
-"PO-Revision-Date: 2024-03-07 07:49+0000\n"
+"PO-Revision-Date: 2024-03-18 00:38+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-24-2/textshared00/bg/>\n"
"Language: bg\n"
@@ -13073,7 +13073,7 @@ msgctxt ""
"par_id631690132081669\n"
"help.text"
msgid "Choose <menuitem>Draw - Clear</menuitem> (object selected)."
-msgstr ""
+msgstr "Изберете <menuitem>Рисуване - Изчистване</menuitem> (при избран обект)."
#. 7Fmr7
#: 00040500.xhp
@@ -13082,7 +13082,7 @@ msgctxt ""
"par_id741690132142121\n"
"help.text"
msgid "<image src=\"cmd/lc_resetattributes.svg\" id=\"img_id621690132142122\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id21690132142123\">Icon Clear Direct Formatting</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_resetattributes.svg\" id=\"img_id621690132142122\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id21690132142123\">Изчистване на прякото форматиране</alt></image>"
#. BuHiv
#: 00040500.xhp
@@ -13091,7 +13091,7 @@ msgctxt ""
"par_id281690132142125\n"
"help.text"
msgid "Clear Direct Formatting"
-msgstr ""
+msgstr "Изчистване на прякото форматиране"
#. 2GUZr
#: 00040500.xhp
@@ -13100,7 +13100,7 @@ msgctxt ""
"par_id71690131881708\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode> + M</keycode>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode> + M</keycode>"
#. 6Ax7U
#: 00040500.xhp
@@ -13109,7 +13109,7 @@ msgctxt ""
"par_id3153244\n"
"help.text"
msgid "Choose <menuitem>Format - Character</menuitem>."
-msgstr ""
+msgstr "Изберете <menuitem>Форматиране - Знак</menuitem>."
#. tGtgC
#: 00040500.xhp
@@ -13118,7 +13118,7 @@ msgctxt ""
"par_id561690149044585\n"
"help.text"
msgid "Select text, choose <menuitem>Character - Character</menuitem> (automatic spell checking must be disabled)."
-msgstr ""
+msgstr "Изберете текст, изберете <menuitem>Знак - Знак</menuitem> (автоматичната проверка на правописа трябва да е деактивирана)."
#. bB2LM
#: 00040500.xhp
@@ -13127,7 +13127,7 @@ msgctxt ""
"par_id11690146845549\n"
"help.text"
msgid "On the <menuitem>Home</menuitem> menu of the <menuitem>Home</menuitem> tab, choose <menuitem>Character</menuitem>."
-msgstr ""
+msgstr "В менюто <menuitem>Начало</menuitem> на раздела <menuitem>Начало</menuitem> изберете <menuitem>Знак</menuitem>."
#. 5Rrey
#: 00040500.xhp
@@ -13136,7 +13136,7 @@ msgctxt ""
"par_id3151381\n"
"help.text"
msgid "Open the <menuitem>Styles</menuitem> deck, select a paragraph style, open context menu and choose <menuitem>New</menuitem> or <menuitem>Edit Style</menuitem>."
-msgstr ""
+msgstr "Отворете колодата <menuitem>Стилове</menuitem>, изберете стил на абзац, отворете контекстното меню и изберете <menuitem>Нов</menuitem> или <menuitem>Редактиране на стил</menuitem>."
#. AM5WA
#: 00040500.xhp
@@ -13145,7 +13145,7 @@ msgctxt ""
"par_id641690149070500\n"
"help.text"
msgid "Select a text object, choose <menuitem>Character</menuitem>."
-msgstr ""
+msgstr "Изберете текстов обект, изберете <menuitem>Знак</menuitem>."
#. rFqQM
#: 00040500.xhp
@@ -13154,7 +13154,7 @@ msgctxt ""
"par_id11690147845549\n"
"help.text"
msgid "On the <menuitem>Home</menuitem> menu of the <menuitem>Home</menuitem> tab, choose <menuitem>Character</menuitem>."
-msgstr ""
+msgstr "В менюто <menuitem>Начало</menuitem> на раздела <menuitem>Начало</menuitem> изберете <menuitem>Знак</menuitem>."
#. bqu57
#: 00040500.xhp
@@ -13163,7 +13163,7 @@ msgctxt ""
"par_id741690149075667\n"
"help.text"
msgid "Select a text object, choose <menuitem>Character</menuitem>."
-msgstr ""
+msgstr "Изберете текстов обект, изберете <menuitem>Знак</menuitem>."
#. VFuRE
#: 00040500.xhp
@@ -13172,7 +13172,7 @@ msgctxt ""
"par_id11690145845549\n"
"help.text"
msgid "On the <menuitem>Text</menuitem> menu of the <menuitem>Text</menuitem> tab, choose <menuitem>Character</menuitem>."
-msgstr ""
+msgstr "В менюто <menuitem>Текст</menuitem> на раздела <menuitem>Текст</menuitem> изберете <menuitem>Знак</menuitem>."
#. nRHQB
#: 00040500.xhp
@@ -13181,7 +13181,7 @@ msgctxt ""
"par_id741691149075667\n"
"help.text"
msgid "Select text when editing a cell, choose <menuitem>Character</menuitem>."
-msgstr ""
+msgstr "Изберете текст, докато редактирате клетка, изберете <menuitem>Знак</menuitem>."
#. LbNGm
#: 00040500.xhp
@@ -13190,7 +13190,7 @@ msgctxt ""
"par_id3148998\n"
"help.text"
msgid "<image id=\"img_id3154894\" src=\"cmd/lc_fontdialog.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154894\">Icon Character</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154894\" src=\"cmd/lc_fontdialog.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154894\">Икона за знак</alt></image>"
#. AdBzN
#: 00040500.xhp
@@ -13208,7 +13208,7 @@ msgctxt ""
"par_id3154749\n"
"help.text"
msgid "Choose <menuitem>Format - Cells - Font</menuitem> tab."
-msgstr ""
+msgstr "Изберете раздела <menuitem>Форматиране - Клетки - Шрифт</menuitem>."
#. 3AwnD
#: 00040500.xhp
@@ -13217,7 +13217,7 @@ msgctxt ""
"par_id3156306\n"
"help.text"
msgid "Menu <menuitem>Format - Page Style - Header/Footer</menuitem> - <emph>Edit</emph> button."
-msgstr ""
+msgstr "Меню <menuitem>Форматиране - Стил на страница - Горен колонтитул/Долен колонтитул</menuitem> - бутон <emph>Редактиране</emph>."
#. kk6Tu
#: 00040500.xhp
@@ -13226,7 +13226,7 @@ msgctxt ""
"par_id3150355\n"
"help.text"
msgid "Choose <emph>Format - Title - Character</emph> tab."
-msgstr ""
+msgstr "Изберете раздела <emph>Форматиране - Заглавие - Знак</emph>."
#. 6FcA5
#: 00040500.xhp
@@ -13235,7 +13235,7 @@ msgctxt ""
"par_id3149812\n"
"help.text"
msgid "Choose <emph>Format - Legend - Character</emph> tab."
-msgstr ""
+msgstr "Изберете <emph>Форматиране - Легенда - Знак</emph>."
#. VJ2N2
#: 00040500.xhp
@@ -13244,7 +13244,7 @@ msgctxt ""
"par_id3153717\n"
"help.text"
msgid "Choose <emph>Format - Axis - Character</emph> tab."
-msgstr ""
+msgstr "Изберете раздела <emph>Форматиране - Ос - Знак</emph>."
#. B9wLB
#: 00040500.xhp
@@ -13253,7 +13253,7 @@ msgctxt ""
"par_id3153935\n"
"help.text"
msgid "Choose <menuitem>Format - Character - Font</menuitem> tab."
-msgstr ""
+msgstr "Изберете раздела <menuitem>Форматиране - Знак - Шрифт</menuitem>."
#. mHGD4
#: 00040500.xhp
@@ -13262,7 +13262,7 @@ msgctxt ""
"par_id211690148229365\n"
"help.text"
msgid "Select the <menuitem>Styles</menuitem> deck, open context menu of a style, choose <menuitem>Edit Style - Font</menuitem> tab."
-msgstr ""
+msgstr "Изберете колодата <menuitem>Стилове</menuitem>, отворете контекстното меню на стил, изберете раздела <menuitem>Редактиране на стил - Шрифт</menuitem>."
#. f7aHb
#: 00040500.xhp
@@ -13280,7 +13280,7 @@ msgctxt ""
"par_id3149819\n"
"help.text"
msgid "Choose <menuitem>View - Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Font Effects</menuitem> tab."
-msgstr ""
+msgstr "Изберете <menuitem>Изглед - Стилове</menuitem> - отворете контекстното меню на елемент и изберете раздела <menuitem>Нов/Редактиране на стил - Ефекти за шрифт</menuitem>."
#. 5k7D4
#: 00040500.xhp
@@ -13307,7 +13307,7 @@ msgctxt ""
"par_id3159256\n"
"help.text"
msgid "Choose <menuitem>View - Styles</menuitem> - open context menu of an entry and click <menuitem>New/Edit Style - Alignment</menuitem> tab."
-msgstr ""
+msgstr "Изберете <menuitem>Изглед - Стилове</menuitem> - отворете контекстното меню на елемент и изберете раздела <menuitem>Нов/Редактиране на стил - Подравняване</menuitem>."
#. E3vEQ
#: 00040500.xhp
@@ -13334,7 +13334,7 @@ msgctxt ""
"par_id3152811\n"
"help.text"
msgid "Choose <menuitem>View - Styles</menuitem> - open context menu of an entry and click <menuitem>New/Edit Style - Asian Layout</menuitem> tab."
-msgstr ""
+msgstr "Изберете <menuitem>Изглед - Стилове</menuitem> - отворете контекстното меню на елемент и изберете раздела <menuitem>Нов/Редактиране на стил - Азиатски езици</menuitem>."
#. 4ZZLP
#: 00040500.xhp
@@ -13361,7 +13361,7 @@ msgctxt ""
"par_id3148742\n"
"help.text"
msgid "Choose <emph>View - Styles</emph> - open context menu of an entry and click <emph>New/Edit Style - Asian Typography</emph> tab."
-msgstr ""
+msgstr "Изберете <emph>Изглед - Стилове</emph> - отворете контекстното меню на елемент и изберете раздела <emph>Нов/Редактиране на стил - Азиатска типография</emph>."
#. DGFGA
#: 00040500.xhp
@@ -13388,7 +13388,7 @@ msgctxt ""
"par_id131690634671867\n"
"help.text"
msgid "Place cursor in paragraph, choose <menuitem>Paragraph - Paragraph</menuitem>."
-msgstr ""
+msgstr "Поставете курсора в абзац, изберете <menuitem>Абзац - Абзац</menuitem>."
#. cEepZ
#: 00040500.xhp
@@ -13397,7 +13397,7 @@ msgctxt ""
"par_id221690634561129\n"
"help.text"
msgid "On the <menuitem>Home</menuitem> menu of the <menuitem>Home</menuitem> tab, select <menuitem>Paragraph</menuitem>."
-msgstr ""
+msgstr "В менюто <menuitem>Начало</menuitem> на раздела <menuitem>Начало</menuitem> изберете <menuitem>Абзац</menuitem>."
#. hGCDg
#: 00040500.xhp
@@ -13406,7 +13406,7 @@ msgctxt ""
"par_id3152381\n"
"help.text"
msgid "Open the <menuitem>Styles</menuitem> deck, select a paragraph style, open context menu and choose <menuitem>New</menuitem> or <menuitem>Edit Style</menuitem>."
-msgstr ""
+msgstr "Отворете колодата <menuitem>Стилове</menuitem>, изберете стил на абзац, отворете контекстното меню и изберете <menuitem>Нов</menuitem> или <menuitem>Редактиране на стил</menuitem>."
#. rQ9Bt
#: 00040500.xhp
@@ -13442,7 +13442,7 @@ msgctxt ""
"par_id3147352\n"
"help.text"
msgid "Choose <menuitem>View - Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Alignment</menuitem> tab."
-msgstr ""
+msgstr "Изберете <menuitem>Изглед - Стилове</menuitem> - отворете контекстното меню на елемент и изберете раздела <menuitem>Нов/Редактиране на стил - Подравняване</menuitem>."
#. EF6ft
#: 00040500.xhp
@@ -13460,7 +13460,7 @@ msgctxt ""
"par_id3152463\n"
"help.text"
msgid "Choose <menuitem>View - Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Indents & Spacing</menuitem> tab."
-msgstr ""
+msgstr "Изберете <menuitem>Изглед - Стилове</menuitem> - отворете контекстното меню на елемент и изберете раздела <menuitem>Нов/Редактиране на стил - Отстъпи и разредка</menuitem>."
#. iqEQr
#: 00040500.xhp
@@ -13478,7 +13478,7 @@ msgctxt ""
"par_id3154833\n"
"help.text"
msgid "Choose <menuitem>View - Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Tabs</menuitem> tab."
-msgstr ""
+msgstr "Изберете <menuitem>Изглед - Стилове</menuitem> - отворете контекстното меню на елемент и изберете раздела <menuitem>Нов/Редактиране на стил - Табулатори</menuitem>."
#. iG9GL
#: 00040500.xhp
@@ -13550,7 +13550,7 @@ msgctxt ""
"par_id3149911\n"
"help.text"
msgid "Choose <menuitem>View - Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Borders</menuitem> tab."
-msgstr ""
+msgstr "Изберете <menuitem>Изглед - Стилове</menuitem> - отворете контекстното меню на елемент и изберете раздела <menuitem>Нов/Редактиране на стил - Кантове</menuitem>."
#. cBspq
#: 00040500.xhp
@@ -13667,7 +13667,7 @@ msgctxt ""
"par_id3153532\n"
"help.text"
msgid "Choose <menuitem>View - Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Background</menuitem> tab."
-msgstr ""
+msgstr "Изберете <menuitem>Изглед - Стилове</menuitem> - отворете контекстното меню на елемент и изберете раздела <menuitem>Нов/Редактиране на стил - Фон</menuitem>."
#. nLzZW
#: 00040500.xhp
@@ -13712,7 +13712,7 @@ msgctxt ""
"par_id631579002848692\n"
"help.text"
msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr ""
+msgstr "Изберете <menuitem>Стилове - Управление на стиловете</menuitem> - отворете контекстното меню на елемент и изберете раздела <menuitem>Нов/Редактиране на стил - Организатор</menuitem>."
#. oZUMH
#: 00040500.xhp
@@ -13730,7 +13730,7 @@ msgctxt ""
"par_id961579003607432\n"
"help.text"
msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr ""
+msgstr "Изберете <menuitem>Стилове - Управление на стиловете</menuitem> - отворете контекстното меню на елемент и изберете раздела <menuitem>Нов/Редактиране на стил - Организатор</menuitem>."
#. 5tDj9
#: 00040500.xhp
@@ -13748,7 +13748,7 @@ msgctxt ""
"par_id111579003773016\n"
"help.text"
msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr ""
+msgstr "Изберете <menuitem>Форматиране - Стилове - Управление на стиловете</menuitem> - отворете контекстното меню на елемент и изберете раздела <menuitem>Нов/Редактиране на стил - Организатор</menuitem>."
#. rSUuK
#: 00040500.xhp
@@ -13766,7 +13766,7 @@ msgctxt ""
"par_id3154482\n"
"help.text"
msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr ""
+msgstr "Изберете <menuitem>Изглед - Стилове</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - отворете контекстното меню на елемент и изберете раздела <menuitem>Нов/Редактиране на стил - Организатор</menuitem>."
#. eEUQg
#: 00040500.xhp
@@ -13802,7 +13802,7 @@ msgctxt ""
"par_id3154362\n"
"help.text"
msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of a page style entry and choose <menuitem>New/Edit Style - Page</menuitem> tab."
-msgstr ""
+msgstr "Изберете <menuitem>Изглед - Стилове</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - отворете контекстното меню на стил за страници и изберете раздела <menuitem>Нов/Редактиране на стил - Страница</menuitem>."
#. cgX2W
#: 00040500.xhp
@@ -13820,7 +13820,7 @@ msgctxt ""
"par_id31543624680\n"
"help.text"
msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of a page style entry and choose <menuitem>New/Edit Style - Page</menuitem> tab."
-msgstr ""
+msgstr "Изберете <menuitem>Изглед - Стилове</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - отворете контекстното меню на стил за страници и изберете раздела <menuitem>Нов/Редактиране на стил - Страница</menuitem>."
#. iCz7o
#: 00040500.xhp
@@ -13847,7 +13847,7 @@ msgctxt ""
"par_id3148405\n"
"help.text"
msgid "Choose <menuitem>View - Styles</menuitem> - open context menu of a page style entry and choose <menuitem>New/Edit Style - Header</menuitem> tab."
-msgstr ""
+msgstr "Изберете <menuitem>Изглед - Стилове</menuitem> - отворете контекстното меню на стил за страници и изберете раздела <menuitem>Нов/Редактиране на стил - Горен колонтитул</menuitem>."
#. nJY9z
#: 00040500.xhp
@@ -13865,7 +13865,7 @@ msgctxt ""
"par_id3155175\n"
"help.text"
msgid "Choose <menuitem>View - Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Footer</menuitem> tab."
-msgstr ""
+msgstr "Изберете <menuitem>Изглед - Стилове</menuitem> - отворете контекстното меню на елемент и изберете раздела <menuitem>Нов/Редактиране на стил - Долен колонтитул</menuitem>."
#. LUBTb
#: 00040500.xhp
@@ -14018,7 +14018,7 @@ msgctxt ""
"par_id3145220\n"
"help.text"
msgid "Choose <menuitem>Format - Bullets and Numbering</menuitem>."
-msgstr ""
+msgstr "Изберете раздела <menuitem>Форматиране - Водачи и номерация</menuitem>."
#. iEhGu
#: 00040500.xhp
@@ -14027,7 +14027,7 @@ msgctxt ""
"par_id761616160771224\n"
"help.text"
msgid "Choose <menuitem>List - Bullets and Numbering</menuitem>."
-msgstr ""
+msgstr "Изберете раздела <menuitem>Списък - Водачи и номерация</menuitem>."
#. WGobM
#: 00040500.xhp
@@ -14036,7 +14036,7 @@ msgctxt ""
"par_id51690931786955\n"
"help.text"
msgid "Choose <menuitem>Text</menuitem> - long click on bullet, numbering and outline icons, choose <menuitem>Customize</menuitem>."
-msgstr ""
+msgstr "Изберете <menuitem>Текст</menuitem> – щракнете и задръжте върху иконите за водещ символ, номериране и план, изберете <menuitem>Персонализиране</menuitem>."
#. CtoXr
#: 00040500.xhp
@@ -14045,7 +14045,7 @@ msgctxt ""
"par_id761690931793457\n"
"help.text"
msgid "Choose <menuitem>Home</menuitem> - long click on bullet, numbering and outline icons, choose <menuitem>Customize</menuitem>."
-msgstr ""
+msgstr "Изберете <menuitem>Начало</menuitem> – щракнете и задръжте върху иконите за водещ символ, номериране и план, изберете <menuitem>Персонализиране</menuitem>."
#. JQBhp
#: 00040500.xhp
@@ -14054,7 +14054,7 @@ msgctxt ""
"par_id741690929264495\n"
"help.text"
msgid "On the <menuitem>Home</menuitem> menu of the <menuitem>Home</menuitem> tab, choose <menuitem>Bullets and Numbering</menuitem>."
-msgstr ""
+msgstr "В менюто <menuitem>Начало</menuitem> на раздела <menuitem>Начало</menuitem> изберете <menuitem>Водачи и номерация</menuitem>."
#. BThvn
#: 00040500.xhp
@@ -14063,7 +14063,7 @@ msgctxt ""
"par_id571690928716928\n"
"help.text"
msgid "Place cursor on a heading, click on the <menuitem>Outline</menuitem> area."
-msgstr ""
+msgstr "Поставете курсора върху заглавие, щракнете в областта <menuitem>План</menuitem>."
#. Z54Yo
#: 00040500.xhp
@@ -14072,7 +14072,7 @@ msgctxt ""
"par_id3149445\n"
"help.text"
msgid "<image id=\"img_id3149964\" src=\"cmd/lc_bulletsandnumberingdialog.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149964\">Bullets and Numbering dialog Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149964\" src=\"cmd/lc_bulletsandnumberingdialog.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149964\">Икона за диалога „Водачи и номерация“</alt></image>"
#. BPPZD
#: 00040500.xhp
@@ -14090,7 +14090,7 @@ msgctxt ""
"par_id101690929527350\n"
"help.text"
msgid "<image src=\"cmd/lc_defaultbullet.svg\" id=\"img_id711690929527351\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id921690929527352\">Default bullet</alt></image> <image src=\"cmd/lc_defaultnumbering.svg\" id=\"img_id141690929565394\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id311690929565395\">Default numbering</alt></image> <switchinline select=\"appl\"><caseinline select=\"WRITER\"><image src=\"cmd/lc_setoutline.svg\" id=\"img_id111690929576033\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id821690929576034\">Set outline</alt></image></caseinline></switchinline>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_defaultbullet.svg\" id=\"img_id711690929527351\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id921690929527352\">Подразбиран водещ символ</alt></image> <image src=\"cmd/lc_defaultnumbering.svg\" id=\"img_id141690929565394\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id311690929565395\">Подразбирана номерация</alt></image> <switchinline select=\"appl\"><caseinline select=\"WRITER\"><image src=\"cmd/lc_setoutline.svg\" id=\"img_id111690929576033\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id821690929576034\">Задаване на план</alt></image></caseinline></switchinline>"
#. 5BJ2Q
#: 00040500.xhp
@@ -14099,7 +14099,7 @@ msgctxt ""
"par_id861690929510655\n"
"help.text"
msgid "Long click and select <menuitem>Customize</menuitem>."
-msgstr ""
+msgstr "Щракнете и задръжте, изберете <menuitem>Персонализиране</menuitem>."
#. XAbBj
#: 00040500.xhp
@@ -14117,7 +14117,7 @@ msgctxt ""
"par_id3150785\n"
"help.text"
msgid "Open <menuitem>Styles - Presentation Styles</menuitem> - context menu of an Outline Style - choose <menuitem>New/Edit Style</menuitem>."
-msgstr ""
+msgstr "Отворете <menuitem>Стилове - Стилове за презентации</menuitem> – контекстното меню на някой от стиловете „План“ - изберете <menuitem>Нов/Редактиране на стил</menuitem>."
#. fRoS3
#: 00040500.xhp
@@ -14126,7 +14126,7 @@ msgctxt ""
"par_id3148420\n"
"help.text"
msgid "Open <menuitem>Styles - List Styles</menuitem> - context menu of an entry - choose <menuitem>New/Edit Style</menuitem>."
-msgstr ""
+msgstr "Отворете <menuitem>Стилове - Стилове за списъци</menuitem> - контекстно меню на елемент - изберете <menuitem>Нов/Редактиране на стил</menuitem>."
#. gC75r
#: 00040500.xhp
@@ -14135,7 +14135,7 @@ msgctxt ""
"par_id701692447925387\n"
"help.text"
msgid "Open the <link href=\"text/shared/01/06050000.xhp\"><menuitem>Bullets and Numbering</menuitem></link> dialog, select <menuitem>Unordered</menuitem>."
-msgstr ""
+msgstr "Отворете диалога <link href=\"text/shared/01/06050000.xhp\"><menuitem>Водачи и номерация</menuitem></link>, изберете <menuitem>Неподреден</menuitem>."
#. 2JG8k
#: 00040500.xhp
@@ -14144,7 +14144,7 @@ msgctxt ""
"par_id3149917\n"
"help.text"
msgid "Open <menuitem>Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) <menuitem> - Presentation Styles</menuitem> - context menu of an outline style - choose <menuitem>Edit Styles - Bullets</menuitem> tab."
-msgstr ""
+msgstr "Отворете <menuitem>Стилове</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) <menuitem> - Стилове за презентации</menuitem> - контекстно меню на стил за план - изберете раздела <menuitem>Редактиране на стил - Водачи</menuitem>."
#. d5XDX
#: 00040500.xhp
@@ -14153,7 +14153,7 @@ msgctxt ""
"par_id541692447574919\n"
"help.text"
msgid "Open <menuitem>Format - Paragraph - Outline & List</menuitem>, click on <widget>Edit Style</widget> - <menuitem>Unordered</menuitem> tab."
-msgstr ""
+msgstr "Отворете <menuitem>Форматиране - Абзац - План и списък</menuitem>, щракнете върху <widget>Редактиране на стил</widget> - раздел <menuitem>Неподреден</menuitem>."
#. eSXpi
#: 00040500.xhp
@@ -14162,7 +14162,7 @@ msgctxt ""
"par_id3154930\n"
"help.text"
msgid "Open <menuitem>Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) <menuitem>- List Styles</menuitem> - context menu of an entry - choose <menuitem>New/Edit Style - Unordered</menuitem> tab."
-msgstr ""
+msgstr "Отворете <menuitem>Стилове</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) <menuitem>Стилове за списъци</menuitem> - контекстно меню на елемент - изберете раздела <menuitem>Нов/Редактиране на стил - Неподреден</menuitem>."
#. Fj4a4
#: 00040500.xhp
@@ -14171,7 +14171,7 @@ msgctxt ""
"par_id581692448797689\n"
"help.text"
msgid "Open <menuitem>Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) <menuitem>- Paragraph Styles</menuitem>, context menu of an entry - choose <menuitem>New/Edit Style - Outline & List</menuitem>, click on <widget>Edit Style</widget> - <menuitem>Unordered</menuitem> tab."
-msgstr ""
+msgstr "Отворете <menuitem>Стилове</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) <menuitem>Стилове за абзаци</menuitem> - контекстно меню на елемент - изберете раздела <menuitem>Нов/Редактиране на стил - План и списък</menuitem>, щракнете върху <widget>Редактиране на стил</widget> - раздел <menuitem>Неподреден</menuitem>."
#. EvpKg
#: 00040500.xhp
@@ -14180,7 +14180,7 @@ msgctxt ""
"par_id751692451544221\n"
"help.text"
msgid "Open the <link href=\"text/shared/01/06050000.xhp\"><menuitem>Bullets and Numbering</menuitem></link> dialog, select <menuitem>Ordered</menuitem>."
-msgstr ""
+msgstr "Отворете диалога <link href=\"text/shared/01/06050000.xhp\"><menuitem>Водачи и номерация</menuitem></link>, изберете <menuitem>Подреден</menuitem>."
#. MEHMj
#: 00040500.xhp
@@ -14189,7 +14189,7 @@ msgctxt ""
"par_id461692451557838\n"
"help.text"
msgid "Open <menuitem>Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) <menuitem>- Presentation Styles</menuitem> - context menu of an outline style - choose <menuitem>Edit Styles - Numbering</menuitem> tab."
-msgstr ""
+msgstr "Отворете <menuitem>Стилове</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) <menuitem> - Стилове за презентации</menuitem> - контекстно меню на стил за план - изберете раздела <menuitem>Редактиране на стил - Номерация</menuitem>."
#. T5esN
#: 00040500.xhp
@@ -14198,7 +14198,7 @@ msgctxt ""
"par_id441692451564694\n"
"help.text"
msgid "Open <menuitem>Format - Paragraph - Outline & List</menuitem>, click on <widget>Edit Style</widget> - <menuitem>Ordered</menuitem> tab."
-msgstr ""
+msgstr "Отворете <menuitem>Форматиране - Абзац - План и списък</menuitem>, щракнете върху <widget>Редактиране на стил</widget> - раздел <menuitem>Подреден</menuitem>."
#. Gsnpp
#: 00040500.xhp
@@ -14207,7 +14207,7 @@ msgctxt ""
"par_id561692451570660\n"
"help.text"
msgid "Open <menuitem>Styles</menuitem>(<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) <menuitem>- List Styles</menuitem> - context menu of an entry - choose <menuitem>New/Edit Style - Ordered</menuitem> tab."
-msgstr ""
+msgstr "Отворете <menuitem>Стилове</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) <menuitem>Стилове за списъци</menuitem> - контекстно меню на елемент - изберете раздела <menuitem>Нов/Редактиране на стил - Подреден</menuitem>."
#. GpfYs
#: 00040500.xhp
@@ -14216,7 +14216,7 @@ msgctxt ""
"par_id831692451574766\n"
"help.text"
msgid "Open <menuitem>Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) <menuitem>- Paragraph Styles</menuitem>, context menu of an entry - choose <menuitem>New/Edit Style - Outline & List</menuitem>, click on <widget>Edit Style</widget> - <menuitem>Ordered</menuitem> tab."
-msgstr ""
+msgstr "Отворете <menuitem>Стилове</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) <menuitem>Стилове за абзаци</menuitem> - контекстно меню на елемент - изберете раздела <menuitem>Нов/Редактиране на стил - План и списък</menuitem>, щракнете върху <widget>Редактиране на стил</widget> - раздел <menuitem>Подреден</menuitem>."
#. udMRP
#: 00040500.xhp
@@ -14225,7 +14225,7 @@ msgctxt ""
"par_id461692538170299\n"
"help.text"
msgid "Open the <link href=\"text/shared/01/06050000.xhp\"><menuitem>Bullets and Numbering</menuitem></link> dialog, select <menuitem>Image</menuitem>."
-msgstr ""
+msgstr "Отворете диалога <link href=\"text/shared/01/06050000.xhp\"><menuitem>Водачи и номерация</menuitem></link>, изберете <menuitem>Изображение</menuitem>."
#. zhzWi
#: 00040500.xhp
@@ -14234,7 +14234,7 @@ msgctxt ""
"par_id951692538295900\n"
"help.text"
msgid "Open <menuitem>Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) <menuitem>- List Styles</menuitem> - context menu of an entry - choose <menuitem>New/Edit Style - Ordered</menuitem> tab."
-msgstr ""
+msgstr "Отворете <menuitem>Стилове</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) <menuitem>Стилове за списъци</menuitem> - контекстно меню на елемент - изберете раздела <menuitem>Нов/Редактиране на стил - Подреден</menuitem>."
#. Ca4EQ
#: 00040500.xhp
@@ -14243,7 +14243,7 @@ msgctxt ""
"par_id1001692538299731\n"
"help.text"
msgid "Open <menuitem>Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) <menuitem>- Paragraph Styles</menuitem>, context menu of an entry - choose <menuitem>New/Edit Style - Outline & List</menuitem>, click on <widget>Edit Style</widget> - <menuitem>Ordered</menuitem> tab."
-msgstr ""
+msgstr "Отворете <menuitem>Стилове</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) <menuitem>Стилове за абзаци</menuitem> - контекстно меню на елемент - изберете раздела <menuitem>Нов/Редактиране на стил - План и списък</menuitem>, щракнете върху <widget>Редактиране на стил</widget> - раздел <menuitem>Подреден</menuitem>."
#. Cv44L
#: 00040500.xhp
@@ -14252,7 +14252,7 @@ msgctxt ""
"par_id351692452437726\n"
"help.text"
msgid "Open the <link href=\"text/shared/01/06050000.xhp\"><menuitem>Bullets and Numbering</menuitem></link> dialog, select <menuitem>Outline</menuitem>."
-msgstr ""
+msgstr "Отворете диалога <link href=\"text/shared/01/06050000.xhp\"><menuitem>Водачи и номерация</menuitem></link>, изберете <menuitem>План</menuitem>."
#. n6yAV
#: 00040500.xhp
@@ -14261,7 +14261,7 @@ msgctxt ""
"par_id551692453786548\n"
"help.text"
msgid "Open <menuitem>Format - Paragraph - Outline & List</menuitem>, click on <widget>Edit Style</widget> - <menuitem>Outline</menuitem> tab."
-msgstr ""
+msgstr "Отворете <menuitem>Форматиране - Абзац - План и списък</menuitem>, щракнете върху <widget>Редактиране на стил</widget> - раздел <menuitem>План</menuitem>."
#. HDBij
#: 00040500.xhp
@@ -14270,7 +14270,7 @@ msgctxt ""
"par_id521692453821157\n"
"help.text"
msgid "Open <menuitem>Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) <menuitem>- List Styles</menuitem> - context menu of an entry - choose <menuitem>New/Edit Style - Outline</menuitem> tab."
-msgstr ""
+msgstr "Отворете <menuitem>Стилове</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) <menuitem>Стилове за списъци</menuitem> - контекстно меню на елемент - изберете раздела <menuitem>Нов/Редактиране на стил - План</menuitem>."
#. K9VTd
#: 00040500.xhp
@@ -14279,7 +14279,7 @@ msgctxt ""
"par_id61692453824913\n"
"help.text"
msgid "Open <menuitem>Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) <menuitem>- Paragraph Styles</menuitem>, context menu of an entry - choose <menuitem>New/Edit Style - Outline & List</menuitem>, click on <widget>Edit Style</widget> - <menuitem>Outline</menuitem> tab."
-msgstr ""
+msgstr "Отворете <menuitem>Стилове</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) <menuitem>Стилове за абзаци</menuitem> - контекстно меню на елемент - изберете раздела <menuitem>Нов/Редактиране на стил - План и списък</menuitem>, щракнете върху <widget>Редактиране на стил</widget> - раздел <menuitem>План</menuitem>."
#. gfMdA
#: 00040500.xhp
@@ -14297,7 +14297,7 @@ msgctxt ""
"par_id3153812\n"
"help.text"
msgid "Choose <menuitem>View - Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - choose List Styles - context menu of an entry - choose <menuitem>New/Edit Style</menuitem> - <emph>Position</emph> tab."
-msgstr ""
+msgstr "Изберете <menuitem>Изглед - Стилове</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - изберете „Стилове за списъци“ - контекстно меню на елемент - изберете <menuitem>Нов/Редактиране на стил</menuitem> - раздел <emph>Позиция</emph>."
#. RKRb9
#: 00040500.xhp
@@ -14306,7 +14306,7 @@ msgctxt ""
"par_id3153899\n"
"help.text"
msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - choose List Styles - context menu of an entry - choose <menuitem>New/Edit Style</menuitem> - <emph>Position</emph> tab."
-msgstr ""
+msgstr "Изберете <menuitem>Стилове - Управление на стиловете</menuitem> - изберете „Стилове за списъци“ - контекстно меню на елемент - изберете <menuitem>Нов/Редактиране на стил</menuitem> - раздел <emph>Позиция</emph>."
#. 6g732
#: 00040500.xhp
@@ -14324,7 +14324,7 @@ msgctxt ""
"par_id181692821721184\n"
"help.text"
msgid "Choose <menuitem>Format - Image - Crop</menuitem>."
-msgstr ""
+msgstr "Изберете <menuitem>Форматиране - Изображение – Подрязване</menuitem>."
#. 8AtZC
#: 00040500.xhp
@@ -14342,7 +14342,7 @@ msgctxt ""
"par_id611692821136322\n"
"help.text"
msgid "Choose <menuitem>Crop</menuitem>."
-msgstr ""
+msgstr "Изберете <menuitem>Подрязване</menuitem>."
#. bMDBi
#: 00040500.xhp
@@ -14351,7 +14351,7 @@ msgctxt ""
"par_id911692821238429\n"
"help.text"
msgid "Choose <menuitem>Image - Crop</menuitem>."
-msgstr ""
+msgstr "Изберете <menuitem>Изображение – Подрязване</menuitem>."
#. qpGvB
#: 00040500.xhp
@@ -14360,7 +14360,7 @@ msgctxt ""
"par_id421692821243144\n"
"help.text"
msgid "On the <menuitem>Image</menuitem> menu of the <menuitem>Image</menuitem> tab, choose <menuitem>Crop</menuitem>."
-msgstr ""
+msgstr "В менюто <menuitem>Изображение</menuitem> на раздела <menuitem>Изображение</menuitem> изберете <menuitem>Подрязване</menuitem>."
#. vEarG
#: 00040500.xhp
@@ -14369,7 +14369,7 @@ msgctxt ""
"par_id3149953\n"
"help.text"
msgid "<image id=\"img_id3155092\" src=\"cmd/lc_crop.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155092\">Icon Crop</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155092\" src=\"cmd/lc_crop.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155092\">Икона за подрязване</alt></image>"
#. Qs4bZ
#: 00040500.xhp
@@ -14531,7 +14531,7 @@ msgctxt ""
"par_id41695847646861\n"
"help.text"
msgid "Choose <menuitem>Form - Form Properties</menuitem>."
-msgstr ""
+msgstr "Изберете <menuitem>Формуляр - Свойства на формуляр</menuitem>."
#. R7CPC
#: 00040501.xhp
@@ -14540,7 +14540,7 @@ msgctxt ""
"par_id941695847655405\n"
"help.text"
msgid "Choose <menuitem>Form Properties</menuitem>."
-msgstr ""
+msgstr "Изберете <menuitem>Свойства на формуляр</menuitem>."
#. 2zwg5
#: 00040501.xhp
@@ -14549,7 +14549,7 @@ msgctxt ""
"par_id551695847658533\n"
"help.text"
msgid "Choose <menuitem>Form - Form Properties</menuitem>."
-msgstr ""
+msgstr "Изберете <menuitem>Формуляр - Свойства на формуляр</menuitem>."
#. yTfVx
#: 00040501.xhp
@@ -14558,7 +14558,7 @@ msgctxt ""
"par_id981695847661421\n"
"help.text"
msgid "Choose <menuitem>Tools - Form Properties</menuitem>."
-msgstr ""
+msgstr "Изберете <menuitem>Инструменти - Свойства на формуляр</menuitem>."
#. H9eCu
#: 00040501.xhp
@@ -14567,7 +14567,7 @@ msgctxt ""
"par_id3152933\n"
"help.text"
msgid "<image id=\"img_id3148676\" src=\"cmd/lc_formproperties.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148676\">Icon Form Properties</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148676\" src=\"cmd/lc_formproperties.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148676\">Икона за свойства на формуляр</alt></image>"
#. HAwvP
#: 00040501.xhp
@@ -14576,7 +14576,7 @@ msgctxt ""
"par_id3144760\n"
"help.text"
msgid "Form Properties"
-msgstr ""
+msgstr "Свойства на формуляр"
#. AkBsv
#: 00040501.xhp
@@ -14657,7 +14657,7 @@ msgctxt ""
"par_id911695846758455\n"
"help.text"
msgid "Choose <menuitem>Form - Control Properties</menuitem>."
-msgstr ""
+msgstr "Изберете <menuitem>Формуляр - Свойства на контрола</menuitem>."
#. dA5aA
#: 00040501.xhp
@@ -14666,7 +14666,7 @@ msgctxt ""
"par_id3147234\n"
"help.text"
msgid "Choose <menuitem>Control Properties</menuitem>."
-msgstr ""
+msgstr "Изберете <menuitem>Свойства на контрола</menuitem>."
#. U3uCG
#: 00040501.xhp
@@ -14675,7 +14675,7 @@ msgctxt ""
"par_id481695846804220\n"
"help.text"
msgid "Choose <menuitem>Form - Control Properties</menuitem>."
-msgstr ""
+msgstr "Изберете <menuitem>Формуляр - Свойства на контрола</menuitem>."
#. sKCtd
#: 00040501.xhp
@@ -14684,7 +14684,7 @@ msgctxt ""
"par_id681695846847202\n"
"help.text"
msgid "Choose <menuitem>Tools - Control Properties</menuitem>."
-msgstr ""
+msgstr "Изберете <menuitem>Инструменти - Свойства на контрола</menuitem>."
#. iDpkC
#: 00040501.xhp
@@ -14693,7 +14693,7 @@ msgctxt ""
"par_id3153953\n"
"help.text"
msgid "<image id=\"img_id3149064\" src=\"cmd/lc_controlproperties.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149064\">Icon Control</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149064\" src=\"cmd/lc_controlproperties.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149064\">Икона за контрола</alt></image>"
#. cEMjj
#: 00040501.xhp
@@ -14702,7 +14702,7 @@ msgctxt ""
"par_id3156442\n"
"help.text"
msgid "Control Properties"
-msgstr ""
+msgstr "Свойства на контрола"
#. TrUBh
#: 00040501.xhp
@@ -14765,7 +14765,7 @@ msgctxt ""
"par_id351695848328333\n"
"help.text"
msgid "Choose <menuitem>Form - Activation Order</menuitem>."
-msgstr ""
+msgstr "Изберете <menuitem>Формуляр - Ред на активиране</menuitem>."
#. Pq9SU
#: 00040501.xhp
@@ -14774,7 +14774,7 @@ msgctxt ""
"par_id621695848331495\n"
"help.text"
msgid "Choose <menuitem>Form - Activation Order</menuitem>."
-msgstr ""
+msgstr "Изберете <menuitem>Формуляр - Ред на активиране</menuitem>."
#. zDFDR
#: 00040501.xhp
@@ -14783,7 +14783,7 @@ msgctxt ""
"par_id151695848334342\n"
"help.text"
msgid "Choose <menuitem>Tools - Activation Order</menuitem>."
-msgstr ""
+msgstr "Изберете <menuitem>Инструменти - Ред на активиране</menuitem>."
#. vqhjD
#: 00040501.xhp
@@ -14792,7 +14792,7 @@ msgctxt ""
"par_id3157874\n"
"help.text"
msgid "<image id=\"img_id3159345\" src=\"cmd/lc_tabdialog.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3159345\">Icon Activation Order</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3159345\" src=\"cmd/lc_tabdialog.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3159345\">Икона за ред на активиране</alt></image>"
#. BmMW5
#: 00040501.xhp
@@ -14837,7 +14837,7 @@ msgctxt ""
"par_id911695848049854\n"
"help.text"
msgid "Choose <menuitem>Form - Form Navigator</menuitem>."
-msgstr ""
+msgstr "Изберете <menuitem>Формуляр - Навигатор за формуляри</menuitem>."
#. wxQuS
#: 00040501.xhp
@@ -14846,7 +14846,7 @@ msgctxt ""
"par_id131695848052453\n"
"help.text"
msgid "Choose <menuitem>Form - Form Navigator</menuitem>."
-msgstr ""
+msgstr "Изберете <menuitem>Формуляр - Навигатор за формуляри</menuitem>."
#. bVYBn
#: 00040501.xhp
@@ -14855,7 +14855,7 @@ msgctxt ""
"par_id51695848055159\n"
"help.text"
msgid "Choose <menuitem>Tools - Form Navigator</menuitem>."
-msgstr ""
+msgstr "Изберете <menuitem>Инструменти - Навигатор за формуляри</menuitem>."
#. z4xMP
#: 00040501.xhp
@@ -14864,7 +14864,7 @@ msgctxt ""
"par_id3150749\n"
"help.text"
msgid "<image id=\"img_id3157869\" src=\"cmd/lc_showfmexplorer.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3157869\">Icon Form Navigator</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3157869\" src=\"cmd/lc_showfmexplorer.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3157869\">Икона „Навигатор за формуляри“</alt></image>"
#. QEjGP
#: 00040501.xhp
@@ -14882,7 +14882,7 @@ msgctxt ""
"par_id781695836555895\n"
"help.text"
msgid "Choose <menuitem>Form - Design Mode</menuitem>."
-msgstr ""
+msgstr "Изберете <menuitem>Формуляр - Режим на проектиране</menuitem>."
#. 6FsBL
#: 00040501.xhp
@@ -14891,7 +14891,7 @@ msgctxt ""
"par_id631695836734809\n"
"help.text"
msgid "Choose <menuitem>Form - Toggle Design Mode</menuitem>."
-msgstr ""
+msgstr "Изберете <menuitem>Формуляр - Превключване на режима „Проектиране“</menuitem>."
#. H6Rxn
#: 00040501.xhp
diff --git a/source/bg/helpcontent2/source/text/swriter/guide.po b/source/bg/helpcontent2/source/text/swriter/guide.po
index 69c026fea44..81276cc2beb 100644
--- a/source/bg/helpcontent2/source/text/swriter/guide.po
+++ b/source/bg/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2023-12-04 15:06+0100\n"
+"POT-Creation-Date: 2024-03-18 13:16+0100\n"
"PO-Revision-Date: 2024-02-23 19:38+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-24-2/textswriterguide/bg/>\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 5.3.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1564897611.000000\n"
#. XAt2Y
@@ -15757,14 +15757,14 @@ msgctxt ""
msgid "You can manually check the spelling and grammar of a text selection or the entire document."
msgstr "Можете да проверите ръчно правописа и граматиката на избран текст или целия документ."
-#. 66nTi
+#. TV7Aa
#: spellcheck_dialog.xhp
msgctxt ""
"spellcheck_dialog.xhp\n"
"par_id0525200902184476\n"
"help.text"
-msgid "To check the spelling and the grammar of a text, the appropriate dictionaries must be installed. For many languages three different dictionaries exist: a spellchecker, a hyphenation dictionary, and a thesaurus. Each dictionary covers one language only. Grammar checkers can be downloaded and installed as extensions. See the <link href=\"https://extensions.libreoffice.org/extension-center?getCategories=Dictionary\">extensions web page</link>."
-msgstr "За да проверите правописа и граматиката на текст, трябва да са инсталирани съответните речници. За много езици съществуват по три речника: правописен, за сричкопренасяне и синонимен. Всеки речник обхваща само един език. Проверяващите модули за граматика могат да се изтеглят и инсталират като разширения. Вижте <link href=\"https://extensions.libreoffice.org/extension-center?getCategories=Dictionary\">уебстраницата с разширения</link>."
+msgid "To check the spelling and the grammar of a text, the appropriate dictionaries must be installed. For many languages three different dictionaries exist: a spellchecker, a hyphenation dictionary, and a thesaurus. Each dictionary covers one language only. Grammar checkers can be downloaded and installed as extensions. See the <link href=\"https://extensions.libreoffice.org/?Tags[]=50\">extensions web page</link>."
+msgstr "За да проверите правописа и граматиката на текст, трябва да са инсталирани съответните речници. За много езици съществуват по три речника: правописен, за сричкопренасяне и синонимен. Всеки речник обхваща само един език. Проверяващите модули за граматика могат да се изтеглят и инсталират като разширения. Вижте <link href=\"https://extensions.libreoffice.org/?Tags[]=50\">уебстраницата с разширения</link>."
#. X3zXc
#: spellcheck_dialog.xhp
diff --git a/source/bg/sfx2/messages.po b/source/bg/sfx2/messages.po
index cd0e47b0ce5..815b4c85be7 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: 2023-12-04 15:07+0100\n"
+"POT-Creation-Date: 2024-03-18 13:16+0100\n"
"PO-Revision-Date: 2024-01-17 17:21+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"
@@ -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 5.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1559599623.000000\n"
#. bHbFE
@@ -3795,7 +3795,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2023 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2024 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
@@ -3805,7 +3805,7 @@ msgstr ""
"\n"
"Всички споменати запазени и регистрирани марки са собственост на съответните страни.\n"
"\n"
-"© 2000–2023 разработчиците на LibreOffice. Всички права запазени.\n"
+"© 2000–2024 разработчиците на LibreOffice. Всички права запазени.\n"
"\n"
"Продуктът е създаден от %OOOVENDOR на базата на OpenOffice.org, © 2000 – 2011 Oracle и/или партньорите ѝ. %OOOVENDOR благодари на всички членове на общността, за подробности вижте http://www.libreoffice.org/ ."
@@ -4446,7 +4446,7 @@ msgid "Specifies the print setting options."
msgstr "Задава настройките за печатане."
#. NEo7g
-#: sfx2/uiconfig/ui/panel.ui:73 sfx2/uiconfig/ui/panel.ui:78
+#: sfx2/uiconfig/ui/panel.ui:74 sfx2/uiconfig/ui/panel.ui:79
msgctxt "panel|SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Още настройки"
diff --git a/source/bn-IN/cui/messages.po b/source/bn-IN/cui/messages.po
index 3571849e7a2..c6c890095f3 100644
--- a/source/bn-IN/cui/messages.po
+++ b/source/bn-IN/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-01-22 14:04+0100\n"
+"POT-Creation-Date: 2024-03-18 13:15+0100\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/cuimessages/bn_IN/>\n"
@@ -1983,7 +1983,7 @@ msgstr ""
#. YfSb4
#: cui/inc/strings.hrc:361
msgctxt "aboutdialog|copyright"
-msgid "Copyright © 2000–2023 LibreOffice contributors."
+msgid "Copyright © 2000–2024 LibreOffice contributors."
msgstr ""
#. WCnhx
@@ -12316,163 +12316,163 @@ msgid "Colo_r:"
msgstr "রঙ (_r):"
#. sBL64
-#: cui/uiconfig/ui/linetabpage.ui:259
+#: cui/uiconfig/ui/linetabpage.ui:260
msgctxt "linetabpage|FT_LINE_WIDTH"
msgid "T_hickness:"
msgstr ""
#. MzAeD
-#: cui/uiconfig/ui/linetabpage.ui:301
+#: cui/uiconfig/ui/linetabpage.ui:302
msgctxt "linetabpage|FT_TRANSPARENT"
msgid "_Transparency:"
msgstr "স্বচ্ছতা (_T):"
#. 6TFWn
-#: cui/uiconfig/ui/linetabpage.ui:339
+#: cui/uiconfig/ui/linetabpage.ui:340
msgctxt "linetabpage|label1"
msgid "Line Properties"
msgstr "লাইনের বৈশিষ্ট্য"
#. HyxSJ
-#: cui/uiconfig/ui/linetabpage.ui:382
+#: cui/uiconfig/ui/linetabpage.ui:383
msgctxt "linetabpage|FT_LINE_ENDS_STYLE"
msgid "Start st_yle:"
msgstr "শুরুর শৈলী (_y):"
#. aZYyn
-#: cui/uiconfig/ui/linetabpage.ui:423
+#: cui/uiconfig/ui/linetabpage.ui:424
msgctxt "linetabpage|TSB_CENTER_START"
msgid "Ce_nter"
msgstr "কেন্দ্র (_n)"
#. 5RYtu
-#: cui/uiconfig/ui/linetabpage.ui:441
+#: cui/uiconfig/ui/linetabpage.ui:442
msgctxt "linetabpage|FT_LINE_START_WIDTH"
msgid "Wi_dth:"
msgstr "প্রস্থ (_d):"
#. pQfyE
-#: cui/uiconfig/ui/linetabpage.ui:467
+#: cui/uiconfig/ui/linetabpage.ui:468
msgctxt "linetabpage|CBX_SYNCHRONIZE"
msgid "Synchroni_ze ends"
msgstr "সিঙ্ক্রোনাইজ প্রান্ত (_z)"
#. cCsuG
-#: cui/uiconfig/ui/linetabpage.ui:533
+#: cui/uiconfig/ui/linetabpage.ui:534
msgctxt "linetabpage|label5"
msgid "End sty_le:"
msgstr "সমাপ্তির শৈলী (_l):"
#. zm8Ga
-#: cui/uiconfig/ui/linetabpage.ui:554
+#: cui/uiconfig/ui/linetabpage.ui:555
msgctxt "linetabpage|FT_LINE_END_WIDTH"
msgid "W_idth:"
msgstr "প্রস্থ (_i):"
#. g2gLY
-#: cui/uiconfig/ui/linetabpage.ui:580
+#: cui/uiconfig/ui/linetabpage.ui:581
msgctxt "linetabpage|TSB_CENTER_END"
msgid "C_enter"
msgstr "কেন্দ্র (_e)"
#. sged5
-#: cui/uiconfig/ui/linetabpage.ui:624
+#: cui/uiconfig/ui/linetabpage.ui:625
msgctxt "linetabpage|label2"
msgid "Arrow Styles"
msgstr "তীর শৈলী"
#. BdoBN
-#: cui/uiconfig/ui/linetabpage.ui:656
+#: cui/uiconfig/ui/linetabpage.ui:657
msgctxt "linetabpage|FT_EDGE_STYLE"
msgid "_Corner style:"
msgstr "কোনার শৈলী (_C):"
#. kCtQm
-#: cui/uiconfig/ui/linetabpage.ui:670
+#: cui/uiconfig/ui/linetabpage.ui:671
msgctxt "linetabpage|FT_CAP_STYLE"
msgid "Ca_p style:"
msgstr "ক্যাপ শৈলী (_p):"
#. Qx3Ur
-#: cui/uiconfig/ui/linetabpage.ui:685
+#: cui/uiconfig/ui/linetabpage.ui:686
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Rounded"
msgstr "বৃত্তাকৃতি"
#. XH7Z6
-#: cui/uiconfig/ui/linetabpage.ui:686
+#: cui/uiconfig/ui/linetabpage.ui:687
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "- none -"
msgstr "-কোনটি নয়-"
#. HZoVf
-#: cui/uiconfig/ui/linetabpage.ui:687
+#: cui/uiconfig/ui/linetabpage.ui:688
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Mitered"
msgstr "মাইটার আকৃতি সম্পন্ন"
#. RjDyz
-#: cui/uiconfig/ui/linetabpage.ui:688
+#: cui/uiconfig/ui/linetabpage.ui:689
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Beveled"
msgstr "বেভেলড"
#. biCBC
-#: cui/uiconfig/ui/linetabpage.ui:701
+#: cui/uiconfig/ui/linetabpage.ui:702
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Flat"
msgstr "সমতল"
#. GqrYS
-#: cui/uiconfig/ui/linetabpage.ui:702
+#: cui/uiconfig/ui/linetabpage.ui:703
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Round"
msgstr "গোলাকার"
#. 3hNSB
-#: cui/uiconfig/ui/linetabpage.ui:703
+#: cui/uiconfig/ui/linetabpage.ui:704
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Square"
msgstr "চৌকো"
#. Y4Gmw
-#: cui/uiconfig/ui/linetabpage.ui:717
+#: cui/uiconfig/ui/linetabpage.ui:718
msgctxt "linetabpage|label3"
msgid "Corner and Cap Styles"
msgstr "কোণা এবং ক্যাপ শৈলী"
#. 4YTBE
-#: cui/uiconfig/ui/linetabpage.ui:745
+#: cui/uiconfig/ui/linetabpage.ui:746
msgctxt "linetabpage|MB_SYMBOL_BITMAP"
msgid "Select..."
msgstr "নির্বাচন করুন..."
#. LaBcU
-#: cui/uiconfig/ui/linetabpage.ui:774
+#: cui/uiconfig/ui/linetabpage.ui:775
msgctxt "linetabpage|FT_SYMBOL_WIDTH"
msgid "Widt_h:"
msgstr "প্রস্থ (_h):"
#. yhVmm
-#: cui/uiconfig/ui/linetabpage.ui:799
+#: cui/uiconfig/ui/linetabpage.ui:800
msgctxt "linetabpage|CB_SYMBOL_RATIO"
msgid "_Keep ratio"
msgstr "অনুপাত বজায় রাখুন (_K)"
#. oV6GJ
-#: cui/uiconfig/ui/linetabpage.ui:817
+#: cui/uiconfig/ui/linetabpage.ui:818
msgctxt "linetabpage|FT_SYMBOL_HEIGHT"
msgid "Hei_ght:"
msgstr "উচ্চতা (_g):"
#. 9eaQs
-#: cui/uiconfig/ui/linetabpage.ui:853
+#: cui/uiconfig/ui/linetabpage.ui:854
msgctxt "linetabpage|label4"
msgid "Icon"
msgstr "আইকন"
#. vPJAG
-#: cui/uiconfig/ui/linetabpage.ui:891
+#: cui/uiconfig/ui/linetabpage.ui:892
msgctxt "linetabpage|CTL_PREVIEW-atkobject"
msgid "Example"
msgstr "উদাহরণ"
diff --git a/source/bn-IN/helpcontent2/source/text/swriter/guide.po b/source/bn-IN/helpcontent2/source/text/swriter/guide.po
index d956cc18358..3845cb59e8c 100644
--- a/source/bn-IN/helpcontent2/source/text/swriter/guide.po
+++ b/source/bn-IN/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2023-12-04 15:06+0100\n"
+"POT-Creation-Date: 2024-03-18 13:16+0100\n"
"PO-Revision-Date: 2018-11-12 13:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15757,13 +15757,13 @@ msgctxt ""
msgid "You can manually check the spelling and grammar of a text selection or the entire document."
msgstr "আপনি স্বনির্ধারিত ভাবে একটি পাঠ্য নির্বাচনের বা পুরো নথির বানান ও ব্যকরণ পরীক্ষা করতে পারেন।"
-#. 66nTi
+#. TV7Aa
#: spellcheck_dialog.xhp
msgctxt ""
"spellcheck_dialog.xhp\n"
"par_id0525200902184476\n"
"help.text"
-msgid "To check the spelling and the grammar of a text, the appropriate dictionaries must be installed. For many languages three different dictionaries exist: a spellchecker, a hyphenation dictionary, and a thesaurus. Each dictionary covers one language only. Grammar checkers can be downloaded and installed as extensions. See the <link href=\"https://extensions.libreoffice.org/extension-center?getCategories=Dictionary\">extensions web page</link>."
+msgid "To check the spelling and the grammar of a text, the appropriate dictionaries must be installed. For many languages three different dictionaries exist: a spellchecker, a hyphenation dictionary, and a thesaurus. Each dictionary covers one language only. Grammar checkers can be downloaded and installed as extensions. See the <link href=\"https://extensions.libreoffice.org/?Tags[]=50\">extensions web page</link>."
msgstr ""
#. X3zXc
diff --git a/source/bn-IN/sfx2/messages.po b/source/bn-IN/sfx2/messages.po
index a341ec20a6c..327133296ce 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: 2023-12-04 15:07+0100\n"
+"POT-Creation-Date: 2024-03-18 13:16+0100\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"
@@ -3774,7 +3774,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2023 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2024 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
@@ -4416,7 +4416,7 @@ msgid "Specifies the print setting options."
msgstr "মুদ্রণ সেটিং অপশন সুনির্দিষ্ট করে। "
#. NEo7g
-#: sfx2/uiconfig/ui/panel.ui:73 sfx2/uiconfig/ui/panel.ui:78
+#: sfx2/uiconfig/ui/panel.ui:74 sfx2/uiconfig/ui/panel.ui:79
msgctxt "panel|SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr ""
diff --git a/source/bn/cui/messages.po b/source/bn/cui/messages.po
index 0834a9e8b34..72734472ce8 100644
--- a/source/bn/cui/messages.po
+++ b/source/bn/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-01-22 14:04+0100\n"
+"POT-Creation-Date: 2024-03-18 13:15+0100\n"
"PO-Revision-Date: 2020-10-31 11:35+0000\n"
"Last-Translator: Christian Lohmaier <cloph@documentfoundation.org>\n"
"Language-Team: Bengali <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/bn/>\n"
@@ -2009,7 +2009,7 @@ msgstr ""
#. YfSb4
#: cui/inc/strings.hrc:361
msgctxt "aboutdialog|copyright"
-msgid "Copyright © 2000–2023 LibreOffice contributors."
+msgid "Copyright © 2000–2024 LibreOffice contributors."
msgstr ""
#. WCnhx
@@ -12641,177 +12641,177 @@ msgid "Colo_r:"
msgstr ""
#. sBL64
-#: cui/uiconfig/ui/linetabpage.ui:259
+#: cui/uiconfig/ui/linetabpage.ui:260
msgctxt "linetabpage|FT_LINE_WIDTH"
msgid "T_hickness:"
msgstr ""
#. MzAeD
-#: cui/uiconfig/ui/linetabpage.ui:301
+#: cui/uiconfig/ui/linetabpage.ui:302
#, fuzzy
msgctxt "linetabpage|FT_TRANSPARENT"
msgid "_Transparency:"
msgstr "স্বচ্ছতা"
#. 6TFWn
-#: cui/uiconfig/ui/linetabpage.ui:339
+#: cui/uiconfig/ui/linetabpage.ui:340
#, fuzzy
msgctxt "linetabpage|label1"
msgid "Line Properties"
msgstr "ক্ষেত্রের বৈশিষ্ট্যাবলী"
#. HyxSJ
-#: cui/uiconfig/ui/linetabpage.ui:382
+#: cui/uiconfig/ui/linetabpage.ui:383
msgctxt "linetabpage|FT_LINE_ENDS_STYLE"
msgid "Start st_yle:"
msgstr ""
#. aZYyn
-#: cui/uiconfig/ui/linetabpage.ui:423
+#: cui/uiconfig/ui/linetabpage.ui:424
#, fuzzy
msgctxt "linetabpage|TSB_CENTER_START"
msgid "Ce_nter"
msgstr "কেন্দ্র"
#. 5RYtu
-#: cui/uiconfig/ui/linetabpage.ui:441
+#: cui/uiconfig/ui/linetabpage.ui:442
#, fuzzy
msgctxt "linetabpage|FT_LINE_START_WIDTH"
msgid "Wi_dth:"
msgstr "প্রস্থ"
#. pQfyE
-#: cui/uiconfig/ui/linetabpage.ui:467
+#: cui/uiconfig/ui/linetabpage.ui:468
msgctxt "linetabpage|CBX_SYNCHRONIZE"
msgid "Synchroni_ze ends"
msgstr ""
#. cCsuG
-#: cui/uiconfig/ui/linetabpage.ui:533
+#: cui/uiconfig/ui/linetabpage.ui:534
msgctxt "linetabpage|label5"
msgid "End sty_le:"
msgstr ""
#. zm8Ga
-#: cui/uiconfig/ui/linetabpage.ui:554
+#: cui/uiconfig/ui/linetabpage.ui:555
#, fuzzy
msgctxt "linetabpage|FT_LINE_END_WIDTH"
msgid "W_idth:"
msgstr "প্রস্থ"
#. g2gLY
-#: cui/uiconfig/ui/linetabpage.ui:580
+#: cui/uiconfig/ui/linetabpage.ui:581
#, fuzzy
msgctxt "linetabpage|TSB_CENTER_END"
msgid "C_enter"
msgstr "কেন্দ্র"
#. sged5
-#: cui/uiconfig/ui/linetabpage.ui:624
+#: cui/uiconfig/ui/linetabpage.ui:625
#, fuzzy
msgctxt "linetabpage|label2"
msgid "Arrow Styles"
msgstr "তীর শৈলী"
#. BdoBN
-#: cui/uiconfig/ui/linetabpage.ui:656
+#: cui/uiconfig/ui/linetabpage.ui:657
msgctxt "linetabpage|FT_EDGE_STYLE"
msgid "_Corner style:"
msgstr ""
#. kCtQm
-#: cui/uiconfig/ui/linetabpage.ui:670
+#: cui/uiconfig/ui/linetabpage.ui:671
msgctxt "linetabpage|FT_CAP_STYLE"
msgid "Ca_p style:"
msgstr ""
#. Qx3Ur
-#: cui/uiconfig/ui/linetabpage.ui:685
+#: cui/uiconfig/ui/linetabpage.ui:686
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Rounded"
msgstr ""
#. XH7Z6
-#: cui/uiconfig/ui/linetabpage.ui:686
+#: cui/uiconfig/ui/linetabpage.ui:687
#, fuzzy
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "- none -"
msgstr "-কোনটি নয়-"
#. HZoVf
-#: cui/uiconfig/ui/linetabpage.ui:687
+#: cui/uiconfig/ui/linetabpage.ui:688
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Mitered"
msgstr ""
#. RjDyz
-#: cui/uiconfig/ui/linetabpage.ui:688
+#: cui/uiconfig/ui/linetabpage.ui:689
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Beveled"
msgstr ""
#. biCBC
-#: cui/uiconfig/ui/linetabpage.ui:701
+#: cui/uiconfig/ui/linetabpage.ui:702
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Flat"
msgstr "সমতল"
#. GqrYS
-#: cui/uiconfig/ui/linetabpage.ui:702
+#: cui/uiconfig/ui/linetabpage.ui:703
#, fuzzy
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Round"
msgstr "শব্দ"
#. 3hNSB
-#: cui/uiconfig/ui/linetabpage.ui:703
+#: cui/uiconfig/ui/linetabpage.ui:704
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Square"
msgstr "বর্গক্ষেত্র"
#. Y4Gmw
-#: cui/uiconfig/ui/linetabpage.ui:717
+#: cui/uiconfig/ui/linetabpage.ui:718
msgctxt "linetabpage|label3"
msgid "Corner and Cap Styles"
msgstr ""
#. 4YTBE
-#: cui/uiconfig/ui/linetabpage.ui:745
+#: cui/uiconfig/ui/linetabpage.ui:746
#, fuzzy
msgctxt "linetabpage|MB_SYMBOL_BITMAP"
msgid "Select..."
msgstr "নির্বাচন... (~S)"
#. LaBcU
-#: cui/uiconfig/ui/linetabpage.ui:774
+#: cui/uiconfig/ui/linetabpage.ui:775
#, fuzzy
msgctxt "linetabpage|FT_SYMBOL_WIDTH"
msgid "Widt_h:"
msgstr "প্রস্থ"
#. yhVmm
-#: cui/uiconfig/ui/linetabpage.ui:799
+#: cui/uiconfig/ui/linetabpage.ui:800
#, fuzzy
msgctxt "linetabpage|CB_SYMBOL_RATIO"
msgid "_Keep ratio"
msgstr "অনুপাত বজায় রাখা হবে"
#. oV6GJ
-#: cui/uiconfig/ui/linetabpage.ui:817
+#: cui/uiconfig/ui/linetabpage.ui:818
#, fuzzy
msgctxt "linetabpage|FT_SYMBOL_HEIGHT"
msgid "Hei_ght:"
msgstr "উচ্চতা"
#. 9eaQs
-#: cui/uiconfig/ui/linetabpage.ui:853
+#: cui/uiconfig/ui/linetabpage.ui:854
#, fuzzy
msgctxt "linetabpage|label4"
msgid "Icon"
msgstr "আইকন"
#. vPJAG
-#: cui/uiconfig/ui/linetabpage.ui:891
+#: cui/uiconfig/ui/linetabpage.ui:892
msgctxt "linetabpage|CTL_PREVIEW-atkobject"
msgid "Example"
msgstr "উদাহরণ"
diff --git a/source/bn/helpcontent2/source/text/swriter/guide.po b/source/bn/helpcontent2/source/text/swriter/guide.po
index 9d9e7e86c30..2818164029e 100644
--- a/source/bn/helpcontent2/source/text/swriter/guide.po
+++ b/source/bn/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2023-12-04 15:06+0100\n"
+"POT-Creation-Date: 2024-03-18 13:16+0100\n"
"PO-Revision-Date: 2018-11-12 13:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15757,13 +15757,13 @@ msgctxt ""
msgid "You can manually check the spelling and grammar of a text selection or the entire document."
msgstr "আপনি স্বনির্ধারিত ভাবে একটি পাঠ্য নির্বাচনের বা পুরো নথির বানান ও ব্যকরণ পরীক্ষা করতে পারেন।"
-#. 66nTi
+#. TV7Aa
#: spellcheck_dialog.xhp
msgctxt ""
"spellcheck_dialog.xhp\n"
"par_id0525200902184476\n"
"help.text"
-msgid "To check the spelling and the grammar of a text, the appropriate dictionaries must be installed. For many languages three different dictionaries exist: a spellchecker, a hyphenation dictionary, and a thesaurus. Each dictionary covers one language only. Grammar checkers can be downloaded and installed as extensions. See the <link href=\"https://extensions.libreoffice.org/extension-center?getCategories=Dictionary\">extensions web page</link>."
+msgid "To check the spelling and the grammar of a text, the appropriate dictionaries must be installed. For many languages three different dictionaries exist: a spellchecker, a hyphenation dictionary, and a thesaurus. Each dictionary covers one language only. Grammar checkers can be downloaded and installed as extensions. See the <link href=\"https://extensions.libreoffice.org/?Tags[]=50\">extensions web page</link>."
msgstr ""
#. X3zXc
diff --git a/source/bn/sfx2/messages.po b/source/bn/sfx2/messages.po
index 9109c63f55e..f2ce2bbeefc 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: 2023-12-04 15:07+0100\n"
+"POT-Creation-Date: 2024-03-18 13:16+0100\n"
"PO-Revision-Date: 2018-10-21 19:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3843,7 +3843,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2023 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2024 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
@@ -4503,7 +4503,7 @@ msgid "Specifies the print setting options."
msgstr "মুদ্রণ সেটিং অপশন সুনির্দিষ্ট করে। "
#. NEo7g
-#: sfx2/uiconfig/ui/panel.ui:73 sfx2/uiconfig/ui/panel.ui:78
+#: sfx2/uiconfig/ui/panel.ui:74 sfx2/uiconfig/ui/panel.ui:79
msgctxt "panel|SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr ""
diff --git a/source/bo/cui/messages.po b/source/bo/cui/messages.po
index 4e975e1d46c..93fc65bae7a 100644
--- a/source/bo/cui/messages.po
+++ b/source/bo/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-01-22 14:04+0100\n"
+"POT-Creation-Date: 2024-03-18 13:15+0100\n"
"PO-Revision-Date: 2020-10-31 11:35+0000\n"
"Last-Translator: Christian Lohmaier <cloph@documentfoundation.org>\n"
"Language-Team: Tibetan <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/bo/>\n"
@@ -2008,7 +2008,7 @@ msgstr ""
#. YfSb4
#: cui/inc/strings.hrc:361
msgctxt "aboutdialog|copyright"
-msgid "Copyright © 2000–2023 LibreOffice contributors."
+msgid "Copyright © 2000–2024 LibreOffice contributors."
msgstr ""
#. WCnhx
@@ -12591,178 +12591,178 @@ msgid "Colo_r:"
msgstr ""
#. sBL64
-#: cui/uiconfig/ui/linetabpage.ui:259
+#: cui/uiconfig/ui/linetabpage.ui:260
msgctxt "linetabpage|FT_LINE_WIDTH"
msgid "T_hickness:"
msgstr ""
#. MzAeD
-#: cui/uiconfig/ui/linetabpage.ui:301
+#: cui/uiconfig/ui/linetabpage.ui:302
#, fuzzy
msgctxt "linetabpage|FT_TRANSPARENT"
msgid "_Transparency:"
msgstr "དྭངས་གསལ།"
#. 6TFWn
-#: cui/uiconfig/ui/linetabpage.ui:339
+#: cui/uiconfig/ui/linetabpage.ui:340
#, fuzzy
msgctxt "linetabpage|label1"
msgid "Line Properties"
msgstr "ཡིག་དུམ་གྱི་གཏོགས་གཤིས།"
#. HyxSJ
-#: cui/uiconfig/ui/linetabpage.ui:382
+#: cui/uiconfig/ui/linetabpage.ui:383
msgctxt "linetabpage|FT_LINE_ENDS_STYLE"
msgid "Start st_yle:"
msgstr ""
#. aZYyn
-#: cui/uiconfig/ui/linetabpage.ui:423
+#: cui/uiconfig/ui/linetabpage.ui:424
#, fuzzy
msgctxt "linetabpage|TSB_CENTER_START"
msgid "Ce_nter"
msgstr "ནང་།"
#. 5RYtu
-#: cui/uiconfig/ui/linetabpage.ui:441
+#: cui/uiconfig/ui/linetabpage.ui:442
#, fuzzy
msgctxt "linetabpage|FT_LINE_START_WIDTH"
msgid "Wi_dth:"
msgstr "ཞེང་ཚད།"
#. pQfyE
-#: cui/uiconfig/ui/linetabpage.ui:467
+#: cui/uiconfig/ui/linetabpage.ui:468
msgctxt "linetabpage|CBX_SYNCHRONIZE"
msgid "Synchroni_ze ends"
msgstr ""
#. cCsuG
-#: cui/uiconfig/ui/linetabpage.ui:533
+#: cui/uiconfig/ui/linetabpage.ui:534
msgctxt "linetabpage|label5"
msgid "End sty_le:"
msgstr ""
#. zm8Ga
-#: cui/uiconfig/ui/linetabpage.ui:554
+#: cui/uiconfig/ui/linetabpage.ui:555
#, fuzzy
msgctxt "linetabpage|FT_LINE_END_WIDTH"
msgid "W_idth:"
msgstr "ཞེང་ཚད།"
#. g2gLY
-#: cui/uiconfig/ui/linetabpage.ui:580
+#: cui/uiconfig/ui/linetabpage.ui:581
#, fuzzy
msgctxt "linetabpage|TSB_CENTER_END"
msgid "C_enter"
msgstr "ནང་།"
#. sged5
-#: cui/uiconfig/ui/linetabpage.ui:624
+#: cui/uiconfig/ui/linetabpage.ui:625
#, fuzzy
msgctxt "linetabpage|label2"
msgid "Arrow Styles"
msgstr "མདའ་རྩེ་བཟོ་ལྟ།"
#. BdoBN
-#: cui/uiconfig/ui/linetabpage.ui:656
+#: cui/uiconfig/ui/linetabpage.ui:657
msgctxt "linetabpage|FT_EDGE_STYLE"
msgid "_Corner style:"
msgstr ""
#. kCtQm
-#: cui/uiconfig/ui/linetabpage.ui:670
+#: cui/uiconfig/ui/linetabpage.ui:671
msgctxt "linetabpage|FT_CAP_STYLE"
msgid "Ca_p style:"
msgstr ""
#. Qx3Ur
-#: cui/uiconfig/ui/linetabpage.ui:685
+#: cui/uiconfig/ui/linetabpage.ui:686
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Rounded"
msgstr ""
#. XH7Z6
-#: cui/uiconfig/ui/linetabpage.ui:686
+#: cui/uiconfig/ui/linetabpage.ui:687
#, fuzzy
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "- none -"
msgstr "- མེད། -"
#. HZoVf
-#: cui/uiconfig/ui/linetabpage.ui:687
+#: cui/uiconfig/ui/linetabpage.ui:688
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Mitered"
msgstr ""
#. RjDyz
-#: cui/uiconfig/ui/linetabpage.ui:688
+#: cui/uiconfig/ui/linetabpage.ui:689
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Beveled"
msgstr ""
#. biCBC
-#: cui/uiconfig/ui/linetabpage.ui:701
+#: cui/uiconfig/ui/linetabpage.ui:702
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Flat"
msgstr "ངོས་དབྱེབས།"
#. GqrYS
-#: cui/uiconfig/ui/linetabpage.ui:702
+#: cui/uiconfig/ui/linetabpage.ui:703
#, fuzzy
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Round"
msgstr "སྒྲ"
#. 3hNSB
-#: cui/uiconfig/ui/linetabpage.ui:703
+#: cui/uiconfig/ui/linetabpage.ui:704
#, fuzzy
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Square"
msgstr "གྲུ་བཞི་ཁ་གང་མ།"
#. Y4Gmw
-#: cui/uiconfig/ui/linetabpage.ui:717
+#: cui/uiconfig/ui/linetabpage.ui:718
msgctxt "linetabpage|label3"
msgid "Corner and Cap Styles"
msgstr ""
#. 4YTBE
-#: cui/uiconfig/ui/linetabpage.ui:745
+#: cui/uiconfig/ui/linetabpage.ui:746
#, fuzzy
msgctxt "linetabpage|MB_SYMBOL_BITMAP"
msgid "Select..."
msgstr "འདེམས་པ།(~S)..."
#. LaBcU
-#: cui/uiconfig/ui/linetabpage.ui:774
+#: cui/uiconfig/ui/linetabpage.ui:775
#, fuzzy
msgctxt "linetabpage|FT_SYMBOL_WIDTH"
msgid "Widt_h:"
msgstr "ཞེང་ཚད།"
#. yhVmm
-#: cui/uiconfig/ui/linetabpage.ui:799
+#: cui/uiconfig/ui/linetabpage.ui:800
#, fuzzy
msgctxt "linetabpage|CB_SYMBOL_RATIO"
msgid "_Keep ratio"
msgstr "འཕྲེད་གཞུང་གི་བསྡུར་ཚད་གཏན་བཀག"
#. oV6GJ
-#: cui/uiconfig/ui/linetabpage.ui:817
+#: cui/uiconfig/ui/linetabpage.ui:818
#, fuzzy
msgctxt "linetabpage|FT_SYMBOL_HEIGHT"
msgid "Hei_ght:"
msgstr "མཐོ་ཚད།"
#. 9eaQs
-#: cui/uiconfig/ui/linetabpage.ui:853
+#: cui/uiconfig/ui/linetabpage.ui:854
#, fuzzy
msgctxt "linetabpage|label4"
msgid "Icon"
msgstr "རིས་རྟགས།"
#. vPJAG
-#: cui/uiconfig/ui/linetabpage.ui:891
+#: cui/uiconfig/ui/linetabpage.ui:892
msgctxt "linetabpage|CTL_PREVIEW-atkobject"
msgid "Example"
msgstr "དཔེ་སྟོན།"
diff --git a/source/bo/helpcontent2/source/text/swriter/guide.po b/source/bo/helpcontent2/source/text/swriter/guide.po
index 43f3b37fddf..3a021fcb909 100644
--- a/source/bo/helpcontent2/source/text/swriter/guide.po
+++ b/source/bo/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2023-12-04 15:06+0100\n"
+"POT-Creation-Date: 2024-03-18 13:16+0100\n"
"PO-Revision-Date: 2018-11-12 13:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15757,13 +15757,13 @@ msgctxt ""
msgid "You can manually check the spelling and grammar of a text selection or the entire document."
msgstr "ཁྱེད་ཀྱིས་འདེམས་ངེས་ཡི་གེའམ་ཡིག་ཚགས་ཧྲིལ་པོའི་སྦྱོར་འབྲི་ལག་འགུལ་གྱིས་བརྟག་དཔྱད་བྱ་ཆོག"
-#. 66nTi
+#. TV7Aa
#: spellcheck_dialog.xhp
msgctxt ""
"spellcheck_dialog.xhp\n"
"par_id0525200902184476\n"
"help.text"
-msgid "To check the spelling and the grammar of a text, the appropriate dictionaries must be installed. For many languages three different dictionaries exist: a spellchecker, a hyphenation dictionary, and a thesaurus. Each dictionary covers one language only. Grammar checkers can be downloaded and installed as extensions. See the <link href=\"https://extensions.libreoffice.org/extension-center?getCategories=Dictionary\">extensions web page</link>."
+msgid "To check the spelling and the grammar of a text, the appropriate dictionaries must be installed. For many languages three different dictionaries exist: a spellchecker, a hyphenation dictionary, and a thesaurus. Each dictionary covers one language only. Grammar checkers can be downloaded and installed as extensions. See the <link href=\"https://extensions.libreoffice.org/?Tags[]=50\">extensions web page</link>."
msgstr ""
#. X3zXc
diff --git a/source/bo/sfx2/messages.po b/source/bo/sfx2/messages.po
index 4e089b04a42..bae8169c1f0 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: 2023-12-04 15:07+0100\n"
+"POT-Creation-Date: 2024-03-18 13:16+0100\n"
"PO-Revision-Date: 2018-10-21 19:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3839,7 +3839,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2023 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2024 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
@@ -4499,7 +4499,7 @@ msgid "Specifies the print setting options."
msgstr ""
#. NEo7g
-#: sfx2/uiconfig/ui/panel.ui:73 sfx2/uiconfig/ui/panel.ui:78
+#: sfx2/uiconfig/ui/panel.ui:74 sfx2/uiconfig/ui/panel.ui:79
msgctxt "panel|SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr ""
diff --git a/source/br/cui/messages.po b/source/br/cui/messages.po
index 23b4ccf743f..1ef080e4b9e 100644
--- a/source/br/cui/messages.po
+++ b/source/br/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-01-22 14:04+0100\n"
+"POT-Creation-Date: 2024-03-18 13:15+0100\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1986,7 +1986,7 @@ msgstr ""
#. YfSb4
#: cui/inc/strings.hrc:361
msgctxt "aboutdialog|copyright"
-msgid "Copyright © 2000–2023 LibreOffice contributors."
+msgid "Copyright © 2000–2024 LibreOffice contributors."
msgstr ""
#. WCnhx
@@ -12303,163 +12303,163 @@ msgid "Colo_r:"
msgstr "Li_v :"
#. sBL64
-#: cui/uiconfig/ui/linetabpage.ui:259
+#: cui/uiconfig/ui/linetabpage.ui:260
msgctxt "linetabpage|FT_LINE_WIDTH"
msgid "T_hickness:"
msgstr ""
#. MzAeD
-#: cui/uiconfig/ui/linetabpage.ui:301
+#: cui/uiconfig/ui/linetabpage.ui:302
msgctxt "linetabpage|FT_TRANSPARENT"
msgid "_Transparency:"
msgstr "_Boullder :"
#. 6TFWn
-#: cui/uiconfig/ui/linetabpage.ui:339
+#: cui/uiconfig/ui/linetabpage.ui:340
msgctxt "linetabpage|label1"
msgid "Line Properties"
msgstr "Perzhioù al linenn"
#. HyxSJ
-#: cui/uiconfig/ui/linetabpage.ui:382
+#: cui/uiconfig/ui/linetabpage.ui:383
msgctxt "linetabpage|FT_LINE_ENDS_STYLE"
msgid "Start st_yle:"
msgstr "Stil _deraouiñ : "
#. aZYyn
-#: cui/uiconfig/ui/linetabpage.ui:423
+#: cui/uiconfig/ui/linetabpage.ui:424
msgctxt "linetabpage|TSB_CENTER_START"
msgid "Ce_nter"
msgstr "_Kreiz"
#. 5RYtu
-#: cui/uiconfig/ui/linetabpage.ui:441
+#: cui/uiconfig/ui/linetabpage.ui:442
msgctxt "linetabpage|FT_LINE_START_WIDTH"
msgid "Wi_dth:"
msgstr "_Led :"
#. pQfyE
-#: cui/uiconfig/ui/linetabpage.ui:467
+#: cui/uiconfig/ui/linetabpage.ui:468
msgctxt "linetabpage|CBX_SYNCHRONIZE"
msgid "Synchroni_ze ends"
msgstr "Gou_bredañ an dibennoù"
#. cCsuG
-#: cui/uiconfig/ui/linetabpage.ui:533
+#: cui/uiconfig/ui/linetabpage.ui:534
msgctxt "linetabpage|label5"
msgid "End sty_le:"
msgstr "Sti_l dibenn :"
#. zm8Ga
-#: cui/uiconfig/ui/linetabpage.ui:554
+#: cui/uiconfig/ui/linetabpage.ui:555
msgctxt "linetabpage|FT_LINE_END_WIDTH"
msgid "W_idth:"
msgstr "Le_d :"
#. g2gLY
-#: cui/uiconfig/ui/linetabpage.ui:580
+#: cui/uiconfig/ui/linetabpage.ui:581
msgctxt "linetabpage|TSB_CENTER_END"
msgid "C_enter"
msgstr "_Kreiz"
#. sged5
-#: cui/uiconfig/ui/linetabpage.ui:624
+#: cui/uiconfig/ui/linetabpage.ui:625
msgctxt "linetabpage|label2"
msgid "Arrow Styles"
msgstr "Stiloù ar biroù"
#. BdoBN
-#: cui/uiconfig/ui/linetabpage.ui:656
+#: cui/uiconfig/ui/linetabpage.ui:657
msgctxt "linetabpage|FT_EDGE_STYLE"
msgid "_Corner style:"
msgstr "Stil ar c'h_ornioù :"
#. kCtQm
-#: cui/uiconfig/ui/linetabpage.ui:670
+#: cui/uiconfig/ui/linetabpage.ui:671
msgctxt "linetabpage|FT_CAP_STYLE"
msgid "Ca_p style:"
msgstr "Stil _penn :"
#. Qx3Ur
-#: cui/uiconfig/ui/linetabpage.ui:685
+#: cui/uiconfig/ui/linetabpage.ui:686
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Rounded"
msgstr "Rontaet"
#. XH7Z6
-#: cui/uiconfig/ui/linetabpage.ui:686
+#: cui/uiconfig/ui/linetabpage.ui:687
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "- none -"
msgstr "- tra ebet -"
#. HZoVf
-#: cui/uiconfig/ui/linetabpage.ui:687
+#: cui/uiconfig/ui/linetabpage.ui:688
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Mitered"
msgstr "Stumm ivinell"
#. RjDyz
-#: cui/uiconfig/ui/linetabpage.ui:688
+#: cui/uiconfig/ui/linetabpage.ui:689
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Beveled"
msgstr "Beskellet"
#. biCBC
-#: cui/uiconfig/ui/linetabpage.ui:701
+#: cui/uiconfig/ui/linetabpage.ui:702
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Flat"
msgstr "Plaen"
#. GqrYS
-#: cui/uiconfig/ui/linetabpage.ui:702
+#: cui/uiconfig/ui/linetabpage.ui:703
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Round"
msgstr "Ront"
#. 3hNSB
-#: cui/uiconfig/ui/linetabpage.ui:703
+#: cui/uiconfig/ui/linetabpage.ui:704
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Square"
msgstr "Karrezek"
#. Y4Gmw
-#: cui/uiconfig/ui/linetabpage.ui:717
+#: cui/uiconfig/ui/linetabpage.ui:718
msgctxt "linetabpage|label3"
msgid "Corner and Cap Styles"
msgstr "Stiloù ar c'hornioù hag ar pennoù"
#. 4YTBE
-#: cui/uiconfig/ui/linetabpage.ui:745
+#: cui/uiconfig/ui/linetabpage.ui:746
msgctxt "linetabpage|MB_SYMBOL_BITMAP"
msgid "Select..."
msgstr "Diuzañ..."
#. LaBcU
-#: cui/uiconfig/ui/linetabpage.ui:774
+#: cui/uiconfig/ui/linetabpage.ui:775
msgctxt "linetabpage|FT_SYMBOL_WIDTH"
msgid "Widt_h:"
msgstr "L_ed :"
#. yhVmm
-#: cui/uiconfig/ui/linetabpage.ui:799
+#: cui/uiconfig/ui/linetabpage.ui:800
msgctxt "linetabpage|CB_SYMBOL_RATIO"
msgid "_Keep ratio"
msgstr "_Kenfeuriek"
#. oV6GJ
-#: cui/uiconfig/ui/linetabpage.ui:817
+#: cui/uiconfig/ui/linetabpage.ui:818
msgctxt "linetabpage|FT_SYMBOL_HEIGHT"
msgid "Hei_ght:"
msgstr "_Sav :"
#. 9eaQs
-#: cui/uiconfig/ui/linetabpage.ui:853
+#: cui/uiconfig/ui/linetabpage.ui:854
msgctxt "linetabpage|label4"
msgid "Icon"
msgstr "Arlun"
#. vPJAG
-#: cui/uiconfig/ui/linetabpage.ui:891
+#: cui/uiconfig/ui/linetabpage.ui:892
msgctxt "linetabpage|CTL_PREVIEW-atkobject"
msgid "Example"
msgstr "Skouer"
diff --git a/source/br/sfx2/messages.po b/source/br/sfx2/messages.po
index b42ded33e55..afdf5d6dda3 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: 2023-12-04 15:07+0100\n"
+"POT-Creation-Date: 2024-03-18 13:16+0100\n"
"PO-Revision-Date: 2018-10-21 19:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3806,7 +3806,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2023 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2024 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
@@ -4448,7 +4448,7 @@ msgid "Specifies the print setting options."
msgstr ""
#. NEo7g
-#: sfx2/uiconfig/ui/panel.ui:73 sfx2/uiconfig/ui/panel.ui:78
+#: sfx2/uiconfig/ui/panel.ui:74 sfx2/uiconfig/ui/panel.ui:79
msgctxt "panel|SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr ""
diff --git a/source/brx/cui/messages.po b/source/brx/cui/messages.po
index 69ee15a35c7..eccfba3c84e 100644
--- a/source/brx/cui/messages.po
+++ b/source/brx/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-01-22 14:04+0100\n"
+"POT-Creation-Date: 2024-03-18 13:15+0100\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2004,7 +2004,7 @@ msgstr ""
#. YfSb4
#: cui/inc/strings.hrc:361
msgctxt "aboutdialog|copyright"
-msgid "Copyright © 2000–2023 LibreOffice contributors."
+msgid "Copyright © 2000–2024 LibreOffice contributors."
msgstr ""
#. WCnhx
@@ -12561,176 +12561,176 @@ msgid "Colo_r:"
msgstr ""
#. sBL64
-#: cui/uiconfig/ui/linetabpage.ui:259
+#: cui/uiconfig/ui/linetabpage.ui:260
msgctxt "linetabpage|FT_LINE_WIDTH"
msgid "T_hickness:"
msgstr ""
#. MzAeD
-#: cui/uiconfig/ui/linetabpage.ui:301
+#: cui/uiconfig/ui/linetabpage.ui:302
#, fuzzy
msgctxt "linetabpage|FT_TRANSPARENT"
msgid "_Transparency:"
msgstr "गोजों"
#. 6TFWn
-#: cui/uiconfig/ui/linetabpage.ui:339
+#: cui/uiconfig/ui/linetabpage.ui:340
#, fuzzy
msgctxt "linetabpage|label1"
msgid "Line Properties"
msgstr "फोथार आखुथायफोर"
#. HyxSJ
-#: cui/uiconfig/ui/linetabpage.ui:382
+#: cui/uiconfig/ui/linetabpage.ui:383
msgctxt "linetabpage|FT_LINE_ENDS_STYLE"
msgid "Start st_yle:"
msgstr ""
#. aZYyn
-#: cui/uiconfig/ui/linetabpage.ui:423
+#: cui/uiconfig/ui/linetabpage.ui:424
#, fuzzy
msgctxt "linetabpage|TSB_CENTER_START"
msgid "Ce_nter"
msgstr "मिरु"
#. 5RYtu
-#: cui/uiconfig/ui/linetabpage.ui:441
+#: cui/uiconfig/ui/linetabpage.ui:442
#, fuzzy
msgctxt "linetabpage|FT_LINE_START_WIDTH"
msgid "Wi_dth:"
msgstr "गुवारथि"
#. pQfyE
-#: cui/uiconfig/ui/linetabpage.ui:467
+#: cui/uiconfig/ui/linetabpage.ui:468
msgctxt "linetabpage|CBX_SYNCHRONIZE"
msgid "Synchroni_ze ends"
msgstr ""
#. cCsuG
-#: cui/uiconfig/ui/linetabpage.ui:533
+#: cui/uiconfig/ui/linetabpage.ui:534
msgctxt "linetabpage|label5"
msgid "End sty_le:"
msgstr ""
#. zm8Ga
-#: cui/uiconfig/ui/linetabpage.ui:554
+#: cui/uiconfig/ui/linetabpage.ui:555
#, fuzzy
msgctxt "linetabpage|FT_LINE_END_WIDTH"
msgid "W_idth:"
msgstr "गुवारथि"
#. g2gLY
-#: cui/uiconfig/ui/linetabpage.ui:580
+#: cui/uiconfig/ui/linetabpage.ui:581
#, fuzzy
msgctxt "linetabpage|TSB_CENTER_END"
msgid "C_enter"
msgstr "मिरु"
#. sged5
-#: cui/uiconfig/ui/linetabpage.ui:624
+#: cui/uiconfig/ui/linetabpage.ui:625
#, fuzzy
msgctxt "linetabpage|label2"
msgid "Arrow Styles"
msgstr "थिर आदब"
#. BdoBN
-#: cui/uiconfig/ui/linetabpage.ui:656
+#: cui/uiconfig/ui/linetabpage.ui:657
msgctxt "linetabpage|FT_EDGE_STYLE"
msgid "_Corner style:"
msgstr ""
#. kCtQm
-#: cui/uiconfig/ui/linetabpage.ui:670
+#: cui/uiconfig/ui/linetabpage.ui:671
msgctxt "linetabpage|FT_CAP_STYLE"
msgid "Ca_p style:"
msgstr ""
#. Qx3Ur
-#: cui/uiconfig/ui/linetabpage.ui:685
+#: cui/uiconfig/ui/linetabpage.ui:686
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Rounded"
msgstr ""
#. XH7Z6
-#: cui/uiconfig/ui/linetabpage.ui:686
+#: cui/uiconfig/ui/linetabpage.ui:687
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "- none -"
msgstr "-रावबो नङा-"
#. HZoVf
-#: cui/uiconfig/ui/linetabpage.ui:687
+#: cui/uiconfig/ui/linetabpage.ui:688
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Mitered"
msgstr ""
#. RjDyz
-#: cui/uiconfig/ui/linetabpage.ui:688
+#: cui/uiconfig/ui/linetabpage.ui:689
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Beveled"
msgstr ""
#. biCBC
-#: cui/uiconfig/ui/linetabpage.ui:701
+#: cui/uiconfig/ui/linetabpage.ui:702
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Flat"
msgstr "दाब्ले"
#. GqrYS
-#: cui/uiconfig/ui/linetabpage.ui:702
+#: cui/uiconfig/ui/linetabpage.ui:703
#, fuzzy
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Round"
msgstr "सोदोब"
#. 3hNSB
-#: cui/uiconfig/ui/linetabpage.ui:703
+#: cui/uiconfig/ui/linetabpage.ui:704
#, fuzzy
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Square"
msgstr "बर्ग"
#. Y4Gmw
-#: cui/uiconfig/ui/linetabpage.ui:717
+#: cui/uiconfig/ui/linetabpage.ui:718
msgctxt "linetabpage|label3"
msgid "Corner and Cap Styles"
msgstr ""
#. 4YTBE
-#: cui/uiconfig/ui/linetabpage.ui:745
+#: cui/uiconfig/ui/linetabpage.ui:746
#, fuzzy
msgctxt "linetabpage|MB_SYMBOL_BITMAP"
msgid "Select..."
msgstr "~सायख..."
#. LaBcU
-#: cui/uiconfig/ui/linetabpage.ui:774
+#: cui/uiconfig/ui/linetabpage.ui:775
#, fuzzy
msgctxt "linetabpage|FT_SYMBOL_WIDTH"
msgid "Widt_h:"
msgstr "गुवारथि"
#. yhVmm
-#: cui/uiconfig/ui/linetabpage.ui:799
+#: cui/uiconfig/ui/linetabpage.ui:800
msgctxt "linetabpage|CB_SYMBOL_RATIO"
msgid "_Keep ratio"
msgstr ""
#. oV6GJ
-#: cui/uiconfig/ui/linetabpage.ui:817
+#: cui/uiconfig/ui/linetabpage.ui:818
#, fuzzy
msgctxt "linetabpage|FT_SYMBOL_HEIGHT"
msgid "Hei_ght:"
msgstr "गोजौथि"
#. 9eaQs
-#: cui/uiconfig/ui/linetabpage.ui:853
+#: cui/uiconfig/ui/linetabpage.ui:854
#, fuzzy
msgctxt "linetabpage|label4"
msgid "Icon"
msgstr "आयकनफोर"
#. vPJAG
-#: cui/uiconfig/ui/linetabpage.ui:891
+#: cui/uiconfig/ui/linetabpage.ui:892
msgctxt "linetabpage|CTL_PREVIEW-atkobject"
msgid "Example"
msgstr "बिदिन्थि"
diff --git a/source/brx/sfx2/messages.po b/source/brx/sfx2/messages.po
index 68c59f68926..ffbe37c313c 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: 2023-12-04 15:07+0100\n"
+"POT-Creation-Date: 2024-03-18 13:16+0100\n"
"PO-Revision-Date: 2018-10-21 19:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3805,7 +3805,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2023 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2024 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
@@ -4463,7 +4463,7 @@ msgid "Specifies the print setting options."
msgstr ""
#. NEo7g
-#: sfx2/uiconfig/ui/panel.ui:73 sfx2/uiconfig/ui/panel.ui:78
+#: sfx2/uiconfig/ui/panel.ui:74 sfx2/uiconfig/ui/panel.ui:79
msgctxt "panel|SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr ""
diff --git a/source/bs/cui/messages.po b/source/bs/cui/messages.po
index 9df74ca7f03..32149994a68 100644
--- a/source/bs/cui/messages.po
+++ b/source/bs/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-01-22 14:04+0100\n"
+"POT-Creation-Date: 2024-03-18 13:15+0100\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1994,7 +1994,7 @@ msgstr ""
#. YfSb4
#: cui/inc/strings.hrc:361
msgctxt "aboutdialog|copyright"
-msgid "Copyright © 2000–2023 LibreOffice contributors."
+msgid "Copyright © 2000–2024 LibreOffice contributors."
msgstr ""
#. WCnhx
@@ -12558,165 +12558,165 @@ msgid "Colo_r:"
msgstr "Boj_a:"
#. sBL64
-#: cui/uiconfig/ui/linetabpage.ui:259
+#: cui/uiconfig/ui/linetabpage.ui:260
msgctxt "linetabpage|FT_LINE_WIDTH"
msgid "T_hickness:"
msgstr ""
#. MzAeD
-#: cui/uiconfig/ui/linetabpage.ui:301
+#: cui/uiconfig/ui/linetabpage.ui:302
msgctxt "linetabpage|FT_TRANSPARENT"
msgid "_Transparency:"
msgstr "_Prozirnost:"
#. 6TFWn
-#: cui/uiconfig/ui/linetabpage.ui:339
+#: cui/uiconfig/ui/linetabpage.ui:340
#, fuzzy
msgctxt "linetabpage|label1"
msgid "Line Properties"
msgstr "Osobine linije"
#. HyxSJ
-#: cui/uiconfig/ui/linetabpage.ui:382
+#: cui/uiconfig/ui/linetabpage.ui:383
msgctxt "linetabpage|FT_LINE_ENDS_STYLE"
msgid "Start st_yle:"
msgstr "Početni st_il:"
#. aZYyn
-#: cui/uiconfig/ui/linetabpage.ui:423
+#: cui/uiconfig/ui/linetabpage.ui:424
msgctxt "linetabpage|TSB_CENTER_START"
msgid "Ce_nter"
msgstr "Ce_ntar"
#. 5RYtu
-#: cui/uiconfig/ui/linetabpage.ui:441
+#: cui/uiconfig/ui/linetabpage.ui:442
msgctxt "linetabpage|FT_LINE_START_WIDTH"
msgid "Wi_dth:"
msgstr "Ši_rina:"
#. pQfyE
-#: cui/uiconfig/ui/linetabpage.ui:467
+#: cui/uiconfig/ui/linetabpage.ui:468
msgctxt "linetabpage|CBX_SYNCHRONIZE"
msgid "Synchroni_ze ends"
msgstr "Sinhroniz_uj krajeve"
#. cCsuG
-#: cui/uiconfig/ui/linetabpage.ui:533
+#: cui/uiconfig/ui/linetabpage.ui:534
msgctxt "linetabpage|label5"
msgid "End sty_le:"
msgstr "Krajnji st_il:"
#. zm8Ga
-#: cui/uiconfig/ui/linetabpage.ui:554
+#: cui/uiconfig/ui/linetabpage.ui:555
msgctxt "linetabpage|FT_LINE_END_WIDTH"
msgid "W_idth:"
msgstr "Š_irina:"
#. g2gLY
-#: cui/uiconfig/ui/linetabpage.ui:580
+#: cui/uiconfig/ui/linetabpage.ui:581
msgctxt "linetabpage|TSB_CENTER_END"
msgid "C_enter"
msgstr "C_entar"
#. sged5
-#: cui/uiconfig/ui/linetabpage.ui:624
+#: cui/uiconfig/ui/linetabpage.ui:625
msgctxt "linetabpage|label2"
msgid "Arrow Styles"
msgstr "Stilovi strelice"
#. BdoBN
-#: cui/uiconfig/ui/linetabpage.ui:656
+#: cui/uiconfig/ui/linetabpage.ui:657
msgctxt "linetabpage|FT_EDGE_STYLE"
msgid "_Corner style:"
msgstr "Stil _ugla:"
#. kCtQm
-#: cui/uiconfig/ui/linetabpage.ui:670
+#: cui/uiconfig/ui/linetabpage.ui:671
msgctxt "linetabpage|FT_CAP_STYLE"
msgid "Ca_p style:"
msgstr "Stil po_klopca:"
#. Qx3Ur
-#: cui/uiconfig/ui/linetabpage.ui:685
+#: cui/uiconfig/ui/linetabpage.ui:686
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Rounded"
msgstr "Zaobljeno"
#. XH7Z6
-#: cui/uiconfig/ui/linetabpage.ui:686
+#: cui/uiconfig/ui/linetabpage.ui:687
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "- none -"
msgstr "- ništa -"
#. HZoVf
-#: cui/uiconfig/ui/linetabpage.ui:687
+#: cui/uiconfig/ui/linetabpage.ui:688
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Mitered"
msgstr "Spojen zasjekom"
#. RjDyz
-#: cui/uiconfig/ui/linetabpage.ui:688
+#: cui/uiconfig/ui/linetabpage.ui:689
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Beveled"
msgstr "Iskošeno"
#. biCBC
-#: cui/uiconfig/ui/linetabpage.ui:701
+#: cui/uiconfig/ui/linetabpage.ui:702
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Flat"
msgstr "Ravno"
#. GqrYS
-#: cui/uiconfig/ui/linetabpage.ui:702
+#: cui/uiconfig/ui/linetabpage.ui:703
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Round"
msgstr "Okruglo"
#. 3hNSB
-#: cui/uiconfig/ui/linetabpage.ui:703
+#: cui/uiconfig/ui/linetabpage.ui:704
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Square"
msgstr "Kvadrat"
#. Y4Gmw
-#: cui/uiconfig/ui/linetabpage.ui:717
+#: cui/uiconfig/ui/linetabpage.ui:718
#, fuzzy
msgctxt "linetabpage|label3"
msgid "Corner and Cap Styles"
msgstr "Stilovi uglova i poklopaca"
#. 4YTBE
-#: cui/uiconfig/ui/linetabpage.ui:745
+#: cui/uiconfig/ui/linetabpage.ui:746
msgctxt "linetabpage|MB_SYMBOL_BITMAP"
msgid "Select..."
msgstr "Izaberi..."
#. LaBcU
-#: cui/uiconfig/ui/linetabpage.ui:774
+#: cui/uiconfig/ui/linetabpage.ui:775
msgctxt "linetabpage|FT_SYMBOL_WIDTH"
msgid "Widt_h:"
msgstr "Širin_a:"
#. yhVmm
-#: cui/uiconfig/ui/linetabpage.ui:799
+#: cui/uiconfig/ui/linetabpage.ui:800
msgctxt "linetabpage|CB_SYMBOL_RATIO"
msgid "_Keep ratio"
msgstr "_Zadrži odnos"
#. oV6GJ
-#: cui/uiconfig/ui/linetabpage.ui:817
+#: cui/uiconfig/ui/linetabpage.ui:818
msgctxt "linetabpage|FT_SYMBOL_HEIGHT"
msgid "Hei_ght:"
msgstr "Vis_ina:"
#. 9eaQs
-#: cui/uiconfig/ui/linetabpage.ui:853
+#: cui/uiconfig/ui/linetabpage.ui:854
msgctxt "linetabpage|label4"
msgid "Icon"
msgstr "Ikona"
#. vPJAG
-#: cui/uiconfig/ui/linetabpage.ui:891
+#: cui/uiconfig/ui/linetabpage.ui:892
msgctxt "linetabpage|CTL_PREVIEW-atkobject"
msgid "Example"
msgstr "Primjer"
diff --git a/source/bs/helpcontent2/source/text/swriter/guide.po b/source/bs/helpcontent2/source/text/swriter/guide.po
index 01fcf2d3fb8..85ed51906ae 100644
--- a/source/bs/helpcontent2/source/text/swriter/guide.po
+++ b/source/bs/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2023-12-04 15:06+0100\n"
+"POT-Creation-Date: 2024-03-18 13:16+0100\n"
"PO-Revision-Date: 2023-04-10 13:33+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Bosnian <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/bs/>\n"
@@ -15757,13 +15757,13 @@ msgctxt ""
msgid "You can manually check the spelling and grammar of a text selection or the entire document."
msgstr "You can manually check the spelling of a text selection or the entire document."
-#. 66nTi
+#. TV7Aa
#: spellcheck_dialog.xhp
msgctxt ""
"spellcheck_dialog.xhp\n"
"par_id0525200902184476\n"
"help.text"
-msgid "To check the spelling and the grammar of a text, the appropriate dictionaries must be installed. For many languages three different dictionaries exist: a spellchecker, a hyphenation dictionary, and a thesaurus. Each dictionary covers one language only. Grammar checkers can be downloaded and installed as extensions. See the <link href=\"https://extensions.libreoffice.org/extension-center?getCategories=Dictionary\">extensions web page</link>."
+msgid "To check the spelling and the grammar of a text, the appropriate dictionaries must be installed. For many languages three different dictionaries exist: a spellchecker, a hyphenation dictionary, and a thesaurus. Each dictionary covers one language only. Grammar checkers can be downloaded and installed as extensions. See the <link href=\"https://extensions.libreoffice.org/?Tags[]=50\">extensions web page</link>."
msgstr ""
#. X3zXc
diff --git a/source/bs/sfx2/messages.po b/source/bs/sfx2/messages.po
index f5335a92a99..a81be6be6ac 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: 2023-12-04 15:07+0100\n"
+"POT-Creation-Date: 2024-03-18 13:16+0100\n"
"PO-Revision-Date: 2018-10-21 19:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3833,7 +3833,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2023 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2024 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
@@ -4491,7 +4491,7 @@ msgid "Specifies the print setting options."
msgstr ""
#. NEo7g
-#: sfx2/uiconfig/ui/panel.ui:73 sfx2/uiconfig/ui/panel.ui:78
+#: sfx2/uiconfig/ui/panel.ui:74 sfx2/uiconfig/ui/panel.ui:79
msgctxt "panel|SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr ""
diff --git a/source/ca-valencia/cui/messages.po b/source/ca-valencia/cui/messages.po
index e434662bded..ce4a48290d0 100644
--- a/source/ca-valencia/cui/messages.po
+++ b/source/ca-valencia/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-01-22 14:04+0100\n"
+"POT-Creation-Date: 2024-03-18 13:15+0100\n"
"PO-Revision-Date: 2023-08-10 13:24+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/ca_VALENCIA/>\n"
@@ -1982,8 +1982,8 @@ msgstr "L'URL <%1> no es pot convertir en un camí del sistema de fitxers."
#. YfSb4
#: cui/inc/strings.hrc:361
msgctxt "aboutdialog|copyright"
-msgid "Copyright © 2000–2023 LibreOffice contributors."
-msgstr "Copyright © 2000–2023 col·laboradors del LibreOffice."
+msgid "Copyright © 2000–2024 LibreOffice contributors."
+msgstr "Copyright © 2000–2024 col·laboradors del LibreOffice."
#. WCnhx
#: cui/inc/strings.hrc:362
@@ -12287,163 +12287,163 @@ msgid "Colo_r:"
msgstr "Colo_r:"
#. sBL64
-#: cui/uiconfig/ui/linetabpage.ui:259
+#: cui/uiconfig/ui/linetabpage.ui:260
msgctxt "linetabpage|FT_LINE_WIDTH"
msgid "T_hickness:"
msgstr ""
#. MzAeD
-#: cui/uiconfig/ui/linetabpage.ui:301
+#: cui/uiconfig/ui/linetabpage.ui:302
msgctxt "linetabpage|FT_TRANSPARENT"
msgid "_Transparency:"
msgstr "_Transparència:"
#. 6TFWn
-#: cui/uiconfig/ui/linetabpage.ui:339
+#: cui/uiconfig/ui/linetabpage.ui:340
msgctxt "linetabpage|label1"
msgid "Line Properties"
msgstr "Propietats de la línia"
#. HyxSJ
-#: cui/uiconfig/ui/linetabpage.ui:382
+#: cui/uiconfig/ui/linetabpage.ui:383
msgctxt "linetabpage|FT_LINE_ENDS_STYLE"
msgid "Start st_yle:"
msgstr "Est_il d'inici:"
#. aZYyn
-#: cui/uiconfig/ui/linetabpage.ui:423
+#: cui/uiconfig/ui/linetabpage.ui:424
msgctxt "linetabpage|TSB_CENTER_START"
msgid "Ce_nter"
msgstr "Ce_ntre"
#. 5RYtu
-#: cui/uiconfig/ui/linetabpage.ui:441
+#: cui/uiconfig/ui/linetabpage.ui:442
msgctxt "linetabpage|FT_LINE_START_WIDTH"
msgid "Wi_dth:"
msgstr "Am_plària:"
#. pQfyE
-#: cui/uiconfig/ui/linetabpage.ui:467
+#: cui/uiconfig/ui/linetabpage.ui:468
msgctxt "linetabpage|CBX_SYNCHRONIZE"
msgid "Synchroni_ze ends"
msgstr "Sincronit_za les terminacions"
#. cCsuG
-#: cui/uiconfig/ui/linetabpage.ui:533
+#: cui/uiconfig/ui/linetabpage.ui:534
msgctxt "linetabpage|label5"
msgid "End sty_le:"
msgstr "Esti_l final:"
#. zm8Ga
-#: cui/uiconfig/ui/linetabpage.ui:554
+#: cui/uiconfig/ui/linetabpage.ui:555
msgctxt "linetabpage|FT_LINE_END_WIDTH"
msgid "W_idth:"
msgstr "Am_plària:"
#. g2gLY
-#: cui/uiconfig/ui/linetabpage.ui:580
+#: cui/uiconfig/ui/linetabpage.ui:581
msgctxt "linetabpage|TSB_CENTER_END"
msgid "C_enter"
msgstr "C_entre"
#. sged5
-#: cui/uiconfig/ui/linetabpage.ui:624
+#: cui/uiconfig/ui/linetabpage.ui:625
msgctxt "linetabpage|label2"
msgid "Arrow Styles"
msgstr "Estils de fletxa"
#. BdoBN
-#: cui/uiconfig/ui/linetabpage.ui:656
+#: cui/uiconfig/ui/linetabpage.ui:657
msgctxt "linetabpage|FT_EDGE_STYLE"
msgid "_Corner style:"
msgstr "Estil de _cantonada:"
#. kCtQm
-#: cui/uiconfig/ui/linetabpage.ui:670
+#: cui/uiconfig/ui/linetabpage.ui:671
msgctxt "linetabpage|FT_CAP_STYLE"
msgid "Ca_p style:"
msgstr "Estil d'e_xtrem:"
#. Qx3Ur
-#: cui/uiconfig/ui/linetabpage.ui:685
+#: cui/uiconfig/ui/linetabpage.ui:686
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Rounded"
msgstr "Arredonit"
#. XH7Z6
-#: cui/uiconfig/ui/linetabpage.ui:686
+#: cui/uiconfig/ui/linetabpage.ui:687
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "- none -"
msgstr "- cap -"
#. HZoVf
-#: cui/uiconfig/ui/linetabpage.ui:687
+#: cui/uiconfig/ui/linetabpage.ui:688
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Mitered"
msgstr "Biaix"
#. RjDyz
-#: cui/uiconfig/ui/linetabpage.ui:688
+#: cui/uiconfig/ui/linetabpage.ui:689
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Beveled"
msgstr "Bisellat"
#. biCBC
-#: cui/uiconfig/ui/linetabpage.ui:701
+#: cui/uiconfig/ui/linetabpage.ui:702
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Flat"
msgstr "Pla"
#. GqrYS
-#: cui/uiconfig/ui/linetabpage.ui:702
+#: cui/uiconfig/ui/linetabpage.ui:703
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Round"
msgstr "Arredonit"
#. 3hNSB
-#: cui/uiconfig/ui/linetabpage.ui:703
+#: cui/uiconfig/ui/linetabpage.ui:704
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Square"
msgstr "Quadrat"
#. Y4Gmw
-#: cui/uiconfig/ui/linetabpage.ui:717
+#: cui/uiconfig/ui/linetabpage.ui:718
msgctxt "linetabpage|label3"
msgid "Corner and Cap Styles"
msgstr "Estils de cantonada i d'extrem"
#. 4YTBE
-#: cui/uiconfig/ui/linetabpage.ui:745
+#: cui/uiconfig/ui/linetabpage.ui:746
msgctxt "linetabpage|MB_SYMBOL_BITMAP"
msgid "Select..."
msgstr "Selecciona..."
#. LaBcU
-#: cui/uiconfig/ui/linetabpage.ui:774
+#: cui/uiconfig/ui/linetabpage.ui:775
msgctxt "linetabpage|FT_SYMBOL_WIDTH"
msgid "Widt_h:"
msgstr "Am_plària:"
#. yhVmm
-#: cui/uiconfig/ui/linetabpage.ui:799
+#: cui/uiconfig/ui/linetabpage.ui:800
msgctxt "linetabpage|CB_SYMBOL_RATIO"
msgid "_Keep ratio"
msgstr "_Conserva la relació"
#. oV6GJ
-#: cui/uiconfig/ui/linetabpage.ui:817
+#: cui/uiconfig/ui/linetabpage.ui:818
msgctxt "linetabpage|FT_SYMBOL_HEIGHT"
msgid "Hei_ght:"
msgstr "A_lçària:"
#. 9eaQs
-#: cui/uiconfig/ui/linetabpage.ui:853
+#: cui/uiconfig/ui/linetabpage.ui:854
msgctxt "linetabpage|label4"
msgid "Icon"
msgstr "Icona"
#. vPJAG
-#: cui/uiconfig/ui/linetabpage.ui:891
+#: cui/uiconfig/ui/linetabpage.ui:892
msgctxt "linetabpage|CTL_PREVIEW-atkobject"
msgid "Example"
msgstr "Exemple"
diff --git a/source/ca-valencia/helpcontent2/source/text/swriter/guide.po b/source/ca-valencia/helpcontent2/source/text/swriter/guide.po
index 0741c563337..2081d76e808 100644
--- a/source/ca-valencia/helpcontent2/source/text/swriter/guide.po
+++ b/source/ca-valencia/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2023-12-04 15:06+0100\n"
+"POT-Creation-Date: 2024-03-18 13:16+0100\n"
"PO-Revision-Date: 2023-08-10 21:24+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/ca_VALENCIA/>\n"
@@ -15758,13 +15758,13 @@ msgctxt ""
msgid "You can manually check the spelling and grammar of a text selection or the entire document."
msgstr "Podeu verificar manualment l'ortografia i la gramàtica d'una selecció de text o de tot un document."
-#. 66nTi
+#. TV7Aa
#: spellcheck_dialog.xhp
msgctxt ""
"spellcheck_dialog.xhp\n"
"par_id0525200902184476\n"
"help.text"
-msgid "To check the spelling and the grammar of a text, the appropriate dictionaries must be installed. For many languages three different dictionaries exist: a spellchecker, a hyphenation dictionary, and a thesaurus. Each dictionary covers one language only. Grammar checkers can be downloaded and installed as extensions. See the <link href=\"https://extensions.libreoffice.org/extension-center?getCategories=Dictionary\">extensions web page</link>."
+msgid "To check the spelling and the grammar of a text, the appropriate dictionaries must be installed. For many languages three different dictionaries exist: a spellchecker, a hyphenation dictionary, and a thesaurus. Each dictionary covers one language only. Grammar checkers can be downloaded and installed as extensions. See the <link href=\"https://extensions.libreoffice.org/?Tags[]=50\">extensions web page</link>."
msgstr ""
#. X3zXc
diff --git a/source/ca-valencia/sfx2/messages.po b/source/ca-valencia/sfx2/messages.po
index 64e19d79bf7..0045fb522ca 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: 2023-12-04 15:07+0100\n"
+"POT-Creation-Date: 2024-03-18 13:16+0100\n"
"PO-Revision-Date: 2023-08-10 13:24+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"
@@ -3792,7 +3792,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2023 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2024 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
@@ -3802,7 +3802,7 @@ msgstr ""
"\n"
"Totes les marques comercials i registrades mencionades ací són propietat dels seus respectius propietaris.\n"
"\n"
-"Drets d'autor © 2000–2023 dels col·laboradors del LibreOffice. Tots els drets reservats\n"
+"Drets d'autor © 2000–2024 dels col·laboradors del LibreOffice. Tots els drets reservats\n"
"\n"
"Aquest producte fou creat per %OOOVENDOR, basat en l'OpenOffice.org, amb «copyright» 2000 i 2011 d'Oracle i dels seus afiliats. %OOOVENDOR reconeix tots els membres de la comunitat. Visiteu http://www.libreoffice.org/ per a obtindre més detalls."
@@ -4443,7 +4443,7 @@ msgid "Specifies the print setting options."
msgstr "Especifica les opcions per a la configuració de la impressió."
#. NEo7g
-#: sfx2/uiconfig/ui/panel.ui:73 sfx2/uiconfig/ui/panel.ui:78
+#: sfx2/uiconfig/ui/panel.ui:74 sfx2/uiconfig/ui/panel.ui:79
msgctxt "panel|SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Més opcions"
diff --git a/source/ca/cui/messages.po b/source/ca/cui/messages.po
index 1ce84313b27..f5ccc0df877 100644
--- a/source/ca/cui/messages.po
+++ b/source/ca/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-01-22 14:04+0100\n"
+"POT-Creation-Date: 2024-03-18 13:15+0100\n"
"PO-Revision-Date: 2024-03-07 09:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-24-2/cuimessages/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 5.3.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1564129929.000000\n"
#. GyY9M
@@ -1982,8 +1982,8 @@ msgstr "L'URL <%1> no es pot convertir en un camí del sistema de fitxers."
#. YfSb4
#: cui/inc/strings.hrc:361
msgctxt "aboutdialog|copyright"
-msgid "Copyright © 2000–2023 LibreOffice contributors."
-msgstr "Drets d'autor © 2000–2023 dels col·laboradors del LibreOffice."
+msgid "Copyright © 2000–2024 LibreOffice contributors."
+msgstr "Drets d'autor © 2000–2024 dels col·laboradors del LibreOffice."
#. WCnhx
#: cui/inc/strings.hrc:362
@@ -12289,163 +12289,163 @@ msgid "Colo_r:"
msgstr "Colo_r:"
#. sBL64
-#: cui/uiconfig/ui/linetabpage.ui:259
+#: cui/uiconfig/ui/linetabpage.ui:260
msgctxt "linetabpage|FT_LINE_WIDTH"
msgid "T_hickness:"
msgstr "_Gruix:"
#. MzAeD
-#: cui/uiconfig/ui/linetabpage.ui:301
+#: cui/uiconfig/ui/linetabpage.ui:302
msgctxt "linetabpage|FT_TRANSPARENT"
msgid "_Transparency:"
msgstr "_Transparència:"
#. 6TFWn
-#: cui/uiconfig/ui/linetabpage.ui:339
+#: cui/uiconfig/ui/linetabpage.ui:340
msgctxt "linetabpage|label1"
msgid "Line Properties"
msgstr "Propietats de la línia"
#. HyxSJ
-#: cui/uiconfig/ui/linetabpage.ui:382
+#: cui/uiconfig/ui/linetabpage.ui:383
msgctxt "linetabpage|FT_LINE_ENDS_STYLE"
msgid "Start st_yle:"
msgstr "Est_il d'inici:"
#. aZYyn
-#: cui/uiconfig/ui/linetabpage.ui:423
+#: cui/uiconfig/ui/linetabpage.ui:424
msgctxt "linetabpage|TSB_CENTER_START"
msgid "Ce_nter"
msgstr "Ce_ntre"
#. 5RYtu
-#: cui/uiconfig/ui/linetabpage.ui:441
+#: cui/uiconfig/ui/linetabpage.ui:442
msgctxt "linetabpage|FT_LINE_START_WIDTH"
msgid "Wi_dth:"
msgstr "Am_plada:"
#. pQfyE
-#: cui/uiconfig/ui/linetabpage.ui:467
+#: cui/uiconfig/ui/linetabpage.ui:468
msgctxt "linetabpage|CBX_SYNCHRONIZE"
msgid "Synchroni_ze ends"
msgstr "Sincronit_za les terminacions"
#. cCsuG
-#: cui/uiconfig/ui/linetabpage.ui:533
+#: cui/uiconfig/ui/linetabpage.ui:534
msgctxt "linetabpage|label5"
msgid "End sty_le:"
msgstr "Esti_l final:"
#. zm8Ga
-#: cui/uiconfig/ui/linetabpage.ui:554
+#: cui/uiconfig/ui/linetabpage.ui:555
msgctxt "linetabpage|FT_LINE_END_WIDTH"
msgid "W_idth:"
msgstr "Am_plada:"
#. g2gLY
-#: cui/uiconfig/ui/linetabpage.ui:580
+#: cui/uiconfig/ui/linetabpage.ui:581
msgctxt "linetabpage|TSB_CENTER_END"
msgid "C_enter"
msgstr "C_entre"
#. sged5
-#: cui/uiconfig/ui/linetabpage.ui:624
+#: cui/uiconfig/ui/linetabpage.ui:625
msgctxt "linetabpage|label2"
msgid "Arrow Styles"
msgstr "Estils de fletxa"
#. BdoBN
-#: cui/uiconfig/ui/linetabpage.ui:656
+#: cui/uiconfig/ui/linetabpage.ui:657
msgctxt "linetabpage|FT_EDGE_STYLE"
msgid "_Corner style:"
msgstr "Estil de _cantonada:"
#. kCtQm
-#: cui/uiconfig/ui/linetabpage.ui:670
+#: cui/uiconfig/ui/linetabpage.ui:671
msgctxt "linetabpage|FT_CAP_STYLE"
msgid "Ca_p style:"
msgstr "Estil d'e_xtrem:"
#. Qx3Ur
-#: cui/uiconfig/ui/linetabpage.ui:685
+#: cui/uiconfig/ui/linetabpage.ui:686
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Rounded"
msgstr "Arrodonit"
#. XH7Z6
-#: cui/uiconfig/ui/linetabpage.ui:686
+#: cui/uiconfig/ui/linetabpage.ui:687
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "- none -"
msgstr "- cap -"
#. HZoVf
-#: cui/uiconfig/ui/linetabpage.ui:687
+#: cui/uiconfig/ui/linetabpage.ui:688
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Mitered"
msgstr "Biaix"
#. RjDyz
-#: cui/uiconfig/ui/linetabpage.ui:688
+#: cui/uiconfig/ui/linetabpage.ui:689
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Beveled"
msgstr "Bisellat"
#. biCBC
-#: cui/uiconfig/ui/linetabpage.ui:701
+#: cui/uiconfig/ui/linetabpage.ui:702
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Flat"
msgstr "Pla"
#. GqrYS
-#: cui/uiconfig/ui/linetabpage.ui:702
+#: cui/uiconfig/ui/linetabpage.ui:703
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Round"
msgstr "Arrodonit"
#. 3hNSB
-#: cui/uiconfig/ui/linetabpage.ui:703
+#: cui/uiconfig/ui/linetabpage.ui:704
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Square"
msgstr "Quadrat"
#. Y4Gmw
-#: cui/uiconfig/ui/linetabpage.ui:717
+#: cui/uiconfig/ui/linetabpage.ui:718
msgctxt "linetabpage|label3"
msgid "Corner and Cap Styles"
msgstr "Estils de cantonada i d'extrem"
#. 4YTBE
-#: cui/uiconfig/ui/linetabpage.ui:745
+#: cui/uiconfig/ui/linetabpage.ui:746
msgctxt "linetabpage|MB_SYMBOL_BITMAP"
msgid "Select..."
msgstr "Selecciona..."
#. LaBcU
-#: cui/uiconfig/ui/linetabpage.ui:774
+#: cui/uiconfig/ui/linetabpage.ui:775
msgctxt "linetabpage|FT_SYMBOL_WIDTH"
msgid "Widt_h:"
msgstr "Am_plada:"
#. yhVmm
-#: cui/uiconfig/ui/linetabpage.ui:799
+#: cui/uiconfig/ui/linetabpage.ui:800
msgctxt "linetabpage|CB_SYMBOL_RATIO"
msgid "_Keep ratio"
msgstr "_Conserva la relació"
#. oV6GJ
-#: cui/uiconfig/ui/linetabpage.ui:817
+#: cui/uiconfig/ui/linetabpage.ui:818
msgctxt "linetabpage|FT_SYMBOL_HEIGHT"
msgid "Hei_ght:"
msgstr "A_lçada:"
#. 9eaQs
-#: cui/uiconfig/ui/linetabpage.ui:853
+#: cui/uiconfig/ui/linetabpage.ui:854
msgctxt "linetabpage|label4"
msgid "Icon"
msgstr "Icona"
#. vPJAG
-#: cui/uiconfig/ui/linetabpage.ui:891
+#: cui/uiconfig/ui/linetabpage.ui:892
msgctxt "linetabpage|CTL_PREVIEW-atkobject"
msgid "Example"
msgstr "Exemple"
diff --git a/source/ca/filter/messages.po b/source/ca/filter/messages.po
index 4280b81b094..ae81981d2df 100644
--- a/source/ca/filter/messages.po
+++ b/source/ca/filter/messages.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: 2023-12-04 15:06+0100\n"
-"PO-Revision-Date: 2023-12-11 01:45+0000\n"
-"Last-Translator: Joan Montané <joan@montane.cat>\n"
-"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/filtermessages/ca/>\n"
+"PO-Revision-Date: 2024-03-10 05:37+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-24-2/filtermessages/ca/>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.3.1\n"
"X-POOTLE-MTIME: 1562301101.000000\n"
#. 5AQgJ
@@ -453,7 +453,7 @@ msgstr "Obre el document exportat en el visualitzador de PDF per defecte del sis
#: filter/uiconfig/ui/pdfgeneralpage.ui:168
msgctxt "pdfgeneralpage|selectedsheets"
msgid "_Selection/Selected sheet(s)"
-msgstr "_Selecció o fulles seleccionades"
+msgstr "_Selecció o fulls seleccionats"
#. MXtmZ
#: filter/uiconfig/ui/pdfgeneralpage.ui:181
diff --git a/source/ca/helpcontent2/source/text/sbasic/guide.po b/source/ca/helpcontent2/source/text/sbasic/guide.po
index 80fe58d303c..2010db890a0 100644
--- a/source/ca/helpcontent2/source/text/sbasic/guide.po
+++ b/source/ca/helpcontent2/source/text/sbasic/guide.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: 2023-10-11 14:17+0200\n"
-"PO-Revision-Date: 2024-02-21 09:40+0000\n"
-"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"PO-Revision-Date: 2024-03-14 14:37+0000\n"
+"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-24-2/textsbasicguide/ca/>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@@ -564,7 +564,7 @@ msgctxt ""
"N0552\n"
"help.text"
msgid "<emph>argparse</emph> Parser for command-line options, arguments and sub-commands"
-msgstr "<emph>argparse</emph> Analitzador per a les opcions, arguments i subordres de línia de comandes"
+msgstr "<emph>argparse</emph> Analitzador per a les opcions, arguments i subordres de línia d'ordres"
#. zBD3c
#: basic_2_python.xhp
@@ -789,7 +789,7 @@ msgctxt ""
"par_id191630538210607\n"
"help.text"
msgid "<emph>newWidth</emph> is an integer value that defines the line thickness."
-msgstr ""
+msgstr "<emph>newWidth</emph> és un valor enter que defineix el gruix de la línia."
#. 6Tv9V
#: calc_borders.xhp
@@ -1872,7 +1872,7 @@ msgctxt ""
"par_id3153157\n"
"help.text"
msgid "When you execute this code, \"Dialog1\" opens. To close the dialog, click the close button (x) on its title bar."
-msgstr "Quan executeu aquest codi, s'obrirà el quadre de diàleg «Dialog1». Per a tancar el diàleg, feu clic al botó de tancament (x) de la barra de títol."
+msgstr "Quan executeu aquest codi, s'obrirà el quadre de diàleg «Dialog1». Per a tancar el diàleg, feu clic al botó de tancament (✕) de la barra de títol."
#. s79uv
#: translation.xhp
diff --git a/source/ca/helpcontent2/source/text/sbasic/python.po b/source/ca/helpcontent2/source/text/sbasic/python.po
index 97e36b88b7a..77fcd632423 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: 2023-12-04 15:06+0100\n"
-"PO-Revision-Date: 2024-03-05 11:37+0000\n"
+"PO-Revision-Date: 2024-03-10 03:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-24-2/textsbasicpython/ca/>\n"
"Language: ca\n"
@@ -3075,7 +3075,7 @@ msgctxt ""
"N0435\n"
"help.text"
msgid "Python standard output file is not available when running Python macros from <menuitem>Tools – Macros - Run Macro</menuitem>... menu. Presenting the output of a module requires the Python interactive console. Features such as <literal>input()</literal>, <literal>print()</literal>, <literal>repr()</literal> and <literal>str()</literal> are available from the Python shell."
-msgstr "El fitxer de sortida estàndard de Python no està disponible quan s'executen macros de Python des del menú <menuitem>Eines - Macros - Executa macro</menuitem>. Presentar la sortida d'un mòdul requereix la consola interactiva de Python. Les funcionalitats com <literal>input()</literal>, <literal>print()</literal>, <literal>repr()</literal> i <literal>str()</literal> estan disponibles a l'intèrpret de comandes de Python."
+msgstr "El fitxer de sortida estàndard de Python no està disponible quan s'executen macros de Python des del menú <menuitem>Eines ▸ Macros ▸ Executa una macro</menuitem>. Presentar la sortida d'un mòdul requereix la consola interactiva de Python. Les funcionalitats com <literal>input()</literal>, <literal>print()</literal>, <literal>repr()</literal> i <literal>str()</literal> estan disponibles a l'intèrpret d'ordres de Python."
#. ftsGT
#: python_screen.xhp
diff --git a/source/ca/helpcontent2/source/text/sbasic/shared.po b/source/ca/helpcontent2/source/text/sbasic/shared.po
index cfd1d1dd931..aec3c67f1d8 100644
--- a/source/ca/helpcontent2/source/text/sbasic/shared.po
+++ b/source/ca/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: 2023-12-04 15:06+0100\n"
-"PO-Revision-Date: 2024-03-04 10:37+0000\n"
-"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"PO-Revision-Date: 2024-03-17 00:04+0000\n"
+"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-24-2/textsbasicshared/ca/>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@@ -132,7 +132,7 @@ msgctxt ""
"par_id3154731\n"
"help.text"
msgid "A <emph>twip</emph> is a screen-independent unit which is used to define the uniform position and size of screen elements on all display systems. A twip is 1/1440th of an inch or 1/20 of a printer's point. There are 1440 twips to an inch or about 567 twips to a centimeter."
-msgstr ""
+msgstr "Un <emph>twip</emph> és una unitat independent de la pantalla utilitzada per a definir la posició i la mida uniformes dels elements de la pantalla al conjunt dels sistemes de visualització. Un twip representa 1/1.440 de polzada o 1/20 de punt d'impressió. Per tant, existeixen 1.440 twips per polzada o al voltant de 567 twips per centímetre."
#. FvGBG
#: 00000002.xhp
@@ -222,7 +222,7 @@ msgctxt ""
"par_id3153381\n"
"help.text"
msgid "You can set the locale used for controlling the formatting numbers, dates and currencies in $[officename] Basic in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Languages and Locales - General</emph>. In Basic format codes, the decimal point (<emph>.</emph>) is always used as <emph>placeholder</emph> for the decimal separator defined in your locale and will be replaced by the corresponding character."
-msgstr ""
+msgstr "Podeu definir els paràmetres regionals utilitzats per a controlar el formatatge dels nombres, de les dates i de les divises al $[officename] Basic a <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME ▸ Preferències</emph></caseinline><defaultinline><emph>Eines ▸ Opcions</emph></defaultinline></switchinline><emph> ▸ Llengües i configuracions locals ▸ General</emph>. En els codis al format Basic, el punt decimal (<emph>.</emph>) s'usa sempre com <emph>espai reservat</emph> per al separador decimal definit en els paràmetres regionals i serà substituït pel caràcter corresponent."
#. 6NcoV
#: 00000003.xhp
@@ -4074,7 +4074,7 @@ msgctxt ""
"par_id571574079618609\n"
"help.text"
msgid "<emph>Application Macros</emph>: libraries stored in this container are available for all users of the computer and are managed by the computer administrator. The container is located in the %PRODUCTNAME installation directory."
-msgstr ""
+msgstr "<emph>Macros de l'aplicació</emph>: les biblioteques emmagatzemades en aquest contenidor són disponibles per a tots els usuaris de l'ordinador i l'administrador de l'ordinador les gestiona. El contenidor es troba al directori d'instal·lació del %PRODUCTNAME."
#. UG2dG
#: 01030400.xhp
@@ -4087,13 +4087,12 @@ msgstr "<emph>Les meves macros</emph>: les biblioteques emmagatzemades en aquest
#. 4ABok
#: 01030400.xhp
-#, fuzzy
msgctxt ""
"01030400.xhp\n"
"par_id581574080384335\n"
"help.text"
msgid "<emph>Document</emph>: libraries stored in the document container are only available for the document and are accessible only when the document is open. You cannot access macros of a document from another document."
-msgstr "Les biblioteques <emph>Document</emph> emmagatzemades al contenidor de documents només estan disponibles per al document i només són accessibles quan el document està obert. No podeu accedir a macros d'un document des d'un altre document."
+msgstr "<emph>Document</emph> les biblioteques emmagatzemades al contenidor de documents només estan disponibles per al document i només són accessibles quan el document està obert. No podeu accedir a macros d'un document des d'un altre document."
#. ZmKf5
#: 01030400.xhp
@@ -4102,7 +4101,7 @@ msgctxt ""
"par_id881574081445896\n"
"help.text"
msgid "To access macros stored in libraries of <emph>Application Macros</emph> or <emph>My Macros</emph> from another container, including the document container, use the <link href=\"text/sbasic/shared/03131900.xhp\">GlobalScope specifier</link>."
-msgstr ""
+msgstr "Per a accedir a les macros emmagatzemades en les biblioteques de <emph>Macros de l'aplicació </emph> o <emph>Les meves macros</emph> des d'un altre contenidor, inclòs el contenidor de documents, useu l'<link href=\"text/sbasic/shared/03131900.xhp\">Especificador GlobalScope </link>."
#. bGzjL
#: 01030400.xhp
@@ -4129,7 +4128,7 @@ msgctxt ""
"par_id3152576\n"
"help.text"
msgid "Choose <emph>Tools - Macros - Organize Macros - Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
-msgstr ""
+msgstr "Trieu <emph>Eines ▸ Macros ▸ Organitza les macros ▸ Basic</emph> i feu clic a <emph>Organitzador</emph>, o bé, feu clic a la icona <emph>Selecciona el mòdul</emph> de l'IDE del Basic per a obrir el diàleg <emph>Organitzador de macros</emph>."
#. PcnbC
#: 01030400.xhp
@@ -4147,7 +4146,7 @@ msgctxt ""
"par_id3149664\n"
"help.text"
msgid "Select to where you want to attach the library in the <emph>Location</emph> list. If you select Application Macros & Dialogs, the library will belong to the $[officename] application and will be available for all documents. If you select a document the library will be attached to this document and only available from there."
-msgstr ""
+msgstr "Seleccioneu on voleu inserir la biblioteca en la llista <emph>Ubicació</emph>. Si seleccioneu Macros i diàlegs de l'aplicació, la biblioteca pertanyerà a l'aplicació $[officename] i serà disponible per a tots els documents. Si seleccioneu un document, s'inserirà la biblioteca al document i només serà disponible a partir d'aquest."
#. PCjRC
#: 01030400.xhp
@@ -4174,7 +4173,7 @@ msgctxt ""
"par_id3153157\n"
"help.text"
msgid "Choose <emph>Tools - Macros - Organize Macros - Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
-msgstr ""
+msgstr "Trieu <emph>Eines ▸ Macros ▸ Organitza les macros ▸ Basic</emph> i feu clic a <emph>Organitzador</emph>, o bé, feu clic a la icona <emph>Selecciona el mòdul</emph> de l'IDE del Basic per a obrir el diàleg <emph>Organitzador de macros</emph>."
#. Tkmcd
#: 01030400.xhp
@@ -4192,7 +4191,7 @@ msgctxt ""
"par_id3145640\n"
"help.text"
msgid "Select to where you want to import the library in the <emph>Location</emph> list. If you select Application Macros & Dialogs, the library will belong to the $[officename] application and will be available for all documents. If you select a document the library will be imported to this document and only available from there."
-msgstr ""
+msgstr "Seleccioneu on voleu importar la biblioteca en la llista <emph>Ubicació</emph>. Si seleccioneu Macros i diàlegs de l'aplicació, la biblioteca pertanyerà a l'aplicació $[officename] i serà disponible per a tots els documents. Si seleccioneu un document, s'importarà la biblioteca al document i només serà disponible a partir d'aquest."
#. dUvoX
#: 01030400.xhp
@@ -4255,7 +4254,7 @@ msgctxt ""
"par_id3147005\n"
"help.text"
msgid "Choose <emph>Tools - Macros - Organize Macros - Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
-msgstr ""
+msgstr "Trieu <emph>Eines ▸ Macros ▸ Organitza les macros ▸ Basic</emph> i feu clic a <emph>Organitzador</emph>, o bé, feu clic a la icona <emph>Selecciona el mòdul</emph> de l'IDE del Basic per a obrir el diàleg <emph>Organitzador de macros</emph>."
#. 6J4pG
#: 01030400.xhp
@@ -4336,7 +4335,7 @@ msgctxt ""
"par_id3150086\n"
"help.text"
msgid "Choose <emph>Tools - Macros - Organize Macros - Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
-msgstr ""
+msgstr "Trieu <emph>Eines ▸ Macros ▸ Organitza les macros ▸ Basic</emph> i feu clic a <emph>Organitzador</emph>, o bé, feu clic a la icona <emph>Selecciona el mòdul</emph> de l'IDE del Basic per a obrir el diàleg <emph>Organitzador de macros</emph>."
#. A6h5y
#: 01030400.xhp
@@ -4417,7 +4416,7 @@ msgctxt ""
"par_id3154537\n"
"help.text"
msgid "Choose <emph>Tools - Macros - Organize Macros - Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
-msgstr ""
+msgstr "Trieu <emph>Eines ▸ Macros ▸ Organitza les macros ▸ Basic</emph> i feu clic a <emph>Organitzador</emph>, o bé, feu clic a la icona <emph>Selecciona el mòdul</emph> de l'IDE del Basic per a obrir el diàleg <emph>Organitzador de macros</emph>."
#. AZkde
#: 01030400.xhp
@@ -4462,7 +4461,7 @@ msgctxt ""
"par_id3159230\n"
"help.text"
msgid "Choose <emph>Tools - Macros - Organize Macros - Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
-msgstr ""
+msgstr "Trieu <emph>Eines ▸ Macros ▸ Organitza les macros ▸ Basic</emph> i feu clic a <emph>Organitzador</emph>, o bé, feu clic a la icona <emph>Selecciona el mòdul</emph> de l'IDE del Basic per a obrir el diàleg <emph>Organitzador de macros</emph>."
#. L9iaA
#: 01030400.xhp
@@ -4507,7 +4506,7 @@ msgctxt ""
"par_id3147547\n"
"help.text"
msgid "Choose <emph>Tools - Macros - Organize Macros - Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
-msgstr ""
+msgstr "Trieu <emph>Eines ▸ Macros ▸ Organitza les macros ▸ Basic</emph> i feu clic a <emph>Organitzador</emph>, o bé, feu clic a la icona <emph>Selecciona el mòdul</emph> de l'IDE del Basic per a obrir el diàleg <emph>Organitzador de macros</emph>."
#. DUoVN
#: 01030400.xhp
@@ -4579,7 +4578,7 @@ msgctxt ""
"par_id3149319\n"
"help.text"
msgid "Choose <emph>Tools - Macros - Organize Macros - Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
-msgstr ""
+msgstr "Trieu <emph>Eines ▸ Macros ▸ Organitza les macros ▸ Basic</emph> i feu clic a <emph>Organitzador</emph>, o bé, feu clic a la icona <emph>Selecciona el mòdul</emph> de l'IDE del Basic per a obrir el diàleg <emph>Organitzador de macros</emph>."
#. njHkZ
#: 01030400.xhp
@@ -4588,7 +4587,7 @@ msgctxt ""
"par_id3145637\n"
"help.text"
msgid "To move a module or dialog to another document, click the corresponding object in the list and drag it to the desired position. A horizontal line indicates the target position of the current object while dragging. Hold the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while dragging to copy the object instead of moving it."
-msgstr "Per moure un mòdul o un diàleg a un altre document, feu clic a l'objecte corresponent de la llista i arrossegueu-lo fins a la posició que vulgueu. Una línia horitzontal indica la posició de destí de l'objecte actual mentre s'arrossega. Manteniu premuda la tecla <switchinline select=\"sys\"><caseinline select=\"MAC\">Ordre</caseinline><defaultinline>Ctrl</defaultinline></switchinline> mentre arrossegueu per copiar l'objecte en lloc de moure'l."
+msgstr "Per a moure un mòdul o un diàleg a un altre document, feu clic a l'objecte corresponent de la llista i arrossegueu-lo fins a la posició que vulgueu. Una línia horitzontal indica la posició de destí de l'objecte actual mentre s'arrossega. Manteniu premuda la tecla <switchinline select=\"sys\"><caseinline select=\"MAC\">Ordre</caseinline><defaultinline>Ctrl</defaultinline></switchinline> mentre arrossegueu per a copiar l'objecte en lloc de moure'l."
#. 8AfAv
#: 01040000.xhp
@@ -4606,7 +4605,7 @@ msgctxt ""
"bm_id3154581\n"
"help.text"
msgid "<bookmark_value>deleting; macro assignments to events</bookmark_value> <bookmark_value>macros; assigning to events</bookmark_value> <bookmark_value>assigning macros to events</bookmark_value> <bookmark_value>documents; events</bookmark_value> <bookmark_value>events; assigning macros</bookmark_value> <bookmark_value>events; in documents</bookmark_value> <bookmark_value>API; XDocumentEventListener</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>supressió; assignacions de macro a esdeveniments</bookmark_value> <bookmark_value>Macros; assignació a esdeveniments</bookmark_value> <bookmark_value>Assignació de macros a esdeveniments</bookmark_value> <bookmark_value>Documents; esdeveniments</bookmark_value> <bookmark_value>esdeveniments; assignació de macros</bookmark_value> <bookmark_value>esdeveniments; en els documents</bookmark_value> <bookmark_value>API; XDocumentEventListener</bookmark_value>"
#. zGhet
#: 01040000.xhp
@@ -5029,7 +5028,7 @@ msgctxt ""
"par_id961599839198859\n"
"help.text"
msgid "When the document disk location has changed, for example after a <emph>File - Save As</emph> action."
-msgstr ""
+msgstr "Si la ubicació del document al disc ha canviat, per exemple, després de l'acció <emph>Fitxer ▸ Anomena i desa</emph>."
#. n5TCf
#: 01040000.xhp
@@ -5420,13 +5419,12 @@ msgstr "Feu clic a <emph>D'acord</emph> per a tancar el diàleg."
#. 95hhB
#: 01040000.xhp
-#, fuzzy
msgctxt ""
"01040000.xhp\n"
"par_id341600162682135\n"
"help.text"
msgid "In addition to assigning macros to events, one can <link href=\"text/sbasic/python/python_document_events.xhp\">monitor events</link> triggered in %PRODUCTNAME documents."
-msgstr "A més d'assignar macros a esdeveniments es poden activar <link href=\"text/sbasic/python/pythondocumentevents.xhp\">monitoritzant esdeveniments</link> en documents del %PRODUCTNAME."
+msgstr "A més d'assignar macros a esdeveniments, es pot <link href=\"text/sbasic/python/pythondocumentevents.xhp\">fer seguiment dels esdeveniments</link> activats en els documents %PRODUCTNAME."
#. XcdRk
#: 01050000.xhp
@@ -5453,7 +5451,7 @@ msgctxt ""
"par_idN105C9\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the Basic IDE where you can write and edit BASIC macros.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Obre l'IDE en què podeu escriure i editar macros en BASIC.</ahelp>"
#. YTpwx
#: 01050000.xhp
@@ -5471,7 +5469,7 @@ msgctxt ""
"par_id431696550928389\n"
"help.text"
msgid "Choose <menuitem>Tools - Macro - Edit Macro</menuitem>."
-msgstr ""
+msgstr "Trieu <menuitem>Eines ▸ Macros ▸ Edita les macros</menuitem>."
#. zmtUX
#: 01050000.xhp
@@ -5480,7 +5478,7 @@ msgctxt ""
"par_id451696550923767\n"
"help.text"
msgid "Choose <menuitem>Tools - Basic</menuitem>."
-msgstr ""
+msgstr "Trieu <menuitem>Eines ▸ Basic</menuitem>."
#. FMBZo
#: 01050000.xhp
@@ -5489,7 +5487,7 @@ msgctxt ""
"par_id741696551014785\n"
"help.text"
msgid "On the <menuitem>Tools</menuitem> menu of the <menuitem>Tools</menuitem> tab, choose <menuitem>Edit Macro</menuitem>."
-msgstr ""
+msgstr "En el menú <menuitem>Eines</menuitem> de la pestanya <menuitem>Eines</menuitem>, trieu <menuitem>Edita les macros</menuitem>."
#. TvEWG
#: 01050000.xhp
@@ -5498,7 +5496,7 @@ msgctxt ""
"par_id831696550904634\n"
"help.text"
msgid "<image src=\"cmd/lc_basicideappear.svg\" id=\"img_id271696550904635\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id661696550904636\">Icon Edit Macro</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_basicideappear.svg\" id=\"img_id271696550904635\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id661696550904636\">Icona Edita les macros</alt></image>"
#. bv9fy
#: 01050000.xhp
@@ -8054,7 +8052,7 @@ msgctxt ""
"par_id3148983\n"
"help.text"
msgid "This section describes the Runtime Functions of %PRODUCTNAME Basic."
-msgstr ""
+msgstr "Aquesta secció descriu les funcions d'execució del %PRODUCTNAME Basic."
#. YcBGc
#: 03010000.xhp
@@ -8135,7 +8133,7 @@ msgctxt ""
"hd_id3154927\n"
"help.text"
msgid "<variable id=\"msgbox_h1\"><link href=\"text/sbasic/shared/03010101.xhp\">MsgBox Statement</link></variable>"
-msgstr ""
+msgstr "<variable id=\"msgbox_h1\"><link href=\"text/sbasic/shared/03010101.xhp\">Expressió MsgBox </link></variable>"
#. iLRSC
#: 03010101.xhp
@@ -8153,7 +8151,7 @@ msgctxt ""
"par_id3148798\n"
"help.text"
msgid "<emph>prompt</emph>: String expression displayed as a message in the dialog box. Line breaks can be inserted with Chr$(13)."
-msgstr ""
+msgstr "<emph>indicador</emph>: expressió de cadena que es mostra com un missatge en el quadre de diàleg. Els salts de línia es poden inserir amb Chr$(13)."
#. oK5f6
#: 03010101.xhp
@@ -8162,7 +8160,7 @@ msgctxt ""
"par_id3150769\n"
"help.text"
msgid "<emph>title</emph>: String expression displayed in the title bar of the dialog. If omitted, the title bar displays the name of the respective application."
-msgstr ""
+msgstr "<emph>títol</emph>: expressió de cadena que es mostra en la barra de títol del diàleg. Si s'omet, la barra de títol mostrarà el nom de l'aplicació respectiva."
#. WNfC6
#: 03010101.xhp
@@ -8171,7 +8169,7 @@ msgctxt ""
"par_id3147228\n"
"help.text"
msgid "<emph>buttons</emph>: Any integer expression that specifies the dialog type, as well as the number and type of buttons to display, and the icon type. <emph>buttons</emph> represents a combination of bit patterns, that is, a combination of elements can be defined by adding their respective values:"
-msgstr ""
+msgstr "<emph>botons</emph>: qualsevol expressió entera que indica el tipus de diàleg, el nombre i tipus de botons a mostrar, així com el tipus d'icona. <emph>botons</emph> representa una combinació de patrons de bits, és a dir, una combinació d'elements que es poden definir afegint els seus valors respectius:"
#. xuEUm
#: 03010101.xhp
@@ -8526,7 +8524,6 @@ msgstr "sVar = MsgBox(\"Vilanova dels Arcs\", MB_DEFBUTTON2 + MB_ICONSTOP + MB_A
#. BaStC
#: 03010103.xhp
-#, fuzzy
msgctxt ""
"03010103.xhp\n"
"tit\n"
@@ -8554,13 +8551,12 @@ msgstr "<variable id=\"Print_h1\"><link href=\"text/sbasic/shared/03010103.xhp\"
#. ZDGAu
#: 03010103.xhp
-#, fuzzy
msgctxt ""
"03010103.xhp\n"
"par_id3156281\n"
"help.text"
msgid "Outputs the specified strings or numeric expressions to the screen or to a sequential file."
-msgstr "Sortida de les cadenes o expressions numèriques especificades a la pantalla o a un fitxer seqüencial."
+msgstr "Genera les cadenes o les expressions numèriques indicades per la pantalla o en un fitxer seqüencial."
#. ZxhkF
#: 03010103.xhp
@@ -8569,7 +8565,7 @@ msgctxt ""
"par_id461596463969009\n"
"help.text"
msgid "Use <link href=\"text/sbasic/shared/03020204.xhp\">Put#</link> statement to write data to a binary or a random file. Use <link href=\"text/sbasic/shared/03020205.xhp\">Write#</link> statement to write data to a sequential text file with delimiting characters."
-msgstr ""
+msgstr "Useu la instrucció <link href=\"text/sbasic/shared/03020204.xhp\">Put#</link> per a escriure dades en un fitxer binari o aleatori. Useu la instrucció <link href=\"text/sbasic/shared/03020205.xhp\">Write#</link> per a escriure dades en un fitxer seqüencial de text amb caràcters delimitadors."
#. AhB82
#: 03010103.xhp
@@ -8578,17 +8574,16 @@ msgctxt ""
"par_id841588605629842\n"
"help.text"
msgid "<image src=\"media/helpimg/sbasic/Print_statement.svg\" id=\"img_id931588605629842\"><alt id=\"alt_id931588605629842\">Print syntax</alt></image>"
-msgstr "<image src=\"media/helpimg/sbasic/Print_statement.svg\" id=\"img_id931588605629842\"><alt id=\"alt_id931588605629842\">Imprimeix sintaxi</alt></image>"
+msgstr "<image src=\"media/helpimg/sbasic/Print_statement.svg\" id=\"img_id931588605629842\"><alt id=\"alt_id931588605629842\">Sintaxi de Print</alt></image>"
#. A6QEE
#: 03010103.xhp
-#, fuzzy
msgctxt ""
"03010103.xhp\n"
"par_id3153188\n"
"help.text"
msgid "Print [#filenum,] expression1[{;|,} [Spc(number As Integer);] [Tab(pos As Integer);] [expression2[...]]"
-msgstr "Print <unk>filenum] expressió1[{;|} [Spc(number As Enter);] [Tab(pos As Enter);] [expressió2<unk>"
+msgstr "Print [#filenum,] expressió1[{;|,} [Spc(number As Integer);] [Tab(pos As Integer);] [expressió2[...]]"
#. NWBqr
#: 03010103.xhp
@@ -8601,33 +8596,30 @@ msgstr "<emph>GA filenum</emph> Qualsevol expressió numèrica que contingui el
#. Zoa2X
#: 03010103.xhp
-#, fuzzy
msgctxt ""
"03010103.xhp\n"
"par_id3163712\n"
"help.text"
msgid "<emph>expression</emph>: Any numeric or string expression to be printed. Multiple expressions can be separated by a semicolon. If separated by a comma, the expressions are indented to the next tab stop. The tab stops cannot be adjusted."
-msgstr "Expressió <emph></emph> Qualsevol expressió numèrica o de cadena a imprimir. Es poden separar múltiples expressions amb un punt i coma. Si se separen amb una coma les expressions sagnaran al següent tabulador. Els tabuladors no es poden ajustar."
+msgstr "<emph>expressió</emph> qualsevol expressió numèrica o de cadena a imprimir. Es poden separar múltiples expressions amb un punt i coma. Si se separen amb una coma, les expressions se sagnaran fins al següent tabulador. Els tabuladors no es poden ajustar."
#. HB3kc
#: 03010103.xhp
-#, fuzzy
msgctxt ""
"03010103.xhp\n"
"par_id3153092\n"
"help.text"
msgid "<emph>number</emph>: Number of spaces to be inserted by the <emph>Spc</emph> function."
-msgstr "Nombre <emph>Nombre d'espais</emph> que s'han d'inserir per la funció <emph>Spc</emph>."
+msgstr "<emph>nombre</emph>: nombre d'espais que ha d'inserir la funció <emph>Spc</emph>."
#. QDwLF
#: 03010103.xhp
-#, fuzzy
msgctxt ""
"03010103.xhp\n"
"par_id3145364\n"
"help.text"
msgid "<emph>pos</emph>: Spaces are inserted until the specified position."
-msgstr "Els <emph>pos</emph> Spaces s'insereixen fins a la posició especificada."
+msgstr "<emph>pos</emph>: els espais s'insereixen fins a la posició especificada."
#. GiAKc
#: 03010103.xhp
@@ -8658,13 +8650,12 @@ msgstr "Si l'expressió que cal imprimir supera una longitud determinada, la vis
#. PV3cE
#: 03010103.xhp
-#, fuzzy
msgctxt ""
"03010103.xhp\n"
"par_id3146969\n"
"help.text"
msgid "You can insert the <emph>Tab</emph> function, enclosed by semicolons, between arguments to indent the output to a specific position, or you can use the <emph>Spc</emph> function to insert a specified number of spaces."
-msgstr "Podeu inserir la funció <emph>Tab</emph> tancada per punts i coma entre els arguments per sagnar la sortida a una posició específica o podeu utilitzar la funció <emph>Spc</emph> per inserir un nombre d'espais especificat."
+msgstr "Podeu inserir la funció <emph>Tab</emph>, delimitada per caràcters de punt i coma entre les instruccions per a sagnar la sortida a una posició específica, o podeu usar la funció <emph>Spc</emph> per a inserir un nombre d'espais determinat."
#. knWZh
#: 03010200.xhp
@@ -8745,7 +8736,7 @@ msgctxt ""
"par_id3153311\n"
"help.text"
msgid "<emph>prompt</emph>: String expression displayed as the message in the dialog box."
-msgstr ""
+msgstr "<emph>indicador</emph>: expressió de cadena que es mostra com a missatge en el diàleg."
#. kqAw6
#: 03010201.xhp
@@ -8763,7 +8754,7 @@ msgctxt ""
"par_id3154307\n"
"help.text"
msgid "<emph>default</emph>: String expression displayed in the text box as default if no other input is given."
-msgstr ""
+msgstr "<emph>per defecte</emph>: expressió de cadena que es mostra de manera predeterminada en el diàleg si no hi ha cap altra entrada."
#. GUFBE
#: 03010201.xhp
@@ -8772,7 +8763,7 @@ msgctxt ""
"par_id3147573\n"
"help.text"
msgid "<emph>xpostwips</emph>: Integer expression that specifies the horizontal position of the dialog. The position is an absolute coordinate and does not refer to the window of %PRODUCTNAME."
-msgstr ""
+msgstr "<emph>xpostwips</emph>: expressió entera que indica la posició horitzontal del diàleg. La posició és una coordenada absoluta i no es refereix a la finestra del %PRODUCTNAME."
#. RY7kB
#: 03010201.xhp
@@ -8781,7 +8772,7 @@ msgctxt ""
"par_id3156024\n"
"help.text"
msgid "<emph>ypostwips</emph>: Integer expression that specifies the vertical position of the dialog. The position is an absolute coordinate and does not refer to the window of %PRODUCTNAME."
-msgstr ""
+msgstr "<emph>ypostwips</emph>: expressió entera que indica la posició vertical del diàleg. La posició és una coordenada absoluta i no es refereix a la finestra del %PRODUCTNAME."
#. 5EWrw
#: 03010201.xhp
@@ -8790,7 +8781,7 @@ msgctxt ""
"par_id3153897\n"
"help.text"
msgid "If <literal>xpostwips</literal> and <literal>ypostwips</literal> are omitted, the dialog is centered on the screen. The position is specified in <link href=\"text/sbasic/shared/00000002.xhp#twips\">twips</link>."
-msgstr ""
+msgstr "Si s'ometen <literal>xpostwips</literal> i <literal>ypostwips</literal> , el diàleg se centra a la pantalla. La posició s'indica en <link href=\"text/sbasic/shared/00000002.xhp#twips\">twips</link>."
#. Mh8Z6
#: 03010201.xhp
@@ -8902,13 +8893,12 @@ msgstr "Enter"
#. JY6Z8
#: 03010301.xhp
-#, fuzzy
msgctxt ""
"03010301.xhp\n"
"par_id3150448\n"
"help.text"
msgid "<emph>Color value</emph>: Long integer expression that specifies any composite color code for which to return the blue component."
-msgstr "Valor de color <emph>Expressió d'enter gran</emph> que especifica qualsevol codi de color compost per al qual retornar el component blau."
+msgstr "<emph>Valor de color</emph>: expressió d'enter gran que indica qualsevol codi de color compost per al qual retornar el component blau."
#. Hmk8k
#: 03010301.xhp
@@ -9124,7 +9114,7 @@ msgctxt ""
"par_id671639922129017\n"
"help.text"
msgid "Under VBA compatibility mode (<link href=\"text/sbasic/shared/03103350.xhp\"><literal>Option VBASupport 1</literal></link>), the function Red() is incompatible with VBA colors, when color from previous call to <link href=\"text/sbasic/shared/03010306.xhp\"><literal>function RGB [VBA]</literal></link> is passed."
-msgstr ""
+msgstr "En el mode de compatibilitat VBA (<link href=\"text/sbasic/shared/03103350.xhp\"><literal>Option VBASupport 1</literal></link>), la funció Red() és incompatible amb els colors VBA, quan s'ha transmès el color de la crida anterior a la <link href=\"text/sbasic/shared/03010306.xhp\"><literal>funció RGB [VBA]</literal></link> ."
#. upYaQ
#: 03010303.xhp
@@ -9448,7 +9438,7 @@ msgctxt ""
"par_id3152597\n"
"help.text"
msgid "<emph>red</emph>: Any integer expression that represents the red component (0-255) of the composite color."
-msgstr ""
+msgstr "<emph>vermell</emph>: qualsevol expressió entera que representa el component vermell (0-255) del color compost."
#. H7yGv
#: 03010305.xhp
@@ -9457,7 +9447,7 @@ msgctxt ""
"par_id3146974\n"
"help.text"
msgid "<emph>green</emph>: Any integer expression that represents the green component (0-255) of the composite color."
-msgstr ""
+msgstr "<emph>verd</emph>: qualsevol expressió entera que representa el component verd (0-255) del color compost."
#. t8P2M
#: 03010305.xhp
@@ -9466,7 +9456,7 @@ msgctxt ""
"par_id3151113\n"
"help.text"
msgid "<emph>blue</emph>: Any integer expression that represents the blue component (0-255) of the composite color."
-msgstr ""
+msgstr "<emph>blau</emph>: qualsevol expressió entera que representa el component blau (0-255) del color compost."
#. c4KCL
#: 03010305.xhp
@@ -9475,7 +9465,7 @@ msgctxt ""
"par_id101639922410794\n"
"help.text"
msgid "The resulting <literal>Long</literal> value is calculated with the following formula:<br/><literal>Result = red×65536 + green×256 + blue</literal>."
-msgstr ""
+msgstr "El valor <literal>Long</literal> resultant es calcula amb la fórmula següent:<br/><literal>Resultat = vermell×65536 + verd×256 + blau</literal>."
#. RktBy
#: 03010305.xhp
@@ -9484,17 +9474,16 @@ msgctxt ""
"par_id671639922129017\n"
"help.text"
msgid "Under VBA compatibility mode (<link href=\"text/sbasic/shared/03103350.xhp\"><literal>Option VBASupport 1</literal></link>), the <literal>Long</literal> value is calculated as<br/><literal>Result = red + green×256 + blue×65536</literal><br/>See <link href=\"text/sbasic/shared/03010306.xhp\">RGB Function [VBA]</link>"
-msgstr ""
+msgstr "En mode compatibilitat VBA (<link href=\"text/sbasic/shared/03103350.xhp\"><literal>Option VBASupport 1</literal></link>), el valor <literal>Long</literal> es calcula com segueix<br/><literal>Resultat = vermell + verd×256 + blau×65536</literal><br/>Vegeu <link href=\"text/sbasic/shared/03010306.xhp\">Funció RGB [VBA]</link>"
#. Fo6ZS
#: 03010305.xhp
-#, fuzzy
msgctxt ""
"03010305.xhp\n"
"par_id211587653651037\n"
"help.text"
msgid "The <link href=\"text/shared/optionen/01010501.xhp\">color picker dialog</link> helps computing red, green and blue components of a composite color. <link href=\"text/shared/guide/text_color.xhp\">Changing the color of text</link> and selecting <emph>Custom color</emph> displays the color picker dialog."
-msgstr "El diàleg del selector de color <link href=\"text/shared/optionen/01010501.xhp\"></link> ajuda a calcular els components vermell verd i blau d'un color compost. <link href=\"text/shared/guide/textcolor.xhp\">canviant el color del text</link> i seleccionant <emph>Color personalitzat</emph> mostra el diàleg del selector de color."
+msgstr "El <link href=\"text/shared/optionen/01010501.xhp\"></link>diàleg del selector de color </link> ajuda a calcular els components vermell, verd i blau d'un color compost. <link href=\"text/shared/guide/text_color.xhp\">Canviar el color del text</link> i seleccionar <emph>Color personalitzat</emph> mostra el diàleg del selector de color."
#. GWhFy
#: 03010305.xhp
@@ -9548,7 +9537,7 @@ msgctxt ""
"bm_id851576768070903\n"
"help.text"
msgid "<bookmark_value>RGB function [VBA]</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Funció RGB [VBA]</bookmark_value>"
#. mBeiz
#: 03010306.xhp
@@ -9575,7 +9564,7 @@ msgctxt ""
"par_id671639922129017\n"
"help.text"
msgid "Because of the VBA compatibility mode (<link href=\"text/sbasic/shared/03103350.xhp\"><literal>Option VBASupport 1</literal></link>), the <literal>Long</literal> value is calculated as<br/><literal>Result = red + green×256 + blue×65536</literal>."
-msgstr ""
+msgstr "A causa del mode de compatibilitat VBA (<link href=\"text/sbasic/shared/03103350.xhp\"><literal>Option VBASupport 1</literal></link>), el valor <literal>Long</literal> es calcula com segueix <br/><literal>Resultat = vermell + verd×256 + blau×65536</literal>."
#. cDKcg
#: 03010306.xhp
diff --git a/source/ca/helpcontent2/source/text/sbasic/shared/03.po b/source/ca/helpcontent2/source/text/sbasic/shared/03.po
index fba8036bec4..346b50fd0c3 100644
--- a/source/ca/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/ca/helpcontent2/source/text/sbasic/shared/03.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: 2024-01-22 14:04+0100\n"
-"PO-Revision-Date: 2024-02-21 09:41+0000\n"
-"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"PO-Revision-Date: 2024-03-14 14:37+0000\n"
+"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-24-2/textsbasicshared03/ca/>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@@ -221,7 +221,7 @@ msgctxt ""
"par_id871637256506167\n"
"help.text"
msgid "The <literal>Dispose</literal> method is available in all services and should be called to free up resources after usage:"
-msgstr "El mètode <literal>Dispose</literal> està disponible a tots els serveis i s'ha de cridar per alliberar recursos després d'utilitzar:"
+msgstr "El mètode <literal>Dispose</literal> està disponible en tots els serveis i s'hauria d'invocar per a alliberar de recursos un cop utilitzat:"
#. Depaw
#: lib_ScriptForge.xhp
@@ -536,7 +536,7 @@ msgctxt ""
"hd_id31529004750471\n"
"help.text"
msgid "<variable id=\"importwiz_lib\"><link href=\"text/sbasic/shared/03/lib_importwiz.xhp\">The <item type=\"literal\">ImportWizard</item> Library</link></variable>"
-msgstr "<variable id=\"importwiz_lib\"><link href=\"text/sbasic/shared/03/lib_importwiz.xhp\">La llibreria <item type=\"literal\">ImportWizard</item></link></variable>"
+msgstr "<variable id=\"importwiz_lib\"><link href=\"text/sbasic/shared/03/lib_importwiz.xhp\">La biblioteca <item type=\"literal\">ImportWizard</item></link></variable>"
#. pbesX
#: lib_importwiz.xhp
@@ -2642,7 +2642,7 @@ msgctxt ""
"par_id351619100723505\n"
"help.text"
msgid "If form documents are organized in folders, it is necessary to include the folder name to specify the form document to be opened, as illustrated in the following examples:"
-msgstr ""
+msgstr "Si els documents de formulari estan organitzats en carpetes, cal incloure el nom de la carpeta per a especificar el document de formulari que s'obrirà, com s'il·lustra en els exemples següents:"
#. TQCNn
#: sf_base.xhp
@@ -10229,7 +10229,7 @@ msgctxt ""
"hd_id731582733781114\n"
"help.text"
msgid "<variable id=\"DatasetService\"><link href=\"text/sbasic/shared/03/sf_dataset.xhp\"><literal>SFDatabases</literal>.<literal>Dataset</literal> service</link></variable>"
-msgstr ""
+msgstr "<variable id=\"DatasetService\"><link href=\"text/sbasic/shared/03/sf_dataset.xhp\">Servei <literal>SFDatabases</literal>.<literal>Dataset</literal></link></variable>"
#. CmkuE
#: sf_dataset.xhp
@@ -10715,7 +10715,7 @@ msgctxt ""
"par_id651606319520519\n"
"help.text"
msgid "List of Methods in the Dataset Service"
-msgstr ""
+msgstr "Llista de mètodes del servei Dataset"
#. HPN2T
#: sf_dataset.xhp
@@ -24404,7 +24404,7 @@ msgctxt ""
"par_id451619034669263\n"
"help.text"
msgid "List of Methods in the FormDocument Service"
-msgstr ""
+msgstr "Llista de mètodes del servei FormDocument"
#. jY8vp
#: sf_formdocument.xhp
@@ -34196,7 +34196,7 @@ msgctxt ""
"par_id651606319520519\n"
"help.text"
msgid "List of Methods in the Toolbar Service"
-msgstr ""
+msgstr "Llista de mètodes del servei Toolbar"
#. FED3g
#: sf_toolbar.xhp
@@ -34736,7 +34736,7 @@ msgctxt ""
"par_id651606319520519\n"
"help.text"
msgid "List of Methods in the ToolbarButton Service"
-msgstr ""
+msgstr "Llista de mètodes del servei ToolbarButton"
#. oGWqY
#: sf_toolbarbutton.xhp
diff --git a/source/ca/helpcontent2/source/text/scalc/01.po b/source/ca/helpcontent2/source/text/scalc/01.po
index 9f5e521cf68..a687c543797 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: 2023-12-21 13:21+0100\n"
-"PO-Revision-Date: 2024-03-07 07:49+0000\n"
+"PO-Revision-Date: 2024-03-15 19:11+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-24-2/textscalc01/ca/>\n"
"Language: ca\n"
@@ -54420,7 +54420,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Select Visible Columns"
-msgstr ""
+msgstr "Selecciona les columnes visibles"
#. FxkBH
#: SelectVisibleColumns.xhp
@@ -54429,7 +54429,7 @@ msgctxt ""
"bm_id401697550910277\n"
"help.text"
msgid "<bookmark_value>select;visible columns</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>selecció;columnes visibles</bookmark_value>"
#. tvv9r
#: SelectVisibleColumns.xhp
@@ -54438,7 +54438,7 @@ msgctxt ""
"hd_id91697506550043\n"
"help.text"
msgid "<variable id=\"h1\"><link href=\"text/scalc/01/SelectVisibleColumns.xhp\">Select Visible Columns</link></variable>"
-msgstr ""
+msgstr "<variable id=\"h1\"><link href=\"text/scalc/01/SelectVisibleColumns.xhp\">Selecciona columnes visibles</link></variable>"
#. ABCAg
#: SelectVisibleColumns.xhp
@@ -55768,7 +55768,7 @@ msgctxt ""
"hd_id731610569777368\n"
"help.text"
msgid "Position of vertical axis:"
-msgstr ""
+msgstr "Posició de l'eix vertical:"
#. jrmur
#: databar_more_options.xhp
@@ -55813,7 +55813,7 @@ msgctxt ""
"hd_id591610569865757\n"
"help.text"
msgid "Color of vertical axis:"
-msgstr ""
+msgstr "Color de l'eix vertical:"
#. 2cZEy
#: databar_more_options.xhp
diff --git a/source/ca/helpcontent2/source/text/scalc/04.po b/source/ca/helpcontent2/source/text/scalc/04.po
index 8c562c03ce7..7850ce555e2 100644
--- a/source/ca/helpcontent2/source/text/scalc/04.po
+++ b/source/ca/helpcontent2/source/text/scalc/04.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2023-03-02 11:50+0100\n"
-"PO-Revision-Date: 2024-03-03 06:37+0000\n"
+"PO-Revision-Date: 2024-03-11 07:38+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-24-2/textscalc04/ca/>\n"
"Language: ca\n"
@@ -1294,7 +1294,7 @@ msgctxt ""
"par_id3153155\n"
"help.text"
msgid "Increases the height of current row (only in <link href=\"text/shared/optionen/01060800.xhp\">OpenOffice.org legacy compatibility mode</link>)."
-msgstr "Augmenta l'altura de la fila activa (només en el <link href=\"text/shared/optionen/01060800.xhp\">mode de compatibilitat amb l'antic OpenOffice.org</link>)."
+msgstr "Augmenta l'alçada de la fila activa (només en el <link href=\"text/shared/optionen/01060800.xhp\">mode de compatibilitat llegada amb l'OpenOffice.org</link>)."
#. v7V4h
#: 01020000.xhp
@@ -1312,7 +1312,7 @@ msgctxt ""
"par_id3155849\n"
"help.text"
msgid "Decreases the height of current row (only in <link href=\"text/shared/optionen/01060800.xhp\">OpenOffice.org legacy compatibility mode</link>)."
-msgstr "Disminueix l'altura de la fila activa (només en <link href=\"text/shared/optionen/01060800.xhp\">mode de compatibilitat amb l'antic OpenOffice.org</link>)."
+msgstr "Disminueix l'alçada de la fila activa (només en <link href=\"text/shared/optionen/01060800.xhp\">mode de compatibilitat llegada amb l'OpenOffice.org</link>)."
#. CMCuV
#: 01020000.xhp
diff --git a/source/ca/helpcontent2/source/text/scalc/guide.po b/source/ca/helpcontent2/source/text/scalc/guide.po
index b3d7147f71f..dc3383bc06f 100644
--- a/source/ca/helpcontent2/source/text/scalc/guide.po
+++ b/source/ca/helpcontent2/source/text/scalc/guide.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: 2023-12-15 12:24+0100\n"
-"PO-Revision-Date: 2024-02-16 18:37+0000\n"
-"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"PO-Revision-Date: 2024-03-15 19:11+0000\n"
+"Last-Translator: AssumptaAn <assumptaanglada@gmail.com>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-24-2/textscalcguide/ca/>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@@ -9799,13 +9799,12 @@ msgstr "<variable id=\"pivotchartfilter\"><link href=\"text/scalc/guide/pivotcha
#. AkGAs
#: pivotchart_filter.xhp
-#, fuzzy
msgctxt ""
"pivotchart_filter.xhp\n"
"par_id781525166702239\n"
"help.text"
msgid "Filters are used to remove unwanted data from the pivot chart. You can use filters in the pivot chart or in the corresponding <link href=\"text/scalc/guide/datapilot_filtertable.xhp\">pivot table</link>, since the resulting chart is exactly the same."
-msgstr "Els filtres s'utilitzen per eliminar dades no desitjades del diagrama dinàmic. Podeu utilitzar filtres al diagrama dinàmic o a la taula dinàmica <link href=\"text/scalc/guide/datapilotfiltertable.xhp\">corresponent</link> ja que el diagrama resultant és exactament el mateix."
+msgstr "Els filtres s'utilitzen per eliminar dades no desitjades del diagrama dinàmic. Podeu utilitzar filtres al diagrama dinàmic o a la <link href=\"text/scalc/guide/datapilotfiltertable.xhp\">taula dinàmica</link> corresponent, ja que el diagrama resultant és exactament igual."
#. n2tCy
#: pivotchart_filter.xhp
@@ -11051,13 +11050,12 @@ msgstr "<variable id=\"rename_table\"><link href=\"text/scalc/guide/rename_table
#. zEnG4
#: rename_table.xhp
-#, fuzzy
msgctxt ""
"rename_table.xhp\n"
"par_id701519308848244\n"
"help.text"
msgid "Setting sheet names is an important feature to produce readable and understandable spreadsheets documents."
-msgstr "Establir noms de fulls és una característica important per produir documents de fulls de càlcul llegibles i comprensibles."
+msgstr "Establir noms de fulls és una característica important per a produir documents de fulls de càlcul llegibles i comprensibles."
#. DE2ji
#: rename_table.xhp
@@ -11070,23 +11068,21 @@ msgstr "El nom de cada full és independent del nom del document. Definireu el n
#. rMuCd
#: rename_table.xhp
-#, fuzzy
msgctxt ""
"rename_table.xhp\n"
"par_id471607437423400\n"
"help.text"
msgid "To rename a sheet in your document:"
-msgstr "Per canviar el nom d'un full en el document"
+msgstr "Per a canviar el nom d'un full al document:"
#. 99JMV
#: rename_table.xhp
-#, fuzzy
msgctxt ""
"rename_table.xhp\n"
"par_id3146976\n"
"help.text"
msgid "Double-click the sheet tab or open its context menu and choose <menuitem>Rename Sheet</menuitem>. A dialog box appears where you can enter a new name."
-msgstr "Feu doble clic a la pestanya del full o obriu el menú contextual i trieu <menuitem>Canvia el nom del full</menuitem>. Apareixerà un diàleg on podreu introduir un nom nou."
+msgstr "Feu doble clic a la pestanya del full o obriu el menú contextual i trieu <menuitem>Canvia el nom del full</menuitem>. Apareixerà un quadre de diàleg on podreu introduir un nom nou."
#. GtGtQ
#: rename_table.xhp
@@ -11117,7 +11113,6 @@ msgstr "El document pot contenir fins a 10.000 fulls, cadascun dels quals ha de
#. VDtVj
#: rename_table.xhp
-#, fuzzy
msgctxt ""
"rename_table.xhp\n"
"hd_id541607437294635\n"
@@ -11136,27 +11131,24 @@ msgstr "Els noms dels fulls poden contenir gairebé qualsevol caràcter. Hi ha a
#. GW256
#: rename_table.xhp
-#, fuzzy
msgctxt ""
"rename_table.xhp\n"
"par_id090920081050281\n"
"help.text"
msgid "colon <literal>:</literal>"
-msgstr "còlon <literal></literal>"
+msgstr "dos punts <literal>:</literal>"
#. a2JXE
#: rename_table.xhp
-#, fuzzy
msgctxt ""
"rename_table.xhp\n"
"par_id0909200810502897\n"
"help.text"
msgid "back slash <literal>\\</literal>"
-msgstr "barra <literal>\\</literal>"
+msgstr "barra inversa <literal>\\</literal>"
#. mkHAC
#: rename_table.xhp
-#, fuzzy
msgctxt ""
"rename_table.xhp\n"
"par_id090920081050299\n"
@@ -11166,17 +11158,15 @@ msgstr "barra inclinada <literal>/</literal>"
#. V9Z6i
#: rename_table.xhp
-#, fuzzy
msgctxt ""
"rename_table.xhp\n"
"par_id0909200810502913\n"
"help.text"
msgid "question mark <literal>?</literal>"
-msgstr "<unk>GA</literal>"
+msgstr "signe d'interrogació <literal>?</literal>"
#. 42B5r
#: rename_table.xhp
-#, fuzzy
msgctxt ""
"rename_table.xhp\n"
"par_id090920081050298\n"
@@ -11186,33 +11176,30 @@ msgstr "asterisc <literal>*</literal>"
#. sAMTR
#: rename_table.xhp
-#, fuzzy
msgctxt ""
"rename_table.xhp\n"
"par_id0909200810502969\n"
"help.text"
msgid "left square bracket <literal>[</literal>"
-msgstr "claudàtor quadrat esquerre <literal>[</literal>"
+msgstr "claudàtor d'obertura <literal>[</literal>"
#. 32rAi
#: rename_table.xhp
-#, fuzzy
msgctxt ""
"rename_table.xhp\n"
"par_id0909200810502910\n"
"help.text"
msgid "right square bracket <literal>]</literal>"
-msgstr "claudàtor quadrat dret <literal>]</literal>"
+msgstr "claudàtor de tancament <literal>]</literal>"
#. ESD5B
#: rename_table.xhp
-#, fuzzy
msgctxt ""
"rename_table.xhp\n"
"par_id0909200810502971\n"
"help.text"
msgid "single quote <literal>'</literal> as the first or last character of the name"
-msgstr "cita <literal>'</literal> com el primer o últim caràcter del nom"
+msgstr "cometa simple <literal>'</literal> com a primer o últim caràcter del nom"
#. 36nvo
#: rename_table.xhp
@@ -11225,13 +11212,12 @@ msgstr "La cita única és Unicode <literal>U+0027</literal> també conegut com
#. DMm29
#: rename_table.xhp
-#, fuzzy
msgctxt ""
"rename_table.xhp\n"
"hd_id251607438968588\n"
"help.text"
msgid "Using a Default Prefix for Sheet Names"
-msgstr "Ús d'un prefix per defecte per als noms dels fulls"
+msgstr "Ús d'un prefix per defecte per als noms de fulls"
#. MEc8r
#: rename_table.xhp
@@ -11250,7 +11236,7 @@ msgctxt ""
"hd_id821607437571713\n"
"help.text"
msgid "Referencing Sheet Names with Special Characters"
-msgstr "Referència de noms de full amb caràcters especials"
+msgstr "Referència als noms de fulls amb caràcters especials"
#. BAZ4z
#: rename_table.xhp
@@ -12946,13 +12932,12 @@ msgstr "Definició d'una funció amb el %PRODUCTNAME Basic"
#. PfDpb
#: userdefined_function.xhp
-#, fuzzy
msgctxt ""
"userdefined_function.xhp\n"
"par_id3148456\n"
"help.text"
msgid "Choose <menuitem>Tools - Macros - Edit Macros</menuitem>."
-msgstr "Trieu Eines <menuitem>▸ Macros ▸ Edita les macros</menuitem>."
+msgstr "Trieu <menuitem>Eines ▸ Macros ▸ Edita les macros</menuitem>."
#. N4uB4
#: userdefined_function.xhp
@@ -12966,23 +12951,21 @@ msgstr "Ara veureu l'EID del Basic."
#. jXhZH
#: userdefined_function.xhp
-#, fuzzy
msgctxt ""
"userdefined_function.xhp\n"
"par_id651603905832952\n"
"help.text"
msgid "In the Object Catalog window, double-click on the module where you want to store your macro."
-msgstr "A la finestra Catàleg d'objectes feu doble clic al mòdul on voleu emmagatzemar la macro."
+msgstr "A la finestra Catàleg d'objectes, feu doble clic al mòdul on voleu emmagatzemar la macro."
#. G6mwG
#: userdefined_function.xhp
-#, fuzzy
msgctxt ""
"userdefined_function.xhp\n"
"par_id3150327\n"
"help.text"
msgid "Enter the function code. In this example, we define a <literal>VOL(a; b; c)</literal> function that calculates the volume of a rectangular solid with side lengths <literal>a</literal>, <literal>b</literal> and <literal>c</literal>:"
-msgstr "Introduïu el codi de funció. En aquest exemple es defineix una funció <literal>VOL(a; b; c)</literal> que calcula el volum d'un sòlid rectangular amb longituds laterals <literal>a</literal> <literal>b</literal> i <literal>c</literal>"
+msgstr "Introduïu el codi de funció. En aquest exemple, es defineix una funció <literal>VOL(a; b; c)</literal> que calcula el volum d'un sòlid rectangular amb longituds laterals <literal>a</literal> <literal>b</literal> i <literal>c</literal>"
#. eXWo3
#: userdefined_function.xhp
@@ -12995,13 +12978,12 @@ msgstr "Tanqueu la finestra de l'IDE del Basic."
#. nWiEx
#: userdefined_function.xhp
-#, fuzzy
msgctxt ""
"userdefined_function.xhp\n"
"par_id3150043\n"
"help.text"
msgid "Your function is automatically saved in the selected module and is now available. If you apply the function in a Calc document that is to be used on another computer, you can copy the function to the Calc document as described in the next section."
-msgstr "La vostra funció es desa automàticament en el mòdul seleccionat i ara està disponible. Si apliqueu la funció en un document del Calc que s'utilitzarà en un altre ordinador podreu copiar la funció al document del Calc tal com es descriu a la secció següent."
+msgstr "La vostra funció es desa automàticament en el mòdul seleccionat i ara està disponible. Si apliqueu la funció en un document del Calc que s'hagi d'utilitzar en un altre ordinador, podreu copiar la funció al document del Calc tal com es descriu a la secció següent."
#. 3bcAE
#: userdefined_function.xhp
@@ -13032,13 +13014,12 @@ msgstr "Si voleu copiar la funció definida per l'usuari a un document del Calc:
#. FiJEi
#: userdefined_function.xhp
-#, fuzzy
msgctxt ""
"userdefined_function.xhp\n"
"par_id3150304\n"
"help.text"
msgid "Choose <menuitem>Tools - Macros - Organize Macros - Basic</menuitem>."
-msgstr "Trieu Eines <menuitem>▸ Macros ▸ Organitza les macros ▸ Basic</menuitem>."
+msgstr "Trieu <menuitem>Eines ▸ Macros ▸ Organitza les macros ▸ Basic</menuitem>."
#. HZciB
#: userdefined_function.xhp
@@ -13069,13 +13050,12 @@ msgstr "Tanqueu l'IDE del Basic."
#. rYyws
#: userdefined_function.xhp
-#, fuzzy
msgctxt ""
"userdefined_function.xhp\n"
"par_id3150517\n"
"help.text"
msgid "Choose <menuitem>Tools - Macros - Organize Macros - Basic</menuitem> ."
-msgstr "Trieu Eines <menuitem>▸ Macros ▸ Organitza les macros ▸ Basic</menuitem> ."
+msgstr "Trieu <menuitem>Eines ▸ Macros ▸ Organitza les macros ▸ Basic</menuitem> ."
#. oTBX8
#: userdefined_function.xhp
@@ -13106,23 +13086,21 @@ msgstr "Aplicació d'una funció definida per l'usuari al $[officename] Calc"
#. cKHUA
#: userdefined_function.xhp
-#, fuzzy
msgctxt ""
"userdefined_function.xhp\n"
"par_id3148869\n"
"help.text"
msgid "Once you have defined the function <literal>VOL(a; b; c)</literal> in the Basic-IDE, you can apply it the same way as the built-in functions of $[officename] Calc."
-msgstr "Una vegada definida la funció <literal>VOL(a; b; c)</literal> a l'IDE del Basic podeu aplicar-la de la mateixa manera que les funcions integrades del $[officename] Calc."
+msgstr "Un cop definida la funció <literal>VOL(a; b; c)</literal> a l'IDE del Basic, podeu aplicar-la de la mateixa manera que les funcions integrades del $[officename] Calc."
#. WtG8F
#: userdefined_function.xhp
-#, fuzzy
msgctxt ""
"userdefined_function.xhp\n"
"par_id3148606\n"
"help.text"
msgid "Open a Calc document and enter numbers for the function parameters <literal>a</literal>, <literal>b</literal> and <literal>c</literal> in cells A1, B1, and C1."
-msgstr "Obriu un document del Calc i introduïu nombres per als paràmetres de funció <literal>a</literal> <literal>b</literal> i <literal>c</literal> a les cel·les A1 B1 i C1."
+msgstr "Obriu un document del Calc i introduïu números per als paràmetres de la funció <literal>a</literal> <literal>b</literal> i <literal>c</literal> a les cel·les A1 B1 i C1."
#. TTo2C
#: userdefined_function.xhp
diff --git a/source/ca/helpcontent2/source/text/sdraw/guide.po b/source/ca/helpcontent2/source/text/sdraw/guide.po
index fcf6c1afcbc..a124225f277 100644
--- a/source/ca/helpcontent2/source/text/sdraw/guide.po
+++ b/source/ca/helpcontent2/source/text/sdraw/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2023-04-19 12:24+0200\n"
-"PO-Revision-Date: 2024-02-21 09:40+0000\n"
+"PO-Revision-Date: 2024-03-10 03:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-24-2/textsdrawguide/ca/>\n"
"Language: ca\n"
@@ -240,7 +240,7 @@ msgctxt ""
"par_id3151390\n"
"help.text"
msgid "If you select three or more objects in Draw, you can also use the <link href=\"text/shared/01/05360000.xhp\"><emph>Distribute selection</emph></link> command to distribute the vertical and horizontal spacing evenly between the objects."
-msgstr "Si seleccioneu tres o més objectes a Draw, també podeu utilitzar la comanda <link href=\"text/shared/01/05360000.xhp\"><emph>Distribuir la selecció</emph></link> per distribuir uniformement l'espaiat vertical i horitzontal entre els objectes."
+msgstr "Si seleccioneu tres o més objectes al Draw, també podeu utilitzar l'ordre <link href=\"text/shared/01/05360000.xhp\"><emph>Distribueix la selecció</emph></link> per a distribuir uniformement l'espaiat vertical i horitzontal entre els objectes."
#. R9tTg
#: align_arrange.xhp
diff --git a/source/ca/helpcontent2/source/text/shared/00.po b/source/ca/helpcontent2/source/text/shared/00.po
index c318a5f15fc..c9735b85d89 100644
--- a/source/ca/helpcontent2/source/text/shared/00.po
+++ b/source/ca/helpcontent2/source/text/shared/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2023-12-21 13:21+0100\n"
-"PO-Revision-Date: 2024-03-07 07:49+0000\n"
+"PO-Revision-Date: 2024-03-14 14:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-24-2/textshared00/ca/>\n"
"Language: ca\n"
@@ -1639,7 +1639,7 @@ msgctxt ""
"par_id711684934483926\n"
"help.text"
msgid "From the tabbed interface:"
-msgstr ""
+msgstr "Des de la interfície en pestanyes:"
#. sXy2C
#: 00000004.xhp
diff --git a/source/ca/helpcontent2/source/text/shared/01.po b/source/ca/helpcontent2/source/text/shared/01.po
index 82e5131e3df..f4026fd8e49 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: 2023-12-21 13:21+0100\n"
-"PO-Revision-Date: 2024-03-07 07:49+0000\n"
+"PO-Revision-Date: 2024-03-14 14:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-24-2/textshared01/ca/>\n"
"Language: ca\n"
@@ -294,7 +294,7 @@ msgctxt ""
"par_idN107BF\n"
"help.text"
msgid "<image id=\"Graphic2\" src=\"res/lx03251.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_\">Icon XML Form Document</alt></image>"
-msgstr ""
+msgstr "<image id=\"Graphic2\" src=\"res/lx03251.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_\">Icona Document de formulari XML</alt></image>"
#. 77KZQ
#: 01010000.xhp
@@ -8129,7 +8129,7 @@ msgctxt ""
"hd_id3144439\n"
"help.text"
msgid "<switchinline select=\"appl\"> <caseinline select=\"DRAW\"/> <caseinline select=\"IMPRESS\"/> <defaultinline>Regular expressions</defaultinline> </switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\"/><caseinline select=\"IMPRESS\"/><defaultinline>Expressions regulars</defaultinline></switchinline>"
#. YTjDH
#: 02100000.xhp
@@ -32501,7 +32501,7 @@ msgctxt ""
"par_id3153957\n"
"help.text"
msgid "<image id=\"img_id3151019\" src=\"svx/res/fw020.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151019\">Icon Distance</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151019\" src=\"svx/res/fw020.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151019\">Icona Distància</alt></image>"
#. XDeLC
#: 05280000.xhp
diff --git a/source/ca/helpcontent2/source/text/shared/02.po b/source/ca/helpcontent2/source/text/shared/02.po
index a3db76cf2d2..234402ea562 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: 2023-12-04 15:06+0100\n"
-"PO-Revision-Date: 2024-03-07 07:49+0000\n"
+"PO-Revision-Date: 2024-03-15 19:11+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-24-2/textshared02/ca/>\n"
"Language: ca\n"
@@ -9077,7 +9077,7 @@ msgctxt ""
"par_id3153921\n"
"help.text"
msgid "SELECT Item FROM Orders WHERE Customer_Number =: x (if you want the subform from the orders table to show only the data contained in the \"Item\" field)"
-msgstr "SELECT Item FROM Orders WHERE Customer_Number =: x (si voleu que el subformulari de la taula de comandes mostri només les dades que hi ha al camp \"Element\")"
+msgstr "SELECT Item FROM Orders WHERE Customer_Number =: x (si voleu que el subformulari de la taula de comandes mostri només les dades que hi ha al camp «Element»)"
#. PGoEB
#: 01170203.xhp
@@ -19439,7 +19439,7 @@ msgctxt ""
"par_id581692822229175\n"
"help.text"
msgid "Choose <menuitem>Format - Image - Color</menuitem>."
-msgstr ""
+msgstr "Trieu <menuitem>Format ▸ Imatge ▸ Color</menuitem>."
#. c6JqG
#: 24030000.xhp
@@ -19448,7 +19448,7 @@ msgctxt ""
"par_id3149511\n"
"help.text"
msgid "<image id=\"img_id3146130\" src=\"cmd/lc_grafred.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146130\">Icon Red</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3146130\" src=\"cmd/lc_grafred.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146130\">Icona Verrmell</alt></image>"
#. ALeBa
#: 24030000.xhp
@@ -19493,7 +19493,7 @@ msgctxt ""
"par_id581692822229175\n"
"help.text"
msgid "Choose <menuitem>Format - Image - Color</menuitem>."
-msgstr ""
+msgstr "Trieu <menuitem>Format ▸ Imatge ▸ Color</menuitem>."
#. p3oEN
#: 24040000.xhp
@@ -19502,7 +19502,7 @@ msgctxt ""
"par_id3149511\n"
"help.text"
msgid "<image id=\"img_id3146130\" src=\"cmd/lc_grafgreen.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146130\">Icon Green</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3146130\" src=\"cmd/lc_grafgreen.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146130\">Icona Verd</alt></image>"
#. EXFC2
#: 24040000.xhp
@@ -19511,7 +19511,7 @@ msgctxt ""
"par_id3147571\n"
"help.text"
msgid "Green"
-msgstr ""
+msgstr "Verd"
#. XGdbm
#: 24050000.xhp
@@ -19547,7 +19547,7 @@ msgctxt ""
"par_id581692822229175\n"
"help.text"
msgid "Choose <menuitem>Format - Image - Color</menuitem>."
-msgstr ""
+msgstr "Trieu <menuitem>Format ▸ Imatge ▸ Color</menuitem>."
#. uFHNL
#: 24050000.xhp
@@ -19556,7 +19556,7 @@ msgctxt ""
"par_id3149511\n"
"help.text"
msgid "<image id=\"img_id3146130\" src=\"cmd/lc_grafblue.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146130\">Icon Blue</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3146130\" src=\"cmd/lc_grafblue.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146130\">Icona Blau</alt></image>"
#. JphtH
#: 24050000.xhp
@@ -19565,7 +19565,7 @@ msgctxt ""
"par_id3147571\n"
"help.text"
msgid "Blue"
-msgstr ""
+msgstr "Blau"
#. WXWjP
#: 24060000.xhp
@@ -19601,7 +19601,7 @@ msgctxt ""
"par_id581692822229175\n"
"help.text"
msgid "Choose <menuitem>Format - Image - Color</menuitem>."
-msgstr ""
+msgstr "Trieu <menuitem>Format ▸ Imatge ▸ Color</menuitem>."
#. giNuz
#: 24060000.xhp
@@ -19610,7 +19610,7 @@ msgctxt ""
"par_id3149511\n"
"help.text"
msgid "<image id=\"img_id3146130\" src=\"cmd/lc_grafluminance.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146130\">Icon Brightness</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3146130\" src=\"cmd/lc_grafluminance.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146130\">Icona Brillantor</alt></image>"
#. SGDgg
#: 24060000.xhp
@@ -19619,7 +19619,7 @@ msgctxt ""
"par_id3147571\n"
"help.text"
msgid "Brightness"
-msgstr ""
+msgstr "Brillantor"
#. D6AnR
#: 24070000.xhp
@@ -19655,7 +19655,7 @@ msgctxt ""
"par_id581692822229175\n"
"help.text"
msgid "Choose <menuitem>Format - Image - Color</menuitem>."
-msgstr ""
+msgstr "Trieu <menuitem>Format ▸ Imatge ▸ Color</menuitem>."
#. jCGCt
#: 24070000.xhp
@@ -19664,7 +19664,7 @@ msgctxt ""
"par_id3149511\n"
"help.text"
msgid "<image id=\"img_id3146130\" src=\"cmd/lc_grafcontrast.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146130\">Icon Contrast</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3146130\" src=\"cmd/lc_grafcontrast.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146130\">Icona Contrast</alt></image>"
#. jtCLn
#: 24070000.xhp
@@ -19673,7 +19673,7 @@ msgctxt ""
"par_id3147571\n"
"help.text"
msgid "Contrast"
-msgstr ""
+msgstr "Contrast"
#. b3opY
#: 24080000.xhp
@@ -19709,7 +19709,7 @@ msgctxt ""
"par_id581692822229175\n"
"help.text"
msgid "Choose <menuitem>Format - Image - Color</menuitem>."
-msgstr ""
+msgstr "Trieu <menuitem>Format ▸ Imatge ▸ Color</menuitem>."
#. RMTrD
#: 24080000.xhp
@@ -20015,7 +20015,7 @@ msgctxt ""
"par_id5855281\n"
"help.text"
msgid "To open the Color toolbar, click the Color icon on the Image toolbar."
-msgstr "Per obrir la barra d'eines Color, feu clic a la icona Color de la barra d'eines Imatge."
+msgstr "Per a obrir la barra d'eines Color, feu clic a la icona Color de la barra d'eines Imatge."
#. xNbd7
#: colortoolbar.xhp
@@ -20024,7 +20024,7 @@ msgctxt ""
"par_id341692819918936\n"
"help.text"
msgid "Choose <menuitem>Format - Image - Color</menuitem>."
-msgstr ""
+msgstr "Trieu <menuitem>Format ▸ Imatge ▸ Color</menuitem>."
#. fDnZ8
#: colortoolbar.xhp
@@ -20033,7 +20033,7 @@ msgctxt ""
"par_id771692819965914\n"
"help.text"
msgid "Choose <menuitem>Image - Color</menuitem>."
-msgstr ""
+msgstr "Trieu <menuitem>Imatge ▸ Color</menuitem>."
#. b3D2x
#: colortoolbar.xhp
@@ -20042,7 +20042,7 @@ msgctxt ""
"par_id261643820762014\n"
"help.text"
msgid "<image src=\"cmd/lc_colorsettings.svg\" id=\"img_id901643820760103\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id831643820768266\">Icon Color</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_colorsettings.svg\" id=\"img_id901643820760103\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id831643820768266\">Icona Color</alt></image>"
#. iK8uZ
#: colortoolbar.xhp
@@ -20051,7 +20051,7 @@ msgctxt ""
"par_id13164382076547\n"
"help.text"
msgid "Color"
-msgstr ""
+msgstr "Color"
#. oQ5tj
#: flowcharts.xhp
diff --git a/source/ca/helpcontent2/source/text/shared/05.po b/source/ca/helpcontent2/source/text/shared/05.po
index 150aa4311be..353ff96085c 100644
--- a/source/ca/helpcontent2/source/text/shared/05.po
+++ b/source/ca/helpcontent2/source/text/shared/05.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: 2023-04-19 12:24+0200\n"
-"PO-Revision-Date: 2023-02-17 18:33+0000\n"
+"PO-Revision-Date: 2024-03-14 14:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
-"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textshared05/ca/>\n"
+"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-24-2/textshared05/ca/>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.3.1\n"
"X-Language: ca\n"
"X-POOTLE-MTIME: 1555981451.000000\n"
@@ -1482,7 +1482,7 @@ msgctxt ""
"par_id201534891524377\n"
"help.text"
msgid "The <emph>GLOBAL</emph> heading indicates a match for keywords relevant to more than one %PRODUCTNAME module. For example, cell borders applies to spreadsheets cells as well as text and presentation table cells or frames."
-msgstr ""
+msgstr "La capçalera <emph>GLOBAL</emph> indica una coincidència per a les paraules clau rellevants en més d'un mòdul de %PRODUCTNAME. Per exemple, vores de les cel·les s'aplica tant a cel·les de fulls de càlcul com també a estructures o taules de cel·les de presentacions."
#. cFJDC
#: new_help.xhp
@@ -1752,7 +1752,7 @@ msgctxt ""
"par_idN10939\n"
"help.text"
msgid "Open the Search tool in your web browser, which is usually accessible using the <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline><emph>+F</emph> shortcut."
-msgstr ""
+msgstr "Obriu l'eina de cerca al navegador web, que normalment es pot accedir usant la drecera <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Ordre</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline><emph>+F</emph>."
#. TFYKC
#: new_help.xhp
@@ -1788,7 +1788,7 @@ msgctxt ""
"par_idN10A59\n"
"help.text"
msgid "To find the previous occurrence of the search term on the page, click on the <emph>Up arrow</emph>. To find the next occurrence, click on the <emph>Down arrow</emph>."
-msgstr ""
+msgstr "Per a trobar l'ocurrència anterior del terme de cerca a la pàgina, cliqueu a la <emph>fletxa amunt</emph>. Per a trobar l'ocurrència següent, cliqueu a la <emph>fletxa avall</emph>."
#. mtikB
#: new_help.xhp
diff --git a/source/ca/helpcontent2/source/text/shared/06.po b/source/ca/helpcontent2/source/text/shared/06.po
index 90e1d814411..8b64515a758 100644
--- a/source/ca/helpcontent2/source/text/shared/06.po
+++ b/source/ca/helpcontent2/source/text/shared/06.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: 2022-11-14 14:36+0100\n"
-"PO-Revision-Date: 2024-01-11 18:09+0000\n"
+"PO-Revision-Date: 2024-03-14 14:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
-"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textshared06/ca/>\n"
+"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-24-2/textshared06/ca/>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.1.1\n"
+"X-Generator: Weblate 5.3.1\n"
"X-POOTLE-MTIME: 1543496889.000000\n"
#. EUcrc
@@ -266,7 +266,7 @@ msgctxt ""
"par_id661667325268264\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/sdraw/ui/insertslidesdialog/InsertSlidesDialog.png\" id=\"img_id961667325268266\"><alt id=\"alt_id551667325268268\">Insert from File dialog</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/sdraw/ui/insertslidesdialog/InsertSlidesDialog.png\" id=\"img_id961667325268266\"><alt id=\"alt_id551667325268268\">Diàleg Insereix des d'un fitxer</alt></image>"
#. Ak6ph
#: shared_cui_screenshots.xhp
@@ -527,7 +527,7 @@ msgctxt ""
"par_id491668267296043\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/swriter/ui/indexentry/IndexEntryDialog.png\" id=\"img_id851668267296045\"><alt id=\"alt_id291668267296047\">Index entry dialog</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/swriter/ui/indexentry/IndexEntryDialog.png\" id=\"img_id851668267296045\"><alt id=\"alt_id291668267296047\">Diàleg Entrada d'índex</alt></image>"
#. AW8Pn
#: youtubevideos.xhp
diff --git a/source/ca/helpcontent2/source/text/shared/guide.po b/source/ca/helpcontent2/source/text/shared/guide.po
index 91dfcf52542..56aa24e591f 100644
--- a/source/ca/helpcontent2/source/text/shared/guide.po
+++ b/source/ca/helpcontent2/source/text/shared/guide.po