summaryrefslogtreecommitdiff
path: root/sd/source/ui/docshell/docshel3.cxx
blob: de61d9c25eb006b8b7b2185e2f914c5362f91b24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   Licensed to the Apache Software Foundation (ASF) under one or more
 *   contributor license agreements. See the NOTICE file distributed
 *   with this work for additional information regarding copyright
 *   ownership. The ASF licenses this file to you under the Apache
 *   License, Version 2.0 (the "License"); you may not use this file
 *   except in compliance with the License. You may obtain a copy of
 *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
 */

#include <Window.hxx>
#include <DrawDocShell.hxx>

#include <app.hrc>

#include <svx/svxids.hrc>
#include <svx/dialogs.hrc>

#include <svx/ofaitem.hxx>
#include <svx/svxerr.hxx>
#include <svx/dialmgr.hxx>
#include <svl/srchitem.hxx>
#include <svl/languageoptions.hxx>
#include <svtools/langtab.hxx>
#include <svx/srchdlg.hxx>
#include <sfx2/request.hxx>
#include <sfx2/sfxdlg.hxx>
#include <vcl/abstdlg.hxx>
#include <vcl/window.hxx>
#include <svl/style.hxx>
#include <svx/drawitem.hxx>
#include <editeng/unolingu.hxx>
#include <editeng/langitem.hxx>
#include <editeng/eeitem.hxx>
#include <com/sun/star/i18n/TextConversionOption.hpp>
#include <sfx2/notebookbar/SfxNotebookBar.hxx>

#include <strings.hrc>


#include <sdmod.hxx>
#include <drawdoc.hxx>
#include <sdpage.hxx>
#include <sdattr.hxx>
#include <fusearch.hxx>
#include <ViewShell.hxx>
#include <View.hxx>
#include <slideshow.hxx>
#include <fuhhconv.hxx>
#include <memory>

using namespace ::com::sun::star;
using namespace ::com::sun::star::beans;
using namespace ::com::sun::star::uno;

namespace sd {

static void lcl_setLanguageForObj( SdrObject *pObj, LanguageType nLang, bool bLanguageNone )
{
    const sal_uInt16 aLangWhichId_EE[3] =
    {
        EE_CHAR_LANGUAGE,
        EE_CHAR_LANGUAGE_CJK,
        EE_CHAR_LANGUAGE_CTL
    };

    if( bLanguageNone )
        nLang = LANGUAGE_NONE;

    if( nLang != LANGUAGE_DONTKNOW )
    {
        if( nLang == LANGUAGE_NONE )
        {
            for(sal_uInt16 n : aLangWhichId_EE)
                pObj->SetMergedItem( SvxLanguageItem( nLang, n ) );
        }
        else
        {
            sal_uInt16 nLangWhichId = 0;
            SvtScriptType nScriptType = SvtLanguageOptions::GetScriptTypeOfLanguage( nLang );
            switch (nScriptType)
            {
                case SvtScriptType::LATIN :    nLangWhichId = EE_CHAR_LANGUAGE; break;
                case SvtScriptType::ASIAN :    nLangWhichId = EE_CHAR_LANGUAGE_CJK; break;
                case SvtScriptType::COMPLEX :  nLangWhichId = EE_CHAR_LANGUAGE_CTL; break;
                default:
                    OSL_FAIL("unexpected case" );
                    return;
            }
            pObj->SetMergedItem( SvxLanguageItem( nLang, nLangWhichId ) );
        }
    }
    else    // Reset to default
    {
        for(sal_uInt16 n : aLangWhichId_EE)
            pObj->ClearMergedItem( n );
    }
}

static void lcl_setLanguage( const SdDrawDocument *pDoc, const OUString &rLanguage, bool bLanguageNone = false )
{
    LanguageType nLang = SvtLanguageTable::GetLanguageType( rLanguage );

    // Do it for SdDrawDocument->SetLanguage as well?

    sal_uInt16 nPageCount = pDoc->GetPageCount();   // Pick All Pages
    for( sal_uInt16 nPage = 0; nPage < nPageCount; nPage++ )
    {
        const SdrPage *pPage = pDoc->GetPage( nPage );
        const size_t nObjCount = pPage->GetObjCount();
        for( size_t nObj = 0; nObj < nObjCount; ++nObj )
        {
            SdrObject *pObj = pPage->GetObj( nObj );
            if (pObj->GetObjIdentifier() != OBJ_PAGE)
                lcl_setLanguageForObj( pObj, nLang, bLanguageNone );
        }
    }
}

/**
 * Handles SFX-Requests
 */
void DrawDocShell::Execute( SfxRequest& rReq )
{
    if(mpViewShell && SlideShow::IsRunning( mpViewShell->GetViewShellBase() ))
    {
        // during a running presentation no slot will be executed
        return;
    }

    switch ( rReq.GetSlot() )
    {
        case SID_SEARCH_ITEM:
        {
            const SfxItemSet* pReqArgs = rReq.GetArgs();

            if (pReqArgs)
            {
                const SvxSearchItem & rSearchItem = pReqArgs->Get(SID_SEARCH_ITEM);

                SD_MOD()->SetSearchItem(std::unique_ptr<SvxSearchItem>(static_cast<SvxSearchItem*>(rSearchItem.Clone())));
            }

            rReq.Done();
        }
        break;

        case FID_SEARCH_ON:
        {
            // no action needed
            rReq.Done();
        }
        break;

        case FID_SEARCH_OFF:
        {
            if( dynamic_cast< FuSearch* >(mxDocShellFunction.get()) )
            {
                // End Search&Replace in all docshells
                SfxObjectShell* pFirstShell = SfxObjectShell::GetFirst();
                SfxObjectShell* pShell = pFirstShell;

                while (pShell)
                {
                    if( dynamic_cast< const DrawDocShell *>( pShell ) !=  nullptr)
                    {
                        static_cast<DrawDocShell*>(pShell)->CancelSearching();
                    }

                    pShell = SfxObjectShell::GetNext(*pShell);

                    if (pShell == pFirstShell)
                    {
                        pShell = nullptr;
                    }
                }

                SetDocShellFunction(nullptr);
                Invalidate();
                rReq.Done();
            }
        }
        break;

        case FID_SEARCH_NOW:
        {
            const SfxItemSet* pReqArgs = rReq.GetArgs();

            if ( pReqArgs )
            {
                rtl::Reference< FuSearch > xFuSearch( dynamic_cast< FuSearch* >( GetDocShellFunction().get() ) );

                if( !xFuSearch.is() && mpViewShell )
                {
                    ::sd::View* pView = mpViewShell->GetView();
                    SetDocShellFunction( FuSearch::Create( mpViewShell, mpViewShell->GetActiveWindow(), pView, mpDoc, rReq ) );
                    xFuSearch.set( dynamic_cast< FuSearch* >( GetDocShellFunction().get() ) );
                }

                if( xFuSearch.is() )
                {
                    const SvxSearchItem& rSearchItem = pReqArgs->Get(SID_SEARCH_ITEM);

                    SD_MOD()->SetSearchItem(std::unique_ptr<SvxSearchItem>(static_cast<SvxSearchItem*>( rSearchItem.Clone() )));
                    xFuSearch->SearchAndReplace(&rSearchItem);
                }
            }

            rReq.Done();
        }
        break;

        case SID_CLOSEDOC:
        {
            ExecuteSlot(rReq, SfxObjectShell::GetStaticInterface());
        }
        break;

        case SID_GET_COLORLIST:
        {
            const SvxColorListItem* pColItem = GetItem( SID_COLOR_TABLE );
            XColorListRef pList = pColItem->GetColorList();
            rReq.SetReturnValue( OfaRefItem<XColorList>( SID_GET_COLORLIST, pList ) );
        }
        break;

        case SID_VERSION:
        {
            const SdrSwapGraphicsMode nOldSwapMode = mpDoc->GetSwapGraphicsMode();

            mpDoc->SetSwapGraphicsMode( SdrSwapGraphicsMode::TEMP );
            ExecuteSlot( rReq, SfxObjectShell::GetStaticInterface() );
            mpDoc->SetSwapGraphicsMode( nOldSwapMode );
        }
        break;

        case SID_HANGUL_HANJA_CONVERSION:
        {
            if( mpViewShell )
            {
                rtl::Reference<FuPoor> aFunc( FuHangulHanjaConversion::Create( mpViewShell, mpViewShell->GetActiveWindow(), mpViewShell->GetView(), mpDoc, rReq ) );
                static_cast< FuHangulHanjaConversion* >( aFunc.get() )->StartConversion( LANGUAGE_KOREAN, LANGUAGE_KOREAN, nullptr, i18n::TextConversionOption::CHARACTER_BY_CHARACTER, true );
            }
        }
        break;

        case SID_CHINESE_CONVERSION:
        {
            if( mpViewShell )
            {
                rtl::Reference<FuPoor> aFunc( FuHangulHanjaConversion::Create( mpViewShell, mpViewShell->GetActiveWindow(), mpViewShell->GetView(), mpDoc, rReq ) );
                static_cast< FuHangulHanjaConversion* >( aFunc.get() )->StartChineseConversion();
            }
        }
        break;
        case SID_LANGUAGE_STATUS:
        {
            OUString aNewLangTxt;
            const SfxStringItem* pItem = rReq.GetArg<SfxStringItem>(SID_LANGUAGE_STATUS);
            if (pItem)
                aNewLangTxt = pItem->GetValue();
            if (aNewLangTxt == "*" )
            {
                // open the dialog "Tools/Options/Language Settings - Language"
                SfxAbstractDialogFactory* pFact = SfxAbstractDialogFactory::Create();
                if (pFact && mpViewShell)
                {
                    ScopedVclPtr<VclAbstractDialog> pDlg(pFact->CreateVclDialog( mpViewShell->GetActiveWindow(), SID_LANGUAGE_OPTIONS ));
                    pDlg->Execute();
                }
            }
            else
            {
                if( mpViewShell )
                {
                    // setting the new language...
                    if (!aNewLangTxt.isEmpty())
                    {
                        const OUString aDocumentLangPrefix("Default_");
                        const OUString aStrNone("LANGUAGE_NONE");
                        const OUString aStrResetLangs("RESET_LANGUAGES");
                        SdDrawDocument* pDoc = mpViewShell->GetDoc();
                        sal_Int32 nPos = -1;
                        if (-1 != (nPos = aNewLangTxt.indexOf( aDocumentLangPrefix )))
                        {
                            aNewLangTxt = aNewLangTxt.replaceAt( nPos, aDocumentLangPrefix.getLength(), "" );
                        }
                        else
                        {
                            break;
                        }
                        if (aNewLangTxt == aStrNone)
                            lcl_setLanguage( pDoc, OUString(), true );
                        else if (aNewLangTxt == aStrResetLangs)
                            lcl_setLanguage( pDoc, OUString() );
                        else
                            lcl_setLanguage( pDoc, aNewLangTxt );

                        if ( pDoc->GetOnlineSpell() )
                        {
                            pDoc->StartOnlineSpelling();
                        }
                    }
                }
            }
            Broadcast(SfxHint(SfxHintId::LanguageChanged));
        }
        break;

        case SID_NOTEBOOKBAR:
        {
            const SfxStringItem* pFile = rReq.GetArg<SfxStringItem>( SID_NOTEBOOKBAR );

            if ( mpViewShell )
            {
                SfxBindings& rBindings( mpViewShell->GetFrame()->GetBindings() );

                if ( sfx2::SfxNotebookBar::IsActive() )
                    sfx2::SfxNotebookBar::ExecMethod( rBindings, pFile ? pFile->GetValue() : "" );
                else
                    sfx2::SfxNotebookBar::CloseMethod( rBindings );
            }
        }
        break;

        default:
        break;
    }
}

void DrawDocShell::SetDocShellFunction( const rtl::Reference<FuPoor>& xFunction )
{
    if( mxDocShellFunction.is() )
        mxDocShellFunction->Dispose();

    mxDocShellFunction = xFunction;
}

} // end of namespace sd

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
class='right'>6
-rw-r--r--source/bn/helpcontent2/source/text/sdraw/01.po132
-rw-r--r--source/bn/helpcontent2/source/text/shared/01.po68
-rw-r--r--source/bn/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/bn/helpcontent2/source/text/shared/menu.po24
-rw-r--r--source/bn/helpcontent2/source/text/simpress/01.po30
-rw-r--r--source/bn/helpcontent2/source/text/simpress/02.po20
-rw-r--r--source/bn/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/bn/sc/messages.po14
-rw-r--r--source/bn/scp2/source/ooo.po20
-rw-r--r--source/bn/sd/messages.po6
-rw-r--r--source/bn/sfx2/messages.po178
-rw-r--r--source/bn/sw/messages.po178
-rw-r--r--source/bo/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/bo/helpcontent2/source/text/scalc/guide.po30
-rw-r--r--source/bo/helpcontent2/source/text/sdraw.po6
-rw-r--r--source/bo/helpcontent2/source/text/sdraw/01.po132
-rw-r--r--source/bo/helpcontent2/source/text/shared/01.po68
-rw-r--r--source/bo/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/bo/helpcontent2/source/text/shared/menu.po24
-rw-r--r--source/bo/helpcontent2/source/text/simpress/01.po30
-rw-r--r--source/bo/helpcontent2/source/text/simpress/02.po20
-rw-r--r--source/bo/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/bo/sc/messages.po14
-rw-r--r--source/bo/scp2/source/ooo.po20
-rw-r--r--source/bo/sd/messages.po6
-rw-r--r--source/bo/sfx2/messages.po178
-rw-r--r--source/bo/sw/messages.po178
-rw-r--r--source/br/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/br/sc/messages.po18
-rw-r--r--source/br/scp2/source/ooo.po20
-rw-r--r--source/br/sd/messages.po8
-rw-r--r--source/br/sfx2/messages.po176
-rw-r--r--source/br/sw/messages.po188
-rw-r--r--source/brx/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/brx/sc/messages.po14
-rw-r--r--source/brx/scp2/source/ooo.po20
-rw-r--r--source/brx/sd/messages.po6
-rw-r--r--source/brx/sfx2/messages.po178
-rw-r--r--source/brx/sw/messages.po178
-rw-r--r--source/bs/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/bs/helpcontent2/source/text/scalc/guide.po30
-rw-r--r--source/bs/helpcontent2/source/text/sdraw.po6
-rw-r--r--source/bs/helpcontent2/source/text/sdraw/01.po132
-rw-r--r--source/bs/helpcontent2/source/text/shared/01.po70
-rw-r--r--source/bs/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/bs/helpcontent2/source/text/shared/menu.po24
-rw-r--r--source/bs/helpcontent2/source/text/simpress/01.po28
-rw-r--r--source/bs/helpcontent2/source/text/simpress/02.po16
-rw-r--r--source/bs/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/bs/sc/messages.po18
-rw-r--r--source/bs/scp2/source/ooo.po20
-rw-r--r--source/bs/sd/messages.po8
-rw-r--r--source/bs/sfx2/messages.po178
-rw-r--r--source/bs/sw/messages.po188
-rw-r--r--source/ca-valencia/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/ca-valencia/helpcontent2/source/text/scalc/guide.po30
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sdraw.po8
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sdraw/01.po134
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/01.po78
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/menu.po26
-rw-r--r--source/ca-valencia/helpcontent2/source/text/simpress/01.po30
-rw-r--r--source/ca-valencia/helpcontent2/source/text/simpress/02.po20
-rw-r--r--source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/ca-valencia/sc/messages.po20
-rw-r--r--source/ca-valencia/scp2/source/ooo.po20
-rw-r--r--source/ca-valencia/sd/messages.po8
-rw-r--r--source/ca-valencia/sfx2/messages.po178
-rw-r--r--source/ca-valencia/sw/messages.po188
-rw-r--r--source/ca/helpcontent2/source/text/scalc.po6
-rw-r--r--source/ca/helpcontent2/source/text/scalc/01.po252
-rw-r--r--source/ca/helpcontent2/source/text/scalc/02.po8
-rw-r--r--source/ca/helpcontent2/source/text/scalc/guide.po30
-rw-r--r--source/ca/helpcontent2/source/text/sdraw.po10
-rw-r--r--source/ca/helpcontent2/source/text/sdraw/01.po136
-rw-r--r--source/ca/helpcontent2/source/text/shared.po6
-rw-r--r--source/ca/helpcontent2/source/text/shared/01.po81
-rw-r--r--source/ca/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/ca/helpcontent2/source/text/shared/menu.po28
-rw-r--r--source/ca/helpcontent2/source/text/simpress/01.po32
-rw-r--r--source/ca/helpcontent2/source/text/simpress/02.po22
-rw-r--r--source/ca/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/ca/sc/messages.po22
-rw-r--r--source/ca/scp2/source/ooo.po22
-rw-r--r--source/ca/sd/messages.po10
-rw-r--r--source/ca/sfx2/messages.po200
-rw-r--r--source/ca/sw/messages.po188
-rw-r--r--source/ckb/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/ckb/sc/messages.po18
-rw-r--r--source/ckb/scp2/source/ooo.po20
-rw-r--r--source/ckb/sd/messages.po8
-rw-r--r--source/ckb/sfx2/messages.po176
-rw-r--r--source/ckb/sw/messages.po188
-rw-r--r--source/cs/helpcontent2/source/text/scalc/01.po396
-rw-r--r--source/cs/helpcontent2/source/text/scalc/guide.po34
-rw-r--r--source/cs/helpcontent2/source/text/sdraw.po8
-rw-r--r--source/cs/helpcontent2/source/text/sdraw/01.po136
-rw-r--r--source/cs/helpcontent2/source/text/shared/01.po82
-rw-r--r--source/cs/helpcontent2/source/text/shared/02.po16
-rw-r--r--source/cs/helpcontent2/source/text/shared/menu.po28
-rw-r--r--source/cs/helpcontent2/source/text/simpress/01.po34
-rw-r--r--source/cs/helpcontent2/source/text/simpress/02.po22
-rw-r--r--source/cs/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/cs/sc/messages.po22
-rw-r--r--source/cs/scp2/source/ooo.po22
-rw-r--r--source/cs/sd/messages.po8
-rw-r--r--source/cs/sfx2/messages.po198
-rw-r--r--source/cs/sw/messages.po188
-rw-r--r--source/cy/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/cy/sc/messages.po20
-rw-r--r--source/cy/scp2/source/ooo.po22
-rw-r--r--source/cy/sd/messages.po8
-rw-r--r--source/cy/sfx2/messages.po198
-rw-r--r--source/cy/sw/messages.po188
-rw-r--r--source/da/helpcontent2/source/text/sbasic/shared.po10
-rw-r--r--source/da/helpcontent2/source/text/sbasic/shared/02.po22
-rw-r--r--source/da/helpcontent2/source/text/scalc.po20
-rw-r--r--source/da/helpcontent2/source/text/scalc/01.po250
-rw-r--r--source/da/helpcontent2/source/text/scalc/guide.po34
-rw-r--r--source/da/helpcontent2/source/text/sdatabase.po14
-rw-r--r--source/da/helpcontent2/source/text/sdraw.po10
-rw-r--r--source/da/helpcontent2/source/text/sdraw/01.po136
-rw-r--r--source/da/helpcontent2/source/text/shared/01.po82
-rw-r--r--source/da/helpcontent2/source/text/shared/02.po16
-rw-r--r--source/da/helpcontent2/source/text/shared/06.po18
-rw-r--r--source/da/helpcontent2/source/text/shared/help.po20
-rw-r--r--source/da/helpcontent2/source/text/shared/menu.po40
-rw-r--r--source/da/helpcontent2/source/text/simpress/01.po36
-rw-r--r--source/da/helpcontent2/source/text/simpress/02.po20
-rw-r--r--source/da/helpcontent2/source/text/swriter/librelogo.po8
-rw-r--r--source/da/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/da/sc/messages.po22
-rw-r--r--source/da/scp2/source/ooo.po22
-rw-r--r--source/da/sd/messages.po10
-rw-r--r--source/da/sfx2/messages.po200
-rw-r--r--source/da/svx/messages.po12
-rw-r--r--source/da/sw/messages.po190
-rw-r--r--source/de/cui/messages.po10
-rw-r--r--source/de/formula/messages.po8
-rw-r--r--source/de/helpcontent2/source/text/sbasic/shared.po26
-rw-r--r--source/de/helpcontent2/source/text/sbasic/shared/03.po14
-rw-r--r--source/de/helpcontent2/source/text/scalc/01.po348
-rw-r--r--source/de/helpcontent2/source/text/scalc/guide.po36
-rw-r--r--source/de/helpcontent2/source/text/schart/01.po6
-rw-r--r--source/de/helpcontent2/source/text/sdatabase.po28
-rw-r--r--source/de/helpcontent2/source/text/sdraw.po10
-rw-r--r--source/de/helpcontent2/source/text/sdraw/01.po136
-rw-r--r--source/de/helpcontent2/source/text/shared/01.po104
-rw-r--r--source/de/helpcontent2/source/text/shared/02.po18
-rw-r--r--source/de/helpcontent2/source/text/shared/guide.po26
-rw-r--r--source/de/helpcontent2/source/text/shared/menu.po28
-rw-r--r--source/de/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/de/helpcontent2/source/text/simpress/01.po38
-rw-r--r--source/de/helpcontent2/source/text/simpress/02.po20
-rw-r--r--source/de/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/de/helpcontent2/source/text/swriter/01.po12
-rw-r--r--source/de/helpcontent2/source/text/swriter/guide.po8
-rw-r--r--source/de/officecfg/registry/data/org/openoffice/Office/UI.po14
-rw-r--r--source/de/sc/messages.po148
-rw-r--r--source/de/scp2/source/ooo.po22
-rw-r--r--source/de/sd/messages.po8
-rw-r--r--source/de/sfx2/messages.po188
-rw-r--r--source/de/svx/messages.po26
-rw-r--r--source/de/sw/messages.po192
-rw-r--r--source/dgo/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/dgo/sc/messages.po18
-rw-r--r--source/dgo/scp2/source/ooo.po20
-rw-r--r--source/dgo/sd/messages.po8
-rw-r--r--source/dgo/sfx2/messages.po178
-rw-r--r--source/dgo/sw/messages.po188
-rw-r--r--source/dsb/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/dsb/helpcontent2/source/text/scalc/guide.po34
-rw-r--r--source/dsb/helpcontent2/source/text/sdraw.po8
-rw-r--r--source/dsb/helpcontent2/source/text/sdraw/01.po136
-rw-r--r--source/dsb/helpcontent2/source/text/shared/01.po68
-rw-r--r--source/dsb/helpcontent2/source/text/shared/02.po16
-rw-r--r--source/dsb/helpcontent2/source/text/shared/menu.po28
-rw-r--r--source/dsb/helpcontent2/source/text/simpress/01.po34
-rw-r--r--source/dsb/helpcontent2/source/text/simpress/02.po22
-rw-r--r--source/dsb/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/dsb/sc/messages.po22
-rw-r--r--source/dsb/scp2/source/ooo.po22
-rw-r--r--source/dsb/sd/messages.po8
-rw-r--r--source/dsb/sfx2/messages.po198
-rw-r--r--source/dsb/sw/messages.po188
-rw-r--r--source/dz/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/dz/helpcontent2/source/text/scalc/guide.po30
-rw-r--r--source/dz/helpcontent2/source/text/sdraw.po6
-rw-r--r--source/dz/helpcontent2/source/text/sdraw/01.po132
-rw-r--r--source/dz/helpcontent2/source/text/shared/01.po72
-rw-r--r--source/dz/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/dz/helpcontent2/source/text/shared/menu.po24
-rw-r--r--source/dz/helpcontent2/source/text/simpress/01.po30
-rw-r--r--source/dz/helpcontent2/source/text/simpress/02.po20
-rw-r--r--source/dz/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/dz/sc/messages.po14
-rw-r--r--source/dz/scp2/source/ooo.po20
-rw-r--r--source/dz/sd/messages.po6
-rw-r--r--source/dz/sfx2/messages.po180
-rw-r--r--source/dz/sw/messages.po178
-rw-r--r--source/el/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/el/helpcontent2/source/text/scalc/guide.po32
-rw-r--r--source/el/helpcontent2/source/text/sdraw.po8
-rw-r--r--source/el/helpcontent2/source/text/sdraw/01.po134
-rw-r--r--source/el/helpcontent2/source/text/shared/01.po80
-rw-r--r--source/el/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/el/helpcontent2/source/text/shared/menu.po26
-rw-r--r--source/el/helpcontent2/source/text/simpress/01.po32
-rw-r--r--source/el/helpcontent2/source/text/simpress/02.po20
-rw-r--r--source/el/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/el/sc/messages.po20
-rw-r--r--source/el/scp2/source/ooo.po22
-rw-r--r--source/el/sd/messages.po8
-rw-r--r--source/el/sfx2/messages.po186
-rw-r--r--source/el/sw/messages.po188
-rw-r--r--source/en-GB/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/en-GB/helpcontent2/source/text/scalc/guide.po30
-rw-r--r--source/en-GB/helpcontent2/source/text/sdraw.po8
-rw-r--r--source/en-GB/helpcontent2/source/text/sdraw/01.po134
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/01.po80
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/menu.po26
-rw-r--r--source/en-GB/helpcontent2/source/text/simpress/01.po30
-rw-r--r--source/en-GB/helpcontent2/source/text/simpress/02.po20
-rw-r--r--source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/en-GB/sc/messages.po18
-rw-r--r--source/en-GB/scp2/source/ooo.po20
-rw-r--r--source/en-GB/sd/messages.po8
-rw-r--r--source/en-GB/sfx2/messages.po178
-rw-r--r--source/en-GB/sw/messages.po188
-rw-r--r--source/en-ZA/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/en-ZA/helpcontent2/source/text/scalc/guide.po30
-rw-r--r--source/en-ZA/helpcontent2/source/text/sdraw.po6
-rw-r--r--source/en-ZA/helpcontent2/source/text/sdraw/01.po132
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/01.po78
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/menu.po24
-rw-r--r--source/en-ZA/helpcontent2/source/text/simpress/01.po30
-rw-r--r--source/en-ZA/helpcontent2/source/text/simpress/02.po20
-rw-r--r--source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/en-ZA/sc/messages.po14
-rw-r--r--source/en-ZA/scp2/source/ooo.po20
-rw-r--r--source/en-ZA/sd/messages.po6
-rw-r--r--source/en-ZA/sfx2/messages.po180
-rw-r--r--source/en-ZA/sw/messages.po178
-rw-r--r--source/eo/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/eo/helpcontent2/source/text/scalc/guide.po22
-rw-r--r--source/eo/helpcontent2/source/text/sdraw.po6
-rw-r--r--source/eo/helpcontent2/source/text/sdraw/01.po132
-rw-r--r--source/eo/helpcontent2/source/text/shared/01.po70
-rw-r--r--source/eo/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/eo/helpcontent2/source/text/shared/menu.po26
-rw-r--r--source/eo/helpcontent2/source/text/simpress/01.po30
-rw-r--r--source/eo/helpcontent2/source/text/simpress/02.po18
-rw-r--r--source/eo/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/eo/sc/messages.po20
-rw-r--r--source/eo/scp2/source/ooo.po20
-rw-r--r--source/eo/sd/messages.po8
-rw-r--r--source/eo/sfx2/messages.po178
-rw-r--r--source/eo/sw/messages.po188
-rw-r--r--source/es/helpcontent2/source/text/scalc.po8
-rw-r--r--source/es/helpcontent2/source/text/scalc/01.po252
-rw-r--r--source/es/helpcontent2/source/text/scalc/02.po8
-rw-r--r--source/es/helpcontent2/source/text/scalc/guide.po32
-rw-r--r--source/es/helpcontent2/source/text/sdraw.po8
-rw-r--r--source/es/helpcontent2/source/text/sdraw/01.po136
-rw-r--r--source/es/helpcontent2/source/text/shared.po6
-rw-r--r--source/es/helpcontent2/source/text/shared/01.po84
-rw-r--r--source/es/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/es/helpcontent2/source/text/shared/menu.po28
-rw-r--r--source/es/helpcontent2/source/text/simpress/01.po32
-rw-r--r--source/es/helpcontent2/source/text/simpress/02.po22
-rw-r--r--source/es/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/es/sc/messages.po22
-rw-r--r--source/es/scp2/source/ooo.po22
-rw-r--r--source/es/sd/messages.po12
-rw-r--r--source/es/sfx2/messages.po180
-rw-r--r--source/es/sw/messages.po188
-rw-r--r--source/es/xmlsecurity/messages.po12
-rw-r--r--source/et/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/et/helpcontent2/source/text/scalc/guide.po30
-rw-r--r--source/et/helpcontent2/source/text/sdraw.po8
-rw-r--r--source/et/helpcontent2/source/text/sdraw/01.po132
-rw-r--r--source/et/helpcontent2/source/text/shared/01.po78
-rw-r--r--source/et/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/et/helpcontent2/source/text/shared/menu.po26
-rw-r--r--source/et/helpcontent2/source/text/simpress/01.po30
-rw-r--r--source/et/helpcontent2/source/text/simpress/02.po20
-rw-r--r--source/et/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/et/sc/messages.po18
-rw-r--r--source/et/scp2/source/ooo.po20
-rw-r--r--source/et/sd/messages.po8
-rw-r--r--source/et/sfx2/messages.po178
-rw-r--r--source/et/sw/messages.po188
-rw-r--r--source/eu/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/eu/helpcontent2/source/text/scalc/guide.po32
-rw-r--r--source/eu/helpcontent2/source/text/sdraw.po8
-rw-r--r--source/eu/helpcontent2/source/text/sdraw/01.po134
-rw-r--r--source/eu/helpcontent2/source/text/shared/01.po80
-rw-r--r--source/eu/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/eu/helpcontent2/source/text/shared/menu.po26
-rw-r--r--source/eu/helpcontent2/source/text/simpress/01.po30
-rw-r--r--source/eu/helpcontent2/source/text/simpress/02.po20
-rw-r--r--source/eu/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/eu/sc/messages.po18
-rw-r--r--source/eu/scp2/source/ooo.po20
-rw-r--r--source/eu/sd/messages.po8
-rw-r--r--source/eu/sfx2/messages.po178
-rw-r--r--source/eu/sw/messages.po188
-rw-r--r--source/fa/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/fa/sc/messages.po20
-rw-r--r--source/fa/scp2/source/ooo.po20
-rw-r--r--source/fa/sd/messages.po11
-rw-r--r--source/fa/sfx2/messages.po178
-rw-r--r--source/fa/sw/messages.po188
-rw-r--r--source/fa/wizards/messages.po127
-rw-r--r--source/fi/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/fi/helpcontent2/source/text/scalc/guide.po30
-rw-r--r--source/fi/helpcontent2/source/text/sdraw.po6
-rw-r--r--source/fi/helpcontent2/source/text/sdraw/01.po132
-rw-r--r--source/fi/helpcontent2/source/text/shared/01.po78
-rw-r--r--source/fi/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/fi/helpcontent2/source/text/shared/menu.po24
-rw-r--r--source/fi/helpcontent2/source/text/simpress/01.po30
-rw-r--r--source/fi/helpcontent2/source/text/simpress/02.po20
-rw-r--r--source/fi/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/fi/sc/messages.po20
-rw-r--r--source/fi/scp2/source/ooo.po22
-rw-r--r--source/fi/sd/messages.po8
-rw-r--r--source/fi/sfx2/messages.po182
-rw-r--r--source/fi/sw/messages.po188
-rw-r--r--source/fr/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/fr/helpcontent2/source/text/scalc/guide.po32
-rw-r--r--source/fr/helpcontent2/source/text/sdraw.po8
-rw-r--r--source/fr/helpcontent2/source/text/sdraw/01.po136
-rw-r--r--source/fr/helpcontent2/source/text/shared/01.po80
-rw-r--r--source/fr/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/fr/helpcontent2/source/text/shared/menu.po26
-rw-r--r--source/fr/helpcontent2/source/text/simpress/01.po32
-rw-r--r--source/fr/helpcontent2/source/text/simpress/02.po20
-rw-r--r--source/fr/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/fr/sc/messages.po20
-rw-r--r--source/fr/scp2/source/ooo.po22
-rw-r--r--source/fr/sd/messages.po8
-rw-r--r--source/fr/sfx2/messages.po178
-rw-r--r--source/fr/sw/messages.po190
-rw-r--r--source/fur/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/fur/sc/messages.po14
-rw-r--r--source/fur/scp2/source/ooo.po20
-rw-r--r--source/fur/sd/messages.po6
-rw-r--r--source/fur/sfx2/messages.po176
-rw-r--r--source/fur/sw/messages.po178
-rw-r--r--source/fy/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/fy/sc/messages.po18
-rw-r--r--source/fy/scp2/source/ooo.po20
-rw-r--r--source/fy/sd/messages.po8
-rw-r--r--source/fy/sfx2/messages.po178
-rw-r--r--source/fy/sw/messages.po188
-rw-r--r--source/ga/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/ga/sc/messages.po18
-rw-r--r--source/ga/scp2/source/ooo.po20
-rw-r--r--source/ga/sd/messages.po8
-rw-r--r--source/ga/sfx2/messages.po176
-rw-r--r--source/ga/sw/messages.po188
-rw-r--r--source/gd/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/gd/sc/messages.po18
-rw-r--r--source/gd/scp2/source/ooo.po20
-rw-r--r--source/gd/sd/messages.po8
-rw-r--r--source/gd/sfx2/messages.po176
-rw-r--r--source/gd/sw/messages.po188
-rw-r--r--source/gl/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/gl/helpcontent2/source/text/scalc/guide.po30
-rw-r--r--source/gl/helpcontent2/source/text/sdraw.po8
-rw-r--r--source/gl/helpcontent2/source/text/sdraw/01.po134
-rw-r--r--source/gl/helpcontent2/source/text/shared/01.po78
-rw-r--r--source/gl/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/gl/helpcontent2/source/text/shared/menu.po26
-rw-r--r--source/gl/helpcontent2/source/text/simpress/01.po30
-rw-r--r--source/gl/helpcontent2/source/text/simpress/02.po20
-rw-r--r--source/gl/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/gl/sc/messages.po22
-rw-r--r--source/gl/scp2/source/ooo.po22
-rw-r--r--source/gl/sd/messages.po8
-rw-r--r--source/gl/sfx2/messages.po200
-rw-r--r--source/gl/sw/messages.po190
-rw-r--r--source/gu/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/gu/helpcontent2/source/text/scalc/guide.po26
-rw-r--r--source/gu/helpcontent2/source/text/sdraw.po6
-rw-r--r--source/gu/helpcontent2/source/text/sdraw/01.po132
-rw-r--r--source/gu/helpcontent2/source/text/shared/01.po72
-rw-r--r--source/gu/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/gu/helpcontent2/source/text/shared/menu.po24
-rw-r--r--source/gu/helpcontent2/source/text/simpress/01.po28
-rw-r--r--source/gu/helpcontent2/source/text/simpress/02.po20
-rw-r--r--source/gu/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/gu/sc/messages.po18
-rw-r--r--source/gu/scp2/source/ooo.po20
-rw-r--r--source/gu/sd/messages.po8
-rw-r--r--source/gu/sfx2/messages.po180
-rw-r--r--source/gu/sw/messages.po188
-rw-r--r--source/gug/helpcontent2/source/text/scalc.po8
-rw-r--r--source/gug/helpcontent2/source/text/scalc/01.po252
-rw-r--r--source/gug/helpcontent2/source/text/scalc/02.po8
-rw-r--r--source/gug/helpcontent2/source/text/scalc/guide.po32
-rw-r--r--source/gug/helpcontent2/source/text/sdraw.po8
-rw-r--r--source/gug/helpcontent2/source/text/sdraw/01.po136
-rw-r--r--source/gug/helpcontent2/source/text/shared.po6
-rw-r--r--source/gug/helpcontent2/source/text/shared/01.po84
-rw-r--r--source/gug/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/gug/helpcontent2/source/text/shared/menu.po28
-rw-r--r--source/gug/helpcontent2/source/text/simpress/01.po32
-rw-r--r--source/gug/helpcontent2/source/text/simpress/02.po22
-rw-r--r--source/gug/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/gug/sc/messages.po18
-rw-r--r--source/gug/scp2/source/ooo.po20
-rw-r--r--source/gug/sd/messages.po8
-rw-r--r--source/gug/sfx2/messages.po176
-rw-r--r--source/gug/sw/messages.po188
-rw-r--r--source/he/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/he/helpcontent2/source/text/scalc/guide.po26
-rw-r--r--source/he/helpcontent2/source/text/sdraw.po6
-rw-r--r--source/he/helpcontent2/source/text/sdraw/01.po132
-rw-r--r--source/he/helpcontent2/source/text/shared/01.po72
-rw-r--r--source/he/helpcontent2/source/text/shared/02.po12
-rw-r--r--source/he/helpcontent2/source/text/shared/menu.po24
-rw-r--r--source/he/helpcontent2/source/text/simpress/01.po30
-rw-r--r--source/he/helpcontent2/source/text/simpress/02.po16
-rw-r--r--source/he/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/he/sc/messages.po20
-rw-r--r--source/he/scp2/source/ooo.po22
-rw-r--r--source/he/sd/messages.po8
-rw-r--r--source/he/sfx2/messages.po186
-rw-r--r--source/he/sw/messages.po192
-rw-r--r--source/hi/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/hi/helpcontent2/source/text/scalc/guide.po26
-rw-r--r--source/hi/helpcontent2/source/text/sdraw.po6
-rw-r--r--source/hi/helpcontent2/source/text/sdraw/01.po132
-rw-r--r--source/hi/helpcontent2/source/text/shared/01.po68
-rw-r--r--source/hi/helpcontent2/source/text/shared/02.po12
-rw-r--r--source/hi/helpcontent2/source/text/shared/menu.po24
-rw-r--r--source/hi/helpcontent2/source/text/simpress/01.po28
-rw-r--r--source/hi/helpcontent2/source/text/simpress/02.po16
-rw-r--r--source/hi/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/hi/sc/messages.po18
-rw-r--r--source/hi/scp2/source/ooo.po20
-rw-r--r--source/hi/sd/messages.po8
-rw-r--r--source/hi/sfx2/messages.po178
-rw-r--r--source/hi/sw/messages.po188
-rw-r--r--source/hr/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/hr/helpcontent2/source/text/scalc/guide.po22
-rw-r--r--source/hr/helpcontent2/source/text/sdraw.po6
-rw-r--r--source/hr/helpcontent2/source/text/sdraw/01.po132
-rw-r--r--source/hr/helpcontent2/source/text/shared/01.po68
-rw-r--r--source/hr/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/hr/helpcontent2/source/text/shared/menu.po24
-rw-r--r--source/hr/helpcontent2/source/text/simpress/01.po30
-rw-r--r--source/hr/helpcontent2/source/text/simpress/02.po16
-rw-r--r--source/hr/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/hr/sc/messages.po18
-rw-r--r--source/hr/scp2/source/ooo.po20
-rw-r--r--source/hr/sd/messages.po8
-rw-r--r--source/hr/sfx2/messages.po176
-rw-r--r--source/hr/sw/messages.po188
-rw-r--r--source/hsb/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/hsb/helpcontent2/source/text/scalc/guide.po34
-rw-r--r--source/hsb/helpcontent2/source/text/sdraw.po8
-rw-r--r--source/hsb/helpcontent2/source/text/sdraw/01.po136
-rw-r--r--source/hsb/helpcontent2/source/text/shared/01.po68
-rw-r--r--source/hsb/helpcontent2/source/text/shared/02.po16
-rw-r--r--source/hsb/helpcontent2/source/text/shared/menu.po28
-rw-r--r--source/hsb/helpcontent2/source/text/simpress/01.po34
-rw-r--r--source/hsb/helpcontent2/source/text/simpress/02.po22
-rw-r--r--source/hsb/helpcontent2/source/text/swriter/guide.po70
-rw-r--r--source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/hsb/sc/messages.po22
-rw-r--r--source/hsb/scp2/source/ooo.po22
-rw-r--r--source/hsb/sd/messages.po10
-rw-r--r--source/hsb/sfx2/messages.po198
-rw-r--r--source/hsb/sw/messages.po190
-rw-r--r--source/hu/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/hu/helpcontent2/source/text/scalc/guide.po30
-rw-r--r--source/hu/helpcontent2/source/text/sdraw.po8
-rw-r--r--source/hu/helpcontent2/source/text/sdraw/01.po132
-rw-r--r--source/hu/helpcontent2/source/text/shared/01.po80
-rw-r--r--source/hu/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/hu/helpcontent2/source/text/shared/menu.po26
-rw-r--r--source/hu/helpcontent2/source/text/simpress/01.po30
-rw-r--r--source/hu/helpcontent2/source/text/simpress/02.po20
-rw-r--r--source/hu/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/hu/sc/messages.po20
-rw-r--r--source/hu/scp2/source/ooo.po22
-rw-r--r--source/hu/sd/messages.po8
-rw-r--r--source/hu/sfx2/messages.po178
-rw-r--r--source/hu/sw/messages.po188
-rw-r--r--source/hy/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/hy/sc/messages.po22
-rw-r--r--source/hy/scp2/source/ooo.po22
-rw-r--r--source/hy/sd/messages.po8
-rw-r--r--source/hy/sfx2/messages.po198
-rw-r--r--source/hy/sw/messages.po190
-rw-r--r--source/id/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/id/helpcontent2/source/text/scalc/guide.po30
-rw-r--r--source/id/helpcontent2/source/text/sdraw.po8
-rw-r--r--source/id/helpcontent2/source/text/sdraw/01.po132
-rw-r--r--source/id/helpcontent2/source/text/shared/01.po80
-rw-r--r--source/id/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/id/helpcontent2/source/text/shared/menu.po26
-rw-r--r--source/id/helpcontent2/source/text/simpress/01.po30
-rw-r--r--source/id/helpcontent2/source/text/simpress/02.po20
-rw-r--r--source/id/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/id/sc/messages.po20
-rw-r--r--source/id/scp2/source/ooo.po22
-rw-r--r--source/id/sd/messages.po8
-rw-r--r--source/id/sfx2/messages.po198
-rw-r--r--source/id/sw/messages.po188
-rw-r--r--source/is/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/is/helpcontent2/source/text/scalc/guide.po22
-rw-r--r--source/is/helpcontent2/source/text/sdraw.po8
-rw-r--r--source/is/helpcontent2/source/text/sdraw/01.po132
-rw-r--r--source/is/helpcontent2/source/text/shared/01.po70
-rw-r--r--source/is/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/is/helpcontent2/source/text/shared/menu.po24
-rw-r--r--source/is/helpcontent2/source/text/simpress/01.po30
-rw-r--r--source/is/helpcontent2/source/text/simpress/02.po18
-rw-r--r--source/is/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/is/sc/messages.po18
-rw-r--r--source/is/scp2/source/ooo.po22
-rw-r--r--source/is/sd/messages.po8
-rw-r--r--source/is/sfx2/messages.po178
-rw-r--r--source/is/sw/messages.po188
-rw-r--r--source/it/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/it/helpcontent2/source/text/scalc/guide.po32
-rw-r--r--source/it/helpcontent2/source/text/sdraw.po8
-rw-r--r--source/it/helpcontent2/source/text/sdraw/01.po134
-rw-r--r--source/it/helpcontent2/source/text/shared/01.po80
-rw-r--r--source/it/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/it/helpcontent2/source/text/shared/menu.po28
-rw-r--r--source/it/helpcontent2/source/text/simpress/01.po32
-rw-r--r--source/it/helpcontent2/source/text/simpress/02.po20
-rw-r--r--source/it/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/it/sc/messages.po20
-rw-r--r--source/it/scp2/source/ooo.po22
-rw-r--r--source/it/sd/messages.po8
-rw-r--r--source/it/sfx2/messages.po178
-rw-r--r--source/it/sw/messages.po188
-rw-r--r--source/ja/cui/messages.po8
-rw-r--r--source/ja/helpcontent2/source/text/scalc/01.po250
-rw-r--r--source/ja/helpcontent2/source/text/scalc/guide.po32
-rw-r--r--source/ja/helpcontent2/source/text/sdraw.po8
-rw-r--r--source/ja/helpcontent2/source/text/sdraw/01.po134
-rw-r--r--source/ja/helpcontent2/source/text/shared/01.po80
-rw-r--r--source/ja/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/ja/helpcontent2/source/text/shared/menu.po24
-rw-r--r--source/ja/helpcontent2/source/text/simpress/01.po32
-rw-r--r--source/ja/helpcontent2/source/text/simpress/02.po20
-rw-r--r--source/ja/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/ja/sc/messages.po22
-rw-r--r--source/ja/scp2/source/ooo.po22
-rw-r--r--source/ja/sd/messages.po10
-rw-r--r--source/ja/sfx2/messages.po180
-rw-r--r--source/ja/svtools/messages.po6
-rw-r--r--source/ja/sw/messages.po190
-rw-r--r--source/jv/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/jv/sc/messages.po14
-rw-r--r--source/jv/scp2/source/ooo.po20
-rw-r--r--source/jv/sd/messages.po6
-rw-r--r--source/jv/sfx2/messages.po178
-rw-r--r--source/jv/sw/messages.po178
-rw-r--r--source/ka/cui/messages.po8
-rw-r--r--source/ka/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/ka/helpcontent2/source/text/scalc/guide.po22
-rw-r--r--source/ka/helpcontent2/source/text/sdraw.po6
-rw-r--r--source/ka/helpcontent2/source/text/sdraw/01.po132
-rw-r--r--source/ka/helpcontent2/source/text/shared/01.po68
-rw-r--r--source/ka/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/ka/helpcontent2/source/text/shared/menu.po24
-rw-r--r--source/ka/helpcontent2/source/text/simpress/01.po28
-rw-r--r--source/ka/helpcontent2/source/text/simpress/02.po20
-rw-r--r--source/ka/officecfg/registry/data/org/openoffice/Office/UI.po14
-rw-r--r--source/ka/sc/messages.po22
-rw-r--r--source/ka/scp2/source/ooo.po22
-rw-r--r--source/ka/sd/messages.po10
-rw-r--r--source/ka/sfx2/messages.po200
-rw-r--r--source/ka/sw/messages.po190
-rw-r--r--source/kab/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/kab/sc/messages.po18
-rw-r--r--source/kab/scp2/source/ooo.po20
-rw-r--r--source/kab/sd/messages.po8
-rw-r--r--source/kab/sfx2/messages.po176
-rw-r--r--source/kab/sw/messages.po188
-rw-r--r--source/kk/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/kk/sc/messages.po22
-rw-r--r--source/kk/scp2/source/ooo.po22
-rw-r--r--source/kk/sd/messages.po10
-rw-r--r--source/kk/sfx2/messages.po180
-rw-r--r--source/kk/sw/messages.po190
-rw-r--r--source/kl/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/kl/sc/messages.po14
-rw-r--r--source/kl/scp2/source/ooo.po20
-rw-r--r--source/kl/sd/messages.po6
-rw-r--r--source/kl/sfx2/messages.po176
-rw-r--r--source/kl/sw/messages.po178
-rw-r--r--source/km/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/km/helpcontent2/source/text/scalc/guide.po30
-rw-r--r--source/km/helpcontent2/source/text/sdraw.po6
-rw-r--r--source/km/helpcontent2/source/text/sdraw/01.po132
-rw-r--r--source/km/helpcontent2/source/text/shared/01.po78
-rw-r--r--source/km/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/km/helpcontent2/source/text/shared/menu.po24
-rw-r--r--source/km/helpcontent2/source/text/simpress/01.po30
-rw-r--r--source/km/helpcontent2/source/text/simpress/02.po20
-rw-r--r--source/km/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/km/sc/messages.po18
-rw-r--r--source/km/scp2/source/ooo.po20
-rw-r--r--source/km/sd/messages.po8
-rw-r--r--source/km/sfx2/messages.po180
-rw-r--r--source/km/sw/messages.po188
-rw-r--r--source/kmr-Latn/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/kmr-Latn/sc/messages.po14
-rw-r--r--source/kmr-Latn/scp2/source/ooo.po20
-rw-r--r--source/kmr-Latn/sd/messages.po6
-rw-r--r--source/kmr-Latn/sfx2/messages.po178
-rw-r--r--source/kmr-Latn/sw/messages.po178
-rw-r--r--source/kn/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/kn/sc/messages.po18
-rw-r--r--source/kn/scp2/source/ooo.po20
-rw-r--r--source/kn/sd/messages.po8
-rw-r--r--source/kn/sfx2/messages.po178
-rw-r--r--source/kn/sw/messages.po188
-rw-r--r--source/ko/cui/messages.po36
-rw-r--r--source/ko/extras/source/autocorr/emoji.po24
-rw-r--r--source/ko/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/ko/helpcontent2/source/text/scalc/guide.po30
-rw-r--r--source/ko/helpcontent2/source/text/sdraw.po6
-rw-r--r--source/ko/helpcontent2/source/text/sdraw/01.po132
-rw-r--r--source/ko/helpcontent2/source/text/shared/01.po78
-rw-r--r--source/ko/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/ko/helpcontent2/source/text/shared/menu.po26
-rw-r--r--source/ko/helpcontent2/source/text/simpress/01.po30
-rw-r--r--source/ko/helpcontent2/source/text/simpress/02.po20
-rw-r--r--source/ko/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/ko/sc/messages.po18
-rw-r--r--source/ko/scp2/source/ooo.po20
-rw-r--r--source/ko/sd/messages.po8
-rw-r--r--source/ko/sfx2/messages.po178
-rw-r--r--source/ko/sw/messages.po190
-rw-r--r--source/kok/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/kok/sc/messages.po14
-rw-r--r--source/kok/scp2/source/ooo.po20
-rw-r--r--source/kok/sd/messages.po6
-rw-r--r--source/kok/sfx2/messages.po178
-rw-r--r--source/kok/sw/messages.po178
-rw-r--r--source/ks/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/ks/sc/messages.po14
-rw-r--r--source/ks/scp2/source/ooo.po20
-rw-r--r--source/ks/sd/messages.po6
-rw-r--r--source/ks/sfx2/messages.po178
-rw-r--r--source/ks/sw/messages.po178
-rw-r--r--source/ky/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/ky/sc/messages.po14
-rw-r--r--source/ky/scp2/source/ooo.po20
-rw-r--r--source/ky/sd/messages.po6
-rw-r--r--source/ky/sfx2/messages.po176
-rw-r--r--source/ky/sw/messages.po178
-rw-r--r--source/lb/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/lb/sc/messages.po14
-rw-r--r--source/lb/scp2/source/ooo.po20
-rw-r--r--source/lb/sd/messages.po6
-rw-r--r--source/lb/sfx2/messages.po178
-rw-r--r--source/lb/sw/messages.po178
-rw-r--r--source/lo/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/lo/helpcontent2/source/text/scalc/guide.po22
-rw-r--r--source/lo/helpcontent2/source/text/sdraw.po6
-rw-r--r--source/lo/helpcontent2/source/text/sdraw/01.po132
-rw-r--r--source/lo/helpcontent2/source/text/shared/01.po68
-rw-r--r--source/lo/helpcontent2/source/text/shared/02.po10
-rw-r--r--source/lo/helpcontent2/source/text/shared/menu.po24
-rw-r--r--source/lo/helpcontent2/source/text/simpress/01.po28
-rw-r--r--source/lo/helpcontent2/source/text/simpress/02.po14
-rw-r--r--source/lo/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/lo/sc/messages.po14
-rw-r--r--source/lo/scp2/source/ooo.po20
-rw-r--r--source/lo/sd/messages.po6
-rw-r--r--source/lo/sfx2/messages.po178
-rw-r--r--source/lo/sw/messages.po178
-rw-r--r--source/lt/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/lt/helpcontent2/source/text/scalc/guide.po32
-rw-r--r--source/lt/helpcontent2/source/text/sdraw.po8
-rw-r--r--source/lt/helpcontent2/source/text/sdraw/01.po134
-rw-r--r--source/lt/helpcontent2/source/text/shared/01.po68
-rw-r--r--source/lt/helpcontent2/source/text/shared/02.po10
-rw-r--r--source/lt/helpcontent2/source/text/shared/menu.po26
-rw-r--r--source/lt/helpcontent2/source/text/simpress/01.po30
-rw-r--r--source/lt/helpcontent2/source/text/simpress/02.po20
-rw-r--r--source/lt/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/lt/sc/messages.po18
-rw-r--r--source/lt/scp2/source/ooo.po20
-rw-r--r--source/lt/sd/messages.po8
-rw-r--r--source/lt/sfx2/messages.po178
-rw-r--r--source/lt/sw/messages.po188
-rw-r--r--source/lv/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/lv/helpcontent2/source/text/scalc/guide.po22
-rw-r--r--source/lv/helpcontent2/source/text/sdraw.po6
-rw-r--r--source/lv/helpcontent2/source/text/sdraw/01.po132
-rw-r--r--source/lv/helpcontent2/source/text/shared/01.po70
-rw-r--r--source/lv/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/lv/helpcontent2/source/text/shared/menu.po24
-rw-r--r--source/lv/helpcontent2/source/text/simpress/01.po30
-rw-r--r--source/lv/helpcontent2/source/text/simpress/02.po18
-rw-r--r--source/lv/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/lv/sc/messages.po18
-rw-r--r--source/lv/scp2/source/ooo.po20
-rw-r--r--source/lv/sd/messages.po8
-rw-r--r--source/lv/sfx2/messages.po176
-rw-r--r--source/lv/sw/messages.po190
-rw-r--r--source/mai/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/mai/sc/messages.po14
-rw-r--r--source/mai/scp2/source/ooo.po20
-rw-r--r--source/mai/sd/messages.po6
-rw-r--r--source/mai/sfx2/messages.po178
-rw-r--r--source/mai/sw/messages.po178
-rw-r--r--source/mk/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/mk/helpcontent2/source/text/scalc/guide.po30
-rw-r--r--source/mk/helpcontent2/source/text/sdraw.po6
-rw-r--r--source/mk/helpcontent2/source/text/sdraw/01.po132
-rw-r--r--source/mk/helpcontent2/source/text/shared/01.po76
-rw-r--r--source/mk/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/mk/helpcontent2/source/text/shared/menu.po24
-rw-r--r--source/mk/helpcontent2/source/text/simpress/01.po30
-rw-r--r--source/mk/helpcontent2/source/text/simpress/02.po20
-rw-r--r--source/mk/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/mk/sc/messages.po14
-rw-r--r--source/mk/scp2/source/ooo.po20
-rw-r--r--source/mk/sd/messages.po6
-rw-r--r--source/mk/sfx2/messages.po180
-rw-r--r--source/mk/sw/messages.po178
-rw-r--r--source/ml/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/ml/sc/messages.po20
-rw-r--r--source/ml/scp2/source/ooo.po20
-rw-r--r--source/ml/sd/messages.po9
-rw-r--r--source/ml/sfx2/messages.po178
-rw-r--r--source/ml/sw/messages.po193
-rw-r--r--source/mn/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/mn/sc/messages.po20
-rw-r--r--source/mn/scp2/source/ooo.po20
-rw-r--r--source/mn/sd/messages.po9
-rw-r--r--source/mn/sfx2/messages.po176
-rw-r--r--source/mn/sw/messages.po195
-rw-r--r--source/mni/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/mni/sc/messages.po18
-rw-r--r--source/mni/scp2/source/ooo.po20
-rw-r--r--source/mni/sd/messages.po8
-rw-r--r--source/mni/sfx2/messages.po178
-rw-r--r--source/mni/sw/messages.po188
-rw-r--r--source/mr/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/mr/sc/messages.po18
-rw-r--r--source/mr/scp2/source/ooo.po20
-rw-r--r--source/mr/sd/messages.po8
-rw-r--r--source/mr/sfx2/messages.po178
-rw-r--r--source/mr/sw/messages.po188
-rw-r--r--source/my/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/my/sc/messages.po14
-rw-r--r--source/my/scp2/source/ooo.po20
-rw-r--r--source/my/sd/messages.po6
-rw-r--r--source/my/sfx2/messages.po178
-rw-r--r--source/my/sw/messages.po178
-rw-r--r--source/nb/helpcontent2/source/text/scalc/01.po332
-rw-r--r--source/nb/helpcontent2/source/text/scalc/guide.po34
-rw-r--r--source/nb/helpcontent2/source/text/sdraw.po8
-rw-r--r--source/nb/helpcontent2/source/text/sdraw/01.po136
-rw-r--r--source/nb/helpcontent2/source/text/shared/01.po82
-rw-r--r--source/nb/helpcontent2/source/text/shared/02.po16
-rw-r--r--source/nb/helpcontent2/source/text/shared/menu.po28
-rw-r--r--source/nb/helpcontent2/source/text/simpress/01.po34
-rw-r--r--source/nb/helpcontent2/source/text/simpress/02.po22
-rw-r--r--source/nb/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/nb/sc/messages.po22
-rw-r--r--source/nb/scp2/source/ooo.po22
-rw-r--r--source/nb/sd/messages.po8
-rw-r--r--source/nb/sfx2/messages.po198
-rw-r--r--source/nb/sw/messages.po188
-rw-r--r--source/ne/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/ne/helpcontent2/source/text/scalc/guide.po26
-rw-r--r--source/ne/helpcontent2/source/text/sdraw.po6
-rw-r--r--source/ne/helpcontent2/source/text/sdraw/01.po132
-rw-r--r--source/ne/helpcontent2/source/text/shared/01.po74
-rw-r--r--source/ne/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/ne/helpcontent2/source/text/shared/menu.po24
-rw-r--r--source/ne/helpcontent2/source/text/simpress/01.po30
-rw-r--r--source/ne/helpcontent2/source/text/simpress/02.po20
-rw-r--r--source/ne/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/ne/sc/messages.po14
-rw-r--r--source/ne/scp2/source/ooo.po20
-rw-r--r--source/ne/sd/messages.po6
-rw-r--r--source/ne/sfx2/messages.po180
-rw-r--r--source/ne/sw/messages.po178
-rw-r--r--source/nl/cui/messages.po6
-rw-r--r--source/nl/helpcontent2/source/text/sbasic/shared.po8
-rw-r--r--source/nl/helpcontent2/source/text/scalc/01.po350
-rw-r--r--source/nl/helpcontent2/source/text/scalc/guide.po54
-rw-r--r--source/nl/helpcontent2/source/text/sdraw.po8
-rw-r--r--source/nl/helpcontent2/source/text/sdraw/01.po136
-rw-r--r--source/nl/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/nl/helpcontent2/source/text/shared/01.po86
-rw-r--r--source/nl/helpcontent2/source/text/shared/02.po16
-rw-r--r--source/nl/helpcontent2/source/text/shared/menu.po28
-rw-r--r--source/nl/helpcontent2/source/text/shared/optionen.po14
-rw-r--r--source/nl/helpcontent2/source/text/simpress/01.po34
-rw-r--r--source/nl/helpcontent2/source/text/simpress/02.po22
-rw-r--r--source/nl/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/nl/sc/messages.po54
-rw-r--r--source/nl/scaddins/messages.po4
-rw-r--r--source/nl/scp2/source/ooo.po22
-rw-r--r--source/nl/sd/messages.po8
-rw-r--r--source/nl/sfx2/messages.po202
-rw-r--r--source/nl/svx/messages.po6
-rw-r--r--source/nl/sw/messages.po188
-rw-r--r--source/nn/helpcontent2/source/text/scalc/01.po332
-rw-r--r--source/nn/helpcontent2/source/text/scalc/guide.po34
-rw-r--r--source/nn/helpcontent2/source/text/sdraw.po8
-rw-r--r--source/nn/helpcontent2/source/text/sdraw/01.po136
-rw-r--r--source/nn/helpcontent2/source/text/shared/01.po82
-rw-r--r--source/nn/helpcontent2/source/text/shared/02.po16
-rw-r--r--source/nn/helpcontent2/source/text/shared/menu.po28
-rw-r--r--source/nn/helpcontent2/source/text/simpress/01.po34
-rw-r--r--source/nn/helpcontent2/source/text/simpress/02.po22
-rw-r--r--source/nn/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/nn/sc/messages.po22
-rw-r--r--source/nn/scp2/source/ooo.po22
-rw-r--r--source/nn/sd/messages.po8
-rw-r--r--source/nn/sfx2/messages.po198
-rw-r--r--source/nn/sw/messages.po188
-rw-r--r--source/nr/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/nr/sc/messages.po14
-rw-r--r--source/nr/scp2/source/ooo.po20
-rw-r--r--source/nr/sd/messages.po6
-rw-r--r--source/nr/sfx2/messages.po178
-rw-r--r--source/nr/sw/messages.po178
-rw-r--r--source/nso/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/nso/sc/messages.po14
-rw-r--r--source/nso/scp2/source/ooo.po20
-rw-r--r--source/nso/sd/messages.po6
-rw-r--r--source/nso/sfx2/messages.po178
-rw-r--r--source/nso/sw/messages.po178
-rw-r--r--source/oc/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/oc/sc/messages.po18
-rw-r--r--source/oc/scp2/source/ooo.po20
-rw-r--r--source/oc/sd/messages.po8
-rw-r--r--source/oc/sfx2/messages.po176
-rw-r--r--source/oc/sw/messages.po188
-rw-r--r--source/om/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/om/helpcontent2/source/text/scalc/guide.po30
-rw-r--r--source/om/helpcontent2/source/text/sdraw.po6
-rw-r--r--source/om/helpcontent2/source/text/sdraw/01.po132
-rw-r--r--source/om/helpcontent2/source/text/shared/01.po78
-rw-r--r--source/om/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/om/helpcontent2/source/text/shared/menu.po24
-rw-r--r--source/om/helpcontent2/source/text/simpress/01.po30
-rw-r--r--source/om/helpcontent2/source/text/simpress/02.po20
-rw-r--r--source/om/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/om/sc/messages.po14
-rw-r--r--source/om/scp2/source/ooo.po20
-rw-r--r--source/om/sd/messages.po6
-rw-r--r--source/om/sfx2/messages.po180
-rw-r--r--source/om/sw/messages.po178
-rw-r--r--source/or/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/or/sc/messages.po18
-rw-r--r--source/or/scp2/source/ooo.po20
-rw-r--r--source/or/sd/messages.po8
-rw-r--r--source/or/sfx2/messages.po178
-rw-r--r--source/or/sw/messages.po188
-rw-r--r--source/pa-IN/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/pa-IN/sc/messages.po20
-rw-r--r--source/pa-IN/scp2/source/ooo.po20
-rw-r--r--source/pa-IN/sd/messages.po8
-rw-r--r--source/pa-IN/sfx2/messages.po176
-rw-r--r--source/pa-IN/sw/messages.po188
-rw-r--r--source/pl/helpcontent2/source/text/scalc/01.po332
-rw-r--r--source/pl/helpcontent2/source/text/scalc/guide.po34
-rw-r--r--source/pl/helpcontent2/source/text/sdraw.po8
-rw-r--r--source/pl/helpcontent2/source/text/sdraw/01.po136
-rw-r--r--source/pl/helpcontent2/source/text/shared/01.po82
-rw-r--r--source/pl/helpcontent2/source/text/shared/02.po16
-rw-r--r--source/pl/helpcontent2/source/text/shared/menu.po28
-rw-r--r--source/pl/helpcontent2/source/text/simpress/01.po34
-rw-r--r--source/pl/helpcontent2/source/text/simpress/02.po22
-rw-r--r--source/pl/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/pl/sc/messages.po22
-rw-r--r--source/pl/scp2/source/ooo.po22
-rw-r--r--source/pl/sd/messages.po10
-rw-r--r--source/pl/sfx2/messages.po198
-rw-r--r--source/pl/sw/messages.po188
-rw-r--r--source/pt-BR/helpcontent2/source/text/scalc/01.po412
-rw-r--r--source/pt-BR/helpcontent2/source/text/scalc/guide.po34
-rw-r--r--source/pt-BR/helpcontent2/source/text/sdraw.po8
-rw-r--r--source/pt-BR/helpcontent2/source/text/sdraw/01.po136
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/01.po82
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/02.po16
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/menu.po28
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/pt-BR/helpcontent2/source/text/simpress/01.po34
-rw-r--r--source/pt-BR/helpcontent2/source/text/simpress/02.po22
-rw-r--r--source/pt-BR/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/pt-BR/sc/messages.po22
-rw-r--r--source/pt-BR/scp2/source/ooo.po22
-rw-r--r--source/pt-BR/sd/messages.po8
-rw-r--r--source/pt-BR/sfx2/messages.po198
-rw-r--r--source/pt-BR/sw/messages.po190
-rw-r--r--source/pt/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/pt/helpcontent2/source/text/scalc/guide.po30
-rw-r--r--source/pt/helpcontent2/source/text/sdraw.po8
-rw-r--r--source/pt/helpcontent2/source/text/sdraw/01.po134
-rw-r--r--source/pt/helpcontent2/source/text/shared/01.po78
-rw-r--r--source/pt/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/pt/helpcontent2/source/text/shared/menu.po26
-rw-r--r--source/pt/helpcontent2/source/text/simpress/01.po30
-rw-r--r--source/pt/helpcontent2/source/text/simpress/02.po20
-rw-r--r--source/pt/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/pt/sc/messages.po20
-rw-r--r--source/pt/scp2/source/ooo.po20
-rw-r--r--source/pt/sd/messages.po8
-rw-r--r--source/pt/sfx2/messages.po178
-rw-r--r--source/pt/sw/messages.po188
-rw-r--r--source/ro/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/ro/helpcontent2/source/text/scalc/guide.po22
-rw-r--r--source/ro/helpcontent2/source/text/sdraw.po6
-rw-r--r--source/ro/helpcontent2/source/text/sdraw/01.po132
-rw-r--r--source/ro/helpcontent2/source/text/shared/01.po68
-rw-r--r--source/ro/helpcontent2/source/text/shared/02.po10
-rw-r--r--source/ro/helpcontent2/source/text/shared/menu.po24
-rw-r--r--source/ro/helpcontent2/source/text/simpress/01.po28
-rw-r--r--source/ro/helpcontent2/source/text/simpress/02.po14
-rw-r--r--source/ro/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/ro/sc/messages.po18
-rw-r--r--source/ro/scp2/source/ooo.po20
-rw-r--r--source/ro/sd/messages.po8
-rw-r--r--source/ro/sfx2/messages.po176
-rw-r--r--source/ro/sw/messages.po188
-rw-r--r--source/ru/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/ru/helpcontent2/source/text/scalc/guide.po30
-rw-r--r--source/ru/helpcontent2/source/text/sdraw.po8
-rw-r--r--source/ru/helpcontent2/source/text/sdraw/01.po132
-rw-r--r--source/ru/helpcontent2/source/text/shared/01.po80
-rw-r--r--source/ru/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/ru/helpcontent2/source/text/shared/menu.po26
-rw-r--r--source/ru/helpcontent2/source/text/simpress/01.po30
-rw-r--r--source/ru/helpcontent2/source/text/simpress/02.po20
-rw-r--r--source/ru/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/ru/sc/messages.po20
-rw-r--r--source/ru/scp2/source/ooo.po20
-rw-r--r--source/ru/sd/messages.po8
-rw-r--r--source/ru/sfx2/messages.po178
-rw-r--r--source/ru/sw/messages.po188
-rw-r--r--source/rw/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/rw/sc/messages.po14
-rw-r--r--source/rw/scp2/source/ooo.po20
-rw-r--r--source/rw/sd/messages.po6
-rw-r--r--source/rw/sfx2/messages.po178
-rw-r--r--source/rw/sw/messages.po178
-rw-r--r--source/sa-IN/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/sa-IN/sc/messages.po18
-rw-r--r--source/sa-IN/scp2/source/ooo.po20
-rw-r--r--source/sa-IN/sd/messages.po8
-rw-r--r--source/sa-IN/sfx2/messages.po178
-rw-r--r--source/sa-IN/sw/messages.po188
-rw-r--r--source/sah/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/sah/sc/messages.po14
-rw-r--r--source/sah/scp2/source/ooo.po20
-rw-r--r--source/sah/sd/messages.po6
-rw-r--r--source/sah/sfx2/messages.po176
-rw-r--r--source/sah/sw/messages.po178
-rw-r--r--source/sat/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/sat/sc/messages.po18
-rw-r--r--source/sat/scp2/source/ooo.po20
-rw-r--r--source/sat/sd/messages.po8
-rw-r--r--source/sat/sfx2/messages.po178
-rw-r--r--source/sat/sw/messages.po188
-rw-r--r--source/sd/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/sd/sc/messages.po18
-rw-r--r--source/sd/scp2/source/ooo.po20
-rw-r--r--source/sd/sd/messages.po8
-rw-r--r--source/sd/sfx2/messages.po178
-rw-r--r--source/sd/sw/messages.po188
-rw-r--r--source/si/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/si/helpcontent2/source/text/scalc/guide.po22
-rw-r--r--source/si/helpcontent2/source/text/sdraw.po6
-rw-r--r--source/si/helpcontent2/source/text/sdraw/01.po132
-rw-r--r--source/si/helpcontent2/source/text/shared/01.po78
-rw-r--r--source/si/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/si/helpcontent2/source/text/shared/menu.po24
-rw-r--r--source/si/helpcontent2/source/text/simpress/01.po28
-rw-r--r--source/si/helpcontent2/source/text/simpress/02.po16
-rw-r--r--source/si/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/si/sc/messages.po14
-rw-r--r--source/si/scp2/source/ooo.po20
-rw-r--r--source/si/sd/messages.po6
-rw-r--r--source/si/sfx2/messages.po178
-rw-r--r--source/si/sw/messages.po178
-rw-r--r--source/sid/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/sid/helpcontent2/source/text/scalc/guide.po30
-rw-r--r--source/sid/helpcontent2/source/text/sdraw.po6
-rw-r--r--source/sid/helpcontent2/source/text/sdraw/01.po132
-rw-r--r--source/sid/helpcontent2/source/text/shared/01.po72
-rw-r--r--source/sid/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/sid/helpcontent2/source/text/shared/menu.po24
-rw-r--r--source/sid/helpcontent2/source/text/simpress/01.po28
-rw-r--r--source/sid/helpcontent2/source/text/simpress/02.po20
-rw-r--r--source/sid/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/sid/sc/messages.po20
-rw-r--r--source/sid/scp2/source/ooo.po20
-rw-r--r--source/sid/sd/messages.po9
-rw-r--r--source/sid/sfx2/messages.po178
-rw-r--r--source/sid/sw/messages.po193
-rw-r--r--source/sk/connectivity/registry/ado/org/openoffice/Office/DataAccess.po10
-rw-r--r--source/sk/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po8
-rw-r--r--source/sk/dictionaries/pt_BR/dialog.po8
-rw-r--r--source/sk/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po8
-rw-r--r--source/sk/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po8
-rw-r--r--source/sk/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/sk/helpcontent2/source/text/scalc/guide.po30
-rw-r--r--source/sk/helpcontent2/source/text/sdraw.po6
-rw-r--r--source/sk/helpcontent2/source/text/sdraw/01.po132
-rw-r--r--source/sk/helpcontent2/source/text/shared/01.po70
-rw-r--r--source/sk/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/sk/helpcontent2/source/text/shared/menu.po26
-rw-r--r--source/sk/helpcontent2/source/text/simpress/01.po30
-rw-r--r--source/sk/helpcontent2/source/text/simpress/02.po20
-rw-r--r--source/sk/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/sk/sc/messages.po20
-rw-r--r--source/sk/scp2/source/ooo.po22
-rw-r--r--source/sk/sd/messages.po10
-rw-r--r--source/sk/sfx2/messages.po186
-rw-r--r--source/sk/svtools/messages.po8
-rw-r--r--source/sk/svx/messages.po58
-rw-r--r--source/sk/sw/messages.po188
-rw-r--r--source/sq/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/sq/helpcontent2/source/text/scalc/guide.po22
-rw-r--r--source/sq/helpcontent2/source/text/sdraw.po6
-rw-r--r--source/sq/helpcontent2/source/text/sdraw/01.po132
-rw-r--r--source/sq/helpcontent2/source/text/shared/01.po68
-rw-r--r--source/sq/helpcontent2/source/text/shared/02.po12
-rw-r--r--source/sq/helpcontent2/source/text/shared/menu.po24
-rw-r--r--source/sq/helpcontent2/source/text/simpress/01.po30
-rw-r--r--source/sq/helpcontent2/source/text/simpress/02.po16
-rw-r--r--source/sq/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/sq/sc/messages.po20
-rw-r--r--source/sq/scp2/source/ooo.po20
-rw-r--r--source/sq/sd/messages.po9
-rw-r--r--source/sq/sfx2/messages.po176
-rw-r--r--source/sq/sw/messages.po190
-rw-r--r--source/sr-Latn/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/sr-Latn/sc/messages.po20
-rw-r--r--source/sr-Latn/scp2/source/ooo.po20
-rw-r--r--source/sr-Latn/sd/messages.po9
-rw-r--r--source/sr-Latn/sfx2/messages.po178
-rw-r--r--source/sr-Latn/sw/messages.po193
-rw-r--r--source/sr/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/sr/sc/messages.po20
-rw-r--r--source/sr/scp2/source/ooo.po20
-rw-r--r--source/sr/sd/messages.po9
-rw-r--r--source/sr/sfx2/messages.po178
-rw-r--r--source/sr/sw/messages.po188
-rw-r--r--source/ss/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/ss/sc/messages.po14
-rw-r--r--source/ss/scp2/source/ooo.po20
-rw-r--r--source/ss/sd/messages.po6
-rw-r--r--source/ss/sfx2/messages.po178
-rw-r--r--source/ss/sw/messages.po178
-rw-r--r--source/st/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/st/sc/messages.po14
-rw-r--r--source/st/scp2/source/ooo.po20
-rw-r--r--source/st/sd/messages.po6
-rw-r--r--source/st/sfx2/messages.po178
-rw-r--r--source/st/sw/messages.po178
-rw-r--r--source/sun/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/sun/sc/messages.po14
-rw-r--r--source/sun/scp2/source/ooo.po20
-rw-r--r--source/sun/sd/messages.po6
-rw-r--r--source/sun/sfx2/messages.po176
-rw-r--r--source/sun/sw/messages.po178
-rw-r--r--source/sv/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/sv/helpcontent2/source/text/scalc/guide.po30
-rw-r--r--source/sv/helpcontent2/source/text/sdraw.po6
-rw-r--r--source/sv/helpcontent2/source/text/sdraw/01.po132
-rw-r--r--source/sv/helpcontent2/source/text/shared/01.po78
-rw-r--r--source/sv/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/sv/helpcontent2/source/text/shared/menu.po24
-rw-r--r--source/sv/helpcontent2/source/text/simpress/01.po30
-rw-r--r--source/sv/helpcontent2/source/text/simpress/02.po20
-rw-r--r--source/sv/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/sv/sc/messages.po22
-rw-r--r--source/sv/scp2/source/ooo.po22
-rw-r--r--source/sv/sd/messages.po8
-rw-r--r--source/sv/sfx2/messages.po200
-rw-r--r--source/sv/sw/messages.po188
-rw-r--r--source/sw-TZ/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/sw-TZ/sc/messages.po14
-rw-r--r--source/sw-TZ/scp2/source/ooo.po20
-rw-r--r--source/sw-TZ/sd/messages.po6
-rw-r--r--source/sw-TZ/sfx2/messages.po178
-rw-r--r--source/sw-TZ/sw/messages.po178
-rw-r--r--source/szl/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/szl/sc/messages.po18
-rw-r--r--source/szl/scp2/source/ooo.po20
-rw-r--r--source/szl/sd/messages.po8
-rw-r--r--source/szl/sfx2/messages.po176
-rw-r--r--source/szl/sw/messages.po190
-rw-r--r--source/ta/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/ta/helpcontent2/source/text/scalc/guide.po26
-rw-r--r--source/ta/helpcontent2/source/text/sdraw.po6
-rw-r--r--source/ta/helpcontent2/source/text/sdraw/01.po132
-rw-r--r--source/ta/helpcontent2/source/text/shared/01.po70
-rw-r--r--source/ta/helpcontent2/source/text/shared/02.po12
-rw-r--r--source/ta/helpcontent2/source/text/shared/menu.po26
-rw-r--r--source/ta/helpcontent2/source/text/simpress/01.po30
-rw-r--r--source/ta/helpcontent2/source/text/simpress/02.po16
-rw-r--r--source/ta/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/ta/sc/messages.po18
-rw-r--r--source/ta/scp2/source/ooo.po20
-rw-r--r--source/ta/sd/messages.po8
-rw-r--r--source/ta/sfx2/messages.po178
-rw-r--r--source/ta/sw/messages.po188
-rw-r--r--source/te/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/te/sc/messages.po18
-rw-r--r--source/te/scp2/source/ooo.po20
-rw-r--r--source/te/sd/messages.po8
-rw-r--r--source/te/sfx2/messages.po178
-rw-r--r--source/te/sw/messages.po188
-rw-r--r--source/tg/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/tg/helpcontent2/source/text/scalc/guide.po30
-rw-r--r--source/tg/helpcontent2/source/text/sdraw.po6
-rw-r--r--source/tg/helpcontent2/source/text/sdraw/01.po132
-rw-r--r--source/tg/helpcontent2/source/text/shared/01.po70
-rw-r--r--source/tg/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/tg/helpcontent2/source/text/shared/menu.po24
-rw-r--r--source/tg/helpcontent2/source/text/simpress/01.po30
-rw-r--r--source/tg/helpcontent2/source/text/simpress/02.po16
-rw-r--r--source/tg/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/tg/sc/messages.po20
-rw-r--r--source/tg/scp2/source/ooo.po20
-rw-r--r--source/tg/sd/messages.po9
-rw-r--r--source/tg/sfx2/messages.po178
-rw-r--r--source/tg/sw/messages.po193
-rw-r--r--source/th/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/th/sc/messages.po22
-rw-r--r--source/th/scp2/source/ooo.po22
-rw-r--r--source/th/sd/messages.po8
-rw-r--r--source/th/sfx2/messages.po178
-rw-r--r--source/th/sw/messages.po188
-rw-r--r--source/ti/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/ti/sc/messages.po20
-rw-r--r--source/ti/scp2/source/ooo.po20
-rw-r--r--source/ti/sd/messages.po9
-rw-r--r--source/ti/sfx2/messages.po176
-rw-r--r--source/ti/sw/messages.po193
-rw-r--r--source/tn/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/tn/sc/messages.po14
-rw-r--r--source/tn/scp2/source/ooo.po20
-rw-r--r--source/tn/sd/messages.po6
-rw-r--r--source/tn/sfx2/messages.po178
-rw-r--r--source/tn/sw/messages.po178
-rw-r--r--source/tr/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/tr/helpcontent2/source/text/scalc/guide.po30
-rw-r--r--source/tr/helpcontent2/source/text/sdraw.po6
-rw-r--r--source/tr/helpcontent2/source/text/sdraw/01.po132
-rw-r--r--source/tr/helpcontent2/source/text/shared/01.po78
-rw-r--r--source/tr/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/tr/helpcontent2/source/text/shared/menu.po26
-rw-r--r--source/tr/helpcontent2/source/text/simpress/01.po30
-rw-r--r--source/tr/helpcontent2/source/text/simpress/02.po20
-rw-r--r--source/tr/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/tr/sc/messages.po22
-rw-r--r--source/tr/scp2/source/ooo.po22
-rw-r--r--source/tr/sd/messages.po8
-rw-r--r--source/tr/sfx2/messages.po200
-rw-r--r--source/tr/sw/messages.po190
-rw-r--r--source/ts/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/ts/sc/messages.po14
-rw-r--r--source/ts/scp2/source/ooo.po20
-rw-r--r--source/ts/sd/messages.po6
-rw-r--r--source/ts/sfx2/messages.po178
-rw-r--r--source/ts/sw/messages.po178
-rw-r--r--source/tt/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/tt/sc/messages.po14
-rw-r--r--source/tt/scp2/source/ooo.po20
-rw-r--r--source/tt/sd/messages.po6
-rw-r--r--source/tt/sfx2/messages.po178
-rw-r--r--source/tt/sw/messages.po178
-rw-r--r--source/ug/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/ug/helpcontent2/source/text/scalc/guide.po22
-rw-r--r--source/ug/helpcontent2/source/text/sdraw.po6
-rw-r--r--source/ug/helpcontent2/source/text/sdraw/01.po132
-rw-r--r--source/ug/helpcontent2/source/text/shared/01.po70
-rw-r--r--source/ug/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/ug/helpcontent2/source/text/shared/menu.po24
-rw-r--r--source/ug/helpcontent2/source/text/simpress/01.po30
-rw-r--r--source/ug/helpcontent2/source/text/simpress/02.po18
-rw-r--r--source/ug/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/ug/sc/messages.po20
-rw-r--r--source/ug/scp2/source/ooo.po20
-rw-r--r--source/ug/sd/messages.po9
-rw-r--r--source/ug/sfx2/messages.po178
-rw-r--r--source/ug/sw/messages.po193
-rw-r--r--source/uk/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/uk/helpcontent2/source/text/scalc/guide.po30
-rw-r--r--source/uk/helpcontent2/source/text/sdraw.po8
-rw-r--r--source/uk/helpcontent2/source/text/sdraw/01.po134
-rw-r--r--source/uk/helpcontent2/source/text/shared/01.po70
-rw-r--r--source/uk/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/uk/helpcontent2/source/text/shared/menu.po26
-rw-r--r--source/uk/helpcontent2/source/text/simpress/01.po30
-rw-r--r--source/uk/helpcontent2/source/text/simpress/02.po20
-rw-r--r--source/uk/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/uk/sc/messages.po20
-rw-r--r--source/uk/scp2/source/ooo.po22
-rw-r--r--source/uk/sd/messages.po8
-rw-r--r--source/uk/sfx2/messages.po186
-rw-r--r--source/uk/sw/messages.po188
-rw-r--r--source/ur/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/ur/sc/messages.po14
-rw-r--r--source/ur/scp2/source/ooo.po20
-rw-r--r--source/ur/sd/messages.po6
-rw-r--r--source/ur/sfx2/messages.po178
-rw-r--r--source/ur/sw/messages.po178
-rw-r--r--source/uz/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/uz/sc/messages.po20
-rw-r--r--source/uz/scp2/source/ooo.po20
-rw-r--r--source/uz/sd/messages.po9
-rw-r--r--source/uz/sfx2/messages.po178
-rw-r--r--source/uz/sw/messages.po193
-rw-r--r--source/ve/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/ve/sc/messages.po14
-rw-r--r--source/ve/scp2/source/ooo.po20
-rw-r--r--source/ve/sd/messages.po6
-rw-r--r--source/ve/sfx2/messages.po178
-rw-r--r--source/ve/sw/messages.po178
-rw-r--r--source/vec/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/vec/sc/messages.po18
-rw-r--r--source/vec/scp2/source/ooo.po20
-rw-r--r--source/vec/sd/messages.po8
-rw-r--r--source/vec/sfx2/messages.po176
-rw-r--r--source/vec/sw/messages.po188
-rw-r--r--source/vi/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/vi/helpcontent2/source/text/scalc/guide.po30
-rw-r--r--source/vi/helpcontent2/source/text/sdraw.po6
-rw-r--r--source/vi/helpcontent2/source/text/sdraw/01.po132
-rw-r--r--source/vi/helpcontent2/source/text/shared/01.po78
-rw-r--r--source/vi/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/vi/helpcontent2/source/text/shared/menu.po24
-rw-r--r--source/vi/helpcontent2/source/text/simpress/01.po30
-rw-r--r--source/vi/helpcontent2/source/text/simpress/02.po20
-rw-r--r--source/vi/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/vi/sc/messages.po20
-rw-r--r--source/vi/scp2/source/ooo.po20
-rw-r--r--source/vi/sd/messages.po8
-rw-r--r--source/vi/sfx2/messages.po180
-rw-r--r--source/vi/sw/messages.po193
-rw-r--r--source/xh/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/xh/sc/messages.po14
-rw-r--r--source/xh/scp2/source/ooo.po20
-rw-r--r--source/xh/sd/messages.po6
-rw-r--r--source/xh/sfx2/messages.po178
-rw-r--r--source/xh/sw/messages.po178
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc/guide.po30
-rw-r--r--source/zh-CN/helpcontent2/source/text/sdraw.po6
-rw-r--r--source/zh-CN/helpcontent2/source/text/sdraw/01.po132
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/01.po78
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/menu.po26
-rw-r--r--source/zh-CN/helpcontent2/source/text/simpress/01.po30
-rw-r--r--source/zh-CN/helpcontent2/source/text/simpress/02.po20
-rw-r--r--source/zh-CN/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/zh-CN/sc/messages.po22
-rw-r--r--source/zh-CN/scp2/source/ooo.po22
-rw-r--r--source/zh-CN/sd/messages.po8
-rw-r--r--source/zh-CN/sfx2/messages.po186
-rw-r--r--source/zh-CN/sw/messages.po188
-rw-r--r--source/zh-TW/helpcontent2/source/text/scalc/01.po248
-rw-r--r--source/zh-TW/helpcontent2/source/text/scalc/guide.po30
-rw-r--r--source/zh-TW/helpcontent2/source/text/sdraw.po6
-rw-r--r--source/zh-TW/helpcontent2/source/text/sdraw/01.po132
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/01.po78
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/menu.po24
-rw-r--r--source/zh-TW/helpcontent2/source/text/simpress/01.po30
-rw-r--r--source/zh-TW/helpcontent2/source/text/simpress/02.po20
-rw-r--r--source/zh-TW/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/zh-TW/sc/messages.po22
-rw-r--r--source/zh-TW/scp2/source/ooo.po22
-rw-r--r--source/zh-TW/sd/messages.po8
-rw-r--r--source/zh-TW/sfx2/messages.po198
-rw-r--r--source/zh-TW/sw/messages.po188
-rw-r--r--source/zu/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/zu/sc/messages.po14
-rw-r--r--source/zu/scp2/source/ooo.po20
-rw-r--r--source/zu/sd/messages.po6
-rw-r--r--source/zu/sfx2/messages.po178
-rw-r--r--source/zu/sw/messages.po178
1417 files changed, 50260 insertions, 43940 deletions
diff --git a/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po
index 3f90fcbc3aa..0014cf7fc0c 100644
--- a/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-13 12:37+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-02-07 01:46+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/ab/>\n"
@@ -30138,14 +30138,14 @@ msgctxt ""
msgid "Columns"
msgstr "Аиҵаҩқәа"
-#. DqpFK
+#. oziQM
#: Sidebar.xcu
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.QuickFindPanel\n"
"Title\n"
"value.text"
-msgid "QuickFind"
+msgid "Quick Find"
msgstr ""
#. CDJWW
diff --git a/source/ab/sc/messages.po b/source/ab/sc/messages.po
index ffaad75ad5b..345aecf94e0 100644
--- a/source/ab/sc/messages.po
+++ b/source/ab/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-06-01 14:01+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/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.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542022333.000000\n"
#. kBovX
@@ -23140,11 +23140,11 @@ msgctxt "drawtemplatedialog|standard"
msgid "_Standard"
msgstr "Астандарт"
-#. jyFCi
+#. Dnnbp
#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
msgctxt "drawtemplatedialog|organizer"
-msgid "Organizer"
-msgstr "Анапхгара"
+msgid "General"
+msgstr ""
#. qSfk8
#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
@@ -28106,11 +28106,11 @@ msgctxt "pagetemplatedialog|PageTemplateDialog"
msgid "Page Style"
msgstr "Адаҟьа астиль"
-#. D22J5
+#. F6ehW
#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
msgctxt "pagetemplatedialog|organizer"
-msgid "Organizer"
-msgstr "Анапхгара"
+msgid "General"
+msgstr ""
#. CbW7A
#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
@@ -28184,11 +28184,11 @@ msgctxt "paratemplatedialog|ParaTemplateDialog"
msgid "Cell Style"
msgstr "Абларҭа астиль"
-#. AGL7z
+#. EMrke
#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
msgctxt "paratemplatedialog|organizer"
-msgid "Organizer"
-msgstr "Анапхгара"
+msgid "General"
+msgstr ""
#. asnEd
#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
diff --git a/source/ab/scp2/source/ooo.po b/source/ab/scp2/source/ooo.po
index efa8126d1e8..67014a7c322 100644
--- a/source/ab/scp2/source/ooo.po
+++ b/source/ab/scp2/source/ooo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-01-10 15:11+0100\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-02-17 01:45+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/scp2sourceooo/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: 1542022333.000000\n"
#. CYBGJ
@@ -2212,6 +2212,24 @@ msgctxt ""
msgid "Installs the Spanish user interface"
msgstr ""
+#. NreEY
+#: module_langpack.ulf
+msgctxt ""
+"module_langpack.ulf\n"
+"STR_NAME_MODULE_LANGPACK_SUN\n"
+"LngText.text"
+msgid "Sundanese"
+msgstr ""
+
+#. pa3r3
+#: module_langpack.ulf
+msgctxt ""
+"module_langpack.ulf\n"
+"STR_DESC_MODULE_LANGPACK_SUN\n"
+"LngText.text"
+msgid "Installs the Sundanese user interface"
+msgstr ""
+
#. zAWhn
#: module_langpack.ulf
msgctxt ""
diff --git a/source/ab/sd/messages.po b/source/ab/sd/messages.po
index cb5cda306e8..1074af4ae31 100644
--- a/source/ab/sd/messages.po
+++ b/source/ab/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-13 12:37+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-03-03 01:45+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/ab/>\n"
@@ -9560,11 +9560,11 @@ msgctxt "templatedialog|standard"
msgid "_Standard"
msgstr "_Астандарт"
-#. HsXnQ
+#. BXMVx
#: sd/uiconfig/simpress/ui/templatedialog.ui:126
msgctxt "templatedialog|organizer"
-msgid "Organizer"
-msgstr "Анапхгара"
+msgid "General"
+msgstr ""
#. 5d7Zo
#: sd/uiconfig/simpress/ui/templatedialog.ui:149
diff --git a/source/ab/sfx2/messages.po b/source/ab/sfx2/messages.po
index c682b38aac2..939ce6e910c 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: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\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"
@@ -2983,153 +2983,111 @@ msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Иарктәуп аганахьтәи апанель"
-#. pxEPn
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:18
-msgctxt "descriptioninfopage|label27"
-msgid "_Title:"
-msgstr "_Ахы:"
-
#. HqzQo
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:32
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:18
msgctxt "descriptioninfopage|label28"
msgid "_Subject:"
msgstr "_Атема:"
#. gEGPn
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:46
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:32
msgctxt "descriptioninfopage|label29"
msgid "_Keywords:"
msgstr "_Ихадароу ажәақәа:"
-#. FXZzx
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:61
-msgctxt "descriptioninfopage|label31"
-msgid "Co_ntributor:"
-msgstr ""
-
-#. eKsAC
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:76
-msgctxt "descriptioninfopage|label32"
-msgid "Co_verage:"
-msgstr ""
-
-#. Wtpt7
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:91
-msgctxt "descriptioninfopage|label37"
-msgid "_Identifier:"
-msgstr ""
-
-#. 73G3F
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:106
-msgctxt "descriptioninfopage|label39"
-msgid "_Publisher:"
-msgstr ""
-
-#. Axu5g
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:121
-msgctxt "descriptioninfopage|label40"
-msgid "R_elation:"
-msgstr ""
-
-#. AGDpc
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:136
-msgctxt "descriptioninfopage|label41"
-msgid "Ri_ghts:"
-msgstr ""
-
-#. eK4rF
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:151
-msgctxt "descriptioninfopage|label42"
-msgid "So_urce:"
-msgstr ""
-
-#. RFBPC
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:166
-msgctxt "descriptioninfopage|label45"
-msgid "T_ype:"
-msgstr ""
-
#. Nayo4
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:181
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:47
#, fuzzy
msgctxt "descriptioninfopage|label30"
msgid "_Comments:"
msgstr "Акомментариқәа:"
#. qw238
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:199
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:65
msgctxt "descriptioninfopage|extended_tip|title"
msgid "Enter a title for the document."
msgstr "Иҭажәгал адокумент ахьӡ"
#. rvZHi
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:216
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:82
msgctxt "descriptioninfopage|extended_tip|subject"
msgid "Enter a subject for the document. You can use a subject to group documents with similar contents."
msgstr ""
#. FoxGh
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:233
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:99
msgctxt "descriptioninfopage|extended_tip|keywords"
msgid "Enter the words that you want to use to index the content of your document. Keywords must be separated by commas. A keyword can contain white space characters or semicolons."
msgstr ""
#. 64GNQ
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:250
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:116
msgctxt "descriptioninfopage|extended_tip|contributor"
msgid "Enter the names of the people, organizations, or other entities that have made contributions to the document."
msgstr ""
-#. ECAfA
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:267
-msgctxt "descriptioninfopage|extended_tip|coverage"
-msgid "Enter the time, place, or jurisdiction that the document is relevant to."
+#. bo2q7
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:140
+msgctxt "descriptioninfopage|extended_tip|comments"
+msgid "Enter comments to help identify the document."
+msgstr ""
+
+#. pxEPn
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:155
+msgctxt "descriptioninfopage|label27"
+msgid "_Title:"
+msgstr "_Ахы:"
+
+#. x4CGE
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:170
+msgctxt "descriptioninfopage|type_contributor"
+msgid "Contributor"
msgstr ""
-#. EGix4
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:284
-msgctxt "descriptioninfopage|extended_tip|identifier"
-msgid "Enter a unique and unambiguous identifier for the document."
+#. AGXmA
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:171
+msgctxt "descriptioninfopage|type_coverage"
+msgid "Coverage"
msgstr ""
-#. FQphA
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:301
-msgctxt "descriptioninfopage|extended_tip|publisher"
-msgid "Enter the name of the entity that is making the document available."
+#. FDnBu
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:172
+msgctxt "descriptioninfopage|type_identifier"
+msgid "Identifier"
msgstr ""
-#. n8gwE
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:318
-msgctxt "descriptioninfopage|extended_tip|relation"
-msgid "Enter information about a resource related to the document."
+#. iTZFA
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:173
+msgctxt "descriptioninfopage|type_publisher"
+msgid "Publisher"
msgstr ""
-#. ZiijJ
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:335
-msgctxt "descriptioninfopage|extended_tip|rights"
-msgid "Enter information about intellectual property rights associated with the document."
+#. c5fHP
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:174
+msgctxt "descriptioninfopage|type_relation"
+msgid "Relation"
msgstr ""
-#. Nze95
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:352
-msgctxt "descriptioninfopage|extended_tip|source"
-msgid "Enter information about other resources from which the document is derived."
+#. FaGa4
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:175
+msgctxt "descriptioninfopage|type_rights"
+msgid "Rights"
msgstr ""
-#. UEyYw
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:369
-msgctxt "descriptioninfopage|extended_tip|type"
-msgid "Enter information about the category or format of the document."
+#. yDvSu
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:176
+msgctxt "descriptioninfopage|type_source"
+msgid "Source"
msgstr ""
-#. bo2q7
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:393
-msgctxt "descriptioninfopage|extended_tip|comments"
-msgid "Enter comments to help identify the document."
+#. 25AxF
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:177
+msgctxt "descriptioninfopage|type_types"
+msgid "Type"
msgstr ""
#. sGW3Z
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:406
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:187
msgctxt "descriptioninfopage|extended_tip|DescriptionInfoPage"
msgid "Contains descriptive information about the document."
msgstr ""
@@ -3390,87 +3348,87 @@ msgid "_Apply user data"
msgstr "Ихархәатәуп ахархәуаҩ изку адырқәа"
#. JFxmP
-#: sfx2/uiconfig/ui/documentinfopage.ui:197
+#: sfx2/uiconfig/ui/documentinfopage.ui:198
msgctxt "documentinfopage|reset"
msgid "Reset Properties"
msgstr "Иқәгатәуп"
#. HrN2U
-#: sfx2/uiconfig/ui/documentinfopage.ui:204
+#: sfx2/uiconfig/ui/documentinfopage.ui:205
msgctxt "documentinfopage|extended_tip|reset"
msgid "Resets the editing time to zero, the creation date to the current date and time, and the version number to 1. The modification and printing dates are also deleted."
msgstr ""
#. qeWvU
-#: sfx2/uiconfig/ui/documentinfopage.ui:215
+#: sfx2/uiconfig/ui/documentinfopage.ui:216
msgctxt "documentinfopage|signature"
msgid "Di_gital Signatures..."
msgstr "Ацифратә напаҵаҩрақәа..."
#. rEEgJ
-#: sfx2/uiconfig/ui/documentinfopage.ui:234
+#: sfx2/uiconfig/ui/documentinfopage.ui:235
msgctxt "documentinfopage|label11"
msgid "_Size:"
msgstr "Ашәагаа:"
#. WNFYB
-#: sfx2/uiconfig/ui/documentinfopage.ui:247
+#: sfx2/uiconfig/ui/documentinfopage.ui:248
msgctxt "documentinfopage|showsize"
msgid "unknown"
msgstr "идырӡам"
#. EgtLE
-#: sfx2/uiconfig/ui/documentinfopage.ui:262
+#: sfx2/uiconfig/ui/documentinfopage.ui:263
#, fuzzy
msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "Аҭыԥ:"
#. 9xhwo
-#: sfx2/uiconfig/ui/documentinfopage.ui:276
+#: sfx2/uiconfig/ui/documentinfopage.ui:277
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "Атип:"
#. ZLmAo
-#: sfx2/uiconfig/ui/documentinfopage.ui:299
+#: sfx2/uiconfig/ui/documentinfopage.ui:300
#, fuzzy
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Иԥсахтәуп ажәамаӡа"
#. oqAZE
-#: sfx2/uiconfig/ui/documentinfopage.ui:317
+#: sfx2/uiconfig/ui/documentinfopage.ui:318
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Ашаблон:"
#. 5pXPV
-#: sfx2/uiconfig/ui/documentinfopage.ui:366
+#: sfx2/uiconfig/ui/documentinfopage.ui:367
msgctxt "documentinfopage|extended_tip|nameed"
msgid "Displays the file name."
msgstr "Афаил ахьӡ аарԥшра."
#. LCDUj
-#: sfx2/uiconfig/ui/documentinfopage.ui:397
+#: sfx2/uiconfig/ui/documentinfopage.ui:398
msgctxt "documentinfopage|thumbnailsavecb"
msgid "Save preview image with this document"
msgstr "Eиқәырхатәуп аескиз адокумент аҟны"
#. 6bF5w
-#: sfx2/uiconfig/ui/documentinfopage.ui:416
+#: sfx2/uiconfig/ui/documentinfopage.ui:419
msgctxt "documentinfopage|image-preferred-dpi-checkbutton"
msgid "Preferred resolution for images:"
msgstr ""
#. pukYD
-#: sfx2/uiconfig/ui/documentinfopage.ui:466
+#: sfx2/uiconfig/ui/documentinfopage.ui:467
msgctxt "documentinfopage|image-preferred-ppi-unit"
msgid "ppi"
msgstr "ppi"
#. VWjRu
-#: sfx2/uiconfig/ui/documentinfopage.ui:500
+#: sfx2/uiconfig/ui/documentinfopage.ui:508
msgctxt "documentinfopage|extended_tip|DocumentInfoPage"
msgid "Contains basic information about the current file."
msgstr "Ари афаил иазку, ихадоу аинформациа"
diff --git a/source/ab/sw/messages.po b/source/ab/sw/messages.po
index 540d7d8c4e7..04d4f083d67 100644
--- a/source/ab/sw/messages.po
+++ b/source/ab/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-02-26 01:45+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/ab/>\n"
@@ -15546,159 +15546,159 @@ msgid "This is where you insert the references or referenced fields into the cur
msgstr ""
#. jXhPb
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:71
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:73
msgctxt "fldvarpage|nameft"
msgid "Na_me:"
msgstr ""
#. juXJz
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:89
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:91
msgctxt "fldvarpage|extended_tip|name"
msgid "Type the name of the user-defined field to create."
msgstr "Иҭажәгал иаԥҵахо ахархәаҩ иҭакыра ахьӡ."
#. mA2Cx
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:105
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:107
msgctxt "fldvarpage|valueft"
msgid "_Value:"
msgstr ""
#. onRpf
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:130
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:132
msgctxt "fldvarpage|extended_tip|value"
msgid "Enter the contents to add to a user-defined field."
msgstr ""
#. BLiKH
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:154
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:156
msgctxt "fldvarpage|apply|tooltip_text"
msgid "Apply"
msgstr "Ихархәатәуп"
#. iLGxP
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:160
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:162
msgctxt "fldvarpage|extended_tip|apply"
msgid "Adds the user-defined field to the Select list."
msgstr "Иацнаҵоит ахархәаҩ иҭакыра алхра асиа ахь."
#. GKfDe
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:174
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:176
msgctxt "fldvarpage|delete|tooltip_text"
msgid "Delete"
msgstr "Ианыхтәуп"
#. bGYju
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:180
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:182
msgctxt "fldvarpage|extended_tip|delete"
msgid "Removes the user-defined field from the select list. You can only remove fields that are not used in the current document."
msgstr ""
#. EMeve
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:246
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:248
msgctxt "fldvarpage|extended_tip|type"
msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Select list, and then click Insert."
msgstr ""
#. MYGxL
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:257
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:259
#, fuzzy
msgctxt "fldvarpage|label1"
msgid "_Type"
msgstr "Атип:"
#. YfUrq
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:312
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:314
msgctxt "fldvarpage|extended_tip|select"
msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, and then click Insert."
msgstr ""
#. JFbpp
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:323
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:325
msgctxt "fldvarpage|label2"
msgid "_Select"
msgstr "Алхра"
#. eLoJ7
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:386
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:388
msgctxt "fldvarpage|extended_tip|numformat"
msgid "Click the format to apply to the selected field, or click \"Additional formats\" to define a custom format."
msgstr ""
#. bAzUU
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:431
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:433
msgctxt "fldvarpage|extended_tip|format"
msgid "In the Format list, define if the value is inserted as text or as number."
msgstr ""
#. qPpKb
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:445
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:447
#, fuzzy
msgctxt "fldvarpage|invisible"
msgid "Invisi_ble"
msgstr "иубарҭам"
#. 4SBL9
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:453
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:455
msgctxt "fldvarpage|extended_tip|invisible"
msgid "Hides the field contents in the document."
msgstr "Иаҵәахуеит адокумент аҟны аҭакыра аҵанакы."
#. jUrib
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:484
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:486
msgctxt "fldvarpage|label5"
msgid "_Up to level:"
msgstr "Аҩаӡара аҟынӡа:"
#. uXVGk
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:497
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:499
msgctxt "fldvarpage|separatorft"
msgid "Se_parator:"
msgstr "Аиҟәшага:"
#. xWPdj
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:511
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:513
msgctxt "fldvarpage|level|tooltip_text"
msgid "Choose heading number to prepend to displayed field, where the number comes from the first prior heading whose outline level is equal to or less than the selected outline level. If [None] is selected, no heading number is displayed."
msgstr ""
#. B2VKZ
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:513
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:515
msgctxt "fldvarpage|level"
msgid "[None]"
msgstr "[Мап]"
#. 3eiSX
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:517
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:519
msgctxt "fldvarpage|extended_tip|level"
msgid "Choose heading number to prepend to displayed field, where the number comes from the first prior heading whose outline level is equal to or less than the selected outline level. For example, select “2” to use the heading number of the first prior heading that has outline level 2 or less. If “None” is selected, no heading number is displayed. To use this option, heading numbers must be enabled. Use “Tools - Heading Numbering”."
msgstr ""
#. Bnsut
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:530
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:532
msgctxt "fldvarpage|separator|tooltip_text"
msgid "Enter the character to use as a separator between the heading number and the field number."
msgstr ""
#. ECBav
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:533
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:535
msgctxt "fldvarpage|separator"
msgid "."
msgstr "."
#. 3dC3P
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:537
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:539
msgctxt "fldvarpage|extended_tip|separator"
msgid "Enter the character to use as a separator between the heading number and the field number."
msgstr ""
#. GgDBN
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:552
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:554
msgctxt "fldvarpage|label4"
msgid "With Heading Number"
msgstr ""
#. WRjtn
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:573
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:575
msgctxt "fldvarpage|label3"
msgid "_Format"
msgstr "Аформат"
@@ -21388,284 +21388,278 @@ msgctxt "navigatorcontextmenu|STR_DEMOTE_LEVEL"
msgid "Demote Outline Level"
msgstr "Иазырҵатәуп аструктура аҩаӡара"
-#. tukRq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:105
-msgctxt "navigatorcontextmenu|STR_REMOVE_INDEX"
-msgid "_Remove Index"
-msgstr "Ианыхтәуп арбага"
-
#. C4355
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:113
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:105
msgctxt "navigatorcontextmenu|STR_UPDATE"
msgid "_Update"
msgstr "Ирҿыцтәуп"
#. BtCca
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:121
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:113
msgctxt "navigatorcontextmenu|STR_EDIT_ENTRY"
msgid "Edit..."
msgstr "Ариашара..."
#. BYyhD
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:129
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:121
msgctxt "navigatorcontextmenu|STR_REMOVE_TBL_PROTECTION"
msgid "_Unprotect"
msgstr "Иқәгатәуп ахьчара"
#. 6KWWG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:137
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:129
msgctxt "navigatorcontextmenu|STR_READONLY_IDX"
msgid "Read-_only"
msgstr "Аԥхьара мацараз"
#. Z46XG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:145
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:137
msgctxt "navigatorcontextmenu|STR_DELETE_TABLE"
msgid "Delete Table"
msgstr "Ианыхтәуп атаблица"
#. nWZCB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:154
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:146
msgctxt "navigatorcontextmenu|STR_DELETE_FRAME"
msgid "Delete Frame"
msgstr "Ианыхтәуп арамка"
#. iA4dL
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:163
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:155
msgctxt "navigatorcontextmenu|STR_DELETE_IMAGE"
msgid "Delete Image"
msgstr "Ианыхтәуп асахьа"
#. PeDxb
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:172
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:164
msgctxt "navigatorcontextmenu|STR_DELETE_OLE_OBJECT"
msgid "Delete OLE object"
msgstr "Ианыхтәуп OLE аобиект"
#. gGdPe
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:181
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:173
msgctxt "navigatorcontextmenu|STR_DELETE_BOOKMARK"
msgid "Delete Bookmark"
msgstr "Ианыхтәуп агәылаҵа"
#. CYbsq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:190
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:182
msgctxt "navigatorcontextmenu|STR_DELETE_REGION"
msgid "Delete Section"
msgstr ""
#. NzaP7
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:199
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:191
msgctxt "navigatorcontextmenu|STR_DELETE_HYPERLINK"
msgid "Delete Hyperlink"
msgstr "Ианыхтәуп агиперзхьарԥш"
#. hNJRX
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:208
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:200
msgctxt "navigatorcontextmenu|STR_DELETE_REFERENCE"
msgid "Delete Reference"
msgstr "Ианыхтәуп азхьарԥш"
#. LaCMh
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:216
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:208
msgctxt "navigatorcontextmenu|STR_DELETE_INDEX"
msgid "Delete Index"
msgstr "Ианыхтәуп арбага"
#. cEyZC
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:225
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:217
msgctxt "navigatorcontextmenu|STR_DELETE_COMMENT"
msgid "Delete Comment"
msgstr "Ианыхтәуп акомментари"
#. AuAjE
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:234
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:226
msgctxt "navigatorcontextmenu|STR_DELETE_DRAWING_OBJECT"
msgid "Delete Drawing object"
msgstr "Ианыхтәуп асахьа"
#. RhyGG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:243
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:235
msgctxt "navigatorcontextmenu|STR_DELETE_FIELD"
msgid "Delete Field"
msgstr "Ианыхтәуп аҭакыра"
#. GGzCM
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:252
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:244
msgctxt "navigatorcontextmenu|STR_DELETE_ALL_FOOTNOTES"
msgid "Delete All Footnotes"
msgstr ""
#. kyGVJ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:260
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:252
msgctxt "navigatorcontextmenu|STR_DELETE_ALL_ENDNOTES"
msgid "Delete All Endnotes"
msgstr ""
#. AZchK
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:269
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:261
msgctxt "navigatorcontextmenu|STR_DELETE_FOOTNOTE"
msgid "Delete Footnote"
msgstr ""
#. Cv2Cu
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:278
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:270
msgctxt "navigatorcontextmenu|STR_DELETE_ENDNOTE"
msgid "Delete Endnote"
msgstr ""
#. CUqD5
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:287
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:279
msgctxt "navigatorcontextmenu|STR_RENAME"
msgid "_Rename..."
msgstr "Ахьӡ ԥсахтәуп..."
#. f9jYB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:295
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:287
msgctxt "navigatorcontextmenu|STR_PROTECT_SECTION"
msgid "Protect Section"
msgstr ""
#. MEGAM
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:303
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:295
msgctxt "navigatorcontextmenu|STR_HIDE_SECTION"
msgid "Hide Section"
msgstr ""
#. U5nAb
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:311
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:303
msgctxt "navigatorcontextmenu|STR_POSTIT_SHOW"
msgid "Show All"
msgstr "Иаарԥштәуп зегьы"
#. E2wWp
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:319
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:311
msgctxt "navigatorcontextmenu|STR_POSTIT_HIDE"
msgid "Hide All"
msgstr "Иҵәахтәуп зегьы"
#. aDRke
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:327
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:319
msgctxt "navigatorcontextmenu|STR_POSTIT_DELETE"
msgid "Delete All"
msgstr "Ианыхтәуп зегьы"
#. YBipC
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:341
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:333
msgctxt "navigatorcontextmenu|STR_OUTLINE_CONTENT"
msgid "Outline Folding"
msgstr "Аструктура аикәарҳәра"
#. EBK2E
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:361
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:353
msgctxt "navigatorcontextmenu|STR_OUTLINE_TRACKING"
msgid "Outline Tracking"
msgstr "Аструктура ацклаԥшра"
#. fZEEr
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:375
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:367
msgctxt "navigatorcontextmenu|STR_TABLE_TRACKING"
msgid "Table Tracking"
msgstr "Атаблицақәа рыцклаԥшра"
#. 7oCFa
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:383
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:375
msgctxt "navigatorcontextmenu|STR_SECTION_TRACKING"
msgid "Section Tracking"
msgstr "Аҟәшақәа рыцклаԥшра"
#. YmjQf
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:391
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:383
msgctxt "navigatorcontextmenu|STR_FRAME_TRACKING"
msgid "Frame Tracking"
msgstr ""
#. vhxX5
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:399
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:391
msgctxt "navigatorcontextmenu|STR_IMAGE_TRACKING"
msgid "Image Tracking"
msgstr "Асахьақәа рыцклаԥшра"
#. mcYqZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:407
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:399
msgctxt "navigatorcontextmenu|STR_OLE_OBJECT_TRACKING"
msgid "OLE Object Tracking"
msgstr "OLE аобиектқәа рыцклаԥшра"
#. DRaED
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:415
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:407
msgctxt "navigatorcontextmenu|STR_BOOKMARK_TRACKING"
msgid "Bookmark Tracking"
msgstr "Агәылаҵақәа рыцклаԥшра"
#. vpLmh
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:423
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:415
msgctxt "navigatorcontextmenu|STR_HYPERLINK_TRACKING"
msgid "Hyperlink Tracking"
msgstr "Агиперзхьарԥшқәа рыцклаԥшра"
#. EvBzN
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:431
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:423
msgctxt "navigatorcontextmenu|STR_REFERENCE_TRACKING"
msgid "Reference Tracking"
msgstr "Азхьарԥшқәа рыцклаԥшра"
#. M8Bes
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:439
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:431
msgctxt "navigatorcontextmenu|STR_INDEX_TRACKING"
msgid "Index Tracking"
msgstr "Арбагақәа рыцклаԥшра"
#. KBFwM
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:447
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:439
msgctxt "navigatorcontextmenu|STR_COMMENT_TRACKING"
msgid "Comment Tracking"
msgstr "Акомментариқәа рыцклаԥшра"
#. oGavB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:455
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:447
msgctxt "navigatorcontextmenu|STR_DRAWING_OBJECT_TRACKING"
msgid "Drawing Object Tracking"
msgstr "Асахьақәа рыцклаԥшра"
#. w8FTW
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:463
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:455
msgctxt "navigatorcontextmenu|STR_FIELD_TRACKING"
msgid "Field Tracking"
msgstr "Аҭакырақәа рыцклаԥшра"
#. BoCeZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:471
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:463
msgctxt "navigatorcontextmenu|STR_FOOTNOTE_TRACKING"
msgid "Footnote Tracking"
msgstr "Албаагақәа рыцклаԥшра"
#. QqAhu
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:479
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:471
msgctxt "navigatorcontextmenu|STR_ENDNOTE_TRACKING"
msgid "Endnote Tracking"
msgstr "Анҵәамҭатә лбаагақәа рыцклаԥшра"
#. vBGAw
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:487
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:479
msgctxt "navigatorcontextmenu|STR_SORT_ALPHABETICALLY"
msgid "Sort Alphabetically"
msgstr "Исорттәуп алфавитла"
#. cqtBF
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:501
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:493
msgctxt "navigatorcontextmenu|STR_OUTLINE_LEVEL"
msgid "Show Up to Outline Level"
msgstr "Иаарԥштәуп аструктура аҩаӡара аҟынӡа"
#. Zehx2
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:515
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:507
msgctxt "navigatorcontextmenu|STR_DISPLAY"
msgid "Display"
msgstr "Иаарԥштәуп"
#. bgZoy
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:535
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:527
msgctxt "navigatorcontextmenu|STR_COLLAPSE_ALL_CATEGORIES"
msgid "Collapse All Categories"
msgstr "Еикәарҳәтәуп акатегориақәа зегьы"
@@ -28014,6 +28008,12 @@ msgctxt "selecttabledialog|extended_tip|SelectTableDialog"
msgid "Select the table that you want to use for mail merge addresses."
msgstr ""
+#. RWLE7
+#: sw/uiconfig/swriter/ui/sidebarquickfind.ui:36
+msgctxt "sidebarquickfind|find"
+msgid "Find"
+msgstr ""
+
#. DSVQt
#: sw/uiconfig/swriter/ui/sidebartableedit.ui:46
msgctxt "sidebatableedit|rowheight|tooltip_text"
@@ -29164,11 +29164,11 @@ msgctxt "templatedialog1|extended_tip|reset"
msgid "Revert any changes made on the tab shown here to the settings that were present when this dialog was opened."
msgstr ""
-#. UH8Vz
+#. Zp6EK
#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
msgctxt "templatedialog1|organizer"
-msgid "Organizer"
-msgstr "Анапхгара"
+msgid "General"
+msgstr ""
#. BvEuD
#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
@@ -29219,11 +29219,11 @@ msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr "Ахьӡ рыҭатәуп нас иҵәахтәуп ахархәаҩ истильқәа"
-#. tA5vb
+#. Tuygv
#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
msgctxt "templatedialog16|organizer"
-msgid "Organizer"
-msgstr "Анапхгара"
+msgid "General"
+msgstr ""
#. 7MAbD
#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
@@ -29303,11 +29303,11 @@ msgctxt "templatedialog2|TemplateDialog2"
msgid "Paragraph Style"
msgstr "Абзац астиль"
-#. 2NhWM
+#. FDfTt
#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
-msgid "Organizer"
-msgstr "Анапхгара"
+msgid "General"
+msgstr ""
#. G7U5N
#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
@@ -29419,11 +29419,11 @@ msgctxt "templatedialog4|TemplateDialog4"
msgid "Frame Style"
msgstr ""
-#. 8dRdE
+#. wSfp8
#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
msgctxt "templatedialog4|organizer"
-msgid "Organizer"
-msgstr "Анапхгара"
+msgid "General"
+msgstr ""
#. Q2PQs
#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
@@ -29487,11 +29487,11 @@ msgctxt "templatedialog8|standard"
msgid "Standard"
msgstr "Ишыҟоу еиԥш"
-#. BvGbL
+#. LTNWZ
#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
msgctxt "templatedialog8|organizer"
-msgid "Organizer"
-msgstr "Анапхгара"
+msgid "General"
+msgstr ""
#. UbZRu
#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
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 14b4c8e8526..d2e7b20ec39 100644
--- a/source/af/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/af/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-13 12:37+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-05-17 12:35+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/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: 1560976865.000000\n"
#. W5ukN
@@ -30138,15 +30138,15 @@ msgctxt ""
msgid "Columns"
msgstr "Kolomme"
-#. DqpFK
+#. oziQM
#: Sidebar.xcu
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.QuickFindPanel\n"
"Title\n"
"value.text"
-msgid "QuickFind"
-msgstr "BlitsVind"
+msgid "Quick Find"
+msgstr ""
#. CDJWW
#: StartModuleWindowState.xcu
diff --git a/source/af/sc/messages.po b/source/af/sc/messages.po
index c3b23b83540..ca8378cfd7d 100644
--- a/source/af/sc/messages.po
+++ b/source/af/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-05-26 17:38+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/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: 1560976792.000000\n"
#. kBovX
@@ -23174,11 +23174,11 @@ msgctxt "drawtemplatedialog|standard"
msgid "_Standard"
msgstr "_Standaard"
-#. jyFCi
+#. Dnnbp
#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
msgctxt "drawtemplatedialog|organizer"
-msgid "Organizer"
-msgstr "Organiseeerder"
+msgid "General"
+msgstr ""
#. qSfk8
#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
@@ -28121,11 +28121,11 @@ msgctxt "pagetemplatedialog|PageTemplateDialog"
msgid "Page Style"
msgstr "Bladsystyl"
-#. D22J5
+#. F6ehW
#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
msgctxt "pagetemplatedialog|organizer"
-msgid "Organizer"
-msgstr "Organiseerder"
+msgid "General"
+msgstr ""
#. CbW7A
#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
@@ -28199,11 +28199,11 @@ msgctxt "paratemplatedialog|ParaTemplateDialog"
msgid "Cell Style"
msgstr "Selstyle"
-#. AGL7z
+#. EMrke
#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
msgctxt "paratemplatedialog|organizer"
-msgid "Organizer"
-msgstr "Organiseerder"
+msgid "General"
+msgstr ""
#. asnEd
#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
diff --git a/source/af/scp2/source/ooo.po b/source/af/scp2/source/ooo.po
index a361d5026e1..bffa6f6d518 100644
--- a/source/af/scp2/source/ooo.po
+++ b/source/af/scp2/source/ooo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-01-10 15:11+0100\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-01-11 12:37+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/scp2sourceooo/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.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1560975729.000000\n"
#. CYBGJ
@@ -2212,6 +2212,24 @@ msgctxt ""
msgid "Installs the Spanish user interface"
msgstr "Installeer die gebruikerskoppelvlak vir Spaans"
+#. NreEY
+#: module_langpack.ulf
+msgctxt ""
+"module_langpack.ulf\n"
+"STR_NAME_MODULE_LANGPACK_SUN\n"
+"LngText.text"
+msgid "Sundanese"
+msgstr ""
+
+#. pa3r3
+#: module_langpack.ulf
+msgctxt ""
+"module_langpack.ulf\n"
+"STR_DESC_MODULE_LANGPACK_SUN\n"
+"LngText.text"
+msgid "Installs the Sundanese user interface"
+msgstr ""
+
#. zAWhn
#: module_langpack.ulf
msgctxt ""
diff --git a/source/af/sd/messages.po b/source/af/sd/messages.po
index 3568f79f4af..e8f277b641d 100644
--- a/source/af/sd/messages.po
+++ b/source/af/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-13 12:37+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-04-15 10:41+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/af/>\n"
@@ -9557,11 +9557,11 @@ msgctxt "templatedialog|standard"
msgid "_Standard"
msgstr "Standaard"
-#. HsXnQ
+#. BXMVx
#: sd/uiconfig/simpress/ui/templatedialog.ui:126
msgctxt "templatedialog|organizer"
-msgid "Organizer"
-msgstr "Organiseeerder"
+msgid "General"
+msgstr ""
#. 5d7Zo
#: sd/uiconfig/simpress/ui/templatedialog.ui:149
diff --git a/source/af/sfx2/messages.po b/source/af/sfx2/messages.po
index 59dff6274bb..3ec4aebd534 100644
--- a/source/af/sfx2/messages.po
+++ b/source/af/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-05-25 20:55+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/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: 1560975251.000000\n"
#. bHbFE
@@ -3017,152 +3017,110 @@ msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Sluit Sybalk"
-#. pxEPn
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:18
-msgctxt "descriptioninfopage|label27"
-msgid "_Title:"
-msgstr "_Titel:"
-
#. HqzQo
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:32
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:18
msgctxt "descriptioninfopage|label28"
msgid "_Subject:"
msgstr "_Onderwerp:"
#. gEGPn
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:46
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:32
msgctxt "descriptioninfopage|label29"
msgid "_Keywords:"
msgstr "S_leutelwoorde:"
-#. FXZzx
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:61
-msgctxt "descriptioninfopage|label31"
-msgid "Co_ntributor:"
-msgstr "By_draer:"
-
-#. eKsAC
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:76
-msgctxt "descriptioninfopage|label32"
-msgid "Co_verage:"
-msgstr "De_kking:"
-
-#. Wtpt7
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:91
-msgctxt "descriptioninfopage|label37"
-msgid "_Identifier:"
-msgstr "_Identifiseerder:"
-
-#. 73G3F
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:106
-msgctxt "descriptioninfopage|label39"
-msgid "_Publisher:"
-msgstr "_Publiseerder:"
-
-#. Axu5g
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:121
-msgctxt "descriptioninfopage|label40"
-msgid "R_elation:"
-msgstr "R_elasie:"
-
-#. AGDpc
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:136
-msgctxt "descriptioninfopage|label41"
-msgid "Ri_ghts:"
-msgstr "Re_gte:"
-
-#. eK4rF
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:151
-msgctxt "descriptioninfopage|label42"
-msgid "So_urce:"
-msgstr "Bron:"
-
-#. RFBPC
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:166
-msgctxt "descriptioninfopage|label45"
-msgid "T_ype:"
-msgstr "Tipe:"
-
#. Nayo4
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:181
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:47
msgctxt "descriptioninfopage|label30"
msgid "_Comments:"
msgstr "_Opmerkings:"
#. qw238
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:199
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:65
msgctxt "descriptioninfopage|extended_tip|title"
msgid "Enter a title for the document."
msgstr "Voer 'n titel vir die dokument in. Die titel mag verskil van die lêernaam."
#. rvZHi
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:216
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:82
msgctxt "descriptioninfopage|extended_tip|subject"
msgid "Enter a subject for the document. You can use a subject to group documents with similar contents."
msgstr "Voer 'n onderwerp vir die dokument in. So kan 'n onderwerp gebruik word om dokumente tematies te groepeer."
#. FoxGh
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:233
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:99
msgctxt "descriptioninfopage|extended_tip|keywords"
msgid "Enter the words that you want to use to index the content of your document. Keywords must be separated by commas. A keyword can contain white space characters or semicolons."
msgstr "Voer die sleutelwoorde in waarmee u die inhoud van die dokument wil indekseer. Individuele sleutelwoorde word deur komma's geskei. 'n Sleutelwoord kan spasies en kommapunte bevat."
#. 64GNQ
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:250
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:116
msgctxt "descriptioninfopage|extended_tip|contributor"
msgid "Enter the names of the people, organizations, or other entities that have made contributions to the document."
msgstr "Voer die name in van mense, organisasies of ander entiteite wat bydraes tot die dokument gemaak het."
-#. ECAfA
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:267
-msgctxt "descriptioninfopage|extended_tip|coverage"
-msgid "Enter the time, place, or jurisdiction that the document is relevant to."
-msgstr "Voer die tyd, plek of jurisdiksie in, wat relevant is tot die dokument."
-
-#. EGix4
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:284
-msgctxt "descriptioninfopage|extended_tip|identifier"
-msgid "Enter a unique and unambiguous identifier for the document."
-msgstr "Voer 'n unieke en ondubbelsinnige identifiseerder vir die dokument in."
-
-#. FQphA
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:301
-msgctxt "descriptioninfopage|extended_tip|publisher"
-msgid "Enter the name of the entity that is making the document available."
-msgstr "Voer die naam van die entiteit in, wat die dokument beskikbaar stel."
-
-#. n8gwE
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:318
-msgctxt "descriptioninfopage|extended_tip|relation"
-msgid "Enter information about a resource related to the document."
-msgstr "Voer inligting in oor 'n hulpbron wat met die dokument verband hou."
-
-#. ZiijJ
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:335
-msgctxt "descriptioninfopage|extended_tip|rights"
-msgid "Enter information about intellectual property rights associated with the document."
-msgstr "Voer inligting in oor intellektuele eiendomsregte geassosieer met die dokument."
-
-#. Nze95
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:352
-msgctxt "descriptioninfopage|extended_tip|source"
-msgid "Enter information about other resources from which the document is derived."
-msgstr "Voer inligting in oor ander hulpbronne waarvan die dokument afgelei is."
-
-#. UEyYw
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:369
-msgctxt "descriptioninfopage|extended_tip|type"
-msgid "Enter information about the category or format of the document."
-msgstr "Voer inligting oor die kategorie of formaat van die dokument in."
-
#. bo2q7
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:393
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:140
msgctxt "descriptioninfopage|extended_tip|comments"
msgid "Enter comments to help identify the document."
msgstr "Voer 'n opmerking in sodat u die dokument maklik kan identifiseer."
+#. pxEPn
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:155
+msgctxt "descriptioninfopage|label27"
+msgid "_Title:"
+msgstr "_Titel:"
+
+#. x4CGE
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:170
+msgctxt "descriptioninfopage|type_contributor"
+msgid "Contributor"
+msgstr ""
+
+#. AGXmA
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:171
+msgctxt "descriptioninfopage|type_coverage"
+msgid "Coverage"
+msgstr ""
+
+#. FDnBu
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:172
+msgctxt "descriptioninfopage|type_identifier"
+msgid "Identifier"
+msgstr ""
+
+#. iTZFA
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:173
+msgctxt "descriptioninfopage|type_publisher"
+msgid "Publisher"
+msgstr ""
+
+#. c5fHP
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:174
+msgctxt "descriptioninfopage|type_relation"
+msgid "Relation"
+msgstr ""
+
+#. FaGa4
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:175
+msgctxt "descriptioninfopage|type_rights"
+msgid "Rights"
+msgstr ""
+
+#. yDvSu
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:176
+msgctxt "descriptioninfopage|type_source"
+msgid "Source"
+msgstr ""
+
+#. 25AxF
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:177
+msgctxt "descriptioninfopage|type_types"
+msgid "Type"
+msgstr ""
+
#. sGW3Z
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:406
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:187
msgctxt "descriptioninfopage|extended_tip|DescriptionInfoPage"
msgid "Contains descriptive information about the document."
msgstr "Bevat beskrywende inligting oor die dokument."
@@ -3422,85 +3380,85 @@ msgid "_Apply user data"
msgstr "P_as gebruikerdata toe"
#. JFxmP
-#: sfx2/uiconfig/ui/documentinfopage.ui:197
+#: sfx2/uiconfig/ui/documentinfopage.ui:198
msgctxt "documentinfopage|reset"
msgid "Reset Properties"
msgstr "Stel eienskappe terug"
#. HrN2U
-#: sfx2/uiconfig/ui/documentinfopage.ui:204
+#: sfx2/uiconfig/ui/documentinfopage.ui:205
msgctxt "documentinfopage|extended_tip|reset"
msgid "Resets the editing time to zero, the creation date to the current date and time, and the version number to 1. The modification and printing dates are also deleted."
msgstr "Stel die verwerkingstyd op nul, die skeppingsdatum op die huidige datum en tyd, en die weergawenommer op 1. Die datum en tyd van die laaste verandering en die laaste druk word uitgevee."
#. qeWvU
-#: sfx2/uiconfig/ui/documentinfopage.ui:215
+#: sfx2/uiconfig/ui/documentinfopage.ui:216
msgctxt "documentinfopage|signature"
msgid "Di_gital Signatures..."
msgstr "Di_gitale handtekeninge..."
#. rEEgJ
-#: sfx2/uiconfig/ui/documentinfopage.ui:234
+#: sfx2/uiconfig/ui/documentinfopage.ui:235
msgctxt "documentinfopage|label11"
msgid "_Size:"
msgstr "_Grootte:"
#. WNFYB
-#: sfx2/uiconfig/ui/documentinfopage.ui:247
+#: sfx2/uiconfig/ui/documentinfopage.ui:248
msgctxt "documentinfopage|showsize"
msgid "unknown"
msgstr "onbekend"
#. EgtLE
-#: sfx2/uiconfig/ui/documentinfopage.ui:262
+#: sfx2/uiconfig/ui/documentinfopage.ui:263
msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "_Ligging:"
#. 9xhwo
-#: sfx2/uiconfig/ui/documentinfopage.ui:276
+#: sfx2/uiconfig/ui/documentinfopage.ui:277
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "Soor_t:"
#. ZLmAo
-#: sfx2/uiconfig/ui/documentinfopage.ui:299
+#: sfx2/uiconfig/ui/documentinfopage.ui:300
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Verander _wagwoord"
#. oqAZE
-#: sfx2/uiconfig/ui/documentinfopage.ui:317
+#: sfx2/uiconfig/ui/documentinfopage.ui:318
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Sjabloon:"
#. 5pXPV
-#: sfx2/uiconfig/ui/documentinfopage.ui:366
+#: sfx2/uiconfig/ui/documentinfopage.ui:367
msgctxt "documentinfopage|extended_tip|nameed"
msgid "Displays the file name."
msgstr "Spesifiseer die lêernaam."
#. LCDUj
-#: sfx2/uiconfig/ui/documentinfopage.ui:397
+#: sfx2/uiconfig/ui/documentinfopage.ui:398
msgctxt "documentinfopage|thumbnailsavecb"
msgid "Save preview image with this document"
msgstr "Stoor voorskoubeeld saam met dié dokument"
#. 6bF5w
-#: sfx2/uiconfig/ui/documentinfopage.ui:416
+#: sfx2/uiconfig/ui/documentinfopage.ui:419
msgctxt "documentinfopage|image-preferred-dpi-checkbutton"
msgid "Preferred resolution for images:"
msgstr "Voorkeur resolusie vir beelde:"
#. pukYD
-#: sfx2/uiconfig/ui/documentinfopage.ui:466
+#: sfx2/uiconfig/ui/documentinfopage.ui:467
msgctxt "documentinfopage|image-preferred-ppi-unit"
msgid "ppi"
msgstr "ppi"
#. VWjRu
-#: sfx2/uiconfig/ui/documentinfopage.ui:500
+#: sfx2/uiconfig/ui/documentinfopage.ui:508
msgctxt "documentinfopage|extended_tip|DocumentInfoPage"
msgid "Contains basic information about the current file."
msgstr "Bevat algemene inligting oor die huidige lêer."
diff --git a/source/af/sw/messages.po b/source/af/sw/messages.po
index 16f540f5903..e4f86a7e2f9 100644
--- a/source/af/sw/messages.po
+++ b/source/af/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-05-14 16:37+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/af/>\n"
@@ -15488,157 +15488,157 @@ msgid "This is where you insert the references or referenced fields into the cur
msgstr "Hier stel u verwysings in of voeg kruisverwysings in die huidige dokument in. Verwysings is kruisverwysings binne dieselfde dokument of binne dokumentdele van 'n hoofdokument."
#. jXhPb
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:71
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:73
msgctxt "fldvarpage|nameft"
msgid "Na_me:"
msgstr "Naa_m:"
#. juXJz
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:89
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:91
msgctxt "fldvarpage|extended_tip|name"
msgid "Type the name of the user-defined field to create."
msgstr "Tik in die naam van die gebruiker-gedefineerde veld om te skep."
#. mA2Cx
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:105
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:107
msgctxt "fldvarpage|valueft"
msgid "_Value:"
msgstr "Waarde"
#. onRpf
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:130
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:132
msgctxt "fldvarpage|extended_tip|value"
msgid "Enter the contents to add to a user-defined field."
msgstr "Voer die inhoud in om te voeg by 'n gebruikergedefinieerde veld."
#. BLiKH
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:154
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:156
msgctxt "fldvarpage|apply|tooltip_text"
msgid "Apply"
msgstr "Pas toe"
#. iLGxP
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:160
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:162
msgctxt "fldvarpage|extended_tip|apply"
msgid "Adds the user-defined field to the Select list."
msgstr "Voeg 'n gebruikers gedefinieerde veld by die geselekteerde lys."
#. GKfDe
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:174
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:176
msgctxt "fldvarpage|delete|tooltip_text"
msgid "Delete"
msgstr "Skrap"
#. bGYju
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:180
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:182
msgctxt "fldvarpage|extended_tip|delete"
msgid "Removes the user-defined field from the select list. You can only remove fields that are not used in the current document."
msgstr "Verwyder 'n gebruikers-gedefinieerde veld vanuit die geselekteerde lys. U kan slegs velde verwyder wat nie in die huidige dokument gebruik is nie."
#. EMeve
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:246
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:248
msgctxt "fldvarpage|extended_tip|type"
msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Select list, and then click Insert."
msgstr "Lys die beskikbare veldtipes. Om 'n veld in u dokument in te voeg, kies 'n veldtipe, merk 'n veld in die Seleksie-lys en klik op Invoeg."
#. MYGxL
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:257
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:259
msgctxt "fldvarpage|label1"
msgid "_Type"
msgstr "Soor_t"
#. YfUrq
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:312
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:314
msgctxt "fldvarpage|extended_tip|select"
msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, and then click Insert."
msgstr "Vertoon die beskikbare velde, vir die veldtipe gekies vanuit die Tipe-lys. Om 'n veld in te voeg, klik die veld onder \"Insert reference\", en klik dan op \"Insert\"."
#. JFbpp
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:323
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:325
msgctxt "fldvarpage|label2"
msgid "_Select"
msgstr "_Selekteer"
#. eLoJ7
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:386
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:388
msgctxt "fldvarpage|extended_tip|numformat"
msgid "Click the format to apply to the selected field, or click \"Additional formats\" to define a custom format."
msgstr "Klik op die formaat om op die geselekteerde veld aan te wend, of klik \"Bykomende formate\" om 'n aangepaste formaat te definieer."
#. bAzUU
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:431
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:433
msgctxt "fldvarpage|extended_tip|format"
msgid "In the Format list, define if the value is inserted as text or as number."
msgstr "In die Formaat-lys, definieer dat die waarde of as teks of as 'n getal ingevoeg word."
#. qPpKb
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:445
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:447
msgctxt "fldvarpage|invisible"
msgid "Invisi_ble"
msgstr "Onsig_baar"
#. 4SBL9
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:453
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:455
msgctxt "fldvarpage|extended_tip|invisible"
msgid "Hides the field contents in the document."
msgstr "Versteek die veld inhoud in die dokument."
#. jUrib
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:484
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:486
msgctxt "fldvarpage|label5"
msgid "_Up to level:"
msgstr "_Opskuif na vlak:"
#. uXVGk
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:497
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:499
msgctxt "fldvarpage|separatorft"
msgid "Se_parator:"
msgstr "_Skeidingteken:"
#. xWPdj
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:511
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:513
msgctxt "fldvarpage|level|tooltip_text"
msgid "Choose heading number to prepend to displayed field, where the number comes from the first prior heading whose outline level is equal to or less than the selected outline level. If [None] is selected, no heading number is displayed."
msgstr "Kies opskrifnommer om voor die vertoonde veld te sit, waar die nommer van die eerste vorige opskrif kom waarvan die skemavlak gelyk is aan of minder as die geselekteerde skemavlak. As [Geen] gekies is, word geen opskrifnommer vertoon nie."
#. B2VKZ
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:513
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:515
msgctxt "fldvarpage|level"
msgid "[None]"
msgstr "[Geen]"
#. 3eiSX
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:517
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:519
msgctxt "fldvarpage|extended_tip|level"
msgid "Choose heading number to prepend to displayed field, where the number comes from the first prior heading whose outline level is equal to or less than the selected outline level. For example, select “2” to use the heading number of the first prior heading that has outline level 2 or less. If “None” is selected, no heading number is displayed. To use this option, heading numbers must be enabled. Use “Tools - Heading Numbering”."
msgstr "Kies opskrifnommer om voor die vertoonde veld te sit, waar die nommer vanaf die eerste vorige opskrif kom waarvan die buitelynvlak gelyk is aan of minder as die geselekteerde skemavlak. Kies byvoorbeeld “2” om die opskrifnommer van die eerste vorige opskrif wat skemavlak 2 of minder het, te gebruik. As “Geen” gekies is, word geen opskrifnommer vertoon nie. Om hierdie opsie te gebruik, moet opskrifnommers geaktiveer wees. Gebruik \"Nutsprogramme - Opskrif Nommering\"."
#. Bnsut
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:530
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:532
msgctxt "fldvarpage|separator|tooltip_text"
msgid "Enter the character to use as a separator between the heading number and the field number."
msgstr "Voer die karakter in om te gebruik as 'n skeiding tussen die opskrifnommer en die veldnommer."
#. ECBav
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:533
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:535
msgctxt "fldvarpage|separator"
msgid "."
msgstr "."
#. 3dC3P
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:537
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:539
msgctxt "fldvarpage|extended_tip|separator"
msgid "Enter the character to use as a separator between the heading number and the field number."
msgstr "Voer die karakter in om aan te wend as 'n skeiding tussen die opskrifnommer en die veldnommer."
#. GgDBN
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:552
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:554
msgctxt "fldvarpage|label4"
msgid "With Heading Number"
msgstr "Met Opskrif Nommer"
#. WRjtn
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:573
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:575
msgctxt "fldvarpage|label3"
msgid "_Format"
msgstr "_Formaat"
@@ -21223,284 +21223,278 @@ msgctxt "navigatorcontextmenu|STR_DEMOTE_LEVEL"
msgid "Demote Outline Level"
msgstr "Verlaag Skema Vlak"
-#. tukRq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:105
-msgctxt "navigatorcontextmenu|STR_REMOVE_INDEX"
-msgid "_Remove Index"
-msgstr "Verwyder Indeks"
-
#. C4355
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:113
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:105
msgctxt "navigatorcontextmenu|STR_UPDATE"
msgid "_Update"
msgstr "Bywerk"
#. BtCca
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:121
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:113
msgctxt "navigatorcontextmenu|STR_EDIT_ENTRY"
msgid "Edit..."
msgstr "Redigeer..."
#. BYyhD
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:129
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:121
msgctxt "navigatorcontextmenu|STR_REMOVE_TBL_PROTECTION"
msgid "_Unprotect"
msgstr "Beskerming Ophef"
#. 6KWWG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:137
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:129
msgctxt "navigatorcontextmenu|STR_READONLY_IDX"
msgid "Read-_only"
msgstr "Lees Alleen"
#. Z46XG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:145
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:137
msgctxt "navigatorcontextmenu|STR_DELETE_TABLE"
msgid "Delete Table"
msgstr "Skrap Tabel"
#. nWZCB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:154
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:146
msgctxt "navigatorcontextmenu|STR_DELETE_FRAME"
msgid "Delete Frame"
msgstr "Skrap Raam"
#. iA4dL
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:163
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:155
msgctxt "navigatorcontextmenu|STR_DELETE_IMAGE"
msgid "Delete Image"
msgstr "Skrap Beeld"
#. PeDxb
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:172
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:164
msgctxt "navigatorcontextmenu|STR_DELETE_OLE_OBJECT"
msgid "Delete OLE object"
msgstr "Skrap OLE objek"
#. gGdPe
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:181
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:173
msgctxt "navigatorcontextmenu|STR_DELETE_BOOKMARK"
msgid "Delete Bookmark"
msgstr "Skrap Boekmerk"
#. CYbsq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:190
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:182
msgctxt "navigatorcontextmenu|STR_DELETE_REGION"
msgid "Delete Section"
msgstr "Skrap Seksie"
#. NzaP7
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:199
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:191
msgctxt "navigatorcontextmenu|STR_DELETE_HYPERLINK"
msgid "Delete Hyperlink"
msgstr "Skrap Hiperskakel"
#. hNJRX
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:208
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:200
msgctxt "navigatorcontextmenu|STR_DELETE_REFERENCE"
msgid "Delete Reference"
msgstr "Skrap Verwysing"
#. LaCMh
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:216
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:208
msgctxt "navigatorcontextmenu|STR_DELETE_INDEX"
msgid "Delete Index"
msgstr "Skrap Indeks"
#. cEyZC
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:225
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:217
msgctxt "navigatorcontextmenu|STR_DELETE_COMMENT"
msgid "Delete Comment"
msgstr "Skrap Kommentaar"
#. AuAjE
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:234
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:226
msgctxt "navigatorcontextmenu|STR_DELETE_DRAWING_OBJECT"
msgid "Delete Drawing object"
msgstr "Skrap Skets objek"
#. RhyGG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:243
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:235
msgctxt "navigatorcontextmenu|STR_DELETE_FIELD"
msgid "Delete Field"
msgstr "Skrap Veld"
#. GGzCM
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:252
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:244
msgctxt "navigatorcontextmenu|STR_DELETE_ALL_FOOTNOTES"
msgid "Delete All Footnotes"
msgstr "Skrap Alle Voetnotas"
#. kyGVJ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:260
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:252
msgctxt "navigatorcontextmenu|STR_DELETE_ALL_ENDNOTES"
msgid "Delete All Endnotes"
msgstr "Skrap Alle Eindnotas"
#. AZchK
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:269
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:261
msgctxt "navigatorcontextmenu|STR_DELETE_FOOTNOTE"
msgid "Delete Footnote"
msgstr "Skrap Voetnota"
#. Cv2Cu
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:278
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:270
msgctxt "navigatorcontextmenu|STR_DELETE_ENDNOTE"
msgid "Delete Endnote"
msgstr "Skrap Eindnota"
#. CUqD5
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:287
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:279
msgctxt "navigatorcontextmenu|STR_RENAME"
msgid "_Rename..."
msgstr "Hernoem"
#. f9jYB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:295
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:287
msgctxt "navigatorcontextmenu|STR_PROTECT_SECTION"
msgid "Protect Section"
msgstr "Beskerm Seksie"
#. MEGAM
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:303
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:295
msgctxt "navigatorcontextmenu|STR_HIDE_SECTION"
msgid "Hide Section"
msgstr "Verberg Seksie"
#. U5nAb
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:311
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:303
msgctxt "navigatorcontextmenu|STR_POSTIT_SHOW"
msgid "Show All"
msgstr "Vertoon Alles"
#. E2wWp
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:319
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:311
msgctxt "navigatorcontextmenu|STR_POSTIT_HIDE"
msgid "Hide All"
msgstr "Verberg Alles"
#. aDRke
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:327
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:319
msgctxt "navigatorcontextmenu|STR_POSTIT_DELETE"
msgid "Delete All"
msgstr "Verwyder Alles"
#. YBipC
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:341
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:333
msgctxt "navigatorcontextmenu|STR_OUTLINE_CONTENT"
msgid "Outline Folding"
msgstr "Skema Invou"
#. EBK2E
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:361
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:353
msgctxt "navigatorcontextmenu|STR_OUTLINE_TRACKING"
msgid "Outline Tracking"
msgstr "Buitelyn Volg"
#. fZEEr
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:375
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:367
msgctxt "navigatorcontextmenu|STR_TABLE_TRACKING"
msgid "Table Tracking"
msgstr "Tabel Nasporing"
#. 7oCFa
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:383
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:375
msgctxt "navigatorcontextmenu|STR_SECTION_TRACKING"
msgid "Section Tracking"
msgstr "Seksie Nasporing"
#. YmjQf
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:391
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:383
msgctxt "navigatorcontextmenu|STR_FRAME_TRACKING"
msgid "Frame Tracking"
msgstr "Raam Nasporing"
#. vhxX5
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:399
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:391
msgctxt "navigatorcontextmenu|STR_IMAGE_TRACKING"
msgid "Image Tracking"
msgstr "Beeld Naspeuring"
#. mcYqZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:407
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:399
msgctxt "navigatorcontextmenu|STR_OLE_OBJECT_TRACKING"
msgid "OLE Object Tracking"
msgstr "OLE Objek Naspeuring"
#. DRaED
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:415
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:407
msgctxt "navigatorcontextmenu|STR_BOOKMARK_TRACKING"
msgid "Bookmark Tracking"
msgstr "Boekmerk Naspeuring"
#. vpLmh
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:423
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:415
msgctxt "navigatorcontextmenu|STR_HYPERLINK_TRACKING"
msgid "Hyperlink Tracking"
msgstr "Skakel Naspeuring"
#. EvBzN
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:431
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:423
msgctxt "navigatorcontextmenu|STR_REFERENCE_TRACKING"
msgid "Reference Tracking"
msgstr "Verwysing Naspeuring"
#. M8Bes
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:439
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:431
msgctxt "navigatorcontextmenu|STR_INDEX_TRACKING"
msgid "Index Tracking"
msgstr "Indeks Naspeuring"
#. KBFwM
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:447
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:439
msgctxt "navigatorcontextmenu|STR_COMMENT_TRACKING"
msgid "Comment Tracking"
msgstr "Opmerking Naspeuring"
#. oGavB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:455
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:447
msgctxt "navigatorcontextmenu|STR_DRAWING_OBJECT_TRACKING"
msgid "Drawing Object Tracking"
msgstr "Teken Objek Naspeuring"
#. w8FTW
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:463
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:455
msgctxt "navigatorcontextmenu|STR_FIELD_TRACKING"
msgid "Field Tracking"
msgstr "Veld Naspeuring"
#. BoCeZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:471
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:463
msgctxt "navigatorcontextmenu|STR_FOOTNOTE_TRACKING"
msgid "Footnote Tracking"
msgstr "Voetnota Naspeuring"
#. QqAhu
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:479
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:471
msgctxt "navigatorcontextmenu|STR_ENDNOTE_TRACKING"
msgid "Endnote Tracking"
msgstr "Eindnota Volging"
#. vBGAw
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:487
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:479
msgctxt "navigatorcontextmenu|STR_SORT_ALPHABETICALLY"
msgid "Sort Alphabetically"
msgstr "Sorteer Alfabeties"
#. cqtBF
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:501
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:493
msgctxt "navigatorcontextmenu|STR_OUTLINE_LEVEL"
msgid "Show Up to Outline Level"
msgstr "Vertoon op Skema Vlak"
#. Zehx2
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:515
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:507
msgctxt "navigatorcontextmenu|STR_DISPLAY"
msgid "Display"
msgstr "Vertoon"
#. bgZoy
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:535
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:527
msgctxt "navigatorcontextmenu|STR_COLLAPSE_ALL_CATEGORIES"
msgid "Collapse All Categories"
msgstr "Alle Kategorieë Invou"
@@ -27746,6 +27740,12 @@ msgctxt "selecttabledialog|extended_tip|SelectTableDialog"
msgid "Select the table that you want to use for mail merge addresses."
msgstr "Selekteer die tabel wat u wil gebruik vir brief-reeks adresse."
+#. RWLE7
+#: sw/uiconfig/swriter/ui/sidebarquickfind.ui:36
+msgctxt "sidebarquickfind|find"
+msgid "Find"
+msgstr ""
+
#. DSVQt
#: sw/uiconfig/swriter/ui/sidebartableedit.ui:46
msgctxt "sidebatableedit|rowheight|tooltip_text"
@@ -28868,11 +28868,11 @@ msgctxt "templatedialog1|extended_tip|reset"
msgid "Revert any changes made on the tab shown here to the settings that were present when this dialog was opened."
msgstr "Stel die veranderinge wat gemaak is op die tabblad, terug na wat die instellings was toe hierdie dialoog oopgemaak is."
-#. UH8Vz
+#. Zp6EK
#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
msgctxt "templatedialog1|organizer"
-msgid "Organizer"
-msgstr "Organiseerder"
+msgid "General"
+msgstr ""
#. BvEuD
#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
@@ -28922,11 +28922,11 @@ msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr "Benoem en verberg gebruiker-gedefinieerde style"
-#. tA5vb
+#. Tuygv
#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
msgctxt "templatedialog16|organizer"
-msgid "Organizer"
-msgstr "Organiseerder"
+msgid "General"
+msgstr ""
#. 7MAbD
#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
@@ -29006,11 +29006,11 @@ msgctxt "templatedialog2|TemplateDialog2"
msgid "Paragraph Style"
msgstr "Paragraafstyl"
-#. 2NhWM
+#. FDfTt
#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
-msgid "Organizer"
-msgstr "Organiseerder"
+msgid "General"
+msgstr ""
#. G7U5N
#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
@@ -29120,11 +29120,11 @@ msgctxt "templatedialog4|TemplateDialog4"
msgid "Frame Style"
msgstr "Raamstyl"
-#. 8dRdE
+#. wSfp8
#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
msgctxt "templatedialog4|organizer"
-msgid "Organizer"
-msgstr "Organiseerder"
+msgid "General"
+msgstr ""
#. Q2PQs
#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
@@ -29186,11 +29186,11 @@ msgctxt "templatedialog8|standard"
msgid "Standard"
msgstr "Standaard"
-#. BvGbL
+#. LTNWZ
#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
msgctxt "templatedialog8|organizer"
-msgid "Organizer"
-msgstr "Organiseerder"
+msgid "General"
+msgstr ""
#. UbZRu
#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
diff --git a/source/am/helpcontent2/source/text/scalc/01.po b/source/am/helpcontent2/source/text/scalc/01.po
index 44e0b7cde4b..7b34995ad86 100644
--- a/source/am/helpcontent2/source/text/scalc/01.po
+++ b/source/am/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-27 12:59+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2023-02-19 05:34+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/am/>\n"
@@ -54583,6 +54583,15 @@ msgctxt ""
msgid "This function ignores any text or empty cell within a data range. If you suspect wrong results from this function, look for text in the data ranges. To highlight text contents in a data range, use the <link href=\"text/scalc/01/03080000.xhp\">value highlighting</link> feature."
msgstr ""
+#. DB6XT
+#: common_func.xhp
+msgctxt ""
+"common_func.xhp\n"
+"par_id431716730587722\n"
+"help.text"
+msgid "Any of the optional arguments can be omitted. An optional argument is required to be preceded by the preceding separators."
+msgstr ""
+
#. GAPGX
#: common_func_workdaysintl.xhp
msgctxt ""
@@ -57148,6 +57157,15 @@ msgctxt ""
msgid "This function is always recalculated whenever a recalculation occurs."
msgstr ""
+#. fSXNw
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"par_id711715953325962\n"
+"help.text"
+msgid "The function is always <emph>case insensitive</emph>, independent from the setting of <emph>Case sensitive</emph> checkbox in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\"><menuitem>%PRODUCTNAME Calc - Calculate</menuitem></link>."
+msgstr ""
+
#. 8DbP2
#: func_aggregate.xhp
msgctxt ""
@@ -62413,22 +62431,22 @@ msgctxt ""
msgid "<variable id=\"h1\"><link href=\"text/scalc/01/func_filter.xhp\">FILTER</link></variable>"
msgstr ""
-#. nKHpG
+#. dxbQ9
#: func_filter.xhp
msgctxt ""
"func_filter.xhp\n"
"par_id771708806478128\n"
"help.text"
-msgid "Filters a data range or array based on conditions you specify."
+msgid "Filters a data range or array based on specified conditions."
msgstr ""
-#. M2JTs
+#. tuppo
#: func_filter.xhp
msgctxt ""
"func_filter.xhp\n"
"par_id211708281649651\n"
"help.text"
-msgid "FILTER(Range, Criteria, Return if empty)"
+msgid "FILTER( Range; Criteria [; Return if empty])"
msgstr ""
#. SGrA5
@@ -62449,31 +62467,31 @@ msgctxt ""
msgid "<emph>Criteria</emph>: A boolean array whose height (filtering by columns) or width (filtering by rows) is the same as the array, used to select data from the <emph>Range</emph>."
msgstr ""
-#. KjAXK
+#. ZcP2E
#: func_filter.xhp
msgctxt ""
"func_filter.xhp\n"
"par_id421709395146863\n"
"help.text"
-msgid "<emph>Return if empty</emph>: the value to return if all values in the Include array are empty (filter return nothing)."
+msgid "<emph>Result if empty</emph>: (optional) the value to return if all values in the <emph>Criteria</emph> array are empty (filter return nothing)."
msgstr ""
-#. PAajv
+#. AFtpH
#: func_filter.xhp
msgctxt ""
"func_filter.xhp\n"
"par_id21709506838932\n"
"help.text"
-msgid "<input>{=FILTER(A2:C13,A2:A13>50)}</input> returns the array {57,49,12|56,33,60|57,,} containing all grades with Maths grade above 50. Note that this is an array formula."
+msgid "<input>{=FILTER(A2:C13;A2:A13>50)}</input> returns the array containing all grades with Maths grade above 50. Note that this is an <link href=\"text/scalc/01/04060107.xhp#creating_array_formulas\">array formula</link>."
msgstr ""
-#. WhdTC
+#. METQ9
#: func_filter.xhp
msgctxt ""
"func_filter.xhp\n"
"par_id561709507935610\n"
"help.text"
-msgid "<input>{=FILTER(A2:C13,B2:B13>90,\"No results\")}</input> Returns the string \"No results\", since no grade on Physics is above 90."
+msgid "<input>{=FILTER(A2:C13;B2:B13>90;\"No results\")}</input> Returns the string \"No results\", since no grade on Physics is above 90."
msgstr ""
#. q34Yg
@@ -66940,13 +66958,13 @@ msgctxt ""
msgid "Generates an array of random numbers between two limit values."
msgstr ""
-#. 9wxNC
+#. ArGrF
#: func_randarray.xhp
msgctxt ""
"func_randarray.xhp\n"
"par_id211708281649651\n"
"help.text"
-msgid "RANDARRAY([Rows], [Columns], [Min], [Max], [Integers])"
+msgid "RANDARRAY([Rows [; Columns [; Min [; Max [; Integers] ] ] ])"
msgstr ""
#. FDbmd
@@ -67012,13 +67030,13 @@ msgctxt ""
msgid "If <emph>Rows</emph> or <emph>Columns</emph> are references to the content of other cells, the array dimensions do not change when the referenced content changes. The array formula must be deleted and re-entered."
msgstr ""
-#. ERYkg
+#. mz6p3
#: func_randarray.xhp
msgctxt ""
"func_randarray.xhp\n"
"par_id521715616457946\n"
"help.text"
-msgid "<input>{=RANDARRAY(10,4,10,50,1)}</input> returns an array of 10 rows, 4 columns with minimum value 10 and maximum value of 50 of whole numbers (integers)."
+msgid "<input>{=RANDARRAY(10;4;10;50;1)}</input> returns an array of 10 rows, 4 columns with minimum value 10 and maximum value of 50 of whole numbers (integers)."
msgstr ""
#. iGDsD
@@ -68083,13 +68101,13 @@ msgctxt ""
msgid "The array is filled from the first row to the right up to the value of <emph>Columns</emph>, and then down to the number of rows."
msgstr ""
-#. sC8E6
+#. u9vnG
#: func_sequence.xhp
msgctxt ""
"func_sequence.xhp\n"
"par_id201714595986945\n"
"help.text"
-msgid "<input>{=SEQUENCE(3,3,10,11)}</input> returns the 3-by-3 array below with an upper-right value of 10 and filling the array to the right and then downward in steps of 11."
+msgid "<input>{=SEQUENCE(3,3,10,11)}</input> returns the 3-by-3 array below with an upper-left value of 10 and filling the array to the right and then downward in steps of 11."
msgstr ""
#. sNE2S
@@ -68236,49 +68254,49 @@ msgctxt ""
msgid "Enter the formula as an <link href=\"text/scalc/01/04060107.xhp\">array formula</link>."
msgstr ""
-#. LksfE
+#. DmRKh
#: func_sort.xhp
msgctxt ""
"func_sort.xhp\n"
"par_id211708281649651\n"
"help.text"
-msgid "SORT(Range [, SortIndex[, SortOrder[, ByCol]]])"
+msgid "SORT(Range [; SortIndex [; SortOrder [; ByCol] ] ])"
msgstr ""
-#. 4iAJz
+#. gmV6H
#: func_sort.xhp
msgctxt ""
"func_sort.xhp\n"
"par_id551711457515235\n"
"help.text"
-msgid "<emph>Range:</emph> Required. The range or array to sort."
+msgid "<emph>Range:</emph> the range or array to sort."
msgstr ""
-#. Epf9D
+#. WQaKY
#: func_sort.xhp
msgctxt ""
"func_sort.xhp\n"
"par_id151711457520290\n"
"help.text"
-msgid "<emph>SortIndex:</emph> Optional. The number indicating the row or column to sort by."
+msgid "<emph>SortIndex:</emph> (optional). The number indicating the row or column to sort by."
msgstr ""
-#. 2cgDj
+#. P5DGG
#: func_sort.xhp
msgctxt ""
"func_sort.xhp\n"
"par_id131711457525811\n"
"help.text"
-msgid "<emph>SortOrder:</emph> Optional. A number indicating the desired sort order; 1 for ascending order (default), -1 for descending order."
+msgid "<emph>SortOrder:</emph> (optional). A number indicating the desired sort order; 1 for ascending order (default), -1 for descending order."
msgstr ""
-#. JwCYE
+#. 5Vo8L
#: func_sort.xhp
msgctxt ""
"func_sort.xhp\n"
"par_id351711457531579\n"
"help.text"
-msgid "<emph>ByCol:</emph> Optional. A logical value indicating the desired sort direction; <emph>FALSE</emph> to sort by row (default), <emph>TRUE</emph> to sort by column."
+msgid "<emph>ByCol:</emph> (optional). A logical value indicating the desired sort direction; <emph>FALSE</emph> to sort by row (default), <emph>TRUE</emph> to sort by column."
msgstr ""
#. hDBib
@@ -68470,13 +68488,13 @@ msgctxt ""
msgid "Sorts the contents of a range or array based on the values in a corresponding range or array."
msgstr ""
-#. EUgaa
+#. 52ZFJ
#: func_sortby.xhp
msgctxt ""
"func_sortby.xhp\n"
"par_id211708281649651\n"
"help.text"
-msgid "SORTBY(Range, SortByRange1, SortOrder1[, SortByRange2, SortOrder2,[...]])"
+msgid "SORTBY(Range; SortByRange1; SortOrder1 [; SortByRange2; SortOrder2,[...] ])"
msgstr ""
#. gifyS
@@ -68488,31 +68506,31 @@ msgctxt ""
msgid "<emph>Range</emph>: The array or range to sort."
msgstr ""
-#. k3ADs
+#. i3EwL
#: func_sortby.xhp
msgctxt ""
"func_sortby.xhp\n"
"par_id291711544460323\n"
"help.text"
-msgid "<emph>SortByRange1, SortByRange2,... </emph>: Range 1, range 2,... are the arrays or ranges to sort on."
+msgid "<emph>SortByRange1, SortByRange2,... </emph>: range 1, range 2,... are the arrays or ranges to sort on."
msgstr ""
-#. FTuBa
+#. BA6NF
#: func_sortby.xhp
msgctxt ""
"func_sortby.xhp\n"
"par_id501711544465886\n"
"help.text"
-msgid "<emph>SortOrder1, SortOrder2,...</emph> : Order 1, order 2,... are the orders to use for sorting. 1 for ascending, -1 for descending. Default is ascending."
+msgid "<emph>SortOrder1, SortOrder2,...</emph> : order 1, order 2,... are the orders to use for sorting. 1 for ascending, -1 for descending. Default is ascending."
msgstr ""
-#. FA2hL
+#. jhZ65
#: func_sortby.xhp
msgctxt ""
"func_sortby.xhp\n"
"par_id131711466000482\n"
"help.text"
-msgid "<input>{=SORTBY(A2:C7,A2:A7,1,C2:C7,-1)}</input>"
+msgid "<input>{=SORTBY(A2:C7;A2:A7;1;C2:C7;-1)}</input>"
msgstr ""
#. q9cpQ
@@ -69955,15 +69973,6 @@ msgctxt ""
msgid "Returns the array of unique values from a range or array of values."
msgstr ""
-#. h3r2U
-#: func_unique.xhp
-msgctxt ""
-"func_unique.xhp\n"
-"par_id711715953325962\n"
-"help.text"
-msgid "The UNIQUE function is always case sensitive, independent from the setting of <emph>Case sensitive</emph> checkbox in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\"><menuitem>%PRODUCTNAME Calc - Calculate</menuitem></link>."
-msgstr ""
-
#. A8bJf
#: func_unique.xhp
msgctxt ""
@@ -70783,6 +70792,15 @@ msgctxt ""
msgid "System"
msgstr ""
+#. cM6zS
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"par_id901535122363436\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
#. V79BD
#: func_weeknum.xhp
msgctxt ""
@@ -71584,40 +71602,40 @@ msgctxt ""
msgid "Searches for a value in an array and returns a reference to a cell or range of cells."
msgstr ""
-#. xMTVW
+#. bywFk
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id631708282151776\n"
"help.text"
-msgid "XLOOKUP function is a modern and flexible replacement for older functions like <link href=\"text/scalc/01/04060109.xhp#Section9\">VLOOKUP</link>, <link href=\"text/scalc/01/04060109.xhp#Section17\">HLOOKUP</link>, and <link href=\"text/scalc/01/04060109.xhp#Section14\">LOOKUP</link>. XLOOKUP supports approximate and exact matching, wildcards (* ?) for partial matches, and lookups in vertical or horizontal ranges. XLOOKUP can perform a reverse search and offers a fast binary search option when working with large datasets."
+msgid "XLOOKUP function is a modern and flexible replacement for older functions like <link href=\"text/scalc/01/04060109.xhp#Section9\">VLOOKUP</link>, <link href=\"text/scalc/01/04060109.xhp#Section17\">HLOOKUP</link>, and <link href=\"text/scalc/01/04060109.xhp#Section14\">LOOKUP</link>. XLOOKUP supports approximate and exact matching, wildcards (* ?) for partial matches, and lookups in vertical or horizontal ranges. XLOOKUP can perform a reverse search and offers a fast binary search option when working with large datasets."
msgstr ""
-#. VESoP
+#. TwFcc
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id211708281649651\n"
"help.text"
-msgid "XLOOKUP(Lookup; Array; Return [; NotFound; MatchType; SearchMode ] )"
+msgid "XLOOKUP( [Lookup] ; Array ; Return [ ; [ NotFound ] [ ; [MatchType] [ ; SearchMode ] ] ] )"
msgstr ""
-#. 3zUXb
+#. WoJu6
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id861708281340704\n"
"help.text"
-msgid "<emph>Lookup</emph>: The value of any type to search for in <emph>Array</emph>. If omitted, XLOOKUP returns blank cells it finds in <emph>Array</emph>."
+msgid "<emph>Lookup</emph>: (optional) The value of any type to search for in <emph>Array</emph>. If omitted, XLOOKUP returns blank cells it finds in <emph>Array</emph>."
msgstr ""
-#. qUjAU
+#. hBE9s
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id831708281625340\n"
"help.text"
-msgid "<emph>Array</emph>: is the reference of the array or range to search."
+msgid "<emph>Array</emph>: is the reference of the array to search. Array must be a 1-dimensional array and must be contained in one sheet only."
msgstr ""
#. nWhEP
@@ -71629,175 +71647,148 @@ msgctxt ""
msgid "<emph>Return</emph>: is the reference of the array or range to return."
msgstr ""
-#. 2LnvD
+#. G4DLq
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id821708357634624\n"
"help.text"
-msgid "If <emph>Return</emph> is an array of values, the XLOOKUP function must be entered as an <link href=\"text/scalc/01/04060107.xhp#creating_array_formulas\">array formula</link>."
+msgid "If <emph>Return</emph> is a range of cells, the XLOOKUP function must be entered as an <link href=\"text/scalc/01/04060107.xhp#creating_array_formulas\">array formula</link>."
msgstr ""
-#. 3fY6K
+#. WTFGZ
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id271708281637035\n"
"help.text"
-msgid "<emph>NotFound</emph>: a text to return if the <emph>Lookup</emph> value is not found. If a valid match is not found, and <emph>NotFound</emph> is omitted, returns #N/A."
+msgid "<emph>NotFound</emph>: a text or cell content to return if the <emph>Lookup</emph> value is not found. If a valid match is not found and <emph>NotFound</emph> is omitted, the function returns the #N/A error."
msgstr ""
-#. hBDsh
+#. ruAWq
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id121708281643207\n"
"help.text"
-msgid "<emph>MatchType</emph>: Specify the match type:"
+msgid "<emph>MatchType</emph>: (optional) specifies the match type. Values can be:"
msgstr ""
-#. aCZbP
+#. go9sN
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id111708281542144\n"
"help.text"
-msgid "<emph>0</emph> - Exact match (default). If <emph>Lookup</emph> value is not found and <emph>NotFound</emph> text is omitted, then return #N/A."
+msgid "<emph>0</emph>: exact match (default). If <emph>Lookup</emph> value is not found and <emph>NotFound</emph> text is omitted, then return the #N/A error."
msgstr ""
-#. w5rBH
+#. CtG9A
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id851708281548335\n"
"help.text"
-msgid "<emph>-1</emph> - Exact match. If <emph>Lookup</emph> value is not found, then return the next smaller item."
+msgid "<emph>-1</emph>: attempt exact match. If <emph>Lookup</emph> value is not found, then return the next smaller item."
msgstr ""
-#. zQiND
+#. CpEkK
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id801708281553430\n"
"help.text"
-msgid "<emph>1</emph> - Exact match. If <emph>Lookup</emph> value is not found, then return the next larger item."
+msgid "<emph>1</emph>: attempt exact match. If <emph>Lookup</emph> value is not found, then return the next larger item."
msgstr ""
-#. 4Jxvx
+#. JJ3M2
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id881708281558005\n"
"help.text"
-msgid "<emph>2</emph> - A <link href=\"text/scalc/guide/wildcards.xhp\">wildcard</link> match where characters *, ?, and ~ have special meaning."
+msgid "<emph>2</emph>: a <link href=\"text/scalc/guide/wildcards.xhp\">wildcard</link> match where characters *, ?, and ~ have special meanings."
msgstr ""
-#. CxCof
+#. EqTBc
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id871708281607313\n"
"help.text"
-msgid "<emph>SearchMode</emph>: Specify the search mode to use:"
+msgid "<emph>SearchMode</emph>: (optional) specifies the search mode to use."
msgstr ""
-#. Lc3bp
+#. FfKjN
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id281708281579757\n"
"help.text"
-msgid "<emph>1</emph>: - Search starting at the first item (default)."
+msgid "<emph>1</emph>: returns the first occurrence starting from the first item of <emph>Array</emph> (default)."
msgstr ""
-#. HVoEm
+#. 8CD3w
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id251708281584285\n"
"help.text"
-msgid "<emph>-1</emph> - Reverse search starting at the last item."
+msgid "<emph>-1</emph>: reverse search. Returns the first occurrence starting from the last item of <emph>Array</emph>."
msgstr ""
-#. CFAD4
+#. 6aABE
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id191708281589997\n"
"help.text"
-msgid "<emph>2</emph> - Binary search that relies on <emph>Array</emph> being sorted in ascending order. If not sorted, invalid results will be returned."
+msgid "<emph>2</emph>: binary search that relies on <emph>Array</emph> being sorted in ascending order. If not sorted, invalid results will be returned."
msgstr ""
-#. mAGCX
+#. pwwij
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id561708281595885\n"
"help.text"
-msgid "<emph>-2</emph> - Binary search that relies on <emph>Array</emph> being sorted in descending order. If not sorted, invalid results will be returned."
-msgstr ""
-
-#. vD6hn
-#: func_xlookup.xhp
-msgctxt ""
-"func_xlookup.xhp\n"
-"par_id961708354814163\n"
-"help.text"
-msgid "The table below contains a glossary for translators:"
-msgstr ""
-
-#. MSv55
-#: func_xlookup.xhp
-msgctxt ""
-"func_xlookup.xhp\n"
-"par_id781708353695722\n"
-"help.text"
-msgid "<emph>English</emph>"
+msgid "<emph>-2</emph>: binary search that relies on <emph>Array</emph> being sorted in descending order. If not sorted, invalid results will be returned."
msgstr ""
-#. 5G7WA
+#. fHQrZ
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
-"par_id641708353695723\n"
+"par_id141716739193733\n"
"help.text"
-msgid "<emph>French</emph>"
+msgid "<input>{=XLOOKUP(\"Atomic Number\";A2:A4;A2:DO4)}</input> returns the array"
msgstr ""
-#. GRDeG
+#. tkRq7
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
-"par_id671708353695724\n"
+"par_id231716739652495\n"
"help.text"
-msgid "<emph>Italian</emph>"
+msgid "<input>{=XLOOKUP(\"Helium\";B1:DO1;B1:DO4)}</input> returns the array"
msgstr ""
-#. JfbWn
+#. D5tG5
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
-"par_id331708353781503\n"
+"par_id21716739329244\n"
"help.text"
-msgid "<emph>Japanese</emph>"
-msgstr ""
-
-#. CmUw2
-#: func_xlookup.xhp
-msgctxt ""
-"func_xlookup.xhp\n"
-"par_id31708356677157\n"
-"help.text"
-msgid "<input>={XLOOKUP(\"New\", A2:A4, B2:D4,\"Missing\")}</input> returns the array {\"Nouveau\",\"Nuovo\",\"新しい\"}."
+msgid "Helium"
msgstr ""
-#. Z9pX4
+#. vaCSD
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id671708356683379\n"
"help.text"
-msgid "<input>={XLOOKUP(\"Reload\", A2:A4, B2:D4,\"Missing\")}</input> returns the array {\"Missing\",\"Missing\",\"Missing\"}."
+msgid "<input>{=XLOOKUP(\"Kryptonite\";B1:DO1;B1:DO4;\"Unknown element\")}</input> returns the array {\"Unknown element\",\"Unknown element\",\"Unknown element\",\"Unknown element\"}."
msgstr ""
#. SzUpN
@@ -71836,22 +71827,31 @@ msgctxt ""
msgid "<variable id=\"h1\"><link href=\"text/scalc/01/func_xmatch.xhp\">XMATCH</link></variable>"
msgstr ""
-#. B9dyV
+#. 8GYav
#: func_xmatch.xhp
msgctxt ""
"func_xmatch.xhp\n"
"par_id581708279355738\n"
"help.text"
-msgid "Searches for a value in an array or range of cells and returns the relative position of the item."
+msgid "Searches for a value in a one-dimensional array and returns the relative position of the item."
+msgstr ""
+
+#. qJsbC
+#: func_xmatch.xhp
+msgctxt ""
+"func_xmatch.xhp\n"
+"par_id321716754048322\n"
+"help.text"
+msgid "XMATCH outperforms function <link href=\"text/scalc/01/04060109.xhp#Section12\">MATCH</link> as it allows searches according to the search mode."
msgstr ""
-#. MFVXB
+#. NFwz8
#: func_xmatch.xhp
msgctxt ""
"func_xmatch.xhp\n"
"par_id211708281649651\n"
"help.text"
-msgid "XMATCH(Lookup; Array [; MatchType; SearchMode ] )"
+msgid "XMATCH(Lookup; Array [; MatchType [; SearchMode ] ] )"
msgstr ""
#. NA2BM
@@ -71872,22 +71872,22 @@ msgctxt ""
msgid "<emph>Array</emph>: is the reference of the array or range to search."
msgstr ""
-#. EorAV
+#. WMXaP
#: func_xmatch.xhp
msgctxt ""
"func_xmatch.xhp\n"
-"par_id391708364611193\n"
+"par_id471716753503759\n"
"help.text"
-msgid "XMATCH outperforms function MATCH as it allows searches according to the search mode."
+msgid "<input>=XMATCH(\"Atomic Number\",A1:A4)</input> returns 3, the third line of the A1:A4 array."
msgstr ""
-#. yRpQy
+#. QTDzi
#: func_xmatch.xhp
msgctxt ""
"func_xmatch.xhp\n"
-"par_id31708356677157\n"
+"par_id581716753499133\n"
"help.text"
-msgid "<input>=XMATCH(\"Save\", A2:A4, 0, 1)</input> returns 2, the second line of the A2:A4 range."
+msgid "<input>=XMATCH(\"Li\",A2:DO2)</input> returns 4, the fourth column of the A2:DO2 array."
msgstr ""
#. 2AAX5
diff --git a/source/am/helpcontent2/source/text/scalc/guide.po b/source/am/helpcontent2/source/text/scalc/guide.po
index 95000aeb283..3a7792ca01b 100644
--- a/source/am/helpcontent2/source/text/scalc/guide.po
+++ b/source/am/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-13 12:37+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2020-04-16 16:16+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Amharic <https://weblate.documentfoundation.org/projects/libo_help-master/textscalcguide/am/>\n"
@@ -2410,14 +2410,14 @@ msgctxt ""
msgid "This method can also be used to insert a range from another sheet of the same document into the current sheet. Select the active document as source in step 4 above."
msgstr "ይህ መንገድ መጠቀም ይችላሉ መጠን ለማስገባት ከ ሌላ ወረቀት ተመሳሳይ ሰነድ ወደ አሁኑ ወረቀት ውስጥ: ይምረጡ ንቁ ሰነድ እንደ ምንጭ ደረጃ ከ 4 በላይ"
-#. ANNjW
+#. fw7FU
#: cellreferences.xhp
msgctxt ""
"cellreferences.xhp\n"
"tit\n"
"help.text"
-msgid "Referencing a Cell in Another Document"
-msgstr "ክፍል ማመሳከሪያ በ ሌላ ሰነድ ውስጥ"
+msgid "Referencing a Cell in Another Sheet"
+msgstr ""
#. FkFV9
#: cellreferences.xhp
@@ -2428,14 +2428,14 @@ msgctxt ""
msgid "<bookmark_value>sheet references</bookmark_value> <bookmark_value>references; to cells in other sheets/documents</bookmark_value> <bookmark_value>addresses; to cells in other sheets/documents</bookmark_value> <bookmark_value>cells; operating in another document</bookmark_value> <bookmark_value>documents;references</bookmark_value> <bookmark_value>cell;address</bookmark_value> <bookmark_value>address; of cell</bookmark_value>"
msgstr ""
-#. a5WVc
+#. 5EvNw
#: cellreferences.xhp
msgctxt ""
"cellreferences.xhp\n"
"hd_id3147436\n"
"help.text"
-msgid "<variable id=\"cellreferences\"><link href=\"text/scalc/guide/cellreferences.xhp\">Referencing Other Sheets</link></variable>"
-msgstr "<variable id=\"cellreferences\"><link href=\"text/scalc/guide/cellreferences.xhp\">ማመሳከሪያ ሌሎች ወረቀቶች</link></variable>"
+msgid "<variable id=\"cellreferences\"><link href=\"text/scalc/guide/cellreferences.xhp\">Referencing a Cell in Another Sheet</link></variable>"
+msgstr ""
#. S3C6m
#: cellreferences.xhp
@@ -2626,14 +2626,14 @@ msgctxt ""
msgid "If you examine the name of the other document in this formula, you will notice that it is written as a <link href=\"text/shared/00/00000002.xhp#url\">URL</link>. This means that you can also enter a URL from the Internet."
msgstr "እርስዎ ከ መረመሩ የ ሌላውን ሰነድ ስም በ መቀመሪያ ውስጥ: ይታይዎታል የ ተጻፈው እንደ <link href=\"text/shared/00/00000002.xhp#url\">URL</link>. ይህ ማለት እርስዎ ማስገባት ይችላሉ URL ከ ኢንተርኔት ውስጥ"
-#. ABuMQ
+#. jtXog
#: cellreferences_url.xhp
msgctxt ""
"cellreferences_url.xhp\n"
"tit\n"
"help.text"
-msgid "References to Other Sheets and Referencing URLs"
-msgstr "ወደ ሌላ ወረቀት ማመሳከሪያ እና URLs ማመሳከሪያዎች"
+msgid "Referencing URLs in other Sheets"
+msgstr ""
#. 7ELAq
#: cellreferences_url.xhp
@@ -2644,14 +2644,14 @@ msgctxt ""
msgid "<bookmark_value>HTML; in sheet cells</bookmark_value><bookmark_value>references; URL in cells</bookmark_value><bookmark_value>cells; Internet references</bookmark_value><bookmark_value>URL; in Calc</bookmark_value>"
msgstr "<bookmark_value>HTML; በ ወረቀት ክፍሎች ውስጥ</bookmark_value><bookmark_value>ማመሳከሪያዎች; URL በ ክፍሎች ውስጥ</bookmark_value><bookmark_value>ክፍሎች; በ ኢንተርኔት ማመሳከሪያዎች</bookmark_value><bookmark_value>URL; በ ሰንጠረዥ ውስጥ</bookmark_value>"
-#. M5F2f
+#. qpmog
#: cellreferences_url.xhp
msgctxt ""
"cellreferences_url.xhp\n"
"hd_id3150441\n"
"help.text"
-msgid "<variable id=\"cellreferences_url\"><link href=\"text/scalc/guide/cellreferences_url.xhp\">Referencing URLs</link></variable>"
-msgstr "<variable id=\"cellreferences_url\"><link href=\"text/scalc/guide/cellreferences_url.xhp\">ማመሳከሪያ URLs</link></variable>"
+msgid "<variable id=\"cellreferences_url\"><link href=\"text/scalc/guide/cellreferences_url.xhp\">Referencing URLs in other Sheets</link></variable>"
+msgstr ""
#. VHDGU
#: cellreferences_url.xhp
@@ -12022,13 +12022,13 @@ msgctxt ""
msgid "January"
msgstr "ጥር"
-#. GTvgG
+#. kGDze
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
"par_id3153566\n"
"help.text"
-msgid "Specify that only rows which either have the value <literal>January</literal> in the <emph>Month</emph> cells OR a value of under 160000 in the <emph>Standard</emph> cells will be displayed."
+msgid "Specify that only rows which either have the value <literal>January</literal> in the <emph>Month</emph> cells OR a value of over 160000 in the <emph>Standard</emph> cells will be displayed."
msgstr ""
#. ApUpg
diff --git a/source/am/helpcontent2/source/text/sdraw.po b/source/am/helpcontent2/source/text/sdraw.po
index 6f07e090bad..9089c11c9ed 100644
--- a/source/am/helpcontent2/source/text/sdraw.po
+++ b/source/am/helpcontent2/source/text/sdraw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-02-02 00:04+0100\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2019-05-16 18:48+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1024,13 +1024,13 @@ msgctxt ""
msgid "Shape"
msgstr ""
-#. C5hGB
+#. GfQCR
#: main_shape.xhp
msgctxt ""
"main_shape.xhp\n"
"hd_id381558217682354\n"
"help.text"
-msgid "<link href=\"text/sdraw/main_shape.xhp\">Shape</link>"
+msgid "<variable id=\"shape_h1\"><link href=\"text/sdraw/main_shape.xhp\">Shape</link></variable>"
msgstr ""
#. Eeyb5
diff --git a/source/am/helpcontent2/source/text/sdraw/01.po b/source/am/helpcontent2/source/text/sdraw/01.po
index 9e3dbb258c0..2fd9b0a9422 100644
--- a/source/am/helpcontent2/source/text/sdraw/01.po
+++ b/source/am/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-03-04 14:25+0100\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2021-01-16 21:43+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_help-master/textsdraw01/am/>\n"
@@ -529,13 +529,13 @@ msgctxt ""
msgid "<bookmark_value>text box consolidation</bookmark_value><bookmark_value>join PDF lines;text box consolidation</bookmark_value><bookmark_value>combine text box;text box consolidation</bookmark_value><bookmark_value>combine text frames;text box consolidation</bookmark_value>"
msgstr ""
-#. naVUY
+#. oW3jP
#: consolidatetext.xhp
msgctxt ""
"consolidatetext.xhp\n"
"hd_id861623510996086\n"
"help.text"
-msgid "<link href=\"text/sdraw/01/consolidatetext.xhp\">Text Box Consolidation</link>"
+msgid "<link href=\"text/sdraw/01/consolidatetext.xhp\">Consolidate Text</link>"
msgstr ""
#. zsb7F
@@ -709,6 +709,132 @@ msgctxt ""
msgid "<ahelp hid=\".uno:DuplicatePage\" visibility=\"visible\">Inserts a copy of the current page after the current page.</ahelp>"
msgstr ""
+#. JATBB
+#: equalize_height.xhp
+msgctxt ""
+"equalize_height.xhp\n"
+"tit\n"
+"help.text"
+msgid "Equalize Height"
+msgstr ""
+
+#. YzLZ7
+#: equalize_height.xhp
+msgctxt ""
+"equalize_height.xhp\n"
+"bm_id911716062352822\n"
+"help.text"
+msgid "<bookmark_value>shape; equalize height</bookmark_value><bookmark_value>drawing object; equalize height</bookmark_value><bookmark_value>height; equalize</bookmark_value>"
+msgstr ""
+
+#. 6aFop
+#: equalize_height.xhp
+msgctxt ""
+"equalize_height.xhp\n"
+"hd_41716903489414\n"
+"help.text"
+msgid "<variable id=\"equalize_height_h1\"><link href=\"text/sdraw/01/equalize_height.xhp\">Equalize Height</link></variable>"
+msgstr ""
+
+#. jbdbE
+#: equalize_height.xhp
+msgctxt ""
+"equalize_height.xhp\n"
+"par_id03149165419149\n"
+"help.text"
+msgid "Sets the height of two or more selected objects to the height of the object selected last. <menuitem>Equalize Height</menuitem> is only available when two or more drawing objects are selected."
+msgstr ""
+
+#. cvXqr
+#: equalize_height.xhp
+msgctxt ""
+"equalize_height.xhp\n"
+"par_id27975425109289\n"
+"help.text"
+msgid "Choose <menuitem>Shape - Equalize Height</menuitem>."
+msgstr ""
+
+#. h7hJ7
+#: equalize_height.xhp
+msgctxt ""
+"equalize_height.xhp\n"
+"par_id09268594688434\n"
+"help.text"
+msgid "Choose <menuitem>Draw</menuitem>, then in the <menuitem>Draw</menuitem> dropdown choose <menuitem>Equalize Height</menuitem>."
+msgstr ""
+
+#. xDKxC
+#: equalize_height.xhp
+msgctxt ""
+"equalize_height.xhp\n"
+"par_id35381451047272\n"
+"help.text"
+msgid "Choose <menuitem>Shapes - Equalize Height</menuitem>."
+msgstr ""
+
+#. KD2Cv
+#: equalize_width.xhp
+msgctxt ""
+"equalize_width.xhp\n"
+"tit\n"
+"help.text"
+msgid "Equalize Width"
+msgstr ""
+
+#. dFStW
+#: equalize_width.xhp
+msgctxt ""
+"equalize_width.xhp\n"
+"bm_id911716062352822\n"
+"help.text"
+msgid "<bookmark_value>shape; equalize width</bookmark_value><bookmark_value>drawing object; equalize width</bookmark_value><bookmark_value>width; equalize</bookmark_value>"
+msgstr ""
+
+#. 7sBAD
+#: equalize_width.xhp
+msgctxt ""
+"equalize_width.xhp\n"
+"hd_41716903489414\n"
+"help.text"
+msgid "<variable id=\"equalize_width_h1\"><link href=\"text/sdraw/01/equalize_width.xhp\">Equalize Width</link></variable>"
+msgstr ""
+
+#. YBRGe
+#: equalize_width.xhp
+msgctxt ""
+"equalize_width.xhp\n"
+"par_id03149165419149\n"
+"help.text"
+msgid "Sets the width of two or more selected objects to the width of the object selected last. <menuitem>Equalize Width</menuitem> is only available when two or more drawing objects are selected."
+msgstr ""
+
+#. VUC74
+#: equalize_width.xhp
+msgctxt ""
+"equalize_width.xhp\n"
+"par_id27975425109289\n"
+"help.text"
+msgid "Choose <menuitem>Shape - Equalize Width</menuitem>."
+msgstr ""
+
+#. Y9hBE
+#: equalize_width.xhp
+msgctxt ""
+"equalize_width.xhp\n"
+"par_id58194124979923\n"
+"help.text"
+msgid "Choose <menuitem>Draw</menuitem>, then in the <menuitem>Draw</menuitem> dropdown choose <menuitem>Equalize Width</menuitem>."
+msgstr ""
+
+#. 3xmAx
+#: equalize_width.xhp
+msgctxt ""
+"equalize_width.xhp\n"
+"par_id35381451047272\n"
+"help.text"
+msgid "Choose <menuitem>Shapes - Equalize Width</menuitem>."
+msgstr ""
+
#. 2LJK2
#: insert_layer.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/01.po b/source/am/helpcontent2/source/text/shared/01.po
index 6bbb0078610..de20f2f785d 100644
--- a/source/am/helpcontent2/source/text/shared/01.po
+++ b/source/am/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-27 12:59+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2022-05-25 10:44+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/am/>\n"
@@ -40201,14 +40201,23 @@ msgctxt ""
msgid "Bullets and Numbering"
msgstr "ነጥቦች እና ቁጥር መስጫ"
-#. eZAKE
+#. ePFg9
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"bm_id11420732550923\n"
+"help.text"
+msgid "<bookmark_value>bullets and numbering; settings</bookmark_value><bookmark_value>bullets and numbering; customization</bookmark_value><bookmark_value>bullets and; add</bookmark_value><bookmark_value>bullets;Impress</bookmark_value><bookmark_value>ordered list;Impress</bookmark_value><bookmark_value>unordered list;Impress</bookmark_value><bookmark_value>bullets;Draw</bookmark_value><bookmark_value>ordered list;Draw</bookmark_value><bookmark_value>unordered list;Draw</bookmark_value>"
+msgstr ""
+
+#. RDsL2
#: 06050000.xhp
msgctxt ""
"06050000.xhp\n"
"hd_id3149551\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050000.xhp\">Bullets and Numbering</link>"
-msgstr "<link href=\"text/shared/01/06050000.xhp\">ነጥቦች እና ቁጥር መስጫ</link>"
+msgid "<variable id=\"bullets_and_numbering_h1\"><link href=\"text/shared/01/06050000.xhp\">Bullets and Numbering</link></variable>"
+msgstr ""
#. S7psX
#: 06050000.xhp
@@ -40462,6 +40471,15 @@ msgctxt ""
msgid "Image"
msgstr "ምስሎች"
+#. 2wccT
+#: 06050400.xhp
+msgctxt ""
+"06050400.xhp\n"
+"bm_id56740500219423\n"
+"help.text"
+msgid "<bookmark_value>bullets and numbering; image</bookmark_value> <bookmark_value>bullets; custom image</bookmark_value>"
+msgstr ""
+
#. CwjBg
#: 06050400.xhp
msgctxt ""
@@ -40480,6 +40498,15 @@ msgctxt ""
msgid "<ahelp hid=\".\">Displays the different graphics that you can use as bullets in an unordered list.</ahelp>"
msgstr ""
+#. DSPTL
+#: 06050400.xhp
+msgctxt ""
+"06050400.xhp\n"
+"par_id51255442180622\n"
+"help.text"
+msgid "Use the <link href=\"text/shared/01/06050000.xhp\"><menuitem>Customize</menuitem></link> and <link href=\"text/shared/01/06050600.xhp\"><menuitem>Position</menuitem></link> tabs to adjust the size, alignment, and position of the image."
+msgstr ""
+
#. yDHf2
#: 06050400.xhp
msgctxt ""
@@ -40498,41 +40525,32 @@ msgctxt ""
msgid "<ahelp hid=\".\">Click the graphics that you want to use as bullets.</ahelp>"
msgstr "<ahelp hid=\".\">ይጫኑ እንደ ነጥብ መጠቀም የሚፈልጉት ንድፍ ላይ </ahelp>"
-#. kzDsV
-#: 06050400.xhp
-msgctxt ""
-"06050400.xhp\n"
-"hd_id061120090436157\n"
-"help.text"
-msgid "Link graphics"
-msgstr "ንድፎች አገናኝ"
-
-#. udZya
+#. hAnvd
#: 06050400.xhp
msgctxt ""
"06050400.xhp\n"
-"par_id0611200904361575\n"
+"hd_id45986474959229\n"
"help.text"
-msgid "<ahelp hid=\".\">If enabled, the graphics are inserted as links. If not enabled, the graphics are embedded into the document.</ahelp>"
-msgstr "<ahelp hid=\".\">ካስቻሉ: ንድፎች የሚገቡት እንደ አገናኝ ነው: ካላስቻሉ ግን ንድፎች ከ ሰነዱ ጋር ይጣበቃሉ </ahelp>"
+msgid "Add and Resize"
+msgstr ""
-#. y5Mpc
+#. coZpZ
#: 06050400.xhp
msgctxt ""
"06050400.xhp\n"
-"par_id061120090437338\n"
+"par_id55772839958583\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050600.xhp\">Position tab (Bullets and Numbering dialog)</link>"
-msgstr "<link href=\"text/shared/01/06050600.xhp\">ቦታ tab (የ ነጥቦች እና ቁጥር መስጫዎች ንግግር)</link>"
+msgid "Opens a file picker where you can select an image file to use as a bullet in an unordered list."
+msgstr ""
-#. GGXd8
+#. AcFMD
#: 06050400.xhp
msgctxt ""
"06050400.xhp\n"
-"par_id0611200904373391\n"
+"par_id00797416585085\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050500.xhp\">Options tab (Bullets and Numbering dialog)</link>"
-msgstr "<link href=\"text/shared/01/06050500.xhp\">ምርጫ tab (የ ነጥቦች እና ቁጥር መስጫዎች ንግግር)</link>"
+msgid "Select an image file from the file picker and click <menuitem>Open</menuitem> to add it as a bullet style. The image is automatically resized to the width and height specified in the <link href=\"text/shared/01/06050500.xhp#bm_id3153363\"><menuitem>Customize</menuitem></link> tab."
+msgstr ""
#. MZF62
#: 06050500.xhp
@@ -40543,22 +40561,22 @@ msgctxt ""
msgid "Customize (Bullets and Numbering)"
msgstr ""
-#. QChMa
+#. SQjo9
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"bm_id4096499\n"
"help.text"
-msgid "<bookmark_value>numbering;options</bookmark_value> <bookmark_value>bullet lists; formatting options</bookmark_value> <bookmark_value>font sizes;bullets</bookmark_value>"
-msgstr "<bookmark_value>ቁጥር መስጫ: ምርጫ</bookmark_value> <bookmark_value>የ ነጥቦች ዝርዝር: የ አቀራረብ ምርጫ</bookmark_value> <bookmark_value>የ ፊደል መጠን: ነጥቦች</bookmark_value>"
+msgid "<bookmark_value>numbering;options</bookmark_value> <bookmark_value>bullet lists; formatting options</bookmark_value> <bookmark_value>font sizes;bullets</bookmark_value>"
+msgstr ""
-#. Roq5k
+#. e9nYq
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"hd_id3147240\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050500.xhp\">Customize</link>"
+msgid "<variable id=\"customize_h1\"><link href=\"text/shared/01/06050500.xhp\">Customize</link></variable>"
msgstr ""
#. ptL6S
diff --git a/source/am/helpcontent2/source/text/shared/02.po b/source/am/helpcontent2/source/text/shared/02.po
index 24bc090419d..03921699cb1 100644
--- a/source/am/helpcontent2/source/text/shared/02.po
+++ b/source/am/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-27 12:59+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2020-02-05 07:21+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Amharic <https://weblate.documentfoundation.org/projects/libo_help-master/textshared02/am/>\n"
@@ -11887,14 +11887,14 @@ msgctxt ""
msgid "Rotate"
msgstr "ማዞሪያ"
-#. 5uEQ4
+#. bjDyk
#: 05090000.xhp
msgctxt ""
"05090000.xhp\n"
"hd_id3154863\n"
"help.text"
-msgid "<link href=\"text/shared/02/05090000.xhp\">Rotate</link>"
-msgstr "<link href=\"text/shared/02/05090000.xhp\">ማዞሪያ</link>"
+msgid "<variable id=\"rotate_h1\"><link href=\"text/shared/02/05090000.xhp\">Rotate</link></variable>"
+msgstr ""
#. ycqR8
#: 05090000.xhp
@@ -11995,14 +11995,14 @@ msgctxt ""
msgid "Alignment"
msgstr "ማሰለፊያ"
-#. 5YEFv
+#. EBuE8
#: 05110000.xhp
msgctxt ""
"05110000.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "Alignment"
-msgstr "ማሰለፊያ"
+msgid "<variable id=\"alignment_h1\"><link href=\"text/shared/02/05110000.xhp\">Alignment</link></variable>"
+msgstr ""
#. GiEnY
#: 05110000.xhp
diff --git a/source/am/helpcontent2/source/text/shared/menu.po b/source/am/helpcontent2/source/text/shared/menu.po
index 31ecf52215b..a5e001580b1 100644
--- a/source/am/helpcontent2/source/text/shared/menu.po
+++ b/source/am/helpcontent2/source/text/shared/menu.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-30 14:12+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2016-11-14 16:50+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -367,14 +367,23 @@ msgctxt ""
msgid "<ahelp hid=\".\">This submenu contains form controls like a textbox, checkbox, option button, and listbox that can be inserted into the document.</ahelp>"
msgstr "<ahelp hid=\".\">ይህ ንዑስ ዝርዝር የያዘው የ ፎርም መቆጣጠሪያዎች እንደ የ ጽሁፍ ሳጥን: ምልክት ማድረጊያ ሳጥን: የ ምርጫቁልፍ: እና የ ዝርዝር ሳጥን ናቸው ወደ ሰነድ ውስጥ ሊጨመሩ የሚችሉ </ahelp>"
-#. qHWBR
+#. GmbEB
#: insert_shape.xhp
msgctxt ""
"insert_shape.xhp\n"
"tit\n"
"help.text"
-msgid "Shape"
-msgstr "ቅርጽ"
+msgid "Insert Shape"
+msgstr ""
+
+#. PvcFc
+#: insert_shape.xhp
+msgctxt ""
+"insert_shape.xhp\n"
+"hd_id07684081706272\n"
+"help.text"
+msgid "<variable id=\"insert_h1\"><link href=\"text/shared/menu/insert_shape.xhp\">Insert</link></variable>"
+msgstr ""
#. MHwAt
#: insert_shape.xhp
@@ -394,6 +403,15 @@ msgctxt ""
msgid "<ahelp hid=\".\">This submenu contains common shapes like a line, circle, triangle, and square, or a symbol shape like a smiley face, heart, and flower that can be inserted into the document.</ahelp>"
msgstr "<ahelp hid=\".\">ይህ ንዑስ ዝርዝር የያዘው የ ተለመዱ ቅርጾችን ነው እንደ መስመር: ክብ: ሶስት ማእዘን: እና ስኴር ወይንም የ ምልክት ቅርጽ እንደ ሳቂታ ፊት: ልብ: እና አበባ ናቸው ወደ ሰነድ ውስጥ ሊጨመሩ የሚችሉ </ahelp>"
+#. v9tGR
+#: insert_shape.xhp
+msgctxt ""
+"insert_shape.xhp\n"
+"par_id261716922857055\n"
+"help.text"
+msgid "Choose <menuitem>Shape - Insert</menuitem>."
+msgstr ""
+
#. vcXma
#: insert_shape.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/simpress/01.po b/source/am/helpcontent2/source/text/simpress/01.po
index 2ff23556b11..aa5e545f393 100644
--- a/source/am/helpcontent2/source/text/simpress/01.po
+++ b/source/am/helpcontent2/source/text/simpress/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2018-12-09 17:44+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -853,14 +853,14 @@ msgctxt ""
msgid "Cross-fading"
msgstr "መስቀልኛ-ማፍዘዣ"
-#. Wboxp
+#. ZD3eP
#: 02150000.xhp
msgctxt ""
"02150000.xhp\n"
"hd_id3148577\n"
"help.text"
-msgid "Cross-fading"
-msgstr "መስቀልኛ-ማፍዘዣ"
+msgid "<variable id=\"cross-fading_h1\"><link href=\"text/simpress/01/02150000.xhp\">Cross-fading</link></variable>"
+msgstr ""
#. aCYnB
#: 02150000.xhp
@@ -7918,15 +7918,6 @@ msgctxt ""
msgid "Bullet and Position"
msgstr ""
-#. mjHGa
-#: bulletandposition.xhp
-msgctxt ""
-"bulletandposition.xhp\n"
-"bm_id121623276174916\n"
-"help.text"
-msgid "<bookmark_value>bullets;Impress</bookmark_value><bookmark_value>ordered list;Impress</bookmark_value><bookmark_value>unordered list;Impress</bookmark_value><bookmark_value>bullets;Draw</bookmark_value><bookmark_value>ordered list;Draw</bookmark_value><bookmark_value>unordered list;Draw</bookmark_value>"
-msgstr ""
-
#. xAFoQ
#: bulletandposition.xhp
msgctxt ""
@@ -7954,13 +7945,13 @@ msgctxt ""
msgid "In a selected text, choose <menuitem>Bullets and Numbering</menuitem>."
msgstr ""
-#. CKDCB
+#. eq2HC
#: bulletandposition.xhp
msgctxt ""
"bulletandposition.xhp\n"
"par_id571692539528746\n"
"help.text"
-msgid "On the <menuitem>Home</menuitem> tab, long click on <menuitem>Ordered</menuitem> or <menuitem>Unordered</menuitem> list, select <menuitem>Customize</menuitem>."
+msgid "On the <switchinline select=\"appl\"><caseinline select=\"DRAW\"><menuitem>Text</menuitem></caseinline><caseinline select=\"IMPRESS\"><menuitem>Home</menuitem></caseinline></switchinline> tab, long click on <menuitem>Ordered</menuitem> or <menuitem>Unordered</menuitem> list, select <menuitem>Customize</menuitem>."
msgstr ""
#. 8ABFW
@@ -8170,15 +8161,6 @@ msgctxt ""
msgid "Keep ratio"
msgstr ""
-#. c4vEd
-#: bulletandposition.xhp
-msgctxt ""
-"bulletandposition.xhp\n"
-"par_id261623260666478\n"
-"help.text"
-msgid "Check this box to preserve the height-to-width ratio of the graphic bullet."
-msgstr ""
-
#. AKwMq
#: bulletandposition.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/simpress/02.po b/source/am/helpcontent2/source/text/simpress/02.po
index c6594644923..0d3939f8a33 100644
--- a/source/am/helpcontent2/source/text/simpress/02.po
+++ b/source/am/helpcontent2/source/text/simpress/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-27 12:59+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2017-10-09 15:05+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4543,14 +4543,14 @@ msgctxt ""
msgid "<link href=\"text/shared/01/04150100.xhp\">OLE Object</link>"
msgstr "<link href=\"text/shared/01/04150100.xhp\">የ OLE እቃዎች</link>"
-#. Sy8hn
+#. yeRNc
#: 10120000.xhp
msgctxt ""
"10120000.xhp\n"
"tit\n"
"help.text"
-msgid "Arrows"
-msgstr "ቀስቶች"
+msgid "Lines and Arrows"
+msgstr ""
#. MYZ6p
#: 10120000.xhp
@@ -4561,23 +4561,23 @@ msgctxt ""
msgid "<bookmark_value>lines;inserting</bookmark_value><bookmark_value>arrows; inserting</bookmark_value><bookmark_value>inserting; lines</bookmark_value><bookmark_value>inserting; arrows</bookmark_value><bookmark_value>dimension lines; drawing</bookmark_value>"
msgstr "<bookmark_value>መስመሮች: ማስገቢያ</bookmark_value><bookmark_value>ቀስቶች: ማስገቢያ</bookmark_value><bookmark_value>ማስገቢያ: መስመሮች</bookmark_value><bookmark_value>ማስገቢያ: ቀስቶች</bookmark_value><bookmark_value>አቅጣጫ መስመሮች: መሳያ</bookmark_value>"
-#. JFM62
+#. BGAmB
#: 10120000.xhp
msgctxt ""
"10120000.xhp\n"
"hd_id3145799\n"
"help.text"
-msgid "<link href=\"text/simpress/02/10120000.xhp\">Arrows</link>"
-msgstr "<link href=\"text/simpress/02/10120000.xhp\">ቀስቶች</link>"
+msgid "<variable id=\"lines_and_arrows_h1\"><link href=\"text/simpress/02/10120000.xhp\">Lines and Arrows</link></variable>"
+msgstr ""
-#. dVNDG
+#. 4zGbe
#: 10120000.xhp
msgctxt ""
"10120000.xhp\n"
"par_id3145790\n"
"help.text"
-msgid "<ahelp hid=\".uno:ArrowsToolbox\">Open the <emph>Arrows</emph> toolbar, where you can add straight lines, lines with arrows, and dimension lines to the current slide or page.</ahelp>"
-msgstr "<ahelp hid=\".uno:ArrowsToolbox\">መክፈቻ የ <emph>ቀስቶች</emph> እቃ መደርደሪያ ቀጥተኛ መስመሮች የሚጨምሩበት፡ የ ቀስት መስመሮች እና የ አቅጣጫ መስመሮች ወደ አሁኑ ተንሸራታች ወይንም ገጽ</ahelp>"
+msgid "<ahelp hid=\".uno:ArrowsToolbox\">Open the <variable id=\"lines_and_arrows_menu\"><menuitem>Lines and Arrows</menuitem></variable> toolbar, where you can add straight lines, lines with arrows, and dimension lines to the current slide or page.</ahelp>"
+msgstr ""
#. dJyBN
#: 10120000.xhp
diff --git a/source/am/officecfg/registry/data/org/openoffice/Office/UI.po b/source/am/officecfg/registry/data/org/openoffice/Office/UI.po
index c00ead292fe..2409b6d9db1 100644
--- a/source/am/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/am/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-13 12:37+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2022-09-09 11:26+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/am/>\n"
@@ -30138,14 +30138,14 @@ msgctxt ""
msgid "Columns"
msgstr ""
-#. DqpFK
+#. oziQM
#: Sidebar.xcu
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.QuickFindPanel\n"
"Title\n"
"value.text"
-msgid "QuickFind"
+msgid "Quick Find"
msgstr ""
#. CDJWW
diff --git a/source/am/sc/messages.po b/source/am/sc/messages.po
index 25aca17e618..7f9c498f594 100644
--- a/source/am/sc/messages.po
+++ b/source/am/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2023-02-01 09:33+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/am/>\n"
@@ -23168,10 +23168,10 @@ msgctxt "drawtemplatedialog|standard"
msgid "_Standard"
msgstr ""
-#. jyFCi
+#. Dnnbp
#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
msgctxt "drawtemplatedialog|organizer"
-msgid "Organizer"
+msgid "General"
msgstr ""
#. qSfk8
@@ -28116,11 +28116,11 @@ msgctxt "pagetemplatedialog|PageTemplateDialog"
msgid "Page Style"
msgstr "የ ገጽ ዘዴ"
-#. D22J5
+#. F6ehW
#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
msgctxt "pagetemplatedialog|organizer"
-msgid "Organizer"
-msgstr "አደራጅ"
+msgid "General"
+msgstr ""
#. CbW7A
#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
@@ -28194,11 +28194,11 @@ msgctxt "paratemplatedialog|ParaTemplateDialog"
msgid "Cell Style"
msgstr "የክፍል ዘዴ"
-#. AGL7z
+#. EMrke
#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
msgctxt "paratemplatedialog|organizer"
-msgid "Organizer"
-msgstr "ማደራጃ"
+msgid "General"
+msgstr ""
#. asnEd
#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
diff --git a/source/am/scp2/source/ooo.po b/source/am/scp2/source/ooo.po
index a8c04539ae9..52aeef082b9 100644
--- a/source/am/scp2/source/ooo.po
+++ b/source/am/scp2/source/ooo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-01-10 15:11+0100\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2022-03-13 03:06+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/scp2sourceooo/am/>\n"
@@ -2212,6 +2212,24 @@ msgctxt ""
msgid "Installs the Spanish user interface"
msgstr "Installs the Spanish user interface"
+#. NreEY
+#: module_langpack.ulf
+msgctxt ""
+"module_langpack.ulf\n"
+"STR_NAME_MODULE_LANGPACK_SUN\n"
+"LngText.text"
+msgid "Sundanese"
+msgstr ""
+
+#. pa3r3
+#: module_langpack.ulf
+msgctxt ""
+"module_langpack.ulf\n"
+"STR_DESC_MODULE_LANGPACK_SUN\n"
+"LngText.text"
+msgid "Installs the Sundanese user interface"
+msgstr ""
+
#. zAWhn
#: module_langpack.ulf
msgctxt ""
diff --git a/source/am/sd/messages.po b/source/am/sd/messages.po
index 8653bb47172..a6b5e13b750 100644
--- a/source/am/sd/messages.po
+++ b/source/am/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-13 12:37+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2022-05-23 12:49+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/am/>\n"
@@ -9551,11 +9551,11 @@ msgctxt "templatedialog|standard"
msgid "_Standard"
msgstr "_መደበኛ"
-#. HsXnQ
+#. BXMVx
#: sd/uiconfig/simpress/ui/templatedialog.ui:126
msgctxt "templatedialog|organizer"
-msgid "Organizer"
-msgstr "አደራጅ"
+msgid "General"
+msgstr ""
#. 5d7Zo
#: sd/uiconfig/simpress/ui/templatedialog.ui:149
diff --git a/source/am/sfx2/messages.po b/source/am/sfx2/messages.po
index 07d7d2fac2e..9e54d022eb7 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: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2022-06-06 17:37+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/am/>\n"
@@ -3003,152 +3003,110 @@ msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "የ ጎን መደርደሪያ ማሳራፊያ መዝጊያ"
-#. pxEPn
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:18
-msgctxt "descriptioninfopage|label27"
-msgid "_Title:"
-msgstr "_አርእስት:"
-
#. HqzQo
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:32
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:18
msgctxt "descriptioninfopage|label28"
msgid "_Subject:"
msgstr "_ጉዳዩ:"
#. gEGPn
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:46
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:32
msgctxt "descriptioninfopage|label29"
msgid "_Keywords:"
msgstr "_ቁልፍ ቃሎች:"
-#. FXZzx
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:61
-msgctxt "descriptioninfopage|label31"
-msgid "Co_ntributor:"
-msgstr ""
-
-#. eKsAC
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:76
-msgctxt "descriptioninfopage|label32"
-msgid "Co_verage:"
-msgstr ""
-
-#. Wtpt7
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:91
-msgctxt "descriptioninfopage|label37"
-msgid "_Identifier:"
-msgstr ""
-
-#. 73G3F
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:106
-msgctxt "descriptioninfopage|label39"
-msgid "_Publisher:"
-msgstr ""
-
-#. Axu5g
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:121
-msgctxt "descriptioninfopage|label40"
-msgid "R_elation:"
-msgstr ""
-
-#. AGDpc
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:136
-msgctxt "descriptioninfopage|label41"
-msgid "Ri_ghts:"
-msgstr ""
-
-#. eK4rF
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:151
-msgctxt "descriptioninfopage|label42"
-msgid "So_urce:"
-msgstr ""
-
-#. RFBPC
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:166
-msgctxt "descriptioninfopage|label45"
-msgid "T_ype:"
-msgstr ""
-
#. Nayo4
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:181
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:47
msgctxt "descriptioninfopage|label30"
msgid "_Comments:"
msgstr "_አስተያየቶች:"
#. qw238
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:199
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:65
msgctxt "descriptioninfopage|extended_tip|title"
msgid "Enter a title for the document."
msgstr "ለሰነዱ አርእስት ያስገቡ"
#. rvZHi
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:216
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:82
msgctxt "descriptioninfopage|extended_tip|subject"
msgid "Enter a subject for the document. You can use a subject to group documents with similar contents."
msgstr "ለ ሰነዱ ጉዳይ ያስገቡ: እርስዎ መጠቀም ይችላሉ ተመሳሳይ ይዞታ ያላቸውን ሰነዶች በ ጉዳይ በ ቡድን ማድረግ "
#. FoxGh
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:233
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:99
msgctxt "descriptioninfopage|extended_tip|keywords"
msgid "Enter the words that you want to use to index the content of your document. Keywords must be separated by commas. A keyword can contain white space characters or semicolons."
msgstr "ያስገቡ ቃሎች እርስዎ እንደ ማውጫ መጠቀም የሚፈልጉትን ለ እርስዎ ሰነድ ይዞታዎች: ቁልፍ ቃሎች በ ኮማ (,) መለያየት አለባቸው: ቁልፍ ቃሎች ነጭ የ ክፍተት ቦታ ባህሪዎች ወይንም ሴሚኮለን (;) መያዝ ይችላሉ "
#. 64GNQ
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:250
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:116
msgctxt "descriptioninfopage|extended_tip|contributor"
msgid "Enter the names of the people, organizations, or other entities that have made contributions to the document."
msgstr ""
-#. ECAfA
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:267
-msgctxt "descriptioninfopage|extended_tip|coverage"
-msgid "Enter the time, place, or jurisdiction that the document is relevant to."
+#. bo2q7
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:140
+msgctxt "descriptioninfopage|extended_tip|comments"
+msgid "Enter comments to help identify the document."
+msgstr "አስተያየቶች ያስገቡ ሰነዱን ለመለየት እንዲረዳዎት"
+
+#. pxEPn
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:155
+msgctxt "descriptioninfopage|label27"
+msgid "_Title:"
+msgstr "_አርእስት:"
+
+#. x4CGE
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:170
+msgctxt "descriptioninfopage|type_contributor"
+msgid "Contributor"
msgstr ""
-#. EGix4
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:284
-msgctxt "descriptioninfopage|extended_tip|identifier"
-msgid "Enter a unique and unambiguous identifier for the document."
+#. AGXmA
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:171
+msgctxt "descriptioninfopage|type_coverage"
+msgid "Coverage"
msgstr ""
-#. FQphA
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:301
-msgctxt "descriptioninfopage|extended_tip|publisher"
-msgid "Enter the name of the entity that is making the document available."
+#. FDnBu
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:172
+msgctxt "descriptioninfopage|type_identifier"
+msgid "Identifier"
msgstr ""
-#. n8gwE
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:318
-msgctxt "descriptioninfopage|extended_tip|relation"
-msgid "Enter information about a resource related to the document."
+#. iTZFA
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:173
+msgctxt "descriptioninfopage|type_publisher"
+msgid "Publisher"
msgstr ""
-#. ZiijJ
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:335
-msgctxt "descriptioninfopage|extended_tip|rights"
-msgid "Enter information about intellectual property rights associated with the document."
+#. c5fHP
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:174
+msgctxt "descriptioninfopage|type_relation"
+msgid "Relation"
msgstr ""
-#. Nze95
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:352
-msgctxt "descriptioninfopage|extended_tip|source"
-msgid "Enter information about other resources from which the document is derived."
+#. FaGa4
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:175
+msgctxt "descriptioninfopage|type_rights"
+msgid "Rights"
msgstr ""
-#. UEyYw
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:369
-msgctxt "descriptioninfopage|extended_tip|type"
-msgid "Enter information about the category or format of the document."
+#. yDvSu
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:176
+msgctxt "descriptioninfopage|type_source"
+msgid "Source"
msgstr ""
-#. bo2q7
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:393
-msgctxt "descriptioninfopage|extended_tip|comments"
-msgid "Enter comments to help identify the document."
-msgstr "አስተያየቶች ያስገቡ ሰነዱን ለመለየት እንዲረዳዎት"
+#. 25AxF
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:177
+msgctxt "descriptioninfopage|type_types"
+msgid "Type"
+msgstr ""
#. sGW3Z
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:406
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:187
msgctxt "descriptioninfopage|extended_tip|DescriptionInfoPage"
msgid "Contains descriptive information about the document."
msgstr "ስለ ሰነዱ መግለጫ መረጃ ይዟል"
@@ -3408,85 +3366,85 @@ msgid "_Apply user data"
msgstr "የተጠቃሚ ዳታ _መፈጸሚያ"
#. JFxmP
-#: sfx2/uiconfig/ui/documentinfopage.ui:197
+#: sfx2/uiconfig/ui/documentinfopage.ui:198
msgctxt "documentinfopage|reset"
msgid "Reset Properties"
msgstr "ባህሪዎች እንደ ነበር መመለሻ"
#. HrN2U
-#: sfx2/uiconfig/ui/documentinfopage.ui:204
+#: sfx2/uiconfig/ui/documentinfopage.ui:205
msgctxt "documentinfopage|extended_tip|reset"
msgid "Resets the editing time to zero, the creation date to the current date and time, and the version number to 1. The modification and printing dates are also deleted."
msgstr "እንደ ነበር መመለሻ የ ማረሚያ ጊዜ ወደ ዜሮ: የ ተፈጠረበትን ቀን ወደ ዛሬ ቀን እና ሰአት: እና እትሙን ወደ ቁጥር 1. የ ተሻሻለበት ቀን እና የ ታተመበት ቀን በሙሉ ይጠፋል"
#. qeWvU
-#: sfx2/uiconfig/ui/documentinfopage.ui:215
+#: sfx2/uiconfig/ui/documentinfopage.ui:216
msgctxt "documentinfopage|signature"
msgid "Di_gital Signatures..."
msgstr "ዲጂ_ታል ፊርማ..."
#. rEEgJ
-#: sfx2/uiconfig/ui/documentinfopage.ui:234
+#: sfx2/uiconfig/ui/documentinfopage.ui:235
msgctxt "documentinfopage|label11"
msgid "_Size:"
msgstr "_መጠን:"
#. WNFYB
-#: sfx2/uiconfig/ui/documentinfopage.ui:247
+#: sfx2/uiconfig/ui/documentinfopage.ui:248
msgctxt "documentinfopage|showsize"
msgid "unknown"
msgstr "ያልታወቀ"
#. EgtLE
-#: sfx2/uiconfig/ui/documentinfopage.ui:262
+#: sfx2/uiconfig/ui/documentinfopage.ui:263
msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "_አካባቢ:"
#. 9xhwo
-#: sfx2/uiconfig/ui/documentinfopage.ui:276
+#: sfx2/uiconfig/ui/documentinfopage.ui:277
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "_አይነት:"
#. ZLmAo
-#: sfx2/uiconfig/ui/documentinfopage.ui:299
+#: sfx2/uiconfig/ui/documentinfopage.ui:300
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "_የመግቢያ ቃል መቀየሪያ"
#. oqAZE
-#: sfx2/uiconfig/ui/documentinfopage.ui:317
+#: sfx2/uiconfig/ui/documentinfopage.ui:318
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "ቴምፕሌት :"
#. 5pXPV
-#: sfx2/uiconfig/ui/documentinfopage.ui:366
+#: sfx2/uiconfig/ui/documentinfopage.ui:367
msgctxt "documentinfopage|extended_tip|nameed"
msgid "Displays the file name."
msgstr "የ ፋይል ስም ማሳያ"
#. LCDUj
-#: sfx2/uiconfig/ui/documentinfopage.ui:397
+#: sfx2/uiconfig/ui/documentinfopage.ui:398
msgctxt "documentinfopage|thumbnailsavecb"
msgid "Save preview image with this document"
msgstr "የ ቅድመ እይታ ምስል በዚህ ሰነድ ውስጥ ማስቀመጫ"
#. 6bF5w
-#: sfx2/uiconfig/ui/documentinfopage.ui:416
+#: sfx2/uiconfig/ui/documentinfopage.ui:419
msgctxt "documentinfopage|image-preferred-dpi-checkbutton"
msgid "Preferred resolution for images:"
msgstr ""
#. pukYD
-#: sfx2/uiconfig/ui/documentinfopage.ui:466
+#: sfx2/uiconfig/ui/documentinfopage.ui:467
msgctxt "documentinfopage|image-preferred-ppi-unit"
msgid "ppi"
msgstr ""
#. VWjRu
-#: sfx2/uiconfig/ui/documentinfopage.ui:500
+#: sfx2/uiconfig/ui/documentinfopage.ui:508
msgctxt "documentinfopage|extended_tip|DocumentInfoPage"
msgid "Contains basic information about the current file."
msgstr "ስለ አሁኑ ፋይል መሰረታዊ መረጃ ይዟል"
diff --git a/source/am/sw/messages.po b/source/am/sw/messages.po
index ea1b8ac2674..4e02f312a1d 100644
--- a/source/am/sw/messages.po
+++ b/source/am/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-23 12:40+0200\n"
-"PO-Revision-Date: 2024-05-23 13:25+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"PO-Revision-Date: 2024-06-03 12:47+0200\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/am/>\n"
"Language: am\n"
@@ -15474,157 +15474,157 @@ msgid "This is where you insert the references or referenced fields into the cur
msgstr "እርስዎ እዚህ ነው ማመሳከሪያ ማስገባት የሚችሉት: ወይንም ሜዳዎችን ማመሳከር የሚችሉት በ አሁኑ ሰነድ ውስጥ: ማመሳከሪያ የተመሳከሩ ሜዳዎች ናቸው: በ ተመሳሳይ ሰነድ ውስጥ: ወይንም በ ንዑስ-ሰነዶች ውስጥ ከ ዋናው ሰነድ ውስጥ"
#. jXhPb
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:71
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:73
msgctxt "fldvarpage|nameft"
msgid "Na_me:"
msgstr ""
#. juXJz
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:89
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:91
msgctxt "fldvarpage|extended_tip|name"
msgid "Type the name of the user-defined field to create."
msgstr ""
#. mA2Cx
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:105
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:107
msgctxt "fldvarpage|valueft"
msgid "_Value:"
msgstr ""
#. onRpf
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:130
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:132
msgctxt "fldvarpage|extended_tip|value"
msgid "Enter the contents to add to a user-defined field."
msgstr ""
#. BLiKH
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:154
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:156
msgctxt "fldvarpage|apply|tooltip_text"
msgid "Apply"
msgstr "መፈጸሚያ"
#. iLGxP
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:160
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:162
msgctxt "fldvarpage|extended_tip|apply"
msgid "Adds the user-defined field to the Select list."
msgstr ""
#. GKfDe
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:174
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:176
msgctxt "fldvarpage|delete|tooltip_text"
msgid "Delete"
msgstr "ማጥፊያ"
#. bGYju
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:180
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:182
msgctxt "fldvarpage|extended_tip|delete"
msgid "Removes the user-defined field from the select list. You can only remove fields that are not used in the current document."
msgstr ""
#. EMeve
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:246
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:248
msgctxt "fldvarpage|extended_tip|type"
msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Select list, and then click Insert."
msgstr "ዝግጁ የሆኑ የ ሜዳ አይነቶች ዝርዝር: ወደ እርስዎ ሰነድ ውስጥ ሜዳ ለመጨመር: ይጫኑ የ ሜዳ አይነት: ይጫኑ ሜዳ ከ ይምረጡ ዝርዝር ውስጥ: እና ከዛ ይጫኑ ማስገቢያ"
#. MYGxL
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:257
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:259
msgctxt "fldvarpage|label1"
msgid "_Type"
msgstr "_አይነት"
#. YfUrq
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:312
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:314
msgctxt "fldvarpage|extended_tip|select"
msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, and then click Insert."
msgstr "ዝግጁ የሆኑ የ ሜዳ አይነቶች ዝርዝር ለ ተመረጠው ሜዳ አይነት በ አይነት ዝርዝር ውስጥ: ሜዳ ለማስገባት ይጫኑ ሜዳ: እና ከዛ ይጫኑ ማስገቢያ"
#. JFbpp
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:323
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:325
msgctxt "fldvarpage|label2"
msgid "_Select"
msgstr "_ይምረጡ"
#. eLoJ7
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:386
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:388
msgctxt "fldvarpage|extended_tip|numformat"
msgid "Click the format to apply to the selected field, or click \"Additional formats\" to define a custom format."
msgstr ""
#. bAzUU
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:431
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:433
msgctxt "fldvarpage|extended_tip|format"
msgid "In the Format list, define if the value is inserted as text or as number."
msgstr ""
#. qPpKb
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:445
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:447
msgctxt "fldvarpage|invisible"
msgid "Invisi_ble"
msgstr "የማይ_ታይ"
#. 4SBL9
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:453
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:455
msgctxt "fldvarpage|extended_tip|invisible"
msgid "Hides the field contents in the document."
msgstr ""
#. jUrib
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:484
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:486
msgctxt "fldvarpage|label5"
msgid "_Up to level:"
msgstr ""
#. uXVGk
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:497
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:499
msgctxt "fldvarpage|separatorft"
msgid "Se_parator:"
msgstr ""
#. xWPdj
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:511
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:513
msgctxt "fldvarpage|level|tooltip_text"
msgid "Choose heading number to prepend to displayed field, where the number comes from the first prior heading whose outline level is equal to or less than the selected outline level. If [None] is selected, no heading number is displayed."
msgstr ""
#. B2VKZ
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:513
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:515
msgctxt "fldvarpage|level"
msgid "[None]"
msgstr ""
#. 3eiSX
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:517
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:519
msgctxt "fldvarpage|extended_tip|level"
msgid "Choose heading number to prepend to displayed field, where the number comes from the first prior heading whose outline level is equal to or less than the selected outline level. For example, select “2” to use the heading number of the first prior heading that has outline level 2 or less. If “None” is selected, no heading number is displayed. To use this option, heading numbers must be enabled. Use “Tools - Heading Numbering”."
msgstr ""
#. Bnsut
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:530
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:532
msgctxt "fldvarpage|separator|tooltip_text"
msgid "Enter the character to use as a separator between the heading number and the field number."
msgstr ""
#. ECBav
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:533
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:535
msgctxt "fldvarpage|separator"
msgid "."
msgstr "."
#. 3dC3P
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:537
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:539
msgctxt "fldvarpage|extended_tip|separator"
msgid "Enter the character to use as a separator between the heading number and the field number."
msgstr ""
#. GgDBN
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:552
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:554
msgctxt "fldvarpage|label4"
msgid "With Heading Number"
msgstr ""
#. WRjtn
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:573
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:575
msgctxt "fldvarpage|label3"
msgid "_Format"
msgstr "_አቀራረብ"
@@ -21209,284 +21209,278 @@ msgctxt "navigatorcontextmenu|STR_DEMOTE_LEVEL"
msgid "Demote Outline Level"
msgstr ""
-#. tukRq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:105
-msgctxt "navigatorcontextmenu|STR_REMOVE_INDEX"
-msgid "_Remove Index"
-msgstr ""
-
#. C4355
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:113
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:105
msgctxt "navigatorcontextmenu|STR_UPDATE"
msgid "_Update"
msgstr ""
#. BtCca
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:121
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:113
msgctxt "navigatorcontextmenu|STR_EDIT_ENTRY"
msgid "Edit..."
msgstr ""
#. BYyhD
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:129
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:121
msgctxt "navigatorcontextmenu|STR_REMOVE_TBL_PROTECTION"
msgid "_Unprotect"
msgstr ""
#. 6KWWG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:137
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:129
msgctxt "navigatorcontextmenu|STR_READONLY_IDX"
msgid "Read-_only"
msgstr ""
#. Z46XG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:145
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:137
msgctxt "navigatorcontextmenu|STR_DELETE_TABLE"
msgid "Delete Table"
msgstr ""
#. nWZCB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:154
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:146
msgctxt "navigatorcontextmenu|STR_DELETE_FRAME"
msgid "Delete Frame"
msgstr ""
#. iA4dL
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:163
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:155
msgctxt "navigatorcontextmenu|STR_DELETE_IMAGE"
msgid "Delete Image"
msgstr ""
#. PeDxb
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:172
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:164
msgctxt "navigatorcontextmenu|STR_DELETE_OLE_OBJECT"
msgid "Delete OLE object"
msgstr ""
#. gGdPe
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:181
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:173
msgctxt "navigatorcontextmenu|STR_DELETE_BOOKMARK"
msgid "Delete Bookmark"
msgstr ""
#. CYbsq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:190
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:182
msgctxt "navigatorcontextmenu|STR_DELETE_REGION"
msgid "Delete Section"
msgstr ""
#. NzaP7
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:199
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:191
msgctxt "navigatorcontextmenu|STR_DELETE_HYPERLINK"
msgid "Delete Hyperlink"
msgstr ""
#. hNJRX
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:208
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:200
msgctxt "navigatorcontextmenu|STR_DELETE_REFERENCE"
msgid "Delete Reference"
msgstr ""
#. LaCMh
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:216
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:208
msgctxt "navigatorcontextmenu|STR_DELETE_INDEX"
msgid "Delete Index"
msgstr ""
#. cEyZC
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:225
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:217
msgctxt "navigatorcontextmenu|STR_DELETE_COMMENT"
msgid "Delete Comment"
msgstr ""
#. AuAjE
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:234
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:226
msgctxt "navigatorcontextmenu|STR_DELETE_DRAWING_OBJECT"
msgid "Delete Drawing object"
msgstr ""
#. RhyGG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:243
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:235
msgctxt "navigatorcontextmenu|STR_DELETE_FIELD"
msgid "Delete Field"
msgstr ""
#. GGzCM
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:252
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:244
msgctxt "navigatorcontextmenu|STR_DELETE_ALL_FOOTNOTES"
msgid "Delete All Footnotes"
msgstr ""
#. kyGVJ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:260
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:252
msgctxt "navigatorcontextmenu|STR_DELETE_ALL_ENDNOTES"
msgid "Delete All Endnotes"
msgstr ""
#. AZchK
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:269
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:261
msgctxt "navigatorcontextmenu|STR_DELETE_FOOTNOTE"
msgid "Delete Footnote"
msgstr ""
#. Cv2Cu
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:278
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:270
msgctxt "navigatorcontextmenu|STR_DELETE_ENDNOTE"
msgid "Delete Endnote"
msgstr ""
#. CUqD5
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:287
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:279
msgctxt "navigatorcontextmenu|STR_RENAME"
msgid "_Rename..."
msgstr "_እንደገና መሰየሚያ..."
#. f9jYB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:295
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:287
msgctxt "navigatorcontextmenu|STR_PROTECT_SECTION"
msgid "Protect Section"
msgstr ""
#. MEGAM
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:303
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:295
msgctxt "navigatorcontextmenu|STR_HIDE_SECTION"
msgid "Hide Section"
msgstr ""
#. U5nAb
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:311
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:303
msgctxt "navigatorcontextmenu|STR_POSTIT_SHOW"
msgid "Show All"
msgstr "ሁሉንም ማሳያ"
#. E2wWp
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:319
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:311
msgctxt "navigatorcontextmenu|STR_POSTIT_HIDE"
msgid "Hide All"
msgstr "ሁሉንም መደበቂያ"
#. aDRke
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:327
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:319
msgctxt "navigatorcontextmenu|STR_POSTIT_DELETE"
msgid "Delete All"
msgstr "ሁሉንም መደበቂያ"
#. YBipC
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:341
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:333
msgctxt "navigatorcontextmenu|STR_OUTLINE_CONTENT"
msgid "Outline Folding"
msgstr ""
#. EBK2E
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:361
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:353
msgctxt "navigatorcontextmenu|STR_OUTLINE_TRACKING"
msgid "Outline Tracking"
msgstr ""
#. fZEEr
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:375
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:367
msgctxt "navigatorcontextmenu|STR_TABLE_TRACKING"
msgid "Table Tracking"
msgstr ""
#. 7oCFa
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:383
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:375
msgctxt "navigatorcontextmenu|STR_SECTION_TRACKING"
msgid "Section Tracking"
msgstr ""
#. YmjQf
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:391
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:383
msgctxt "navigatorcontextmenu|STR_FRAME_TRACKING"
msgid "Frame Tracking"
msgstr ""
#. vhxX5
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:399
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:391
msgctxt "navigatorcontextmenu|STR_IMAGE_TRACKING"
msgid "Image Tracking"
msgstr ""
#. mcYqZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:407
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:399
msgctxt "navigatorcontextmenu|STR_OLE_OBJECT_TRACKING"
msgid "OLE Object Tracking"
msgstr ""
#. DRaED
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:415
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:407
msgctxt "navigatorcontextmenu|STR_BOOKMARK_TRACKING"
msgid "Bookmark Tracking"
msgstr ""
#. vpLmh
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:423
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:415
msgctxt "navigatorcontextmenu|STR_HYPERLINK_TRACKING"
msgid "Hyperlink Tracking"
msgstr ""
#. EvBzN
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:431
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:423
msgctxt "navigatorcontextmenu|STR_REFERENCE_TRACKING"
msgid "Reference Tracking"
msgstr ""
#. M8Bes
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:439
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:431
msgctxt "navigatorcontextmenu|STR_INDEX_TRACKING"
msgid "Index Tracking"
msgstr ""
#. KBFwM
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:447
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:439
msgctxt "navigatorcontextmenu|STR_COMMENT_TRACKING"
msgid "Comment Tracking"
msgstr ""
#. oGavB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:455
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:447
msgctxt "navigatorcontextmenu|STR_DRAWING_OBJECT_TRACKING"
msgid "Drawing Object Tracking"
msgstr ""
#. w8FTW
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:463
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:455
msgctxt "navigatorcontextmenu|STR_FIELD_TRACKING"
msgid "Field Tracking"
msgstr ""
#. BoCeZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:471
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:463
msgctxt "navigatorcontextmenu|STR_FOOTNOTE_TRACKING"
msgid "Footnote Tracking"
msgstr ""
#. QqAhu
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:479
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:471
msgctxt "navigatorcontextmenu|STR_ENDNOTE_TRACKING"
msgid "Endnote Tracking"
msgstr ""
#. vBGAw
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:487
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:479
msgctxt "navigatorcontextmenu|STR_SORT_ALPHABETICALLY"
msgid "Sort Alphabetically"
msgstr ""
#. cqtBF
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:501
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:493
msgctxt "navigatorcontextmenu|STR_OUTLINE_LEVEL"
msgid "Show Up to Outline Level"
msgstr ""
#. Zehx2
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:515
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:507
msgctxt "navigatorcontextmenu|STR_DISPLAY"
msgid "Display"
msgstr "ማሳያ"
#. bgZoy
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:535
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:527
msgctxt "navigatorcontextmenu|STR_COLLAPSE_ALL_CATEGORIES"
msgid "Collapse All Categories"
msgstr "ሁሉንም ምድቦች ማሳነሻ"
@@ -27730,6 +27724,12 @@ msgctxt "selecttabledialog|extended_tip|SelectTableDialog"
msgid "Select the table that you want to use for mail merge addresses."
msgstr "እርስዎ መጠቀም የሚፈልጉትን ሰንጠረዥ ይምረጡ ለ ደብዳቤ ማዋሀጃ አድራሻዎች "
+#. RWLE7
+#: sw/uiconfig/swriter/ui/sidebarquickfind.ui:36
+msgctxt "sidebarquickfind|find"
+msgid "Find"
+msgstr ""
+
#. DSVQt
#: sw/uiconfig/swriter/ui/sidebartableedit.ui:46
msgctxt "sidebatableedit|rowheight|tooltip_text"
@@ -28852,11 +28852,11 @@ msgctxt "templatedialog1|extended_tip|reset"
msgid "Revert any changes made on the tab shown here to the settings that were present when this dialog was opened."
msgstr ""
-#. UH8Vz
+#. Zp6EK
#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
msgctxt "templatedialog1|organizer"
-msgid "Organizer"
-msgstr "አደራጅ"
+msgid "General"
+msgstr ""
#. BvEuD
#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
@@ -28906,11 +28906,11 @@ msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
-#. tA5vb
+#. Tuygv
#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
msgctxt "templatedialog16|organizer"
-msgid "Organizer"
-msgstr "አደራጅ"
+msgid "General"
+msgstr ""
#. 7MAbD
#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
@@ -28990,11 +28990,11 @@ msgctxt "templatedialog2|TemplateDialog2"
msgid "Paragraph Style"
msgstr "በ አንቀጽ ዘዴ"
-#. 2NhWM
+#. FDfTt
#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
-msgid "Organizer"
-msgstr "አደራጃ"
+msgid "General"
+msgstr ""
#. G7U5N
#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
@@ -29104,11 +29104,11 @@ msgctxt "templatedialog4|TemplateDialog4"
msgid "Frame Style"
msgstr "የክፈፍ ዘዴ"
-#. 8dRdE
+#. wSfp8
#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
msgctxt "templatedialog4|organizer"
-msgid "Organizer"
-msgstr "አደራጅ"
+msgid "General"
+msgstr ""
#. Q2PQs
#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
@@ -29170,11 +29170,11 @@ msgctxt "templatedialog8|standard"
msgid "Standard"
msgstr "መደበኛ"
-#. BvGbL
+#. LTNWZ
#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
msgctxt "templatedialog8|organizer"
-msgid "Organizer"
-msgstr "አደራጅ"
+msgid "General"
+msgstr ""
#. UbZRu
#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
diff --git a/source/an/officecfg/registry/data/org/openoffice/Office/UI.po b/source/an/officecfg/registry/data/org/openoffice/Office/UI.po
index 089a8519583..2877239e739 100644
--- a/source/an/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/an/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-13 12:37+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-05-25 01:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/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: 1542022403.000000\n"
#. W5ukN
@@ -31940,14 +31940,14 @@ msgctxt ""
msgid "Columns"
msgstr "Columnas"
-#. DqpFK
+#. oziQM
#: Sidebar.xcu
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.QuickFindPanel\n"
"Title\n"
"value.text"
-msgid "QuickFind"
+msgid "Quick Find"
msgstr ""
#. CDJWW
diff --git a/source/an/sc/messages.po b/source/an/sc/messages.po
index 535f665c7f6..c0f5c76a005 100644
--- a/source/an/sc/messages.po
+++ b/source/an/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-05-25 01:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/an/>\n"
@@ -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: 1542022406.000000\n"
#. kBovX
@@ -24889,10 +24889,10 @@ msgctxt "drawtemplatedialog|standard"
msgid "_Standard"
msgstr ""
-#. jyFCi
+#. Dnnbp
#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
msgctxt "drawtemplatedialog|organizer"
-msgid "Organizer"
+msgid "General"
msgstr ""
#. qSfk8
@@ -29956,10 +29956,10 @@ msgctxt "pagetemplatedialog|PageTemplateDialog"
msgid "Page Style"
msgstr "Estilo de fuella"
-#. D22J5
+#. F6ehW
#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
msgctxt "pagetemplatedialog|organizer"
-msgid "Organizer"
+msgid "General"
msgstr ""
#. CbW7A
@@ -30038,10 +30038,10 @@ msgctxt "paratemplatedialog|ParaTemplateDialog"
msgid "Cell Style"
msgstr "Estilos de celda"
-#. AGL7z
+#. EMrke
#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
msgctxt "paratemplatedialog|organizer"
-msgid "Organizer"
+msgid "General"
msgstr ""
#. asnEd
diff --git a/source/an/scp2/source/ooo.po b/source/an/scp2/source/ooo.po
index 46fd530954c..fb61ddc9fd3 100644
--- a/source/an/scp2/source/ooo.po
+++ b/source/an/scp2/source/ooo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-01-10 15:11+0100\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-05-31 01:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/scp2sourceooo/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.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542022406.000000\n"
#. CYBGJ
@@ -2212,6 +2212,24 @@ msgctxt ""
msgid "Installs the Spanish user interface"
msgstr ""
+#. NreEY
+#: module_langpack.ulf
+msgctxt ""
+"module_langpack.ulf\n"
+"STR_NAME_MODULE_LANGPACK_SUN\n"
+"LngText.text"
+msgid "Sundanese"
+msgstr ""
+
+#. pa3r3
+#: module_langpack.ulf
+msgctxt ""
+"module_langpack.ulf\n"
+"STR_DESC_MODULE_LANGPACK_SUN\n"
+"LngText.text"
+msgid "Installs the Sundanese user interface"
+msgstr ""
+
#. zAWhn
#: module_langpack.ulf
msgctxt ""
diff --git a/source/an/sd/messages.po b/source/an/sd/messages.po
index db515cdd298..49663af716f 100644
--- a/source/an/sd/messages.po
+++ b/source/an/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-13 12:37+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-05-25 01:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/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: 1542022406.000000\n"
#. WDjkB
@@ -9618,10 +9618,10 @@ msgctxt "templatedialog|standard"
msgid "_Standard"
msgstr "Estandar"
-#. HsXnQ
+#. BXMVx
#: sd/uiconfig/simpress/ui/templatedialog.ui:126
msgctxt "templatedialog|organizer"
-msgid "Organizer"
+msgid "General"
msgstr ""
#. 5d7Zo
diff --git a/source/an/sfx2/messages.po b/source/an/sfx2/messages.po
index 93b34d9e9fd..12a1098c507 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: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-05-25 01:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/an/>\n"
@@ -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
@@ -2960,153 +2960,111 @@ msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#. pxEPn
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:18
-msgctxt "descriptioninfopage|label27"
-msgid "_Title:"
-msgstr ""
-
#. HqzQo
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:32
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:18
msgctxt "descriptioninfopage|label28"
msgid "_Subject:"
msgstr ""
#. gEGPn
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:46
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:32
msgctxt "descriptioninfopage|label29"
msgid "_Keywords:"
msgstr ""
-#. FXZzx
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:61
-msgctxt "descriptioninfopage|label31"
-msgid "Co_ntributor:"
-msgstr ""
-
-#. eKsAC
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:76
-msgctxt "descriptioninfopage|label32"
-msgid "Co_verage:"
-msgstr ""
-
-#. Wtpt7
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:91
-msgctxt "descriptioninfopage|label37"
-msgid "_Identifier:"
-msgstr ""
-
-#. 73G3F
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:106
-msgctxt "descriptioninfopage|label39"
-msgid "_Publisher:"
-msgstr ""
-
-#. Axu5g
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:121
-msgctxt "descriptioninfopage|label40"
-msgid "R_elation:"
-msgstr ""
-
-#. AGDpc
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:136
-msgctxt "descriptioninfopage|label41"
-msgid "Ri_ghts:"
-msgstr ""
-
-#. eK4rF
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:151
-msgctxt "descriptioninfopage|label42"
-msgid "So_urce:"
-msgstr ""
-
-#. RFBPC
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:166
-msgctxt "descriptioninfopage|label45"
-msgid "T_ype:"
-msgstr ""
-
#. Nayo4
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:181
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:47
#, fuzzy
msgctxt "descriptioninfopage|label30"
msgid "_Comments:"
msgstr "Comentarios"
#. qw238
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:199
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:65
msgctxt "descriptioninfopage|extended_tip|title"
msgid "Enter a title for the document."
msgstr ""
#. rvZHi
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:216
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:82
msgctxt "descriptioninfopage|extended_tip|subject"
msgid "Enter a subject for the document. You can use a subject to group documents with similar contents."
msgstr ""
#. FoxGh
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:233
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:99
msgctxt "descriptioninfopage|extended_tip|keywords"
msgid "Enter the words that you want to use to index the content of your document. Keywords must be separated by commas. A keyword can contain white space characters or semicolons."
msgstr ""
#. 64GNQ
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:250
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:116
msgctxt "descriptioninfopage|extended_tip|contributor"
msgid "Enter the names of the people, organizations, or other entities that have made contributions to the document."
msgstr ""
-#. ECAfA
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:267
-msgctxt "descriptioninfopage|extended_tip|coverage"
-msgid "Enter the time, place, or jurisdiction that the document is relevant to."
+#. bo2q7
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:140
+msgctxt "descriptioninfopage|extended_tip|comments"
+msgid "Enter comments to help identify the document."
+msgstr ""
+
+#. pxEPn
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:155
+msgctxt "descriptioninfopage|label27"
+msgid "_Title:"
+msgstr ""
+
+#. x4CGE
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:170
+msgctxt "descriptioninfopage|type_contributor"
+msgid "Contributor"
msgstr ""
-#. EGix4
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:284
-msgctxt "descriptioninfopage|extended_tip|identifier"
-msgid "Enter a unique and unambiguous identifier for the document."
+#. AGXmA
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:171
+msgctxt "descriptioninfopage|type_coverage"
+msgid "Coverage"
msgstr ""
-#. FQphA
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:301
-msgctxt "descriptioninfopage|extended_tip|publisher"
-msgid "Enter the name of the entity that is making the document available."
+#. FDnBu
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:172
+msgctxt "descriptioninfopage|type_identifier"
+msgid "Identifier"
msgstr ""
-#. n8gwE
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:318
-msgctxt "descriptioninfopage|extended_tip|relation"
-msgid "Enter information about a resource related to the document."
+#. iTZFA
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:173
+msgctxt "descriptioninfopage|type_publisher"
+msgid "Publisher"
msgstr ""
-#. ZiijJ
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:335
-msgctxt "descriptioninfopage|extended_tip|rights"
-msgid "Enter information about intellectual property rights associated with the document."
+#. c5fHP
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:174
+msgctxt "descriptioninfopage|type_relation"
+msgid "Relation"
msgstr ""
-#. Nze95
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:352
-msgctxt "descriptioninfopage|extended_tip|source"
-msgid "Enter information about other resources from which the document is derived."
+#. FaGa4
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:175
+msgctxt "descriptioninfopage|type_rights"
+msgid "Rights"
msgstr ""
-#. UEyYw
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:369
-msgctxt "descriptioninfopage|extended_tip|type"
-msgid "Enter information about the category or format of the document."
+#. yDvSu
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:176
+msgctxt "descriptioninfopage|type_source"
+msgid "Source"
msgstr ""
-#. bo2q7
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:393
-msgctxt "descriptioninfopage|extended_tip|comments"
-msgid "Enter comments to help identify the document."
+#. 25AxF
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:177
+msgctxt "descriptioninfopage|type_types"
+msgid "Type"
msgstr ""
#. sGW3Z
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:406
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:187
msgctxt "descriptioninfopage|extended_tip|DescriptionInfoPage"
msgid "Contains descriptive information about the document."
msgstr ""
@@ -3366,85 +3324,85 @@ msgid "_Apply user data"
msgstr ""
#. JFxmP
-#: sfx2/uiconfig/ui/documentinfopage.ui:197
+#: sfx2/uiconfig/ui/documentinfopage.ui:198
msgctxt "documentinfopage|reset"
msgid "Reset Properties"
msgstr ""
#. HrN2U
-#: sfx2/uiconfig/ui/documentinfopage.ui:204
+#: sfx2/uiconfig/ui/documentinfopage.ui:205
msgctxt "documentinfopage|extended_tip|reset"
msgid "Resets the editing time to zero, the creation date to the current date and time, and the version number to 1. The modification and printing dates are also deleted."
msgstr ""
#. qeWvU
-#: sfx2/uiconfig/ui/documentinfopage.ui:215
+#: sfx2/uiconfig/ui/documentinfopage.ui:216
msgctxt "documentinfopage|signature"
msgid "Di_gital Signatures..."
msgstr ""
#. rEEgJ
-#: sfx2/uiconfig/ui/documentinfopage.ui:234
+#: sfx2/uiconfig/ui/documentinfopage.ui:235
msgctxt "documentinfopage|label11"
msgid "_Size:"
msgstr ""
#. WNFYB
-#: sfx2/uiconfig/ui/documentinfopage.ui:247
+#: sfx2/uiconfig/ui/documentinfopage.ui:248
msgctxt "documentinfopage|showsize"
msgid "unknown"
msgstr ""
#. EgtLE
-#: sfx2/uiconfig/ui/documentinfopage.ui:262
+#: sfx2/uiconfig/ui/documentinfopage.ui:263
msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr ""
#. 9xhwo
-#: sfx2/uiconfig/ui/documentinfopage.ui:276
+#: sfx2/uiconfig/ui/documentinfopage.ui:277
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr ""
#. ZLmAo
-#: sfx2/uiconfig/ui/documentinfopage.ui:299
+#: sfx2/uiconfig/ui/documentinfopage.ui:300
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr ""
#. oqAZE
-#: sfx2/uiconfig/ui/documentinfopage.ui:317
+#: sfx2/uiconfig/ui/documentinfopage.ui:318
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr ""
#. 5pXPV
-#: sfx2/uiconfig/ui/documentinfopage.ui:366
+#: sfx2/uiconfig/ui/documentinfopage.ui:367
msgctxt "documentinfopage|extended_tip|nameed"
msgid "Displays the file name."
msgstr ""
#. LCDUj
-#: sfx2/uiconfig/ui/documentinfopage.ui:397
+#: sfx2/uiconfig/ui/documentinfopage.ui:398
msgctxt "documentinfopage|thumbnailsavecb"
msgid "Save preview image with this document"
msgstr ""
#. 6bF5w
-#: sfx2/uiconfig/ui/documentinfopage.ui:416
+#: sfx2/uiconfig/ui/documentinfopage.ui:419
msgctxt "documentinfopage|image-preferred-dpi-checkbutton"
msgid "Preferred resolution for images:"
msgstr ""
#. pukYD
-#: sfx2/uiconfig/ui/documentinfopage.ui:466
+#: sfx2/uiconfig/ui/documentinfopage.ui:467
msgctxt "documentinfopage|image-preferred-ppi-unit"
msgid "ppi"
msgstr ""
#. VWjRu
-#: sfx2/uiconfig/ui/documentinfopage.ui:500
+#: sfx2/uiconfig/ui/documentinfopage.ui:508
msgctxt "documentinfopage|extended_tip|DocumentInfoPage"
msgid "Contains basic information about the current file."
msgstr ""
diff --git a/source/an/sw/messages.po b/source/an/sw/messages.po
index b65dad6cd16..0034eae9bd2 100644
--- a/source/an/sw/messages.po
+++ b/source/an/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-05-25 01:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/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: 1542195186.000000\n"
#. oKCHH
@@ -15657,158 +15657,158 @@ msgid "This is where you insert the references or referenced fields into the cur
msgstr ""
#. jXhPb
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:71
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:73
msgctxt "fldvarpage|nameft"
msgid "Na_me:"
msgstr ""
#. juXJz
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:89
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:91
msgctxt "fldvarpage|extended_tip|name"
msgid "Type the name of the user-defined field to create."
msgstr ""
#. mA2Cx
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:105
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:107
msgctxt "fldvarpage|valueft"
msgid "_Value:"
msgstr ""
#. onRpf
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:130
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:132
msgctxt "fldvarpage|extended_tip|value"
msgid "Enter the contents to add to a user-defined field."
msgstr ""
#. BLiKH
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:154
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:156
msgctxt "fldvarpage|apply|tooltip_text"
msgid "Apply"
msgstr "Aplicar"
#. iLGxP
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:160
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:162
msgctxt "fldvarpage|extended_tip|apply"
msgid "Adds the user-defined field to the Select list."
msgstr ""
#. GKfDe
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:174
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:176
msgctxt "fldvarpage|delete|tooltip_text"
msgid "Delete"
msgstr "Eliminar"
#. bGYju
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:180
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:182
msgctxt "fldvarpage|extended_tip|delete"
msgid "Removes the user-defined field from the select list. You can only remove fields that are not used in the current document."
msgstr ""
#. EMeve
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:246
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:248
msgctxt "fldvarpage|extended_tip|type"
msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Select list, and then click Insert."
msgstr ""
#. MYGxL
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:257
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:259
#, fuzzy
msgctxt "fldvarpage|label1"
msgid "_Type"
msgstr "Tipo"
#. YfUrq
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:312
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:314
msgctxt "fldvarpage|extended_tip|select"
msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, and then click Insert."
msgstr ""
#. JFbpp
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:323
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:325
msgctxt "fldvarpage|label2"
msgid "_Select"
msgstr ""
#. eLoJ7
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:386
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:388
msgctxt "fldvarpage|extended_tip|numformat"
msgid "Click the format to apply to the selected field, or click \"Additional formats\" to define a custom format."
msgstr ""
#. bAzUU
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:431
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:433
msgctxt "fldvarpage|extended_tip|format"
msgid "In the Format list, define if the value is inserted as text or as number."
msgstr ""
#. qPpKb
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:445
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:447
msgctxt "fldvarpage|invisible"
msgid "Invisi_ble"
msgstr ""
#. 4SBL9
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:453
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:455
msgctxt "fldvarpage|extended_tip|invisible"
msgid "Hides the field contents in the document."
msgstr ""
#. jUrib
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:484
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:486
msgctxt "fldvarpage|label5"
msgid "_Up to level:"
msgstr "_Dica o livel:"
#. uXVGk
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:497
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:499
msgctxt "fldvarpage|separatorft"
msgid "Se_parator:"
msgstr ""
#. xWPdj
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:511
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:513
msgctxt "fldvarpage|level|tooltip_text"
msgid "Choose heading number to prepend to displayed field, where the number comes from the first prior heading whose outline level is equal to or less than the selected outline level. If [None] is selected, no heading number is displayed."
msgstr ""
#. B2VKZ
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:513
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:515
msgctxt "fldvarpage|level"
msgid "[None]"
msgstr "[Garra]"
#. 3eiSX
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:517
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:519
msgctxt "fldvarpage|extended_tip|level"
msgid "Choose heading number to prepend to displayed field, where the number comes from the first prior heading whose outline level is equal to or less than the selected outline level. For example, select “2” to use the heading number of the first prior heading that has outline level 2 or less. If “None” is selected, no heading number is displayed. To use this option, heading numbers must be enabled. Use “Tools - Heading Numbering”."
msgstr ""
#. Bnsut
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:530
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:532
msgctxt "fldvarpage|separator|tooltip_text"
msgid "Enter the character to use as a separator between the heading number and the field number."
msgstr ""
#. ECBav
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:533
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:535
msgctxt "fldvarpage|separator"
msgid "."
msgstr ""
#. 3dC3P
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:537
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:539
msgctxt "fldvarpage|extended_tip|separator"
msgid "Enter the character to use as a separator between the heading number and the field number."
msgstr ""
#. GgDBN
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:552
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:554
msgctxt "fldvarpage|label4"
msgid "With Heading Number"
msgstr ""
#. WRjtn
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:573
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:575
msgctxt "fldvarpage|label3"
msgid "_Format"
msgstr ""
@@ -21458,284 +21458,278 @@ msgctxt "navigatorcontextmenu|STR_DEMOTE_LEVEL"
msgid "Demote Outline Level"
msgstr ""
-#. tukRq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:105
-msgctxt "navigatorcontextmenu|STR_REMOVE_INDEX"
-msgid "_Remove Index"
-msgstr ""
-
#. C4355
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:113
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:105
msgctxt "navigatorcontextmenu|STR_UPDATE"
msgid "_Update"
msgstr ""
#. BtCca
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:121
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:113
msgctxt "navigatorcontextmenu|STR_EDIT_ENTRY"
msgid "Edit..."
msgstr ""
#. BYyhD
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:129
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:121
msgctxt "navigatorcontextmenu|STR_REMOVE_TBL_PROTECTION"
msgid "_Unprotect"
msgstr ""
#. 6KWWG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:137
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:129
msgctxt "navigatorcontextmenu|STR_READONLY_IDX"
msgid "Read-_only"
msgstr ""
#. Z46XG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:145
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:137
msgctxt "navigatorcontextmenu|STR_DELETE_TABLE"
msgid "Delete Table"
msgstr ""
#. nWZCB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:154
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:146
msgctxt "navigatorcontextmenu|STR_DELETE_FRAME"
msgid "Delete Frame"
msgstr ""
#. iA4dL
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:163
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:155
msgctxt "navigatorcontextmenu|STR_DELETE_IMAGE"
msgid "Delete Image"
msgstr ""
#. PeDxb
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:172
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:164
msgctxt "navigatorcontextmenu|STR_DELETE_OLE_OBJECT"
msgid "Delete OLE object"
msgstr ""
#. gGdPe
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:181
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:173
msgctxt "navigatorcontextmenu|STR_DELETE_BOOKMARK"
msgid "Delete Bookmark"
msgstr ""
#. CYbsq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:190
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:182
msgctxt "navigatorcontextmenu|STR_DELETE_REGION"
msgid "Delete Section"
msgstr ""
#. NzaP7
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:199
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:191
msgctxt "navigatorcontextmenu|STR_DELETE_HYPERLINK"
msgid "Delete Hyperlink"
msgstr ""
#. hNJRX
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:208
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:200
msgctxt "navigatorcontextmenu|STR_DELETE_REFERENCE"
msgid "Delete Reference"
msgstr ""
#. LaCMh
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:216
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:208
msgctxt "navigatorcontextmenu|STR_DELETE_INDEX"
msgid "Delete Index"
msgstr ""
#. cEyZC
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:225
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:217
msgctxt "navigatorcontextmenu|STR_DELETE_COMMENT"
msgid "Delete Comment"
msgstr ""
#. AuAjE
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:234
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:226
msgctxt "navigatorcontextmenu|STR_DELETE_DRAWING_OBJECT"
msgid "Delete Drawing object"
msgstr ""
#. RhyGG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:243
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:235
msgctxt "navigatorcontextmenu|STR_DELETE_FIELD"
msgid "Delete Field"
msgstr ""
#. GGzCM
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:252
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:244
msgctxt "navigatorcontextmenu|STR_DELETE_ALL_FOOTNOTES"
msgid "Delete All Footnotes"
msgstr ""
#. kyGVJ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:260
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:252
msgctxt "navigatorcontextmenu|STR_DELETE_ALL_ENDNOTES"
msgid "Delete All Endnotes"
msgstr ""
#. AZchK
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:269
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:261
msgctxt "navigatorcontextmenu|STR_DELETE_FOOTNOTE"
msgid "Delete Footnote"
msgstr ""
#. Cv2Cu
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:278
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:270
msgctxt "navigatorcontextmenu|STR_DELETE_ENDNOTE"
msgid "Delete Endnote"
msgstr ""
#. CUqD5
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:287
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:279
msgctxt "navigatorcontextmenu|STR_RENAME"
msgid "_Rename..."
msgstr ""
#. f9jYB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:295
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:287
msgctxt "navigatorcontextmenu|STR_PROTECT_SECTION"
msgid "Protect Section"
msgstr ""
#. MEGAM
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:303
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:295
msgctxt "navigatorcontextmenu|STR_HIDE_SECTION"
msgid "Hide Section"
msgstr ""
#. U5nAb
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:311
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:303
msgctxt "navigatorcontextmenu|STR_POSTIT_SHOW"
msgid "Show All"
msgstr ""
#. E2wWp
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:319
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:311
msgctxt "navigatorcontextmenu|STR_POSTIT_HIDE"
msgid "Hide All"
msgstr ""
#. aDRke
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:327
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:319
msgctxt "navigatorcontextmenu|STR_POSTIT_DELETE"
msgid "Delete All"
msgstr ""
#. YBipC
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:341
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:333
msgctxt "navigatorcontextmenu|STR_OUTLINE_CONTENT"
msgid "Outline Folding"
msgstr ""
#. EBK2E
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:361
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:353
msgctxt "navigatorcontextmenu|STR_OUTLINE_TRACKING"
msgid "Outline Tracking"
msgstr ""
#. fZEEr
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:375
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:367
msgctxt "navigatorcontextmenu|STR_TABLE_TRACKING"
msgid "Table Tracking"
msgstr ""
#. 7oCFa
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:383
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:375
msgctxt "navigatorcontextmenu|STR_SECTION_TRACKING"
msgid "Section Tracking"
msgstr ""
#. YmjQf
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:391
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:383
msgctxt "navigatorcontextmenu|STR_FRAME_TRACKING"
msgid "Frame Tracking"
msgstr ""
#. vhxX5
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:399
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:391
msgctxt "navigatorcontextmenu|STR_IMAGE_TRACKING"
msgid "Image Tracking"
msgstr ""
#. mcYqZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:407
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:399
msgctxt "navigatorcontextmenu|STR_OLE_OBJECT_TRACKING"
msgid "OLE Object Tracking"
msgstr ""
#. DRaED
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:415
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:407
msgctxt "navigatorcontextmenu|STR_BOOKMARK_TRACKING"
msgid "Bookmark Tracking"
msgstr ""
#. vpLmh
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:423
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:415
msgctxt "navigatorcontextmenu|STR_HYPERLINK_TRACKING"
msgid "Hyperlink Tracking"
msgstr ""
#. EvBzN
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:431
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:423
msgctxt "navigatorcontextmenu|STR_REFERENCE_TRACKING"
msgid "Reference Tracking"
msgstr ""
#. M8Bes
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:439
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:431
msgctxt "navigatorcontextmenu|STR_INDEX_TRACKING"
msgid "Index Tracking"
msgstr ""
#. KBFwM
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:447
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:439
msgctxt "navigatorcontextmenu|STR_COMMENT_TRACKING"
msgid "Comment Tracking"
msgstr ""
#. oGavB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:455
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:447
msgctxt "navigatorcontextmenu|STR_DRAWING_OBJECT_TRACKING"
msgid "Drawing Object Tracking"
msgstr ""
#. w8FTW
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:463
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:455
msgctxt "navigatorcontextmenu|STR_FIELD_TRACKING"
msgid "Field Tracking"
msgstr ""
#. BoCeZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:471
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:463
msgctxt "navigatorcontextmenu|STR_FOOTNOTE_TRACKING"
msgid "Footnote Tracking"
msgstr ""
#. QqAhu
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:479
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:471
msgctxt "navigatorcontextmenu|STR_ENDNOTE_TRACKING"
msgid "Endnote Tracking"
msgstr ""
#. vBGAw
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:487
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:479
msgctxt "navigatorcontextmenu|STR_SORT_ALPHABETICALLY"
msgid "Sort Alphabetically"
msgstr ""
#. cqtBF
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:501
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:493
msgctxt "navigatorcontextmenu|STR_OUTLINE_LEVEL"
msgid "Show Up to Outline Level"
msgstr ""
#. Zehx2
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:515
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:507
msgctxt "navigatorcontextmenu|STR_DISPLAY"
msgid "Display"
msgstr ""
#. bgZoy
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:535
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:527
msgctxt "navigatorcontextmenu|STR_COLLAPSE_ALL_CATEGORIES"
msgid "Collapse All Categories"
msgstr ""
@@ -28050,6 +28044,12 @@ msgctxt "selecttabledialog|extended_tip|SelectTableDialog"
msgid "Select the table that you want to use for mail merge addresses."
msgstr ""
+#. RWLE7
+#: sw/uiconfig/swriter/ui/sidebarquickfind.ui:36
+msgctxt "sidebarquickfind|find"
+msgid "Find"
+msgstr ""
+
#. DSVQt
#: sw/uiconfig/swriter/ui/sidebartableedit.ui:46
msgctxt "sidebatableedit|rowheight|tooltip_text"
@@ -29203,10 +29203,10 @@ msgctxt "templatedialog1|extended_tip|reset"
msgid "Revert any changes made on the tab shown here to the settings that were present when this dialog was opened."
msgstr ""
-#. UH8Vz
+#. Zp6EK
#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
msgctxt "templatedialog1|organizer"
-msgid "Organizer"
+msgid "General"
msgstr ""
#. BvEuD
@@ -29257,10 +29257,10 @@ msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
-#. tA5vb
+#. Tuygv
#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
msgctxt "templatedialog16|organizer"
-msgid "Organizer"
+msgid "General"
msgstr ""
#. 7MAbD
@@ -29341,10 +29341,10 @@ msgctxt "templatedialog2|TemplateDialog2"
msgid "Paragraph Style"
msgstr ""
-#. 2NhWM
+#. FDfTt
#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
-msgid "Organizer"
+msgid "General"
msgstr ""
#. G7U5N
@@ -29455,10 +29455,10 @@ msgctxt "templatedialog4|TemplateDialog4"
msgid "Frame Style"
msgstr ""
-#. 8dRdE
+#. wSfp8
#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
msgctxt "templatedialog4|organizer"
-msgid "Organizer"
+msgid "General"
msgstr ""
#. Q2PQs
@@ -29522,10 +29522,10 @@ msgctxt "templatedialog8|standard"
msgid "Standard"
msgstr ""
-#. BvGbL
+#. LTNWZ
#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
msgctxt "templatedialog8|organizer"
-msgid "Organizer"
+msgid "General"
msgstr ""
#. UbZRu
diff --git a/source/ar/helpcontent2/source/text/scalc/01.po b/source/ar/helpcontent2/source/text/scalc/01.po
index ef76b4d32bf..287bab9982f 100644
--- a/source/ar/helpcontent2/source/text/scalc/01.po
+++ b/source/ar/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-27 12:59+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2021-02-18 20:36+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/ar/>\n"
@@ -54583,6 +54583,15 @@ msgctxt ""
msgid "This function ignores any text or empty cell within a data range. If you suspect wrong results from this function, look for text in the data ranges. To highlight text contents in a data range, use the <link href=\"text/scalc/01/03080000.xhp\">value highlighting</link> feature."
msgstr ""
+#. DB6XT
+#: common_func.xhp
+msgctxt ""
+"common_func.xhp\n"
+"par_id431716730587722\n"
+"help.text"
+msgid "Any of the optional arguments can be omitted. An optional argument is required to be preceded by the preceding separators."
+msgstr ""
+
#. GAPGX
#: common_func_workdaysintl.xhp
msgctxt ""
@@ -57148,6 +57157,15 @@ msgctxt ""
msgid "This function is always recalculated whenever a recalculation occurs."
msgstr ""
+#. fSXNw
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"par_id711715953325962\n"
+"help.text"
+msgid "The function is always <emph>case insensitive</emph>, independent from the setting of <emph>Case sensitive</emph> checkbox in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\"><menuitem>%PRODUCTNAME Calc - Calculate</menuitem></link>."
+msgstr ""
+
#. 8DbP2
#: func_aggregate.xhp
msgctxt ""
@@ -62413,22 +62431,22 @@ msgctxt ""
msgid "<variable id=\"h1\"><link href=\"text/scalc/01/func_filter.xhp\">FILTER</link></variable>"
msgstr ""
-#. nKHpG
+#. dxbQ9
#: func_filter.xhp
msgctxt ""
"func_filter.xhp\n"
"par_id771708806478128\n"
"help.text"
-msgid "Filters a data range or array based on conditions you specify."
+msgid "Filters a data range or array based on specified conditions."
msgstr ""
-#. M2JTs
+#. tuppo
#: func_filter.xhp
msgctxt ""
"func_filter.xhp\n"
"par_id211708281649651\n"
"help.text"
-msgid "FILTER(Range, Criteria, Return if empty)"
+msgid "FILTER( Range; Criteria [; Return if empty])"
msgstr ""
#. SGrA5
@@ -62449,31 +62467,31 @@ msgctxt ""
msgid "<emph>Criteria</emph>: A boolean array whose height (filtering by columns) or width (filtering by rows) is the same as the array, used to select data from the <emph>Range</emph>."
msgstr ""
-#. KjAXK
+#. ZcP2E
#: func_filter.xhp
msgctxt ""
"func_filter.xhp\n"
"par_id421709395146863\n"
"help.text"
-msgid "<emph>Return if empty</emph>: the value to return if all values in the Include array are empty (filter return nothing)."
+msgid "<emph>Result if empty</emph>: (optional) the value to return if all values in the <emph>Criteria</emph> array are empty (filter return nothing)."
msgstr ""
-#. PAajv
+#. AFtpH
#: func_filter.xhp
msgctxt ""
"func_filter.xhp\n"
"par_id21709506838932\n"
"help.text"
-msgid "<input>{=FILTER(A2:C13,A2:A13>50)}</input> returns the array {57,49,12|56,33,60|57,,} containing all grades with Maths grade above 50. Note that this is an array formula."
+msgid "<input>{=FILTER(A2:C13;A2:A13>50)}</input> returns the array containing all grades with Maths grade above 50. Note that this is an <link href=\"text/scalc/01/04060107.xhp#creating_array_formulas\">array formula</link>."
msgstr ""
-#. WhdTC
+#. METQ9
#: func_filter.xhp
msgctxt ""
"func_filter.xhp\n"
"par_id561709507935610\n"
"help.text"
-msgid "<input>{=FILTER(A2:C13,B2:B13>90,\"No results\")}</input> Returns the string \"No results\", since no grade on Physics is above 90."
+msgid "<input>{=FILTER(A2:C13;B2:B13>90;\"No results\")}</input> Returns the string \"No results\", since no grade on Physics is above 90."
msgstr ""
#. q34Yg
@@ -66940,13 +66958,13 @@ msgctxt ""
msgid "Generates an array of random numbers between two limit values."
msgstr ""
-#. 9wxNC
+#. ArGrF
#: func_randarray.xhp
msgctxt ""
"func_randarray.xhp\n"
"par_id211708281649651\n"
"help.text"
-msgid "RANDARRAY([Rows], [Columns], [Min], [Max], [Integers])"
+msgid "RANDARRAY([Rows [; Columns [; Min [; Max [; Integers] ] ] ])"
msgstr ""
#. FDbmd
@@ -67012,13 +67030,13 @@ msgctxt ""
msgid "If <emph>Rows</emph> or <emph>Columns</emph> are references to the content of other cells, the array dimensions do not change when the referenced content changes. The array formula must be deleted and re-entered."
msgstr ""
-#. ERYkg
+#. mz6p3
#: func_randarray.xhp
msgctxt ""
"func_randarray.xhp\n"
"par_id521715616457946\n"
"help.text"
-msgid "<input>{=RANDARRAY(10,4,10,50,1)}</input> returns an array of 10 rows, 4 columns with minimum value 10 and maximum value of 50 of whole numbers (integers)."
+msgid "<input>{=RANDARRAY(10;4;10;50;1)}</input> returns an array of 10 rows, 4 columns with minimum value 10 and maximum value of 50 of whole numbers (integers)."
msgstr ""
#. iGDsD
@@ -68083,13 +68101,13 @@ msgctxt ""
msgid "The array is filled from the first row to the right up to the value of <emph>Columns</emph>, and then down to the number of rows."
msgstr ""
-#. sC8E6
+#. u9vnG
#: func_sequence.xhp
msgctxt ""
"func_sequence.xhp\n"
"par_id201714595986945\n"
"help.text"
-msgid "<input>{=SEQUENCE(3,3,10,11)}</input> returns the 3-by-3 array below with an upper-right value of 10 and filling the array to the right and then downward in steps of 11."
+msgid "<input>{=SEQUENCE(3,3,10,11)}</input> returns the 3-by-3 array below with an upper-left value of 10 and filling the array to the right and then downward in steps of 11."
msgstr ""
#. sNE2S
@@ -68236,49 +68254,49 @@ msgctxt ""
msgid "Enter the formula as an <link href=\"text/scalc/01/04060107.xhp\">array formula</link>."
msgstr ""
-#. LksfE
+#. DmRKh
#: func_sort.xhp
msgctxt ""
"func_sort.xhp\n"
"par_id211708281649651\n"
"help.text"
-msgid "SORT(Range [, SortIndex[, SortOrder[, ByCol]]])"
+msgid "SORT(Range [; SortIndex [; SortOrder [; ByCol] ] ])"
msgstr ""
-#. 4iAJz
+#. gmV6H
#: func_sort.xhp
msgctxt ""
"func_sort.xhp\n"
"par_id551711457515235\n"
"help.text"
-msgid "<emph>Range:</emph> Required. The range or array to sort."
+msgid "<emph>Range:</emph> the range or array to sort."
msgstr ""
-#. Epf9D
+#. WQaKY
#: func_sort.xhp
msgctxt ""
"func_sort.xhp\n"
"par_id151711457520290\n"
"help.text"
-msgid "<emph>SortIndex:</emph> Optional. The number indicating the row or column to sort by."
+msgid "<emph>SortIndex:</emph> (optional). The number indicating the row or column to sort by."
msgstr ""
-#. 2cgDj
+#. P5DGG
#: func_sort.xhp
msgctxt ""
"func_sort.xhp\n"
"par_id131711457525811\n"
"help.text"
-msgid "<emph>SortOrder:</emph> Optional. A number indicating the desired sort order; 1 for ascending order (default), -1 for descending order."
+msgid "<emph>SortOrder:</emph> (optional). A number indicating the desired sort order; 1 for ascending order (default), -1 for descending order."
msgstr ""
-#. JwCYE
+#. 5Vo8L
#: func_sort.xhp
msgctxt ""
"func_sort.xhp\n"
"par_id351711457531579\n"
"help.text"
-msgid "<emph>ByCol:</emph> Optional. A logical value indicating the desired sort direction; <emph>FALSE</emph> to sort by row (default), <emph>TRUE</emph> to sort by column."
+msgid "<emph>ByCol:</emph> (optional). A logical value indicating the desired sort direction; <emph>FALSE</emph> to sort by row (default), <emph>TRUE</emph> to sort by column."
msgstr ""
#. hDBib
@@ -68470,13 +68488,13 @@ msgctxt ""
msgid "Sorts the contents of a range or array based on the values in a corresponding range or array."
msgstr ""
-#. EUgaa
+#. 52ZFJ
#: func_sortby.xhp
msgctxt ""
"func_sortby.xhp\n"
"par_id211708281649651\n"
"help.text"
-msgid "SORTBY(Range, SortByRange1, SortOrder1[, SortByRange2, SortOrder2,[...]])"
+msgid "SORTBY(Range; SortByRange1; SortOrder1 [; SortByRange2; SortOrder2,[...] ])"
msgstr ""
#. gifyS
@@ -68488,31 +68506,31 @@ msgctxt ""
msgid "<emph>Range</emph>: The array or range to sort."
msgstr ""
-#. k3ADs
+#. i3EwL
#: func_sortby.xhp
msgctxt ""
"func_sortby.xhp\n"
"par_id291711544460323\n"
"help.text"
-msgid "<emph>SortByRange1, SortByRange2,... </emph>: Range 1, range 2,... are the arrays or ranges to sort on."
+msgid "<emph>SortByRange1, SortByRange2,... </emph>: range 1, range 2,... are the arrays or ranges to sort on."
msgstr ""
-#. FTuBa
+#. BA6NF
#: func_sortby.xhp
msgctxt ""
"func_sortby.xhp\n"
"par_id501711544465886\n"
"help.text"
-msgid "<emph>SortOrder1, SortOrder2,...</emph> : Order 1, order 2,... are the orders to use for sorting. 1 for ascending, -1 for descending. Default is ascending."
+msgid "<emph>SortOrder1, SortOrder2,...</emph> : order 1, order 2,... are the orders to use for sorting. 1 for ascending, -1 for descending. Default is ascending."
msgstr ""
-#. FA2hL
+#. jhZ65
#: func_sortby.xhp
msgctxt ""
"func_sortby.xhp\n"
"par_id131711466000482\n"
"help.text"
-msgid "<input>{=SORTBY(A2:C7,A2:A7,1,C2:C7,-1)}</input>"
+msgid "<input>{=SORTBY(A2:C7;A2:A7;1;C2:C7;-1)}</input>"
msgstr ""
#. q9cpQ
@@ -69955,15 +69973,6 @@ msgctxt ""
msgid "Returns the array of unique values from a range or array of values."
msgstr ""
-#. h3r2U
-#: func_unique.xhp
-msgctxt ""
-"func_unique.xhp\n"
-"par_id711715953325962\n"
-"help.text"
-msgid "The UNIQUE function is always case sensitive, independent from the setting of <emph>Case sensitive</emph> checkbox in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\"><menuitem>%PRODUCTNAME Calc - Calculate</menuitem></link>."
-msgstr ""
-
#. A8bJf
#: func_unique.xhp
msgctxt ""
@@ -70783,6 +70792,15 @@ msgctxt ""
msgid "System"
msgstr ""
+#. cM6zS
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"par_id901535122363436\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
#. V79BD
#: func_weeknum.xhp
msgctxt ""
@@ -71584,40 +71602,40 @@ msgctxt ""
msgid "Searches for a value in an array and returns a reference to a cell or range of cells."
msgstr ""
-#. xMTVW
+#. bywFk
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id631708282151776\n"
"help.text"
-msgid "XLOOKUP function is a modern and flexible replacement for older functions like <link href=\"text/scalc/01/04060109.xhp#Section9\">VLOOKUP</link>, <link href=\"text/scalc/01/04060109.xhp#Section17\">HLOOKUP</link>, and <link href=\"text/scalc/01/04060109.xhp#Section14\">LOOKUP</link>. XLOOKUP supports approximate and exact matching, wildcards (* ?) for partial matches, and lookups in vertical or horizontal ranges. XLOOKUP can perform a reverse search and offers a fast binary search option when working with large datasets."
+msgid "XLOOKUP function is a modern and flexible replacement for older functions like <link href=\"text/scalc/01/04060109.xhp#Section9\">VLOOKUP</link>, <link href=\"text/scalc/01/04060109.xhp#Section17\">HLOOKUP</link>, and <link href=\"text/scalc/01/04060109.xhp#Section14\">LOOKUP</link>. XLOOKUP supports approximate and exact matching, wildcards (* ?) for partial matches, and lookups in vertical or horizontal ranges. XLOOKUP can perform a reverse search and offers a fast binary search option when working with large datasets."
msgstr ""
-#. VESoP
+#. TwFcc
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id211708281649651\n"
"help.text"
-msgid "XLOOKUP(Lookup; Array; Return [; NotFound; MatchType; SearchMode ] )"
+msgid "XLOOKUP( [Lookup] ; Array ; Return [ ; [ NotFound ] [ ; [MatchType] [ ; SearchMode ] ] ] )"
msgstr ""
-#. 3zUXb
+#. WoJu6
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id861708281340704\n"
"help.text"
-msgid "<emph>Lookup</emph>: The value of any type to search for in <emph>Array</emph>. If omitted, XLOOKUP returns blank cells it finds in <emph>Array</emph>."
+msgid "<emph>Lookup</emph>: (optional) The value of any type to search for in <emph>Array</emph>. If omitted, XLOOKUP returns blank cells it finds in <emph>Array</emph>."
msgstr ""
-#. qUjAU
+#. hBE9s
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id831708281625340\n"
"help.text"
-msgid "<emph>Array</emph>: is the reference of the array or range to search."
+msgid "<emph>Array</emph>: is the reference of the array to search. Array must be a 1-dimensional array and must be contained in one sheet only."
msgstr ""
#. nWhEP
@@ -71629,175 +71647,148 @@ msgctxt ""
msgid "<emph>Return</emph>: is the reference of the array or range to return."
msgstr ""
-#. 2LnvD
+#. G4DLq
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id821708357634624\n"
"help.text"
-msgid "If <emph>Return</emph> is an array of values, the XLOOKUP function must be entered as an <link href=\"text/scalc/01/04060107.xhp#creating_array_formulas\">array formula</link>."
+msgid "If <emph>Return</emph> is a range of cells, the XLOOKUP function must be entered as an <link href=\"text/scalc/01/04060107.xhp#creating_array_formulas\">array formula</link>."
msgstr ""
-#. 3fY6K
+#. WTFGZ
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id271708281637035\n"
"help.text"
-msgid "<emph>NotFound</emph>: a text to return if the <emph>Lookup</emph> value is not found. If a valid match is not found, and <emph>NotFound</emph> is omitted, returns #N/A."
+msgid "<emph>NotFound</emph>: a text or cell content to return if the <emph>Lookup</emph> value is not found. If a valid match is not found and <emph>NotFound</emph> is omitted, the function returns the #N/A error."
msgstr ""
-#. hBDsh
+#. ruAWq
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id121708281643207\n"
"help.text"
-msgid "<emph>MatchType</emph>: Specify the match type:"
+msgid "<emph>MatchType</emph>: (optional) specifies the match type. Values can be:"
msgstr ""
-#. aCZbP
+#. go9sN
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id111708281542144\n"
"help.text"
-msgid "<emph>0</emph> - Exact match (default). If <emph>Lookup</emph> value is not found and <emph>NotFound</emph> text is omitted, then return #N/A."
+msgid "<emph>0</emph>: exact match (default). If <emph>Lookup</emph> value is not found and <emph>NotFound</emph> text is omitted, then return the #N/A error."
msgstr ""
-#. w5rBH
+#. CtG9A
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id851708281548335\n"
"help.text"
-msgid "<emph>-1</emph> - Exact match. If <emph>Lookup</emph> value is not found, then return the next smaller item."
+msgid "<emph>-1</emph>: attempt exact match. If <emph>Lookup</emph> value is not found, then return the next smaller item."
msgstr ""
-#. zQiND
+#. CpEkK
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id801708281553430\n"
"help.text"
-msgid "<emph>1</emph> - Exact match. If <emph>Lookup</emph> value is not found, then return the next larger item."
+msgid "<emph>1</emph>: attempt exact match. If <emph>Lookup</emph> value is not found, then return the next larger item."
msgstr ""
-#. 4Jxvx
+#. JJ3M2
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id881708281558005\n"
"help.text"
-msgid "<emph>2</emph> - A <link href=\"text/scalc/guide/wildcards.xhp\">wildcard</link> match where characters *, ?, and ~ have special meaning."
+msgid "<emph>2</emph>: a <link href=\"text/scalc/guide/wildcards.xhp\">wildcard</link> match where characters *, ?, and ~ have special meanings."
msgstr ""
-#. CxCof
+#. EqTBc
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id871708281607313\n"
"help.text"
-msgid "<emph>SearchMode</emph>: Specify the search mode to use:"
+msgid "<emph>SearchMode</emph>: (optional) specifies the search mode to use."
msgstr ""
-#. Lc3bp
+#. FfKjN
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id281708281579757\n"
"help.text"
-msgid "<emph>1</emph>: - Search starting at the first item (default)."
+msgid "<emph>1</emph>: returns the first occurrence starting from the first item of <emph>Array</emph> (default)."
msgstr ""
-#. HVoEm
+#. 8CD3w
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id251708281584285\n"
"help.text"
-msgid "<emph>-1</emph> - Reverse search starting at the last item."
+msgid "<emph>-1</emph>: reverse search. Returns the first occurrence starting from the last item of <emph>Array</emph>."
msgstr ""
-#. CFAD4
+#. 6aABE
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id191708281589997\n"
"help.text"
-msgid "<emph>2</emph> - Binary search that relies on <emph>Array</emph> being sorted in ascending order. If not sorted, invalid results will be returned."
+msgid "<emph>2</emph>: binary search that relies on <emph>Array</emph> being sorted in ascending order. If not sorted, invalid results will be returned."
msgstr ""
-#. mAGCX
+#. pwwij
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id561708281595885\n"
"help.text"
-msgid "<emph>-2</emph> - Binary search that relies on <emph>Array</emph> being sorted in descending order. If not sorted, invalid results will be returned."
-msgstr ""
-
-#. vD6hn
-#: func_xlookup.xhp
-msgctxt ""
-"func_xlookup.xhp\n"
-"par_id961708354814163\n"
-"help.text"
-msgid "The table below contains a glossary for translators:"
-msgstr ""
-
-#. MSv55
-#: func_xlookup.xhp
-msgctxt ""
-"func_xlookup.xhp\n"
-"par_id781708353695722\n"
-"help.text"
-msgid "<emph>English</emph>"
+msgid "<emph>-2</emph>: binary search that relies on <emph>Array</emph> being sorted in descending order. If not sorted, invalid results will be returned."
msgstr ""
-#. 5G7WA
+#. fHQrZ
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
-"par_id641708353695723\n"
+"par_id141716739193733\n"
"help.text"
-msgid "<emph>French</emph>"
+msgid "<input>{=XLOOKUP(\"Atomic Number\";A2:A4;A2:DO4)}</input> returns the array"
msgstr ""
-#. GRDeG
+#. tkRq7
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
-"par_id671708353695724\n"
+"par_id231716739652495\n"
"help.text"
-msgid "<emph>Italian</emph>"
+msgid "<input>{=XLOOKUP(\"Helium\";B1:DO1;B1:DO4)}</input> returns the array"
msgstr ""
-#. JfbWn
+#. D5tG5
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
-"par_id331708353781503\n"
+"par_id21716739329244\n"
"help.text"
-msgid "<emph>Japanese</emph>"
-msgstr ""
-
-#. CmUw2
-#: func_xlookup.xhp
-msgctxt ""
-"func_xlookup.xhp\n"
-"par_id31708356677157\n"
-"help.text"
-msgid "<input>={XLOOKUP(\"New\", A2:A4, B2:D4,\"Missing\")}</input> returns the array {\"Nouveau\",\"Nuovo\",\"新しい\"}."
+msgid "Helium"
msgstr ""
-#. Z9pX4
+#. vaCSD
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id671708356683379\n"
"help.text"
-msgid "<input>={XLOOKUP(\"Reload\", A2:A4, B2:D4,\"Missing\")}</input> returns the array {\"Missing\",\"Missing\",\"Missing\"}."
+msgid "<input>{=XLOOKUP(\"Kryptonite\";B1:DO1;B1:DO4;\"Unknown element\")}</input> returns the array {\"Unknown element\",\"Unknown element\",\"Unknown element\",\"Unknown element\"}."
msgstr ""
#. SzUpN
@@ -71836,22 +71827,31 @@ msgctxt ""
msgid "<variable id=\"h1\"><link href=\"text/scalc/01/func_xmatch.xhp\">XMATCH</link></variable>"
msgstr ""
-#. B9dyV
+#. 8GYav
#: func_xmatch.xhp
msgctxt ""
"func_xmatch.xhp\n"
"par_id581708279355738\n"
"help.text"
-msgid "Searches for a value in an array or range of cells and returns the relative position of the item."
+msgid "Searches for a value in a one-dimensional array and returns the relative position of the item."
+msgstr ""
+
+#. qJsbC
+#: func_xmatch.xhp
+msgctxt ""
+"func_xmatch.xhp\n"
+"par_id321716754048322\n"
+"help.text"
+msgid "XMATCH outperforms function <link href=\"text/scalc/01/04060109.xhp#Section12\">MATCH</link> as it allows searches according to the search mode."
msgstr ""
-#. MFVXB
+#. NFwz8
#: func_xmatch.xhp
msgctxt ""
"func_xmatch.xhp\n"
"par_id211708281649651\n"
"help.text"
-msgid "XMATCH(Lookup; Array [; MatchType; SearchMode ] )"
+msgid "XMATCH(Lookup; Array [; MatchType [; SearchMode ] ] )"
msgstr ""
#. NA2BM
@@ -71872,22 +71872,22 @@ msgctxt ""
msgid "<emph>Array</emph>: is the reference of the array or range to search."
msgstr ""
-#. EorAV
+#. WMXaP
#: func_xmatch.xhp
msgctxt ""
"func_xmatch.xhp\n"
-"par_id391708364611193\n"
+"par_id471716753503759\n"
"help.text"
-msgid "XMATCH outperforms function MATCH as it allows searches according to the search mode."
+msgid "<input>=XMATCH(\"Atomic Number\",A1:A4)</input> returns 3, the third line of the A1:A4 array."
msgstr ""
-#. yRpQy
+#. QTDzi
#: func_xmatch.xhp
msgctxt ""
"func_xmatch.xhp\n"
-"par_id31708356677157\n"
+"par_id581716753499133\n"
"help.text"
-msgid "<input>=XMATCH(\"Save\", A2:A4, 0, 1)</input> returns 2, the second line of the A2:A4 range."
+msgid "<input>=XMATCH(\"Li\",A2:DO2)</input> returns 4, the fourth column of the A2:DO2 array."
msgstr ""
#. 2AAX5
diff --git a/source/ar/helpcontent2/source/text/scalc/guide.po b/source/ar/helpcontent2/source/text/scalc/guide.po
index 44ea8480063..55195ccf46c 100644
--- a/source/ar/helpcontent2/source/text/scalc/guide.po
+++ b/source/ar/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-13 12:37+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2021-03-08 14:24+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textscalcguide/ar/>\n"
@@ -2410,13 +2410,13 @@ msgctxt ""
msgid "This method can also be used to insert a range from another sheet of the same document into the current sheet. Select the active document as source in step 4 above."
msgstr ""
-#. ANNjW
+#. fw7FU
#: cellreferences.xhp
msgctxt ""
"cellreferences.xhp\n"
"tit\n"
"help.text"
-msgid "Referencing a Cell in Another Document"
+msgid "Referencing a Cell in Another Sheet"
msgstr ""
#. FkFV9
@@ -2428,13 +2428,13 @@ msgctxt ""
msgid "<bookmark_value>sheet references</bookmark_value> <bookmark_value>references; to cells in other sheets/documents</bookmark_value> <bookmark_value>addresses; to cells in other sheets/documents</bookmark_value> <bookmark_value>cells; operating in another document</bookmark_value> <bookmark_value>documents;references</bookmark_value> <bookmark_value>cell;address</bookmark_value> <bookmark_value>address; of cell</bookmark_value>"
msgstr ""
-#. a5WVc
+#. 5EvNw
#: cellreferences.xhp
msgctxt ""
"cellreferences.xhp\n"
"hd_id3147436\n"
"help.text"
-msgid "<variable id=\"cellreferences\"><link href=\"text/scalc/guide/cellreferences.xhp\">Referencing Other Sheets</link></variable>"
+msgid "<variable id=\"cellreferences\"><link href=\"text/scalc/guide/cellreferences.xhp\">Referencing a Cell in Another Sheet</link></variable>"
msgstr ""
#. S3C6m
@@ -2626,13 +2626,13 @@ msgctxt ""
msgid "If you examine the name of the other document in this formula, you will notice that it is written as a <link href=\"text/shared/00/00000002.xhp#url\">URL</link>. This means that you can also enter a URL from the Internet."
msgstr ""
-#. ABuMQ
+#. jtXog
#: cellreferences_url.xhp
msgctxt ""
"cellreferences_url.xhp\n"
"tit\n"
"help.text"
-msgid "References to Other Sheets and Referencing URLs"
+msgid "Referencing URLs in other Sheets"
msgstr ""
#. 7ELAq
@@ -2644,13 +2644,13 @@ msgctxt ""
msgid "<bookmark_value>HTML; in sheet cells</bookmark_value><bookmark_value>references; URL in cells</bookmark_value><bookmark_value>cells; Internet references</bookmark_value><bookmark_value>URL; in Calc</bookmark_value>"
msgstr ""
-#. M5F2f
+#. qpmog
#: cellreferences_url.xhp
msgctxt ""
"cellreferences_url.xhp\n"
"hd_id3150441\n"
"help.text"
-msgid "<variable id=\"cellreferences_url\"><link href=\"text/scalc/guide/cellreferences_url.xhp\">Referencing URLs</link></variable>"
+msgid "<variable id=\"cellreferences_url\"><link href=\"text/scalc/guide/cellreferences_url.xhp\">Referencing URLs in other Sheets</link></variable>"
msgstr ""
#. VHDGU
@@ -12022,13 +12022,13 @@ msgctxt ""
msgid "January"
msgstr ""
-#. GTvgG
+#. kGDze
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
"par_id3153566\n"
"help.text"
-msgid "Specify that only rows which either have the value <literal>January</literal> in the <emph>Month</emph> cells OR a value of under 160000 in the <emph>Standard</emph> cells will be displayed."
+msgid "Specify that only rows which either have the value <literal>January</literal> in the <emph>Month</emph> cells OR a value of over 160000 in the <emph>Standard</emph> cells will be displayed."
msgstr ""
#. ApUpg
diff --git a/source/ar/helpcontent2/source/text/sdraw.po b/source/ar/helpcontent2/source/text/sdraw.po
index 7d7c51a41d8..e324bc04691 100644
--- a/source/ar/helpcontent2/source/text/sdraw.po
+++ b/source/ar/helpcontent2/source/text/sdraw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-02-02 00:04+0100\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2017-10-04 10:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1024,13 +1024,13 @@ msgctxt ""
msgid "Shape"
msgstr ""
-#. C5hGB
+#. GfQCR
#: main_shape.xhp
msgctxt ""
"main_shape.xhp\n"
"hd_id381558217682354\n"
"help.text"
-msgid "<link href=\"text/sdraw/main_shape.xhp\">Shape</link>"
+msgid "<variable id=\"shape_h1\"><link href=\"text/sdraw/main_shape.xhp\">Shape</link></variable>"
msgstr ""
#. Eeyb5
diff --git a/source/ar/helpcontent2/source/text/sdraw/01.po b/source/ar/helpcontent2/source/text/sdraw/01.po
index b6c72bb6dc4..0c72372d594 100644
--- a/source/ar/helpcontent2/source/text/sdraw/01.po
+++ b/source/ar/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-03-04 14:25+0100\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2021-02-18 20:36+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textsdraw01/ar/>\n"
@@ -529,13 +529,13 @@ msgctxt ""
msgid "<bookmark_value>text box consolidation</bookmark_value><bookmark_value>join PDF lines;text box consolidation</bookmark_value><bookmark_value>combine text box;text box consolidation</bookmark_value><bookmark_value>combine text frames;text box consolidation</bookmark_value>"
msgstr ""
-#. naVUY
+#. oW3jP
#: consolidatetext.xhp
msgctxt ""
"consolidatetext.xhp\n"
"hd_id861623510996086\n"
"help.text"
-msgid "<link href=\"text/sdraw/01/consolidatetext.xhp\">Text Box Consolidation</link>"
+msgid "<link href=\"text/sdraw/01/consolidatetext.xhp\">Consolidate Text</link>"
msgstr ""
#. zsb7F
@@ -709,6 +709,132 @@ msgctxt ""
msgid "<ahelp hid=\".uno:DuplicatePage\" visibility=\"visible\">Inserts a copy of the current page after the current page.</ahelp>"
msgstr "<ahelp hid=\".uno:DuplicatePage\" visibility=\"visible\">يُدرج نسخة من الصفحة الحالية بعد الصفحة الحالية.</ahelp>"
+#. JATBB
+#: equalize_height.xhp
+msgctxt ""
+"equalize_height.xhp\n"
+"tit\n"
+"help.text"
+msgid "Equalize Height"
+msgstr ""
+
+#. YzLZ7
+#: equalize_height.xhp
+msgctxt ""
+"equalize_height.xhp\n"
+"bm_id911716062352822\n"
+"help.text"
+msgid "<bookmark_value>shape; equalize height</bookmark_value><bookmark_value>drawing object; equalize height</bookmark_value><bookmark_value>height; equalize</bookmark_value>"
+msgstr ""
+
+#. 6aFop
+#: equalize_height.xhp
+msgctxt ""
+"equalize_height.xhp\n"
+"hd_41716903489414\n"
+"help.text"
+msgid "<variable id=\"equalize_height_h1\"><link href=\"text/sdraw/01/equalize_height.xhp\">Equalize Height</link></variable>"
+msgstr ""
+
+#. jbdbE
+#: equalize_height.xhp
+msgctxt ""
+"equalize_height.xhp\n"
+"par_id03149165419149\n"
+"help.text"
+msgid "Sets the height of two or more selected objects to the height of the object selected last. <menuitem>Equalize Height</menuitem> is only available when two or more drawing objects are selected."
+msgstr ""
+
+#. cvXqr
+#: equalize_height.xhp
+msgctxt ""
+"equalize_height.xhp\n"
+"par_id27975425109289\n"
+"help.text"
+msgid "Choose <menuitem>Shape - Equalize Height</menuitem>."
+msgstr ""
+
+#. h7hJ7
+#: equalize_height.xhp
+msgctxt ""
+"equalize_height.xhp\n"
+"par_id09268594688434\n"
+"help.text"
+msgid "Choose <menuitem>Draw</menuitem>, then in the <menuitem>Draw</menuitem> dropdown choose <menuitem>Equalize Height</menuitem>."
+msgstr ""
+
+#. xDKxC
+#: equalize_height.xhp
+msgctxt ""
+"equalize_height.xhp\n"
+"par_id35381451047272\n"
+"help.text"
+msgid "Choose <menuitem>Shapes - Equalize Height</menuitem>."
+msgstr ""
+
+#. KD2Cv
+#: equalize_width.xhp
+msgctxt ""
+"equalize_width.xhp\n"
+"tit\n"
+"help.text"
+msgid "Equalize Width"
+msgstr ""
+
+#. dFStW
+#: equalize_width.xhp
+msgctxt ""
+"equalize_width.xhp\n"
+"bm_id911716062352822\n"
+"help.text"
+msgid "<bookmark_value>shape; equalize width</bookmark_value><bookmark_value>drawing object; equalize width</bookmark_value><bookmark_value>width; equalize</bookmark_value>"
+msgstr ""
+
+#. 7sBAD
+#: equalize_width.xhp
+msgctxt ""
+"equalize_width.xhp\n"
+"hd_41716903489414\n"
+"help.text"
+msgid "<variable id=\"equalize_width_h1\"><link href=\"text/sdraw/01/equalize_width.xhp\">Equalize Width</link></variable>"
+msgstr ""
+
+#. YBRGe
+#: equalize_width.xhp
+msgctxt ""
+"equalize_width.xhp\n"
+"par_id03149165419149\n"
+"help.text"
+msgid "Sets the width of two or more selected objects to the width of the object selected last. <menuitem>Equalize Width</menuitem> is only available when two or more drawing objects are selected."
+msgstr ""
+
+#. VUC74
+#: equalize_width.xhp
+msgctxt ""
+"equalize_width.xhp\n"
+"par_id27975425109289\n"
+"help.text"
+msgid "Choose <menuitem>Shape - Equalize Width</menuitem>."
+msgstr ""
+
+#. Y9hBE
+#: equalize_width.xhp
+msgctxt ""
+"equalize_width.xhp\n"
+"par_id58194124979923\n"
+"help.text"
+msgid "Choose <menuitem>Draw</menuitem>, then in the <menuitem>Draw</menuitem> dropdown choose <menuitem>Equalize Width</menuitem>."
+msgstr ""
+
+#. 3xmAx
+#: equalize_width.xhp
+msgctxt ""
+"equalize_width.xhp\n"
+"par_id35381451047272\n"
+"help.text"
+msgid "Choose <menuitem>Shapes - Equalize Width</menuitem>."
+msgstr ""
+
#. 2LJK2
#: insert_layer.xhp
msgctxt ""
diff --git a/source/ar/helpcontent2/source/text/shared/01.po b/source/ar/helpcontent2/source/text/shared/01.po
index c4941366fbc..248b794d61b 100644
--- a/source/ar/helpcontent2/source/text/shared/01.po
+++ b/source/ar/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-27 12:59+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2023-12-29 09:45+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/ar/>\n"
@@ -40201,14 +40201,23 @@ msgctxt ""
msgid "Bullets and Numbering"
msgstr ""
-#. eZAKE
+#. ePFg9
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"bm_id11420732550923\n"
+"help.text"
+msgid "<bookmark_value>bullets and numbering; settings</bookmark_value><bookmark_value>bullets and numbering; customization</bookmark_value><bookmark_value>bullets and; add</bookmark_value><bookmark_value>bullets;Impress</bookmark_value><bookmark_value>ordered list;Impress</bookmark_value><bookmark_value>unordered list;Impress</bookmark_value><bookmark_value>bullets;Draw</bookmark_value><bookmark_value>ordered list;Draw</bookmark_value><bookmark_value>unordered list;Draw</bookmark_value>"
+msgstr ""
+
+#. RDsL2
#: 06050000.xhp
msgctxt ""
"06050000.xhp\n"
"hd_id3149551\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050000.xhp\">Bullets and Numbering</link>"
-msgstr "<link href=\"text/shared/01/06050000.xhp\">تعداد نقطي ورقمي</link>"
+msgid "<variable id=\"bullets_and_numbering_h1\"><link href=\"text/shared/01/06050000.xhp\">Bullets and Numbering</link></variable>"
+msgstr ""
#. S7psX
#: 06050000.xhp
@@ -40462,6 +40471,15 @@ msgctxt ""
msgid "Image"
msgstr ""
+#. 2wccT
+#: 06050400.xhp
+msgctxt ""
+"06050400.xhp\n"
+"bm_id56740500219423\n"
+"help.text"
+msgid "<bookmark_value>bullets and numbering; image</bookmark_value> <bookmark_value>bullets; custom image</bookmark_value>"
+msgstr ""
+
#. CwjBg
#: 06050400.xhp
msgctxt ""
@@ -40480,6 +40498,15 @@ msgctxt ""
msgid "<ahelp hid=\".\">Displays the different graphics that you can use as bullets in an unordered list.</ahelp>"
msgstr ""
+#. DSPTL
+#: 06050400.xhp
+msgctxt ""
+"06050400.xhp\n"
+"par_id51255442180622\n"
+"help.text"
+msgid "Use the <link href=\"text/shared/01/06050000.xhp\"><menuitem>Customize</menuitem></link> and <link href=\"text/shared/01/06050600.xhp\"><menuitem>Position</menuitem></link> tabs to adjust the size, alignment, and position of the image."
+msgstr ""
+
#. yDHf2
#: 06050400.xhp
msgctxt ""
@@ -40498,40 +40525,31 @@ msgctxt ""
msgid "<ahelp hid=\".\">Click the graphics that you want to use as bullets.</ahelp>"
msgstr ""
-#. kzDsV
+#. hAnvd
#: 06050400.xhp
msgctxt ""
"06050400.xhp\n"
-"hd_id061120090436157\n"
+"hd_id45986474959229\n"
"help.text"
-msgid "Link graphics"
+msgid "Add and Resize"
msgstr ""
-#. udZya
+#. coZpZ
#: 06050400.xhp
msgctxt ""
"06050400.xhp\n"
-"par_id0611200904361575\n"
+"par_id55772839958583\n"
"help.text"
-msgid "<ahelp hid=\".\">If enabled, the graphics are inserted as links. If not enabled, the graphics are embedded into the document.</ahelp>"
+msgid "Opens a file picker where you can select an image file to use as a bullet in an unordered list."
msgstr ""
-#. y5Mpc
+#. AcFMD
#: 06050400.xhp
msgctxt ""
"06050400.xhp\n"
-"par_id061120090437338\n"
+"par_id00797416585085\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050600.xhp\">Position tab (Bullets and Numbering dialog)</link>"
-msgstr ""
-
-#. GGXd8
-#: 06050400.xhp
-msgctxt ""
-"06050400.xhp\n"
-"par_id0611200904373391\n"
-"help.text"
-msgid "<link href=\"text/shared/01/06050500.xhp\">Options tab (Bullets and Numbering dialog)</link>"
+msgid "Select an image file from the file picker and click <menuitem>Open</menuitem> to add it as a bullet style. The image is automatically resized to the width and height specified in the <link href=\"text/shared/01/06050500.xhp#bm_id3153363\"><menuitem>Customize</menuitem></link> tab."
msgstr ""
#. MZF62
@@ -40543,22 +40561,22 @@ msgctxt ""
msgid "Customize (Bullets and Numbering)"
msgstr ""
-#. QChMa
+#. SQjo9
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"bm_id4096499\n"
"help.text"
-msgid "<bookmark_value>numbering;options</bookmark_value> <bookmark_value>bullet lists; formatting options</bookmark_value> <bookmark_value>font sizes;bullets</bookmark_value>"
+msgid "<bookmark_value>numbering;options</bookmark_value> <bookmark_value>bullet lists; formatting options</bookmark_value> <bookmark_value>font sizes;bullets</bookmark_value>"
msgstr ""
-#. Roq5k
+#. e9nYq
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"hd_id3147240\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050500.xhp\">Customize</link>"
+msgid "<variable id=\"customize_h1\"><link href=\"text/shared/01/06050500.xhp\">Customize</link></variable>"
msgstr ""
#. ptL6S
diff --git a/source/ar/helpcontent2/source/text/shared/02.po b/source/ar/helpcontent2/source/text/shared/02.po
index e06be765dc4..bf83d52776b 100644
--- a/source/ar/helpcontent2/source/text/shared/02.po
+++ b/source/ar/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-27 12:59+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2022-01-12 14:38+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textshared02/ar/>\n"
@@ -11887,13 +11887,13 @@ msgctxt ""
msgid "Rotate"
msgstr ""
-#. 5uEQ4
+#. bjDyk
#: 05090000.xhp
msgctxt ""
"05090000.xhp\n"
"hd_id3154863\n"
"help.text"
-msgid "<link href=\"text/shared/02/05090000.xhp\">Rotate</link>"
+msgid "<variable id=\"rotate_h1\"><link href=\"text/shared/02/05090000.xhp\">Rotate</link></variable>"
msgstr ""
#. ycqR8
@@ -11995,14 +11995,14 @@ msgctxt ""
msgid "Alignment"
msgstr "محاذاة"
-#. 5YEFv
+#. EBuE8
#: 05110000.xhp
msgctxt ""
"05110000.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "Alignment"
-msgstr "محاذاة"
+msgid "<variable id=\"alignment_h1\"><link href=\"text/shared/02/05110000.xhp\">Alignment</link></variable>"
+msgstr ""
#. GiEnY
#: 05110000.xhp
diff --git a/source/ar/helpcontent2/source/text/shared/menu.po b/source/ar/helpcontent2/source/text/shared/menu.po
index 43a92ead79f..2c01af138d5 100644
--- a/source/ar/helpcontent2/source/text/shared/menu.po
+++ b/source/ar/helpcontent2/source/text/shared/menu.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-30 14:12+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2016-05-24 02:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -367,13 +367,22 @@ msgctxt ""
msgid "<ahelp hid=\".\">This submenu contains form controls like a textbox, checkbox, option button, and listbox that can be inserted into the document.</ahelp>"
msgstr ""
-#. qHWBR
+#. GmbEB
#: insert_shape.xhp
msgctxt ""
"insert_shape.xhp\n"
"tit\n"
"help.text"
-msgid "Shape"
+msgid "Insert Shape"
+msgstr ""
+
+#. PvcFc
+#: insert_shape.xhp
+msgctxt ""
+"insert_shape.xhp\n"
+"hd_id07684081706272\n"
+"help.text"
+msgid "<variable id=\"insert_h1\"><link href=\"text/shared/menu/insert_shape.xhp\">Insert</link></variable>"
msgstr ""
#. MHwAt
@@ -394,6 +403,15 @@ msgctxt ""
msgid "<ahelp hid=\".\">This submenu contains common shapes like a line, circle, triangle, and square, or a symbol shape like a smiley face, heart, and flower that can be inserted into the document.</ahelp>"
msgstr ""
+#. v9tGR
+#: insert_shape.xhp
+msgctxt ""
+"insert_shape.xhp\n"
+"par_id261716922857055\n"
+"help.text"
+msgid "Choose <menuitem>Shape - Insert</menuitem>."
+msgstr ""
+
#. vcXma
#: insert_shape.xhp
msgctxt ""
diff --git a/source/ar/helpcontent2/source/text/simpress/01.po b/source/ar/helpcontent2/source/text/simpress/01.po
index d8ec21d7816..35f3c184ac3 100644
--- a/source/ar/helpcontent2/source/text/simpress/01.po
+++ b/source/ar/helpcontent2/source/text/simpress/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2018-09-03 12:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -853,13 +853,13 @@ msgctxt ""
msgid "Cross-fading"
msgstr ""
-#. Wboxp
+#. ZD3eP
#: 02150000.xhp
msgctxt ""
"02150000.xhp\n"
"hd_id3148577\n"
"help.text"
-msgid "Cross-fading"
+msgid "<variable id=\"cross-fading_h1\"><link href=\"text/simpress/01/02150000.xhp\">Cross-fading</link></variable>"
msgstr ""
#. aCYnB
@@ -7918,15 +7918,6 @@ msgctxt ""
msgid "Bullet and Position"
msgstr ""
-#. mjHGa
-#: bulletandposition.xhp
-msgctxt ""
-"bulletandposition.xhp\n"
-"bm_id121623276174916\n"
-"help.text"
-msgid "<bookmark_value>bullets;Impress</bookmark_value><bookmark_value>ordered list;Impress</bookmark_value><bookmark_value>unordered list;Impress</bookmark_value><bookmark_value>bullets;Draw</bookmark_value><bookmark_value>ordered list;Draw</bookmark_value><bookmark_value>unordered list;Draw</bookmark_value>"
-msgstr ""
-
#. xAFoQ
#: bulletandposition.xhp
msgctxt ""
@@ -7954,13 +7945,13 @@ msgctxt ""
msgid "In a selected text, choose <menuitem>Bullets and Numbering</menuitem>."
msgstr ""
-#. CKDCB
+#. eq2HC
#: bulletandposition.xhp
msgctxt ""
"bulletandposition.xhp\n"
"par_id571692539528746\n"
"help.text"
-msgid "On the <menuitem>Home</menuitem> tab, long click on <menuitem>Ordered</menuitem> or <menuitem>Unordered</menuitem> list, select <menuitem>Customize</menuitem>."
+msgid "On the <switchinline select=\"appl\"><caseinline select=\"DRAW\"><menuitem>Text</menuitem></caseinline><caseinline select=\"IMPRESS\"><menuitem>Home</menuitem></caseinline></switchinline> tab, long click on <menuitem>Ordered</menuitem> or <menuitem>Unordered</menuitem> list, select <menuitem>Customize</menuitem>."
msgstr ""
#. 8ABFW
@@ -8170,15 +8161,6 @@ msgctxt ""
msgid "Keep ratio"
msgstr ""
-#. c4vEd
-#: bulletandposition.xhp
-msgctxt ""
-"bulletandposition.xhp\n"
-"par_id261623260666478\n"
-"help.text"
-msgid "Check this box to preserve the height-to-width ratio of the graphic bullet."
-msgstr ""
-
#. AKwMq
#: bulletandposition.xhp
msgctxt ""
diff --git a/source/ar/helpcontent2/source/text/simpress/02.po b/source/ar/helpcontent2/source/text/simpress/02.po
index 1e12217e305..4560d4e43b8 100644
--- a/source/ar/helpcontent2/source/text/simpress/02.po
+++ b/source/ar/helpcontent2/source/text/simpress/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-27 12:59+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2017-10-04 10:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4543,13 +4543,13 @@ msgctxt ""
msgid "<link href=\"text/shared/01/04150100.xhp\">OLE Object</link>"
msgstr ""
-#. Sy8hn
+#. yeRNc
#: 10120000.xhp
msgctxt ""
"10120000.xhp\n"
"tit\n"
"help.text"
-msgid "Arrows"
+msgid "Lines and Arrows"
msgstr ""
#. MYZ6p
@@ -4561,22 +4561,22 @@ msgctxt ""
msgid "<bookmark_value>lines;inserting</bookmark_value><bookmark_value>arrows; inserting</bookmark_value><bookmark_value>inserting; lines</bookmark_value><bookmark_value>inserting; arrows</bookmark_value><bookmark_value>dimension lines; drawing</bookmark_value>"
msgstr ""
-#. JFM62
+#. BGAmB
#: 10120000.xhp
msgctxt ""
"10120000.xhp\n"
"hd_id3145799\n"
"help.text"
-msgid "<link href=\"text/simpress/02/10120000.xhp\">Arrows</link>"
+msgid "<variable id=\"lines_and_arrows_h1\"><link href=\"text/simpress/02/10120000.xhp\">Lines and Arrows</link></variable>"
msgstr ""
-#. dVNDG
+#. 4zGbe
#: 10120000.xhp
msgctxt ""
"10120000.xhp\n"
"par_id3145790\n"
"help.text"
-msgid "<ahelp hid=\".uno:ArrowsToolbox\">Open the <emph>Arrows</emph> toolbar, where you can add straight lines, lines with arrows, and dimension lines to the current slide or page.</ahelp>"
+msgid "<ahelp hid=\".uno:ArrowsToolbox\">Open the <variable id=\"lines_and_arrows_menu\"><menuitem>Lines and Arrows</menuitem></variable> toolbar, where you can add straight lines, lines with arrows, and dimension lines to the current slide or page.</ahelp>"
msgstr ""
#. dJyBN
diff --git a/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po
index 7d1fd97d7e4..e74ada0e956 100644
--- a/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-13 12:37+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\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/officecfgregistrydataorgopenofficeofficeui/ar/>\n"
@@ -30163,14 +30163,14 @@ msgctxt ""
msgid "Columns"
msgstr "الأعمدة"
-#. DqpFK
+#. oziQM
#: Sidebar.xcu
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.QuickFindPanel\n"
"Title\n"
"value.text"
-msgid "QuickFind"
+msgid "Quick Find"
msgstr ""
#. CDJWW
diff --git a/source/ar/sc/messages.po b/source/ar/sc/messages.po
index 7faf36c2dec..24394ab5947 100644
--- a/source/ar/sc/messages.po
+++ b/source/ar/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\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/scmessages/ar/>\n"
@@ -23471,10 +23471,10 @@ msgctxt "drawtemplatedialog|standard"
msgid "_Standard"
msgstr ""
-#. jyFCi
+#. Dnnbp
#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
msgctxt "drawtemplatedialog|organizer"
-msgid "Organizer"
+msgid "General"
msgstr ""
#. qSfk8
@@ -28470,11 +28470,11 @@ msgctxt "pagetemplatedialog|PageTemplateDialog"
msgid "Page Style"
msgstr "طراز الصفحة"
-#. D22J5
+#. F6ehW
#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
msgctxt "pagetemplatedialog|organizer"
-msgid "Organizer"
-msgstr "المنظّم"
+msgid "General"
+msgstr ""
#. CbW7A
#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
@@ -28548,11 +28548,11 @@ msgctxt "paratemplatedialog|ParaTemplateDialog"
msgid "Cell Style"
msgstr "نمط الخلية"
-#. AGL7z
+#. EMrke
#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
msgctxt "paratemplatedialog|organizer"
-msgid "Organizer"
-msgstr "المنظّم"
+msgid "General"
+msgstr ""
#. asnEd
#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
diff --git a/source/ar/scp2/source/ooo.po b/source/ar/scp2/source/ooo.po
index 83bf94ade58..7e891012e25 100644
--- a/source/ar/scp2/source/ooo.po
+++ b/source/ar/scp2/source/ooo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-01-10 15:11+0100\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2022-03-12 17:25+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/scp2sourceooo/ar/>\n"
@@ -2215,6 +2215,24 @@ msgctxt ""
msgid "Installs the Spanish user interface"
msgstr "يُثبّت واجهة المستخدم الإسبانية"
+#. NreEY
+#: module_langpack.ulf
+msgctxt ""
+"module_langpack.ulf\n"
+"STR_NAME_MODULE_LANGPACK_SUN\n"
+"LngText.text"
+msgid "Sundanese"
+msgstr ""
+
+#. pa3r3
+#: module_langpack.ulf
+msgctxt ""
+"module_langpack.ulf\n"
+"STR_DESC_MODULE_LANGPACK_SUN\n"
+"LngText.text"
+msgid "Installs the Sundanese user interface"
+msgstr ""
+
#. zAWhn
#: module_langpack.ulf
msgctxt ""
diff --git a/source/ar/sd/messages.po b/source/ar/sd/messages.po
index 82831ea395c..842587b2580 100644
--- a/source/ar/sd/messages.po
+++ b/source/ar/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-13 12:37+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2023-08-10 11:57+0000\n"
"Last-Translator: خالد حسني <khaled@libreoffice.org>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/ar/>\n"
@@ -9596,11 +9596,11 @@ msgctxt "templatedialog|standard"
msgid "_Standard"
msgstr "_قياسي"
-#. HsXnQ
+#. BXMVx
#: sd/uiconfig/simpress/ui/templatedialog.ui:126
msgctxt "templatedialog|organizer"
-msgid "Organizer"
-msgstr "المنظّم"
+msgid "General"
+msgstr ""
#. 5d7Zo
#: sd/uiconfig/simpress/ui/templatedialog.ui:149
diff --git a/source/ar/sfx2/messages.po b/source/ar/sfx2/messages.po
index 7ecd092184a..6b7c39f7c54 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: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\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"
@@ -3013,152 +3013,110 @@ msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "أغلق كدس الشريط الجانبي"
-#. pxEPn
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:18
-msgctxt "descriptioninfopage|label27"
-msgid "_Title:"
-msgstr "ال_عنوان:"
-
#. HqzQo
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:32
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:18
msgctxt "descriptioninfopage|label28"
msgid "_Subject:"
msgstr "المو_ضوع:"
#. gEGPn
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:46
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:32
msgctxt "descriptioninfopage|label29"
msgid "_Keywords:"
msgstr "ال_كلمات المفتاحيّة:"
-#. FXZzx
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:61
-msgctxt "descriptioninfopage|label31"
-msgid "Co_ntributor:"
-msgstr ""
-
-#. eKsAC
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:76
-msgctxt "descriptioninfopage|label32"
-msgid "Co_verage:"
-msgstr ""
-
-#. Wtpt7
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:91
-msgctxt "descriptioninfopage|label37"
-msgid "_Identifier:"
-msgstr ""
-
-#. 73G3F
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:106
-msgctxt "descriptioninfopage|label39"
-msgid "_Publisher:"
-msgstr ""
-
-#. Axu5g
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:121
-msgctxt "descriptioninfopage|label40"
-msgid "R_elation:"
-msgstr ""
-
-#. AGDpc
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:136
-msgctxt "descriptioninfopage|label41"
-msgid "Ri_ghts:"
-msgstr ""
-
-#. eK4rF
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:151
-msgctxt "descriptioninfopage|label42"
-msgid "So_urce:"
-msgstr ""
-
-#. RFBPC
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:166
-msgctxt "descriptioninfopage|label45"
-msgid "T_ype:"
-msgstr ""
-
#. Nayo4
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:181
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:47
msgctxt "descriptioninfopage|label30"
msgid "_Comments:"
msgstr "الت_عليقات:"
#. qw238
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:199
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:65
msgctxt "descriptioninfopage|extended_tip|title"
msgid "Enter a title for the document."
msgstr "أدخِل عنوانًا للمستند."
#. rvZHi
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:216
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:82
msgctxt "descriptioninfopage|extended_tip|subject"
msgid "Enter a subject for the document. You can use a subject to group documents with similar contents."
msgstr "أدخِل موضوعًا للمستند. يمكنك استخدام موضوع لتجميع المستندات ذات الموضوع المتشابه."
#. FoxGh
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:233
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:99
msgctxt "descriptioninfopage|extended_tip|keywords"
msgid "Enter the words that you want to use to index the content of your document. Keywords must be separated by commas. A keyword can contain white space characters or semicolons."
msgstr "أدخِل الكلمات التي تريد استخدامها لأرشفة محتوى المستند. يجب أن تفصل الكلمات المفتاحية بفوارز. يمكن أن تحتوي الكلمة المفتاحية على محارف فراغ أبيض أو فوارز منقوطة."
#. 64GNQ
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:250
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:116
msgctxt "descriptioninfopage|extended_tip|contributor"
msgid "Enter the names of the people, organizations, or other entities that have made contributions to the document."
msgstr ""
-#. ECAfA
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:267
-msgctxt "descriptioninfopage|extended_tip|coverage"
-msgid "Enter the time, place, or jurisdiction that the document is relevant to."
+#. bo2q7
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:140
+msgctxt "descriptioninfopage|extended_tip|comments"
+msgid "Enter comments to help identify the document."
+msgstr "أدخِل تعليقات لتساعد في تعريف المستند."
+
+#. pxEPn
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:155
+msgctxt "descriptioninfopage|label27"
+msgid "_Title:"
+msgstr "ال_عنوان:"
+
+#. x4CGE
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:170
+msgctxt "descriptioninfopage|type_contributor"
+msgid "Contributor"
msgstr ""
-#. EGix4
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:284
-msgctxt "descriptioninfopage|extended_tip|identifier"
-msgid "Enter a unique and unambiguous identifier for the document."
+#. AGXmA
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:171
+msgctxt "descriptioninfopage|type_coverage"
+msgid "Coverage"
msgstr ""
-#. FQphA
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:301
-msgctxt "descriptioninfopage|extended_tip|publisher"
-msgid "Enter the name of the entity that is making the document available."
+#. FDnBu
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:172
+msgctxt "descriptioninfopage|type_identifier"
+msgid "Identifier"
msgstr ""
-#. n8gwE
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:318
-msgctxt "descriptioninfopage|extended_tip|relation"
-msgid "Enter information about a resource related to the document."
+#. iTZFA
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:173
+msgctxt "descriptioninfopage|type_publisher"
+msgid "Publisher"
msgstr ""
-#. ZiijJ
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:335
-msgctxt "descriptioninfopage|extended_tip|rights"
-msgid "Enter information about intellectual property rights associated with the document."
+#. c5fHP
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:174
+msgctxt "descriptioninfopage|type_relation"
+msgid "Relation"
msgstr ""
-#. Nze95
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:352
-msgctxt "descriptioninfopage|extended_tip|source"
-msgid "Enter information about other resources from which the document is derived."
+#. FaGa4
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:175
+msgctxt "descriptioninfopage|type_rights"
+msgid "Rights"
msgstr ""
-#. UEyYw
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:369
-msgctxt "descriptioninfopage|extended_tip|type"
-msgid "Enter information about the category or format of the document."
+#. yDvSu
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:176
+msgctxt "descriptioninfopage|type_source"
+msgid "Source"
msgstr ""
-#. bo2q7
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:393
-msgctxt "descriptioninfopage|extended_tip|comments"
-msgid "Enter comments to help identify the document."
-msgstr "أدخِل تعليقات لتساعد في تعريف المستند."
+#. 25AxF
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:177
+msgctxt "descriptioninfopage|type_types"
+msgid "Type"
+msgstr ""
#. sGW3Z
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:406
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:187
msgctxt "descriptioninfopage|extended_tip|DescriptionInfoPage"
msgid "Contains descriptive information about the document."
msgstr "يحوي معلومات وصفية عن المستند."
@@ -3418,85 +3376,85 @@ msgid "_Apply user data"
msgstr "ت_طبيق بيانات المستخدم"
#. JFxmP
-#: sfx2/uiconfig/ui/documentinfopage.ui:197
+#: sfx2/uiconfig/ui/documentinfopage.ui:198
msgctxt "documentinfopage|reset"
msgid "Reset Properties"
msgstr "صفّر الخصائص"
#. HrN2U
-#: sfx2/uiconfig/ui/documentinfopage.ui:204
+#: sfx2/uiconfig/ui/documentinfopage.ui:205
msgctxt "documentinfopage|extended_tip|reset"
msgid "Resets the editing time to zero, the creation date to the current date and time, and the version number to 1. The modification and printing dates are also deleted."
msgstr ""
#. qeWvU
-#: sfx2/uiconfig/ui/documentinfopage.ui:215
+#: sfx2/uiconfig/ui/documentinfopage.ui:216
msgctxt "documentinfopage|signature"
msgid "Di_gital Signatures..."
msgstr "التواقيع الر_قمية..."
#. rEEgJ
-#: sfx2/uiconfig/ui/documentinfopage.ui:234
+#: sfx2/uiconfig/ui/documentinfopage.ui:235
msgctxt "documentinfopage|label11"
msgid "_Size:"
msgstr "ال_حجم:"
#. WNFYB
-#: sfx2/uiconfig/ui/documentinfopage.ui:247
+#: sfx2/uiconfig/ui/documentinfopage.ui:248
msgctxt "documentinfopage|showsize"
msgid "unknown"
msgstr "مجهول"
#. EgtLE
-#: sfx2/uiconfig/ui/documentinfopage.ui:262
+#: sfx2/uiconfig/ui/documentinfopage.ui:263
msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "ال_موقع:"
#. 9xhwo
-#: sfx2/uiconfig/ui/documentinfopage.ui:276
+#: sfx2/uiconfig/ui/documentinfopage.ui:277
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "ال_نوع:"
#. ZLmAo
-#: sfx2/uiconfig/ui/documentinfopage.ui:299
+#: sfx2/uiconfig/ui/documentinfopage.ui:300
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "غيّر _كلمة السر"
#. oqAZE
-#: sfx2/uiconfig/ui/documentinfopage.ui:317
+#: sfx2/uiconfig/ui/documentinfopage.ui:318
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "القالب:"
#. 5pXPV
-#: sfx2/uiconfig/ui/documentinfopage.ui:366
+#: sfx2/uiconfig/ui/documentinfopage.ui:367
msgctxt "documentinfopage|extended_tip|nameed"
msgid "Displays the file name."
msgstr ""
#. LCDUj
-#: sfx2/uiconfig/ui/documentinfopage.ui:397
+#: sfx2/uiconfig/ui/documentinfopage.ui:398
msgctxt "documentinfopage|thumbnailsavecb"
msgid "Save preview image with this document"
msgstr "احفظ صورة معاينة مع هذا المستند"
#. 6bF5w
-#: sfx2/uiconfig/ui/documentinfopage.ui:416
+#: sfx2/uiconfig/ui/documentinfopage.ui:419
msgctxt "documentinfopage|image-preferred-dpi-checkbutton"
msgid "Preferred resolution for images:"
msgstr ""
#. pukYD
-#: sfx2/uiconfig/ui/documentinfopage.ui:466
+#: sfx2/uiconfig/ui/documentinfopage.ui:467
msgctxt "documentinfopage|image-preferred-ppi-unit"
msgid "ppi"
msgstr ""
#. VWjRu
-#: sfx2/uiconfig/ui/documentinfopage.ui:500
+#: sfx2/uiconfig/ui/documentinfopage.ui:508
msgctxt "documentinfopage|extended_tip|DocumentInfoPage"
msgid "Contains basic information about the current file."
msgstr ""
diff --git a/source/ar/sw/messages.po b/source/ar/sw/messages.po
index 5da69d0026b..be435b3f867 100644
--- a/source/ar/sw/messages.po
+++ b/source/ar/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-01-16 01:45+0000\n"
"Last-Translator: tx99h4 <tx99h4@hotmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/ar/>\n"
@@ -15516,157 +15516,157 @@ msgid "This is where you insert the references or referenced fields into the cur
msgstr ""
#. jXhPb
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:71
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:73
msgctxt "fldvarpage|nameft"
msgid "Na_me:"
msgstr ""
#. juXJz
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:89
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:91
msgctxt "fldvarpage|extended_tip|name"
msgid "Type the name of the user-defined field to create."
msgstr ""
#. mA2Cx
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:105
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:107
msgctxt "fldvarpage|valueft"
msgid "_Value:"
msgstr ""
#. onRpf
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:130
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:132
msgctxt "fldvarpage|extended_tip|value"
msgid "Enter the contents to add to a user-defined field."
msgstr ""
#. BLiKH
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:154
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:156
msgctxt "fldvarpage|apply|tooltip_text"
msgid "Apply"
msgstr "طبّق"
#. iLGxP
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:160
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:162
msgctxt "fldvarpage|extended_tip|apply"
msgid "Adds the user-defined field to the Select list."
msgstr "يضيف الحقل الذي عرّفه المستخدم إلى قائمة ⟪حدد⟫ ."
#. GKfDe
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:174
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:176
msgctxt "fldvarpage|delete|tooltip_text"
msgid "Delete"
msgstr "احذف"
#. bGYju
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:180
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:182
msgctxt "fldvarpage|extended_tip|delete"
msgid "Removes the user-defined field from the select list. You can only remove fields that are not used in the current document."
msgstr "يُزيل الحقل الذي عرّفه المستخدم من قائمة ⟪حدد⟫. يمكنك فقط إزالة الحقول غير المستخدمة في المستند الحالي."
#. EMeve
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:246
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:248
msgctxt "fldvarpage|extended_tip|type"
msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Select list, and then click Insert."
msgstr "يَسرد أنواع الحقول المتاحة. لتضيف حقلًا جديدًا إلى المستند، انقر نوع حقل وانقر حقلًا في قائمة التحديد ثم انقر إدراج."
#. MYGxL
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:257
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:259
msgctxt "fldvarpage|label1"
msgid "_Type"
msgstr "ال_نوع"
#. YfUrq
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:312
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:314
msgctxt "fldvarpage|extended_tip|select"
msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, and then click Insert."
msgstr "يَسرد الحقول المتاحة لنوع الحقل المحدد في قائمة النوع. لتُدرِج حقلًا، انقر الحقل ثم انقر إدراج."
#. JFbpp
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:323
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:325
msgctxt "fldvarpage|label2"
msgid "_Select"
msgstr "_حدّد"
#. eLoJ7
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:386
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:388
msgctxt "fldvarpage|extended_tip|numformat"
msgid "Click the format to apply to the selected field, or click \"Additional formats\" to define a custom format."
msgstr ""
#. bAzUU
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:431
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:433
msgctxt "fldvarpage|extended_tip|format"
msgid "In the Format list, define if the value is inserted as text or as number."
msgstr ""
#. qPpKb
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:445
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:447
msgctxt "fldvarpage|invisible"
msgid "Invisi_ble"
msgstr "ح_في"
#. 4SBL9
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:453
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:455
msgctxt "fldvarpage|extended_tip|invisible"
msgid "Hides the field contents in the document."
msgstr "يُخفي محتويات الحقل في المستند."
#. jUrib
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:484
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:486
msgctxt "fldvarpage|label5"
msgid "_Up to level:"
msgstr ""
#. uXVGk
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:497
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:499
msgctxt "fldvarpage|separatorft"
msgid "Se_parator:"
msgstr ""
#. xWPdj
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:511
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:513
msgctxt "fldvarpage|level|tooltip_text"
msgid "Choose heading number to prepend to displayed field, where the number comes from the first prior heading whose outline level is equal to or less than the selected outline level. If [None] is selected, no heading number is displayed."
msgstr ""
#. B2VKZ
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:513
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:515
msgctxt "fldvarpage|level"
msgid "[None]"
msgstr ""
#. 3eiSX
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:517
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:519
msgctxt "fldvarpage|extended_tip|level"
msgid "Choose heading number to prepend to displayed field, where the number comes from the first prior heading whose outline level is equal to or less than the selected outline level. For example, select “2” to use the heading number of the first prior heading that has outline level 2 or less. If “None” is selected, no heading number is displayed. To use this option, heading numbers must be enabled. Use “Tools - Heading Numbering”."
msgstr ""
#. Bnsut
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:530
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:532
msgctxt "fldvarpage|separator|tooltip_text"
msgid "Enter the character to use as a separator between the heading number and the field number."
msgstr ""
#. ECBav
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:533
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:535
msgctxt "fldvarpage|separator"
msgid "."
msgstr "."
#. 3dC3P
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:537
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:539
msgctxt "fldvarpage|extended_tip|separator"
msgid "Enter the character to use as a separator between the heading number and the field number."
msgstr ""
#. GgDBN
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:552
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:554
msgctxt "fldvarpage|label4"
msgid "With Heading Number"
msgstr "مع رقم العنوان الرئيسي"
#. WRjtn
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:573
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:575
msgctxt "fldvarpage|label3"
msgid "_Format"
msgstr "ال_نسَق"
@@ -21287,284 +21287,278 @@ msgctxt "navigatorcontextmenu|STR_DEMOTE_LEVEL"
msgid "Demote Outline Level"
msgstr "أنزِل مستوى المخطط"
-#. tukRq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:105
-msgctxt "navigatorcontextmenu|STR_REMOVE_INDEX"
-msgid "_Remove Index"
-msgstr "أ_زِل الفهرس"
-
#. C4355
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:113
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:105
msgctxt "navigatorcontextmenu|STR_UPDATE"
msgid "_Update"
msgstr "_حدّث"
#. BtCca
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:121
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:113
msgctxt "navigatorcontextmenu|STR_EDIT_ENTRY"
msgid "Edit..."
msgstr "حرّر..."
#. BYyhD
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:129
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:121
msgctxt "navigatorcontextmenu|STR_REMOVE_TBL_PROTECTION"
msgid "_Unprotect"
msgstr "أزِل الح_ماية"
#. 6KWWG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:137
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:129
msgctxt "navigatorcontextmenu|STR_READONLY_IDX"
msgid "Read-_only"
msgstr "للقراءة _فقط"
#. Z46XG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:145
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:137
msgctxt "navigatorcontextmenu|STR_DELETE_TABLE"
msgid "Delete Table"
msgstr ""
#. nWZCB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:154
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:146
msgctxt "navigatorcontextmenu|STR_DELETE_FRAME"
msgid "Delete Frame"
msgstr ""
#. iA4dL
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:163
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:155
msgctxt "navigatorcontextmenu|STR_DELETE_IMAGE"
msgid "Delete Image"
msgstr ""
#. PeDxb
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:172
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:164
msgctxt "navigatorcontextmenu|STR_DELETE_OLE_OBJECT"
msgid "Delete OLE object"
msgstr ""
#. gGdPe
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:181
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:173
msgctxt "navigatorcontextmenu|STR_DELETE_BOOKMARK"
msgid "Delete Bookmark"
msgstr ""
#. CYbsq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:190
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:182
msgctxt "navigatorcontextmenu|STR_DELETE_REGION"
msgid "Delete Section"
msgstr ""
#. NzaP7
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:199
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:191
msgctxt "navigatorcontextmenu|STR_DELETE_HYPERLINK"
msgid "Delete Hyperlink"
msgstr ""
#. hNJRX
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:208
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:200
msgctxt "navigatorcontextmenu|STR_DELETE_REFERENCE"
msgid "Delete Reference"
msgstr ""
#. LaCMh
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:216
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:208
msgctxt "navigatorcontextmenu|STR_DELETE_INDEX"
msgid "Delete Index"
msgstr ""
#. cEyZC
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:225
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:217
msgctxt "navigatorcontextmenu|STR_DELETE_COMMENT"
msgid "Delete Comment"
msgstr ""
#. AuAjE
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:234
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:226
msgctxt "navigatorcontextmenu|STR_DELETE_DRAWING_OBJECT"
msgid "Delete Drawing object"
msgstr ""
#. RhyGG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:243
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:235
msgctxt "navigatorcontextmenu|STR_DELETE_FIELD"
msgid "Delete Field"
msgstr ""
#. GGzCM
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:252
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:244
msgctxt "navigatorcontextmenu|STR_DELETE_ALL_FOOTNOTES"
msgid "Delete All Footnotes"
msgstr ""
#. kyGVJ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:260
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:252
msgctxt "navigatorcontextmenu|STR_DELETE_ALL_ENDNOTES"
msgid "Delete All Endnotes"
msgstr ""
#. AZchK
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:269
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:261
msgctxt "navigatorcontextmenu|STR_DELETE_FOOTNOTE"
msgid "Delete Footnote"
msgstr ""
#. Cv2Cu
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:278
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:270
msgctxt "navigatorcontextmenu|STR_DELETE_ENDNOTE"
msgid "Delete Endnote"
msgstr ""
#. CUqD5
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:287
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:279
msgctxt "navigatorcontextmenu|STR_RENAME"
msgid "_Rename..."
msgstr "أع_دْ التسمية…"
#. f9jYB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:295
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:287
msgctxt "navigatorcontextmenu|STR_PROTECT_SECTION"
msgid "Protect Section"
msgstr ""
#. MEGAM
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:303
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:295
msgctxt "navigatorcontextmenu|STR_HIDE_SECTION"
msgid "Hide Section"
msgstr ""
#. U5nAb
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:311
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:303
msgctxt "navigatorcontextmenu|STR_POSTIT_SHOW"
msgid "Show All"
msgstr "أظهِر الكل"
#. E2wWp
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:319
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:311
msgctxt "navigatorcontextmenu|STR_POSTIT_HIDE"
msgid "Hide All"
msgstr "أخفِ الكل"
#. aDRke
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:327
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:319
msgctxt "navigatorcontextmenu|STR_POSTIT_DELETE"
msgid "Delete All"
msgstr "احذف الكل"
#. YBipC
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:341
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:333
msgctxt "navigatorcontextmenu|STR_OUTLINE_CONTENT"
msgid "Outline Folding"
msgstr "طيّ المخطط"
#. EBK2E
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:361
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:353
msgctxt "navigatorcontextmenu|STR_OUTLINE_TRACKING"
msgid "Outline Tracking"
msgstr "تعقُّب المخطط"
#. fZEEr
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:375
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:367
msgctxt "navigatorcontextmenu|STR_TABLE_TRACKING"
msgid "Table Tracking"
msgstr "تعقُّب الجدول"
#. 7oCFa
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:383
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:375
msgctxt "navigatorcontextmenu|STR_SECTION_TRACKING"
msgid "Section Tracking"
msgstr "تعقُّب القسم"
#. YmjQf
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:391
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:383
msgctxt "navigatorcontextmenu|STR_FRAME_TRACKING"
msgid "Frame Tracking"
msgstr "تعقُّب الإطار"
#. vhxX5
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:399
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:391
msgctxt "navigatorcontextmenu|STR_IMAGE_TRACKING"
msgid "Image Tracking"
msgstr "تعقُّب الصورة"
#. mcYqZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:407
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:399
msgctxt "navigatorcontextmenu|STR_OLE_OBJECT_TRACKING"
msgid "OLE Object Tracking"
msgstr "تعقُّب كائن OLE"
#. DRaED
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:415
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:407
msgctxt "navigatorcontextmenu|STR_BOOKMARK_TRACKING"
msgid "Bookmark Tracking"
msgstr "تعقُّب العلامة"
#. vpLmh
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:423
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:415
msgctxt "navigatorcontextmenu|STR_HYPERLINK_TRACKING"
msgid "Hyperlink Tracking"
msgstr "تعقُّب الروابط"
#. EvBzN
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:431
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:423
msgctxt "navigatorcontextmenu|STR_REFERENCE_TRACKING"
msgid "Reference Tracking"
msgstr "تعقُّب المراجع"
#. M8Bes
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:439
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:431
msgctxt "navigatorcontextmenu|STR_INDEX_TRACKING"
msgid "Index Tracking"
msgstr "تعقُّب الفهارس"
#. KBFwM
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:447
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:439
msgctxt "navigatorcontextmenu|STR_COMMENT_TRACKING"
msgid "Comment Tracking"
msgstr "تتبُّع التعليقات"
#. oGavB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:455
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:447
msgctxt "navigatorcontextmenu|STR_DRAWING_OBJECT_TRACKING"
msgid "Drawing Object Tracking"
msgstr "تعقُّب الكائنات الرسومية"
#. w8FTW
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:463
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:455
msgctxt "navigatorcontextmenu|STR_FIELD_TRACKING"
msgid "Field Tracking"
msgstr "تعقُّب الحقل"
#. BoCeZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:471
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:463
msgctxt "navigatorcontextmenu|STR_FOOTNOTE_TRACKING"
msgid "Footnote Tracking"
msgstr "تعقُّب الحواشي"
#. QqAhu
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:479
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:471
msgctxt "navigatorcontextmenu|STR_ENDNOTE_TRACKING"
msgid "Endnote Tracking"
msgstr "تعقُّب الحواشي الختامية"
#. vBGAw
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:487
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:479
msgctxt "navigatorcontextmenu|STR_SORT_ALPHABETICALLY"
msgid "Sort Alphabetically"
msgstr "رتّب ألفبائيًا"
#. cqtBF
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:501
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:493
msgctxt "navigatorcontextmenu|STR_OUTLINE_LEVEL"
msgid "Show Up to Outline Level"
msgstr ""
#. Zehx2
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:515
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:507
msgctxt "navigatorcontextmenu|STR_DISPLAY"
msgid "Display"
msgstr "عَرض"
#. bgZoy
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:535
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:527
msgctxt "navigatorcontextmenu|STR_COLLAPSE_ALL_CATEGORIES"
msgid "Collapse All Categories"
msgstr "اطوِ كل الأصناف"
@@ -27840,6 +27834,12 @@ msgctxt "selecttabledialog|extended_tip|SelectTableDialog"
msgid "Select the table that you want to use for mail merge addresses."
msgstr "حدد الجدول الذي تريد استخدامه لعناوين دمج البريد."
+#. RWLE7
+#: sw/uiconfig/swriter/ui/sidebarquickfind.ui:36
+msgctxt "sidebarquickfind|find"
+msgid "Find"
+msgstr ""
+
#. DSVQt
#: sw/uiconfig/swriter/ui/sidebartableedit.ui:46
msgctxt "sidebatableedit|rowheight|tooltip_text"
@@ -28963,11 +28963,11 @@ msgctxt "templatedialog1|extended_tip|reset"
msgid "Revert any changes made on the tab shown here to the settings that were present when this dialog was opened."
msgstr "أعِد أية تغييرات أُجريت على اللسان الظاهر هنا إلى الإعدادات التي كانت موجودة عندما فُتح هذا الحوار."
-#. UH8Vz
+#. Zp6EK
#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
msgctxt "templatedialog1|organizer"
-msgid "Organizer"
-msgstr "المنظِّم"
+msgid "General"
+msgstr ""
#. BvEuD
#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
@@ -29017,11 +29017,11 @@ msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr "سمِّ وأخفِ الطرُز المعرَّفة من المستخدم"
-#. tA5vb
+#. Tuygv
#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
msgctxt "templatedialog16|organizer"
-msgid "Organizer"
-msgstr "المنظِّم"
+msgid "General"
+msgstr ""
#. 7MAbD
#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
@@ -29101,11 +29101,11 @@ msgctxt "templatedialog2|TemplateDialog2"
msgid "Paragraph Style"
msgstr "نمط الفقرة"
-#. 2NhWM
+#. FDfTt
#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
-msgid "Organizer"
-msgstr "المنظِّم"
+msgid "General"
+msgstr ""
#. G7U5N
#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
@@ -29216,11 +29216,11 @@ msgctxt "templatedialog4|TemplateDialog4"
msgid "Frame Style"
msgstr "أنماط الإطارات"
-#. 8dRdE
+#. wSfp8
#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
msgctxt "templatedialog4|organizer"
-msgid "Organizer"
-msgstr "المنظِّم"
+msgid "General"
+msgstr ""
#. Q2PQs
#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
@@ -29282,11 +29282,11 @@ msgctxt "templatedialog8|standard"
msgid "Standard"
msgstr "قياسي"
-#. BvGbL
+#. LTNWZ
#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
msgctxt "templatedialog8|organizer"
-msgid "Organizer"
-msgstr "المنظِّم"
+msgid "General"
+msgstr ""
#. UbZRu
#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
diff --git a/source/as/officecfg/registry/data/org/openoffice/Office/UI.po b/source/as/officecfg/registry/data/org/openoffice/Office/UI.po
index 5184fdb6726..5eda665e5f0 100644
--- a/source/as/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/as/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-13 12:37+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2018-11-12 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Assamese <kde-i18n-doc@kde.org>\n"
@@ -30492,14 +30492,14 @@ msgctxt ""
msgid "Columns"
msgstr ""
-#. DqpFK
+#. oziQM
#: Sidebar.xcu
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.QuickFindPanel\n"
"Title\n"
"value.text"
-msgid "QuickFind"
+msgid "Quick Find"
msgstr ""
#. CDJWW
diff --git a/source/as/sc/messages.po b/source/as/sc/messages.po
index 7d63f9a17d6..2c3ddfa8c82 100644
--- a/source/as/sc/messages.po
+++ b/source/as/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2021-05-12 07:37+0000\n"
"Last-Translator: Mondeep Kalita <epicdeep09@gmail.com>\n"
"Language-Team: Assamese <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/as/>\n"
@@ -23673,10 +23673,10 @@ msgctxt "drawtemplatedialog|standard"
msgid "_Standard"
msgstr ""
-#. jyFCi
+#. Dnnbp
#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
msgctxt "drawtemplatedialog|organizer"
-msgid "Organizer"
+msgid "General"
msgstr ""
#. qSfk8
@@ -28774,11 +28774,11 @@ msgctxt "pagetemplatedialog|PageTemplateDialog"
msgid "Page Style"
msgstr "পৃষ্ঠাৰ শৈলী"
-#. D22J5
+#. F6ehW
#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
msgctxt "pagetemplatedialog|organizer"
-msgid "Organizer"
-msgstr "সংগঠক"
+msgid "General"
+msgstr ""
#. CbW7A
#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
@@ -28855,11 +28855,11 @@ msgctxt "paratemplatedialog|ParaTemplateDialog"
msgid "Cell Style"
msgstr "শৈলীবোৰ"
-#. AGL7z
+#. EMrke
#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
msgctxt "paratemplatedialog|organizer"
-msgid "Organizer"
-msgstr "সংগঠক"
+msgid "General"
+msgstr ""
#. asnEd
#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
diff --git a/source/as/scp2/source/ooo.po b/source/as/scp2/source/ooo.po
index 29ea6de2377..f1362a1cc77 100644
--- a/source/as/scp2/source/ooo.po
+++ b/source/as/scp2/source/ooo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-01-10 15:11+0100\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2018-11-12 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Assamese <kde-i18n-doc@kde.org>\n"
@@ -2215,6 +2215,24 @@ msgctxt ""
msgid "Installs the Spanish user interface"
msgstr "স্পেনিচ ব্যৱহাৰকাৰী আন্তঃপৃষ্ট ইনস্টল কৰে"
+#. NreEY
+#: module_langpack.ulf
+msgctxt ""
+"module_langpack.ulf\n"
+"STR_NAME_MODULE_LANGPACK_SUN\n"
+"LngText.text"
+msgid "Sundanese"
+msgstr ""
+
+#. pa3r3
+#: module_langpack.ulf
+msgctxt ""
+"module_langpack.ulf\n"
+"STR_DESC_MODULE_LANGPACK_SUN\n"
+"LngText.text"
+msgid "Installs the Sundanese user interface"
+msgstr ""
+
#. zAWhn
#: module_langpack.ulf
msgctxt ""
diff --git a/source/as/sd/messages.po b/source/as/sd/messages.po
index 7741a1a7993..1b69a3a1873 100644
--- a/source/as/sd/messages.po
+++ b/source/as/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-13 12:37+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2021-05-12 07:37+0000\n"
"Last-Translator: Mondeep Kalita <epicdeep09@gmail.com>\n"
"Language-Team: Assamese <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/as/>\n"
@@ -9784,11 +9784,11 @@ msgctxt "templatedialog|standard"
msgid "_Standard"
msgstr "প্ৰামাণিক (_S)"
-#. HsXnQ
+#. BXMVx
#: sd/uiconfig/simpress/ui/templatedialog.ui:126
msgctxt "templatedialog|organizer"
-msgid "Organizer"
-msgstr "সংগঠক"
+msgid "General"
+msgstr ""
#. 5d7Zo
#: sd/uiconfig/simpress/ui/templatedialog.ui:149
diff --git a/source/as/sfx2/messages.po b/source/as/sfx2/messages.po
index 0b72d6e0c06..56f6f1e8ce5 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: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2021-05-12 07:37+0000\n"
"Last-Translator: Mondeep Kalita <epicdeep09@gmail.com>\n"
"Language-Team: Assamese <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/as/>\n"
@@ -3035,156 +3035,114 @@ msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#. pxEPn
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:18
-#, fuzzy
-msgctxt "descriptioninfopage|label27"
-msgid "_Title:"
-msgstr "শিৰোনাম (_T)"
-
#. HqzQo
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:32
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:18
#, fuzzy
msgctxt "descriptioninfopage|label28"
msgid "_Subject:"
msgstr "বিষয় (_S)"
#. gEGPn
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:46
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:32
#, fuzzy
msgctxt "descriptioninfopage|label29"
msgid "_Keywords:"
msgstr "কিৱাৰ্ডসমূহ (_K)"
-#. FXZzx
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:61
-msgctxt "descriptioninfopage|label31"
-msgid "Co_ntributor:"
-msgstr ""
-
-#. eKsAC
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:76
-msgctxt "descriptioninfopage|label32"
-msgid "Co_verage:"
-msgstr ""
-
-#. Wtpt7
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:91
-msgctxt "descriptioninfopage|label37"
-msgid "_Identifier:"
-msgstr ""
-
-#. 73G3F
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:106
-msgctxt "descriptioninfopage|label39"
-msgid "_Publisher:"
-msgstr ""
-
-#. Axu5g
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:121
-msgctxt "descriptioninfopage|label40"
-msgid "R_elation:"
-msgstr ""
-
-#. AGDpc
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:136
-msgctxt "descriptioninfopage|label41"
-msgid "Ri_ghts:"
-msgstr ""
-
-#. eK4rF
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:151
-msgctxt "descriptioninfopage|label42"
-msgid "So_urce:"
-msgstr ""
-
-#. RFBPC
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:166
-msgctxt "descriptioninfopage|label45"
-msgid "T_ype:"
-msgstr ""
-
#. Nayo4
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:181
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:47
#, fuzzy
msgctxt "descriptioninfopage|label30"
msgid "_Comments:"
msgstr "বিষয়সূচী (_C)"
#. qw238
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:199
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:65
msgctxt "descriptioninfopage|extended_tip|title"
msgid "Enter a title for the document."
msgstr ""
#. rvZHi
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:216
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:82
msgctxt "descriptioninfopage|extended_tip|subject"
msgid "Enter a subject for the document. You can use a subject to group documents with similar contents."
msgstr ""
#. FoxGh
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:233
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:99
msgctxt "descriptioninfopage|extended_tip|keywords"
msgid "Enter the words that you want to use to index the content of your document. Keywords must be separated by commas. A keyword can contain white space characters or semicolons."
msgstr ""
#. 64GNQ
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:250
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:116
msgctxt "descriptioninfopage|extended_tip|contributor"
msgid "Enter the names of the people, organizations, or other entities that have made contributions to the document."
msgstr ""
-#. ECAfA
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:267
-msgctxt "descriptioninfopage|extended_tip|coverage"
-msgid "Enter the time, place, or jurisdiction that the document is relevant to."
+#. bo2q7
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:140
+msgctxt "descriptioninfopage|extended_tip|comments"
+msgid "Enter comments to help identify the document."
msgstr ""
-#. EGix4
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:284
-msgctxt "descriptioninfopage|extended_tip|identifier"
-msgid "Enter a unique and unambiguous identifier for the document."
+#. pxEPn
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:155
+#, fuzzy
+msgctxt "descriptioninfopage|label27"
+msgid "_Title:"
+msgstr "শিৰোনাম (_T)"
+
+#. x4CGE
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:170
+msgctxt "descriptioninfopage|type_contributor"
+msgid "Contributor"
msgstr ""
-#. FQphA
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:301
-msgctxt "descriptioninfopage|extended_tip|publisher"
-msgid "Enter the name of the entity that is making the document available."
+#. AGXmA
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:171
+msgctxt "descriptioninfopage|type_coverage"
+msgid "Coverage"
msgstr ""
-#. n8gwE
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:318
-msgctxt "descriptioninfopage|extended_tip|relation"
-msgid "Enter information about a resource related to the document."
+#. FDnBu
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:172
+msgctxt "descriptioninfopage|type_identifier"
+msgid "Identifier"
msgstr ""
-#. ZiijJ
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:335
-msgctxt "descriptioninfopage|extended_tip|rights"
-msgid "Enter information about intellectual property rights associated with the document."
+#. iTZFA
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:173
+msgctxt "descriptioninfopage|type_publisher"
+msgid "Publisher"
msgstr ""
-#. Nze95
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:352
-msgctxt "descriptioninfopage|extended_tip|source"
-msgid "Enter information about other resources from which the document is derived."
+#. c5fHP
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:174
+msgctxt "descriptioninfopage|type_relation"
+msgid "Relation"
msgstr ""
-#. UEyYw
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:369
-msgctxt "descriptioninfopage|extended_tip|type"
-msgid "Enter information about the category or format of the document."
+#. FaGa4
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:175
+msgctxt "descriptioninfopage|type_rights"
+msgid "Rights"
msgstr ""
-#. bo2q7
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:393
-msgctxt "descriptioninfopage|extended_tip|comments"
-msgid "Enter comments to help identify the document."
+#. yDvSu
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:176
+msgctxt "descriptioninfopage|type_source"
+msgid "Source"
+msgstr ""
+
+#. 25AxF
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:177
+msgctxt "descriptioninfopage|type_types"
+msgid "Type"
msgstr ""
#. sGW3Z
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:406
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:187
msgctxt "descriptioninfopage|extended_tip|DescriptionInfoPage"
msgid "Contains descriptive information about the document."
msgstr ""
@@ -3444,86 +3402,86 @@ msgid "_Apply user data"
msgstr "ব্যৱহাৰকাৰী তথ্য প্ৰয়োগ কৰক (_A)"
#. JFxmP
-#: sfx2/uiconfig/ui/documentinfopage.ui:197
+#: sfx2/uiconfig/ui/documentinfopage.ui:198
msgctxt "documentinfopage|reset"
msgid "Reset Properties"
msgstr ""
#. HrN2U
-#: sfx2/uiconfig/ui/documentinfopage.ui:204
+#: sfx2/uiconfig/ui/documentinfopage.ui:205
msgctxt "documentinfopage|extended_tip|reset"
msgid "Resets the editing time to zero, the creation date to the current date and time, and the version number to 1. The modification and printing dates are also deleted."
msgstr ""
#. qeWvU
-#: sfx2/uiconfig/ui/documentinfopage.ui:215
+#: sfx2/uiconfig/ui/documentinfopage.ui:216
#, fuzzy
msgctxt "documentinfopage|signature"
msgid "Di_gital Signatures..."
msgstr "অঙ্কীয় স্বাক্ষৰ (_g)..."
#. rEEgJ
-#: sfx2/uiconfig/ui/documentinfopage.ui:234
+#: sfx2/uiconfig/ui/documentinfopage.ui:235
msgctxt "documentinfopage|label11"
msgid "_Size:"
msgstr "আকাৰ (_S):"
#. WNFYB
-#: sfx2/uiconfig/ui/documentinfopage.ui:247
+#: sfx2/uiconfig/ui/documentinfopage.ui:248
msgctxt "documentinfopage|showsize"
msgid "unknown"
msgstr "অজ্ঞাত"
#. EgtLE
-#: sfx2/uiconfig/ui/documentinfopage.ui:262
+#: sfx2/uiconfig/ui/documentinfopage.ui:263
msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "অবস্থান (_L):"
#. 9xhwo
-#: sfx2/uiconfig/ui/documentinfopage.ui:276
+#: sfx2/uiconfig/ui/documentinfopage.ui:277
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "ধৰণ (_T):"
#. ZLmAo
-#: sfx2/uiconfig/ui/documentinfopage.ui:299
+#: sfx2/uiconfig/ui/documentinfopage.ui:300
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "পাছৱাৰ্ড পৰিবৰ্তন কৰক (_P)"
#. oqAZE
-#: sfx2/uiconfig/ui/documentinfopage.ui:317
+#: sfx2/uiconfig/ui/documentinfopage.ui:318
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "নমুনা:"
#. 5pXPV
-#: sfx2/uiconfig/ui/documentinfopage.ui:366
+#: sfx2/uiconfig/ui/documentinfopage.ui:367
msgctxt "documentinfopage|extended_tip|nameed"
msgid "Displays the file name."
msgstr ""
#. LCDUj
-#: sfx2/uiconfig/ui/documentinfopage.ui:397
+#: sfx2/uiconfig/ui/documentinfopage.ui:398
msgctxt "documentinfopage|thumbnailsavecb"
msgid "Save preview image with this document"
msgstr ""
#. 6bF5w
-#: sfx2/uiconfig/ui/documentinfopage.ui:416
+#: sfx2/uiconfig/ui/documentinfopage.ui:419
msgctxt "documentinfopage|image-preferred-dpi-checkbutton"
msgid "Preferred resolution for images:"
msgstr ""
#. pukYD
-#: sfx2/uiconfig/ui/documentinfopage.ui:466
+#: sfx2/uiconfig/ui/documentinfopage.ui:467
msgctxt "documentinfopage|image-preferred-ppi-unit"
msgid "ppi"
msgstr ""
#. VWjRu
-#: sfx2/uiconfig/ui/documentinfopage.ui:500
+#: sfx2/uiconfig/ui/documentinfopage.ui:508
msgctxt "documentinfopage|extended_tip|DocumentInfoPage"
msgid "Contains basic information about the current file."
msgstr ""
diff --git a/source/as/sw/messages.po b/source/as/sw/messages.po
index fafba25b72a..bcab24858f9 100644
--- a/source/as/sw/messages.po
+++ b/source/as/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2021-05-12 07:37+0000\n"
"Last-Translator: Mondeep Kalita <epicdeep09@gmail.com>\n"
"Language-Team: Assamese <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/as/>\n"
@@ -15822,159 +15822,159 @@ msgid "This is where you insert the references or referenced fields into the cur
msgstr ""
#. jXhPb
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:71
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:73
msgctxt "fldvarpage|nameft"
msgid "Na_me:"
msgstr ""
#. juXJz
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:89
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:91
msgctxt "fldvarpage|extended_tip|name"
msgid "Type the name of the user-defined field to create."
msgstr ""
#. mA2Cx
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:105
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:107
msgctxt "fldvarpage|valueft"
msgid "_Value:"
msgstr ""
#. onRpf
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:130
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:132
msgctxt "fldvarpage|extended_tip|value"
msgid "Enter the contents to add to a user-defined field."
msgstr ""
#. BLiKH
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:154
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:156
msgctxt "fldvarpage|apply|tooltip_text"
msgid "Apply"
msgstr "প্ৰয়োগ কৰক"
#. iLGxP
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:160
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:162
msgctxt "fldvarpage|extended_tip|apply"
msgid "Adds the user-defined field to the Select list."
msgstr ""
#. GKfDe
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:174
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:176
msgctxt "fldvarpage|delete|tooltip_text"
msgid "Delete"
msgstr "মচি পেলাওক"
#. bGYju
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:180
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:182
msgctxt "fldvarpage|extended_tip|delete"
msgid "Removes the user-defined field from the select list. You can only remove fields that are not used in the current document."
msgstr ""
#. EMeve
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:246
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:248
msgctxt "fldvarpage|extended_tip|type"
msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Select list, and then click Insert."
msgstr ""
#. MYGxL
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:257
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:259
#, fuzzy
msgctxt "fldvarpage|label1"
msgid "_Type"
msgstr "ধৰণ"
#. YfUrq
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:312
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:314
msgctxt "fldvarpage|extended_tip|select"
msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, and then click Insert."
msgstr ""
#. JFbpp
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:323
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:325
msgctxt "fldvarpage|label2"
msgid "_Select"
msgstr ""
#. eLoJ7
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:386
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:388
msgctxt "fldvarpage|extended_tip|numformat"
msgid "Click the format to apply to the selected field, or click \"Additional formats\" to define a custom format."
msgstr ""
#. bAzUU
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:431
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:433
msgctxt "fldvarpage|extended_tip|format"
msgid "In the Format list, define if the value is inserted as text or as number."
msgstr ""
#. qPpKb
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:445
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:447
#, fuzzy
msgctxt "fldvarpage|invisible"
msgid "Invisi_ble"
msgstr "অদৃশ্য"
#. 4SBL9
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:453
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:455
msgctxt "fldvarpage|extended_tip|invisible"
msgid "Hides the field contents in the document."
msgstr ""
#. jUrib
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:484
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:486
msgctxt "fldvarpage|label5"
msgid "_Up to level:"
msgstr ""
#. uXVGk
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:497
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:499
msgctxt "fldvarpage|separatorft"
msgid "Se_parator:"
msgstr ""
#. xWPdj
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:511
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:513
msgctxt "fldvarpage|level|tooltip_text"
msgid "Choose heading number to prepend to displayed field, where the number comes from the first prior heading whose outline level is equal to or less than the selected outline level. If [None] is selected, no heading number is displayed."
msgstr ""
#. B2VKZ
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:513
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:515
msgctxt "fldvarpage|level"
msgid "[None]"
msgstr ""
#. 3eiSX
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:517
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:519
msgctxt "fldvarpage|extended_tip|level"
msgid "Choose heading number to prepend to displayed field, where the number comes from the first prior heading whose outline level is equal to or less than the selected outline level. For example, select “2” to use the heading number of the first prior heading that has outline level 2 or less. If “None” is selected, no heading number is displayed. To use this option, heading numbers must be enabled. Use “Tools - Heading Numbering”."
msgstr ""
#. Bnsut
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:530
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:532
msgctxt "fldvarpage|separator|tooltip_text"
msgid "Enter the character to use as a separator between the heading number and the field number."
msgstr ""
#. ECBav
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:533
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:535
msgctxt "fldvarpage|separator"
msgid "."
msgstr ""
#. 3dC3P
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:537
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:539
msgctxt "fldvarpage|extended_tip|separator"
msgid "Enter the character to use as a separator between the heading number and the field number."
msgstr ""
#. GgDBN
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:552
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:554
msgctxt "fldvarpage|label4"
msgid "With Heading Number"
msgstr ""
#. WRjtn
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:573
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:575
msgctxt "fldvarpage|label3"
msgid "_Format"
msgstr ""
@@ -21743,284 +21743,278 @@ msgctxt "navigatorcontextmenu|STR_DEMOTE_LEVEL"
msgid "Demote Outline Level"
msgstr ""
-#. tukRq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:105
-msgctxt "navigatorcontextmenu|STR_REMOVE_INDEX"
-msgid "_Remove Index"
-msgstr ""
-
#. C4355
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:113
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:105
msgctxt "navigatorcontextmenu|STR_UPDATE"
msgid "_Update"
msgstr ""
#. BtCca
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:121
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:113
msgctxt "navigatorcontextmenu|STR_EDIT_ENTRY"
msgid "Edit..."
msgstr ""
#. BYyhD
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:129
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:121
msgctxt "navigatorcontextmenu|STR_REMOVE_TBL_PROTECTION"
msgid "_Unprotect"
msgstr ""
#. 6KWWG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:137
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:129
msgctxt "navigatorcontextmenu|STR_READONLY_IDX"
msgid "Read-_only"
msgstr ""
#. Z46XG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:145
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:137
msgctxt "navigatorcontextmenu|STR_DELETE_TABLE"
msgid "Delete Table"
msgstr ""
#. nWZCB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:154
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:146
msgctxt "navigatorcontextmenu|STR_DELETE_FRAME"
msgid "Delete Frame"
msgstr ""
#. iA4dL
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:163
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:155
msgctxt "navigatorcontextmenu|STR_DELETE_IMAGE"
msgid "Delete Image"
msgstr ""
#. PeDxb
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:172
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:164
msgctxt "navigatorcontextmenu|STR_DELETE_OLE_OBJECT"
msgid "Delete OLE object"
msgstr ""
#. gGdPe
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:181
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:173
msgctxt "navigatorcontextmenu|STR_DELETE_BOOKMARK"
msgid "Delete Bookmark"
msgstr ""
#. CYbsq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:190
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:182
msgctxt "navigatorcontextmenu|STR_DELETE_REGION"
msgid "Delete Section"
msgstr ""
#. NzaP7
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:199
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:191
msgctxt "navigatorcontextmenu|STR_DELETE_HYPERLINK"
msgid "Delete Hyperlink"
msgstr ""
#. hNJRX
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:208
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:200
msgctxt "navigatorcontextmenu|STR_DELETE_REFERENCE"
msgid "Delete Reference"
msgstr ""
#. LaCMh
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:216
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:208
msgctxt "navigatorcontextmenu|STR_DELETE_INDEX"
msgid "Delete Index"
msgstr ""
#. cEyZC
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:225
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:217
msgctxt "navigatorcontextmenu|STR_DELETE_COMMENT"
msgid "Delete Comment"
msgstr ""
#. AuAjE
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:234
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:226
msgctxt "navigatorcontextmenu|STR_DELETE_DRAWING_OBJECT"
msgid "Delete Drawing object"
msgstr ""
#. RhyGG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:243
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:235
msgctxt "navigatorcontextmenu|STR_DELETE_FIELD"
msgid "Delete Field"
msgstr ""
#. GGzCM
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:252
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:244
msgctxt "navigatorcontextmenu|STR_DELETE_ALL_FOOTNOTES"
msgid "Delete All Footnotes"
msgstr ""
#. kyGVJ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:260
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:252
msgctxt "navigatorcontextmenu|STR_DELETE_ALL_ENDNOTES"
msgid "Delete All Endnotes"
msgstr ""
#. AZchK
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:269
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:261
msgctxt "navigatorcontextmenu|STR_DELETE_FOOTNOTE"
msgid "Delete Footnote"
msgstr ""
#. Cv2Cu
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:278
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:270
msgctxt "navigatorcontextmenu|STR_DELETE_ENDNOTE"
msgid "Delete Endnote"
msgstr ""
#. CUqD5
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:287
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:279
msgctxt "navigatorcontextmenu|STR_RENAME"
msgid "_Rename..."
msgstr ""
#. f9jYB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:295
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:287
msgctxt "navigatorcontextmenu|STR_PROTECT_SECTION"
msgid "Protect Section"
msgstr ""
#. MEGAM
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:303
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:295
msgctxt "navigatorcontextmenu|STR_HIDE_SECTION"
msgid "Hide Section"
msgstr ""
#. U5nAb
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:311
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:303
msgctxt "navigatorcontextmenu|STR_POSTIT_SHOW"
msgid "Show All"
msgstr ""
#. E2wWp
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:319
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:311
msgctxt "navigatorcontextmenu|STR_POSTIT_HIDE"
msgid "Hide All"
msgstr ""
#. aDRke
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:327
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:319
msgctxt "navigatorcontextmenu|STR_POSTIT_DELETE"
msgid "Delete All"
msgstr ""
#. YBipC
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:341
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:333
msgctxt "navigatorcontextmenu|STR_OUTLINE_CONTENT"
msgid "Outline Folding"
msgstr ""
#. EBK2E
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:361
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:353
msgctxt "navigatorcontextmenu|STR_OUTLINE_TRACKING"
msgid "Outline Tracking"
msgstr ""
#. fZEEr
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:375
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:367
msgctxt "navigatorcontextmenu|STR_TABLE_TRACKING"
msgid "Table Tracking"
msgstr ""
#. 7oCFa
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:383
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:375
msgctxt "navigatorcontextmenu|STR_SECTION_TRACKING"
msgid "Section Tracking"
msgstr ""
#. YmjQf
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:391
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:383
msgctxt "navigatorcontextmenu|STR_FRAME_TRACKING"
msgid "Frame Tracking"
msgstr ""
#. vhxX5
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:399
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:391
msgctxt "navigatorcontextmenu|STR_IMAGE_TRACKING"
msgid "Image Tracking"
msgstr ""
#. mcYqZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:407
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:399
msgctxt "navigatorcontextmenu|STR_OLE_OBJECT_TRACKING"
msgid "OLE Object Tracking"
msgstr ""
#. DRaED
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:415
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:407
msgctxt "navigatorcontextmenu|STR_BOOKMARK_TRACKING"
msgid "Bookmark Tracking"
msgstr ""
#. vpLmh
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:423
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:415
msgctxt "navigatorcontextmenu|STR_HYPERLINK_TRACKING"
msgid "Hyperlink Tracking"
msgstr ""
#. EvBzN
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:431
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:423
msgctxt "navigatorcontextmenu|STR_REFERENCE_TRACKING"
msgid "Reference Tracking"
msgstr ""
#. M8Bes
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:439
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:431
msgctxt "navigatorcontextmenu|STR_INDEX_TRACKING"
msgid "Index Tracking"
msgstr ""
#. KBFwM
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:447
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:439
msgctxt "navigatorcontextmenu|STR_COMMENT_TRACKING"
msgid "Comment Tracking"
msgstr ""
#. oGavB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:455
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:447
msgctxt "navigatorcontextmenu|STR_DRAWING_OBJECT_TRACKING"
msgid "Drawing Object Tracking"
msgstr ""
#. w8FTW
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:463
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:455
msgctxt "navigatorcontextmenu|STR_FIELD_TRACKING"
msgid "Field Tracking"
msgstr ""
#. BoCeZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:471
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:463
msgctxt "navigatorcontextmenu|STR_FOOTNOTE_TRACKING"
msgid "Footnote Tracking"
msgstr ""
#. QqAhu
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:479
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:471
msgctxt "navigatorcontextmenu|STR_ENDNOTE_TRACKING"
msgid "Endnote Tracking"
msgstr ""
#. vBGAw
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:487
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:479
msgctxt "navigatorcontextmenu|STR_SORT_ALPHABETICALLY"
msgid "Sort Alphabetically"
msgstr ""
#. cqtBF
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:501
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:493
msgctxt "navigatorcontextmenu|STR_OUTLINE_LEVEL"
msgid "Show Up to Outline Level"
msgstr ""
#. Zehx2
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:515
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:507
msgctxt "navigatorcontextmenu|STR_DISPLAY"
msgid "Display"
msgstr ""
#. bgZoy
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:535
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:527
msgctxt "navigatorcontextmenu|STR_COLLAPSE_ALL_CATEGORIES"
msgid "Collapse All Categories"
msgstr ""
@@ -28432,6 +28426,12 @@ msgctxt "selecttabledialog|extended_tip|SelectTableDialog"
msgid "Select the table that you want to use for mail merge addresses."
msgstr ""
+#. RWLE7
+#: sw/uiconfig/swriter/ui/sidebarquickfind.ui:36
+msgctxt "sidebarquickfind|find"
+msgid "Find"
+msgstr ""
+
#. DSVQt
#: sw/uiconfig/swriter/ui/sidebartableedit.ui:46
msgctxt "sidebatableedit|rowheight|tooltip_text"
@@ -29583,11 +29583,11 @@ msgctxt "templatedialog1|extended_tip|reset"
msgid "Revert any changes made on the tab shown here to the settings that were present when this dialog was opened."
msgstr ""
-#. UH8Vz
+#. Zp6EK
#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
msgctxt "templatedialog1|organizer"
-msgid "Organizer"
-msgstr "সংগঠক"
+msgid "General"
+msgstr ""
#. BvEuD
#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
@@ -29638,11 +29638,11 @@ msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
-#. tA5vb
+#. Tuygv
#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
msgctxt "templatedialog16|organizer"
-msgid "Organizer"
-msgstr "সংগঠক"
+msgid "General"
+msgstr ""
#. 7MAbD
#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
@@ -29723,11 +29723,11 @@ msgctxt "templatedialog2|TemplateDialog2"
msgid "Paragraph Style"
msgstr "(পেৰেগ্ৰাফ শৈলী: "
-#. 2NhWM
+#. FDfTt
#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
-msgid "Organizer"
-msgstr "সংগঠক"
+msgid "General"
+msgstr ""
#. G7U5N
#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
@@ -29844,11 +29844,11 @@ msgctxt "templatedialog4|TemplateDialog4"
msgid "Frame Style"
msgstr "ফ্রেমৰ শৈলী"
-#. 8dRdE
+#. wSfp8
#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
msgctxt "templatedialog4|organizer"
-msgid "Organizer"
-msgstr "সংগঠক"
+msgid "General"
+msgstr ""
#. Q2PQs
#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
@@ -29915,11 +29915,11 @@ msgctxt "templatedialog8|standard"
msgid "Standard"
msgstr ""
-#. BvGbL
+#. LTNWZ
#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
msgctxt "templatedialog8|organizer"
-msgid "Organizer"
-msgstr "সংগঠক"
+msgid "General"
+msgstr ""
#. UbZRu
#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
diff --git a/source/ast/helpcontent2/source/text/scalc.po b/source/ast/helpcontent2/source/text/scalc.po
index 616c25d16db..57774a57a3d 100644
--- a/source/ast/helpcontent2/source/text/scalc.po
+++ b/source/ast/helpcontent2/source/text/scalc.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-05-27 12:59+0200\n"
-"PO-Revision-Date: 2024-04-02 09:45+0000\n"
+"PO-Revision-Date: 2024-06-02 09:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textscalc/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1494345492.000000\n"
#. ZxQeC
@@ -770,7 +770,7 @@ msgctxt ""
"hd_id3147264\n"
"help.text"
msgid "<variable id=\"formula_bar_h1\"><link href=\"text/scalc/main0206.xhp\">Formula Bar</link></variable>"
-msgstr ""
+msgstr "<variable id=\"formula_bar_h1\"><link href=\"text/scalc/main0206.xhp\">Barra de fórmules</link></variable>"
#. dnFAk
#: main0206.xhp
diff --git a/source/ast/helpcontent2/source/text/scalc/01.po b/source/ast/helpcontent2/source/text/scalc/01.po
index 758e81eaada..a1936daec9d 100644
--- a/source/ast/helpcontent2/source/text/scalc/01.po
+++ b/source/ast/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-27 12:59+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-05-25 09:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/ast/>\n"
@@ -54584,6 +54584,15 @@ msgctxt ""
msgid "This function ignores any text or empty cell within a data range. If you suspect wrong results from this function, look for text in the data ranges. To highlight text contents in a data range, use the <link href=\"text/scalc/01/03080000.xhp\">value highlighting</link> feature."
msgstr ""
+#. DB6XT
+#: common_func.xhp
+msgctxt ""
+"common_func.xhp\n"
+"par_id431716730587722\n"
+"help.text"
+msgid "Any of the optional arguments can be omitted. An optional argument is required to be preceded by the preceding separators."
+msgstr ""
+
#. GAPGX
#: common_func_workdaysintl.xhp
msgctxt ""
@@ -57149,6 +57158,15 @@ msgctxt ""
msgid "This function is always recalculated whenever a recalculation occurs."
msgstr ""
+#. fSXNw
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"par_id711715953325962\n"
+"help.text"
+msgid "The function is always <emph>case insensitive</emph>, independent from the setting of <emph>Case sensitive</emph> checkbox in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\"><menuitem>%PRODUCTNAME Calc - Calculate</menuitem></link>."
+msgstr ""
+
#. 8DbP2
#: func_aggregate.xhp
msgctxt ""
@@ -62414,22 +62432,22 @@ msgctxt ""
msgid "<variable id=\"h1\"><link href=\"text/scalc/01/func_filter.xhp\">FILTER</link></variable>"
msgstr ""
-#. nKHpG
+#. dxbQ9
#: func_filter.xhp
msgctxt ""
"func_filter.xhp\n"
"par_id771708806478128\n"
"help.text"
-msgid "Filters a data range or array based on conditions you specify."
+msgid "Filters a data range or array based on specified conditions."
msgstr ""
-#. M2JTs
+#. tuppo
#: func_filter.xhp
msgctxt ""
"func_filter.xhp\n"
"par_id211708281649651\n"
"help.text"
-msgid "FILTER(Range, Criteria, Return if empty)"
+msgid "FILTER( Range; Criteria [; Return if empty])"
msgstr ""
#. SGrA5
@@ -62450,31 +62468,31 @@ msgctxt ""
msgid "<emph>Criteria</emph>: A boolean array whose height (filtering by columns) or width (filtering by rows) is the same as the array, used to select data from the <emph>Range</emph>."
msgstr ""
-#. KjAXK
+#. ZcP2E
#: func_filter.xhp
msgctxt ""
"func_filter.xhp\n"
"par_id421709395146863\n"
"help.text"
-msgid "<emph>Return if empty</emph>: the value to return if all values in the Include array are empty (filter return nothing)."
+msgid "<emph>Result if empty</emph>: (optional) the value to return if all values in the <emph>Criteria</emph> array are empty (filter return nothing)."
msgstr ""
-#. PAajv
+#. AFtpH
#: func_filter.xhp
msgctxt ""
"func_filter.xhp\n"
"par_id21709506838932\n"
"help.text"
-msgid "<input>{=FILTER(A2:C13,A2:A13>50)}</input> returns the array {57,49,12|56,33,60|57,,} containing all grades with Maths grade above 50. Note that this is an array formula."
+msgid "<input>{=FILTER(A2:C13;A2:A13>50)}</input> returns the array containing all grades with Maths grade above 50. Note that this is an <link href=\"text/scalc/01/04060107.xhp#creating_array_formulas\">array formula</link>."
msgstr ""
-#. WhdTC
+#. METQ9
#: func_filter.xhp
msgctxt ""
"func_filter.xhp\n"
"par_id561709507935610\n"
"help.text"
-msgid "<input>{=FILTER(A2:C13,B2:B13>90,\"No results\")}</input> Returns the string \"No results\", since no grade on Physics is above 90."
+msgid "<input>{=FILTER(A2:C13;B2:B13>90;\"No results\")}</input> Returns the string \"No results\", since no grade on Physics is above 90."
msgstr ""
#. q34Yg
@@ -66941,13 +66959,13 @@ msgctxt ""
msgid "Generates an array of random numbers between two limit values."
msgstr ""
-#. 9wxNC
+#. ArGrF
#: func_randarray.xhp
msgctxt ""
"func_randarray.xhp\n"
"par_id211708281649651\n"
"help.text"
-msgid "RANDARRAY([Rows], [Columns], [Min], [Max], [Integers])"
+msgid "RANDARRAY([Rows [; Columns [; Min [; Max [; Integers] ] ] ])"
msgstr ""
#. FDbmd
@@ -67013,13 +67031,13 @@ msgctxt ""
msgid "If <emph>Rows</emph> or <emph>Columns</emph> are references to the content of other cells, the array dimensions do not change when the referenced content changes. The array formula must be deleted and re-entered."
msgstr ""
-#. ERYkg
+#. mz6p3
#: func_randarray.xhp
msgctxt ""
"func_randarray.xhp\n"
"par_id521715616457946\n"
"help.text"
-msgid "<input>{=RANDARRAY(10,4,10,50,1)}</input> returns an array of 10 rows, 4 columns with minimum value 10 and maximum value of 50 of whole numbers (integers)."
+msgid "<input>{=RANDARRAY(10;4;10;50;1)}</input> returns an array of 10 rows, 4 columns with minimum value 10 and maximum value of 50 of whole numbers (integers)."
msgstr ""
#. iGDsD
@@ -68084,13 +68102,13 @@ msgctxt ""
msgid "The array is filled from the first row to the right up to the value of <emph>Columns</emph>, and then down to the number of rows."
msgstr ""
-#. sC8E6
+#. u9vnG
#: func_sequence.xhp
msgctxt ""
"func_sequence.xhp\n"
"par_id201714595986945\n"
"help.text"
-msgid "<input>{=SEQUENCE(3,3,10,11)}</input> returns the 3-by-3 array below with an upper-right value of 10 and filling the array to the right and then downward in steps of 11."
+msgid "<input>{=SEQUENCE(3,3,10,11)}</input> returns the 3-by-3 array below with an upper-left value of 10 and filling the array to the right and then downward in steps of 11."
msgstr ""
#. sNE2S
@@ -68237,49 +68255,49 @@ msgctxt ""
msgid "Enter the formula as an <link href=\"text/scalc/01/04060107.xhp\">array formula</link>."
msgstr ""
-#. LksfE
+#. DmRKh
#: func_sort.xhp
msgctxt ""
"func_sort.xhp\n"
"par_id211708281649651\n"
"help.text"
-msgid "SORT(Range [, SortIndex[, SortOrder[, ByCol]]])"
+msgid "SORT(Range [; SortIndex [; SortOrder [; ByCol] ] ])"
msgstr ""
-#. 4iAJz
+#. gmV6H
#: func_sort.xhp
msgctxt ""
"func_sort.xhp\n"
"par_id551711457515235\n"
"help.text"
-msgid "<emph>Range:</emph> Required. The range or array to sort."
+msgid "<emph>Range:</emph> the range or array to sort."
msgstr ""
-#. Epf9D
+#. WQaKY
#: func_sort.xhp
msgctxt ""
"func_sort.xhp\n"
"par_id151711457520290\n"
"help.text"
-msgid "<emph>SortIndex:</emph> Optional. The number indicating the row or column to sort by."
+msgid "<emph>SortIndex:</emph> (optional). The number indicating the row or column to sort by."
msgstr ""
-#. 2cgDj
+#. P5DGG
#: func_sort.xhp
msgctxt ""
"func_sort.xhp\n"
"par_id131711457525811\n"
"help.text"
-msgid "<emph>SortOrder:</emph> Optional. A number indicating the desired sort order; 1 for ascending order (default), -1 for descending order."
+msgid "<emph>SortOrder:</emph> (optional). A number indicating the desired sort order; 1 for ascending order (default), -1 for descending order."
msgstr ""
-#. JwCYE
+#. 5Vo8L
#: func_sort.xhp
msgctxt ""
"func_sort.xhp\n"
"par_id351711457531579\n"
"help.text"
-msgid "<emph>ByCol:</emph> Optional. A logical value indicating the desired sort direction; <emph>FALSE</emph> to sort by row (default), <emph>TRUE</emph> to sort by column."
+msgid "<emph>ByCol:</emph> (optional). A logical value indicating the desired sort direction; <emph>FALSE</emph> to sort by row (default), <emph>TRUE</emph> to sort by column."
msgstr ""
#. hDBib
@@ -68471,13 +68489,13 @@ msgctxt ""
msgid "Sorts the contents of a range or array based on the values in a corresponding range or array."
msgstr ""
-#. EUgaa
+#. 52ZFJ
#: func_sortby.xhp
msgctxt ""
"func_sortby.xhp\n"
"par_id211708281649651\n"
"help.text"
-msgid "SORTBY(Range, SortByRange1, SortOrder1[, SortByRange2, SortOrder2,[...]])"
+msgid "SORTBY(Range; SortByRange1; SortOrder1 [; SortByRange2; SortOrder2,[...] ])"
msgstr ""
#. gifyS
@@ -68489,31 +68507,31 @@ msgctxt ""
msgid "<emph>Range</emph>: The array or range to sort."
msgstr ""
-#. k3ADs
+#. i3EwL
#: func_sortby.xhp
msgctxt ""
"func_sortby.xhp\n"
"par_id291711544460323\n"
"help.text"
-msgid "<emph>SortByRange1, SortByRange2,... </emph>: Range 1, range 2,... are the arrays or ranges to sort on."
+msgid "<emph>SortByRange1, SortByRange2,... </emph>: range 1, range 2,... are the arrays or ranges to sort on."
msgstr ""
-#. FTuBa
+#. BA6NF
#: func_sortby.xhp
msgctxt ""
"func_sortby.xhp\n"
"par_id501711544465886\n"
"help.text"
-msgid "<emph>SortOrder1, SortOrder2,...</emph> : Order 1, order 2,... are the orders to use for sorting. 1 for ascending, -1 for descending. Default is ascending."
+msgid "<emph>SortOrder1, SortOrder2,...</emph> : order 1, order 2,... are the orders to use for sorting. 1 for ascending, -1 for descending. Default is ascending."
msgstr ""
-#. FA2hL
+#. jhZ65
#: func_sortby.xhp
msgctxt ""
"func_sortby.xhp\n"
"par_id131711466000482\n"
"help.text"
-msgid "<input>{=SORTBY(A2:C7,A2:A7,1,C2:C7,-1)}</input>"
+msgid "<input>{=SORTBY(A2:C7;A2:A7;1;C2:C7;-1)}</input>"
msgstr ""
#. q9cpQ
@@ -69956,15 +69974,6 @@ msgctxt ""
msgid "Returns the array of unique values from a range or array of values."
msgstr ""
-#. h3r2U
-#: func_unique.xhp
-msgctxt ""
-"func_unique.xhp\n"
-"par_id711715953325962\n"
-"help.text"
-msgid "The UNIQUE function is always case sensitive, independent from the setting of <emph>Case sensitive</emph> checkbox in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\"><menuitem>%PRODUCTNAME Calc - Calculate</menuitem></link>."
-msgstr ""
-
#. A8bJf
#: func_unique.xhp
msgctxt ""
@@ -70785,6 +70794,15 @@ msgctxt ""
msgid "System"
msgstr "Sistema"
+#. cM6zS
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"par_id901535122363436\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
#. V79BD
#: func_weeknum.xhp
msgctxt ""
@@ -71586,40 +71604,40 @@ msgctxt ""
msgid "Searches for a value in an array and returns a reference to a cell or range of cells."
msgstr ""
-#. xMTVW
+#. bywFk
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id631708282151776\n"
"help.text"
-msgid "XLOOKUP function is a modern and flexible replacement for older functions like <link href=\"text/scalc/01/04060109.xhp#Section9\">VLOOKUP</link>, <link href=\"text/scalc/01/04060109.xhp#Section17\">HLOOKUP</link>, and <link href=\"text/scalc/01/04060109.xhp#Section14\">LOOKUP</link>. XLOOKUP supports approximate and exact matching, wildcards (* ?) for partial matches, and lookups in vertical or horizontal ranges. XLOOKUP can perform a reverse search and offers a fast binary search option when working with large datasets."
+msgid "XLOOKUP function is a modern and flexible replacement for older functions like <link href=\"text/scalc/01/04060109.xhp#Section9\">VLOOKUP</link>, <link href=\"text/scalc/01/04060109.xhp#Section17\">HLOOKUP</link>, and <link href=\"text/scalc/01/04060109.xhp#Section14\">LOOKUP</link>. XLOOKUP supports approximate and exact matching, wildcards (* ?) for partial matches, and lookups in vertical or horizontal ranges. XLOOKUP can perform a reverse search and offers a fast binary search option when working with large datasets."
msgstr ""
-#. VESoP
+#. TwFcc
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id211708281649651\n"
"help.text"
-msgid "XLOOKUP(Lookup; Array; Return [; NotFound; MatchType; SearchMode ] )"
+msgid "XLOOKUP( [Lookup] ; Array ; Return [ ; [ NotFound ] [ ; [MatchType] [ ; SearchMode ] ] ] )"
msgstr ""
-#. 3zUXb
+#. WoJu6
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id861708281340704\n"
"help.text"
-msgid "<emph>Lookup</emph>: The value of any type to search for in <emph>Array</emph>. If omitted, XLOOKUP returns blank cells it finds in <emph>Array</emph>."
+msgid "<emph>Lookup</emph>: (optional) The value of any type to search for in <emph>Array</emph>. If omitted, XLOOKUP returns blank cells it finds in <emph>Array</emph>."
msgstr ""
-#. qUjAU
+#. hBE9s
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id831708281625340\n"
"help.text"
-msgid "<emph>Array</emph>: is the reference of the array or range to search."
+msgid "<emph>Array</emph>: is the reference of the array to search. Array must be a 1-dimensional array and must be contained in one sheet only."
msgstr ""
#. nWhEP
@@ -71631,175 +71649,148 @@ msgctxt ""
msgid "<emph>Return</emph>: is the reference of the array or range to return."
msgstr ""
-#. 2LnvD
+#. G4DLq
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id821708357634624\n"
"help.text"
-msgid "If <emph>Return</emph> is an array of values, the XLOOKUP function must be entered as an <link href=\"text/scalc/01/04060107.xhp#creating_array_formulas\">array formula</link>."
+msgid "If <emph>Return</emph> is a range of cells, the XLOOKUP function must be entered as an <link href=\"text/scalc/01/04060107.xhp#creating_array_formulas\">array formula</link>."
msgstr ""
-#. 3fY6K
+#. WTFGZ
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id271708281637035\n"
"help.text"
-msgid "<emph>NotFound</emph>: a text to return if the <emph>Lookup</emph> value is not found. If a valid match is not found, and <emph>NotFound</emph> is omitted, returns #N/A."
+msgid "<emph>NotFound</emph>: a text or cell content to return if the <emph>Lookup</emph> value is not found. If a valid match is not found and <emph>NotFound</emph> is omitted, the function returns the #N/A error."
msgstr ""
-#. hBDsh
+#. ruAWq
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id121708281643207\n"
"help.text"
-msgid "<emph>MatchType</emph>: Specify the match type:"
+msgid "<emph>MatchType</emph>: (optional) specifies the match type. Values can be:"
msgstr ""
-#. aCZbP
+#. go9sN
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id111708281542144\n"
"help.text"
-msgid "<emph>0</emph> - Exact match (default). If <emph>Lookup</emph> value is not found and <emph>NotFound</emph> text is omitted, then return #N/A."
+msgid "<emph>0</emph>: exact match (default). If <emph>Lookup</emph> value is not found and <emph>NotFound</emph> text is omitted, then return the #N/A error."
msgstr ""
-#. w5rBH
+#. CtG9A
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id851708281548335\n"
"help.text"
-msgid "<emph>-1</emph> - Exact match. If <emph>Lookup</emph> value is not found, then return the next smaller item."
+msgid "<emph>-1</emph>: attempt exact match. If <emph>Lookup</emph> value is not found, then return the next smaller item."
msgstr ""
-#. zQiND
+#. CpEkK
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id801708281553430\n"
"help.text"
-msgid "<emph>1</emph> - Exact match. If <emph>Lookup</emph> value is not found, then return the next larger item."
+msgid "<emph>1</emph>: attempt exact match. If <emph>Lookup</emph> value is not found, then return the next larger item."
msgstr ""
-#. 4Jxvx
+#. JJ3M2
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id881708281558005\n"
"help.text"
-msgid "<emph>2</emph> - A <link href=\"text/scalc/guide/wildcards.xhp\">wildcard</link> match where characters *, ?, and ~ have special meaning."
+msgid "<emph>2</emph>: a <link href=\"text/scalc/guide/wildcards.xhp\">wildcard</link> match where characters *, ?, and ~ have special meanings."
msgstr ""
-#. CxCof
+#. EqTBc
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id871708281607313\n"
"help.text"
-msgid "<emph>SearchMode</emph>: Specify the search mode to use:"
+msgid "<emph>SearchMode</emph>: (optional) specifies the search mode to use."
msgstr ""
-#. Lc3bp
+#. FfKjN
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id281708281579757\n"
"help.text"
-msgid "<emph>1</emph>: - Search starting at the first item (default)."
+msgid "<emph>1</emph>: returns the first occurrence starting from the first item of <emph>Array</emph> (default)."
msgstr ""
-#. HVoEm
+#. 8CD3w
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id251708281584285\n"
"help.text"
-msgid "<emph>-1</emph> - Reverse search starting at the last item."
+msgid "<emph>-1</emph>: reverse search. Returns the first occurrence starting from the last item of <emph>Array</emph>."
msgstr ""
-#. CFAD4
+#. 6aABE
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id191708281589997\n"
"help.text"
-msgid "<emph>2</emph> - Binary search that relies on <emph>Array</emph> being sorted in ascending order. If not sorted, invalid results will be returned."
+msgid "<emph>2</emph>: binary search that relies on <emph>Array</emph> being sorted in ascending order. If not sorted, invalid results will be returned."
msgstr ""
-#. mAGCX
+#. pwwij
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id561708281595885\n"
"help.text"
-msgid "<emph>-2</emph> - Binary search that relies on <emph>Array</emph> being sorted in descending order. If not sorted, invalid results will be returned."
+msgid "<emph>-2</emph>: binary search that relies on <emph>Array</emph> being sorted in descending order. If not sorted, invalid results will be returned."
msgstr ""
-#. vD6hn
-#: func_xlookup.xhp
-msgctxt ""
-"func_xlookup.xhp\n"
-"par_id961708354814163\n"
-"help.text"
-msgid "The table below contains a glossary for translators:"
-msgstr "La tabla siguiente contién un glosariu pa traductores:"
-
-#. MSv55
-#: func_xlookup.xhp
-msgctxt ""
-"func_xlookup.xhp\n"
-"par_id781708353695722\n"
-"help.text"
-msgid "<emph>English</emph>"
-msgstr "<emph>Inglés</emph>"
-
-#. 5G7WA
-#: func_xlookup.xhp
-msgctxt ""
-"func_xlookup.xhp\n"
-"par_id641708353695723\n"
-"help.text"
-msgid "<emph>French</emph>"
-msgstr "<emph>Francés</emph>"
-
-#. GRDeG
+#. fHQrZ
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
-"par_id671708353695724\n"
+"par_id141716739193733\n"
"help.text"
-msgid "<emph>Italian</emph>"
-msgstr "<emph>Italianu</emph>"
+msgid "<input>{=XLOOKUP(\"Atomic Number\";A2:A4;A2:DO4)}</input> returns the array"
+msgstr ""
-#. JfbWn
+#. tkRq7
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
-"par_id331708353781503\n"
+"par_id231716739652495\n"
"help.text"
-msgid "<emph>Japanese</emph>"
-msgstr "<emph>Xaponés</emph>"
+msgid "<input>{=XLOOKUP(\"Helium\";B1:DO1;B1:DO4)}</input> returns the array"
+msgstr ""
-#. CmUw2
+#. D5tG5
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
-"par_id31708356677157\n"
+"par_id21716739329244\n"
"help.text"
-msgid "<input>={XLOOKUP(\"New\", A2:A4, B2:D4,\"Missing\")}</input> returns the array {\"Nouveau\",\"Nuovo\",\"新しい\"}."
+msgid "Helium"
msgstr ""
-#. Z9pX4
+#. vaCSD
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id671708356683379\n"
"help.text"
-msgid "<input>={XLOOKUP(\"Reload\", A2:A4, B2:D4,\"Missing\")}</input> returns the array {\"Missing\",\"Missing\",\"Missing\"}."
+msgid "<input>{=XLOOKUP(\"Kryptonite\";B1:DO1;B1:DO4;\"Unknown element\")}</input> returns the array {\"Unknown element\",\"Unknown element\",\"Unknown element\",\"Unknown element\"}."
msgstr ""
#. SzUpN
@@ -71838,22 +71829,31 @@ msgctxt ""
msgid "<variable id=\"h1\"><link href=\"text/scalc/01/func_xmatch.xhp\">XMATCH</link></variable>"
msgstr ""
-#. B9dyV
+#. 8GYav
#: func_xmatch.xhp
msgctxt ""
"func_xmatch.xhp\n"
"par_id581708279355738\n"
"help.text"
-msgid "Searches for a value in an array or range of cells and returns the relative position of the item."
+msgid "Searches for a value in a one-dimensional array and returns the relative position of the item."
+msgstr ""
+
+#. qJsbC
+#: func_xmatch.xhp
+msgctxt ""
+"func_xmatch.xhp\n"
+"par_id321716754048322\n"
+"help.text"
+msgid "XMATCH outperforms function <link href=\"text/scalc/01/04060109.xhp#Section12\">MATCH</link> as it allows searches according to the search mode."
msgstr ""
-#. MFVXB
+#. NFwz8
#: func_xmatch.xhp
msgctxt ""
"func_xmatch.xhp\n"
"par_id211708281649651\n"
"help.text"
-msgid "XMATCH(Lookup; Array [; MatchType; SearchMode ] )"
+msgid "XMATCH(Lookup; Array [; MatchType [; SearchMode ] ] )"
msgstr ""
#. NA2BM
@@ -71874,22 +71874,22 @@ msgctxt ""
msgid "<emph>Array</emph>: is the reference of the array or range to search."
msgstr ""
-#. EorAV
+#. WMXaP
#: func_xmatch.xhp
msgctxt ""
"func_xmatch.xhp\n"
-"par_id391708364611193\n"
+"par_id471716753503759\n"
"help.text"
-msgid "XMATCH outperforms function MATCH as it allows searches according to the search mode."
+msgid "<input>=XMATCH(\"Atomic Number\",A1:A4)</input> returns 3, the third line of the A1:A4 array."
msgstr ""
-#. yRpQy
+#. QTDzi
#: func_xmatch.xhp
msgctxt ""
"func_xmatch.xhp\n"
-"par_id31708356677157\n"
+"par_id581716753499133\n"
"help.text"
-msgid "<input>=XMATCH(\"Save\", A2:A4, 0, 1)</input> returns 2, the second line of the A2:A4 range."
+msgid "<input>=XMATCH(\"Li\",A2:DO2)</input> returns 4, the fourth column of the A2:DO2 array."
msgstr ""
#. 2AAX5
diff --git a/source/ast/helpcontent2/source/text/scalc/02.po b/source/ast/helpcontent2/source/text/scalc/02.po
index 49acdd7ca72..90918957c2f 100644
--- a/source/ast/helpcontent2/source/text/scalc/02.po
+++ b/source/ast/helpcontent2/source/text/scalc/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: 2024-05-27 12:59+0200\n"
-"PO-Revision-Date: 2024-05-29 09:45+0000\n"
+"PO-Revision-Date: 2024-06-02 09:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textscalc02/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: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1542196264.000000\n"
#. 89BHV
@@ -23,7 +23,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Name Box"
-msgstr ""
+msgstr "Caxa de nome"
#. aF278
#: 06010000.xhp
@@ -41,7 +41,7 @@ msgctxt ""
"hd_id3156326\n"
"help.text"
msgid "<variable id=\"name_box_h1\"><link href=\"text/scalc/02/06010000.xhp\">Name Box</link></variable>"
-msgstr ""
+msgstr "<variable id=\"name_box_h1\"><link href=\"text/scalc/02/06010000.xhp\">Caxa de nome</link></variable>"
#. bJypW
#: 06010000.xhp
@@ -68,7 +68,7 @@ msgctxt ""
"par_id3151118\n"
"help.text"
msgid "Name Box"
-msgstr "Cuadru de nome"
+msgstr "Caxa de nome"
#. yH3c4
#: 06010000.xhp
diff --git a/source/ast/helpcontent2/source/text/scalc/guide.po b/source/ast/helpcontent2/source/text/scalc/guide.po
index 35f1741588c..34de73fc348 100644
--- a/source/ast/helpcontent2/source/text/scalc/guide.po
+++ b/source/ast/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: guide\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-13 12:37+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-05-17 20:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textscalcguide/ast/>\n"
@@ -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-Poedit-SourceCharset: utf-8\n"
"X-POOTLE-MTIME: 1542196265.000000\n"
@@ -2411,14 +2411,14 @@ msgctxt ""
msgid "This method can also be used to insert a range from another sheet of the same document into the current sheet. Select the active document as source in step 4 above."
msgstr "Esti métodu pue utilizase tamién pa inxertar una área d'otra fueya del mesmu documentu na fueya activa. Escueya'l documentu activu como fonte nel pasu 4 anterior."
-#. ANNjW
+#. fw7FU
#: cellreferences.xhp
msgctxt ""
"cellreferences.xhp\n"
"tit\n"
"help.text"
-msgid "Referencing a Cell in Another Document"
-msgstr "Referencia a caxelles d'otru documentu"
+msgid "Referencing a Cell in Another Sheet"
+msgstr ""
#. FkFV9
#: cellreferences.xhp
@@ -2429,14 +2429,14 @@ msgctxt ""
msgid "<bookmark_value>sheet references</bookmark_value> <bookmark_value>references; to cells in other sheets/documents</bookmark_value> <bookmark_value>addresses; to cells in other sheets/documents</bookmark_value> <bookmark_value>cells; operating in another document</bookmark_value> <bookmark_value>documents;references</bookmark_value> <bookmark_value>cell;address</bookmark_value> <bookmark_value>address; of cell</bookmark_value>"
msgstr ""
-#. a5WVc
+#. 5EvNw
#: cellreferences.xhp
msgctxt ""
"cellreferences.xhp\n"
"hd_id3147436\n"
"help.text"
-msgid "<variable id=\"cellreferences\"><link href=\"text/scalc/guide/cellreferences.xhp\">Referencing Other Sheets</link></variable>"
-msgstr "<variable id=\"cellreferences\"><link href=\"text/scalc/guide/cellreferences.xhp\">Referencies a otres fueyes</link></variable>"
+msgid "<variable id=\"cellreferences\"><link href=\"text/scalc/guide/cellreferences.xhp\">Referencing a Cell in Another Sheet</link></variable>"
+msgstr ""
#. S3C6m
#: cellreferences.xhp
@@ -2627,14 +2627,14 @@ msgctxt ""
msgid "If you examine the name of the other document in this formula, you will notice that it is written as a <link href=\"text/shared/00/00000002.xhp#url\">URL</link>. This means that you can also enter a URL from the Internet."
msgstr "Si esamina'l nome del otru documentu nesta fórmula, va ver que ta escritu a mou de <link href=\"text/shared/00/00000002.xhp#url\">URL</link>. Esto significa que tamién pue introducir una direición URL d'Internet."
-#. ABuMQ
+#. jtXog
#: cellreferences_url.xhp
msgctxt ""
"cellreferences_url.xhp\n"
"tit\n"
"help.text"
-msgid "References to Other Sheets and Referencing URLs"
-msgstr "Referencies a otres fueyes y URL de referencia"
+msgid "Referencing URLs in other Sheets"
+msgstr ""
#. 7ELAq
#: cellreferences_url.xhp
@@ -2645,14 +2645,14 @@ msgctxt ""
msgid "<bookmark_value>HTML; in sheet cells</bookmark_value><bookmark_value>references; URL in cells</bookmark_value><bookmark_value>cells; Internet references</bookmark_value><bookmark_value>URL; in Calc</bookmark_value>"
msgstr "<bookmark_value>HTML; en caxelles de fueyes</bookmark_value><bookmark_value>referencies; URL en caxelles</bookmark_value><bookmark_value>caxelles; referencies d'Internet</bookmark_value><bookmark_value>URL; en Calc</bookmark_value>"
-#. M5F2f
+#. qpmog
#: cellreferences_url.xhp
msgctxt ""
"cellreferences_url.xhp\n"
"hd_id3150441\n"
"help.text"
-msgid "<variable id=\"cellreferences_url\"><link href=\"text/scalc/guide/cellreferences_url.xhp\">Referencing URLs</link></variable>"
-msgstr "<variable id=\"cellreferences_url\"><link href=\"text/scalc/guide/cellreferences_url.xhp\">URL de referencia</link></variable>"
+msgid "<variable id=\"cellreferences_url\"><link href=\"text/scalc/guide/cellreferences_url.xhp\">Referencing URLs in other Sheets</link></variable>"
+msgstr ""
#. VHDGU
#: cellreferences_url.xhp
@@ -12023,13 +12023,13 @@ msgctxt ""
msgid "January"
msgstr "Xineru"
-#. GTvgG
+#. kGDze
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
"par_id3153566\n"
"help.text"
-msgid "Specify that only rows which either have the value <literal>January</literal> in the <emph>Month</emph> cells OR a value of under 160000 in the <emph>Standard</emph> cells will be displayed."
+msgid "Specify that only rows which either have the value <literal>January</literal> in the <emph>Month</emph> cells OR a value of over 160000 in the <emph>Standard</emph> cells will be displayed."
msgstr ""
#. ApUpg
diff --git a/source/ast/helpcontent2/source/text/sdraw.po b/source/ast/helpcontent2/source/text/sdraw.po
index 67d172c88ca..84395d00c3f 100644
--- a/source/ast/helpcontent2/source/text/sdraw.po
+++ b/source/ast/helpcontent2/source/text/sdraw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-02-02 00:04+0100\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-01-15 09:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsdraw/ast/>\n"
@@ -1024,13 +1024,13 @@ msgctxt ""
msgid "Shape"
msgstr ""
-#. C5hGB
+#. GfQCR
#: main_shape.xhp
msgctxt ""
"main_shape.xhp\n"
"hd_id381558217682354\n"
"help.text"
-msgid "<link href=\"text/sdraw/main_shape.xhp\">Shape</link>"
+msgid "<variable id=\"shape_h1\"><link href=\"text/sdraw/main_shape.xhp\">Shape</link></variable>"
msgstr ""
#. Eeyb5
diff --git a/source/ast/helpcontent2/source/text/sdraw/01.po b/source/ast/helpcontent2/source/text/sdraw/01.po
index 23e9aff3999..312504fe4ee 100644
--- a/source/ast/helpcontent2/source/text/sdraw/01.po
+++ b/source/ast/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-03-04 14:25+0100\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-05-29 09:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsdraw01/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: 1494345812.000000\n"
#. 9EjcP
@@ -529,13 +529,13 @@ msgctxt ""
msgid "<bookmark_value>text box consolidation</bookmark_value><bookmark_value>join PDF lines;text box consolidation</bookmark_value><bookmark_value>combine text box;text box consolidation</bookmark_value><bookmark_value>combine text frames;text box consolidation</bookmark_value>"
msgstr ""
-#. naVUY
+#. oW3jP
#: consolidatetext.xhp
msgctxt ""
"consolidatetext.xhp\n"
"hd_id861623510996086\n"
"help.text"
-msgid "<link href=\"text/sdraw/01/consolidatetext.xhp\">Text Box Consolidation</link>"
+msgid "<link href=\"text/sdraw/01/consolidatetext.xhp\">Consolidate Text</link>"
msgstr ""
#. zsb7F
@@ -709,6 +709,132 @@ msgctxt ""
msgid "<ahelp hid=\".uno:DuplicatePage\" visibility=\"visible\">Inserts a copy of the current page after the current page.</ahelp>"
msgstr ""
+#. JATBB
+#: equalize_height.xhp
+msgctxt ""
+"equalize_height.xhp\n"
+"tit\n"
+"help.text"
+msgid "Equalize Height"
+msgstr ""
+
+#. YzLZ7
+#: equalize_height.xhp
+msgctxt ""
+"equalize_height.xhp\n"
+"bm_id911716062352822\n"
+"help.text"
+msgid "<bookmark_value>shape; equalize height</bookmark_value><bookmark_value>drawing object; equalize height</bookmark_value><bookmark_value>height; equalize</bookmark_value>"
+msgstr ""
+
+#. 6aFop
+#: equalize_height.xhp
+msgctxt ""
+"equalize_height.xhp\n"
+"hd_41716903489414\n"
+"help.text"
+msgid "<variable id=\"equalize_height_h1\"><link href=\"text/sdraw/01/equalize_height.xhp\">Equalize Height</link></variable>"
+msgstr ""
+
+#. jbdbE
+#: equalize_height.xhp
+msgctxt ""
+"equalize_height.xhp\n"
+"par_id03149165419149\n"
+"help.text"
+msgid "Sets the height of two or more selected objects to the height of the object selected last. <menuitem>Equalize Height</menuitem> is only available when two or more drawing objects are selected."
+msgstr ""
+
+#. cvXqr
+#: equalize_height.xhp
+msgctxt ""
+"equalize_height.xhp\n"
+"par_id27975425109289\n"
+"help.text"
+msgid "Choose <menuitem>Shape - Equalize Height</menuitem>."
+msgstr ""
+
+#. h7hJ7
+#: equalize_height.xhp
+msgctxt ""
+"equalize_height.xhp\n"
+"par_id09268594688434\n"
+"help.text"
+msgid "Choose <menuitem>Draw</menuitem>, then in the <menuitem>Draw</menuitem> dropdown choose <menuitem>Equalize Height</menuitem>."
+msgstr ""
+
+#. xDKxC
+#: equalize_height.xhp
+msgctxt ""
+"equalize_height.xhp\n"
+"par_id35381451047272\n"
+"help.text"
+msgid "Choose <menuitem>Shapes - Equalize Height</menuitem>."
+msgstr ""
+
+#. KD2Cv
+#: equalize_width.xhp
+msgctxt ""
+"equalize_width.xhp\n"
+"tit\n"
+"help.text"
+msgid "Equalize Width"
+msgstr ""
+
+#. dFStW
+#: equalize_width.xhp
+msgctxt ""
+"equalize_width.xhp\n"
+"bm_id911716062352822\n"
+"help.text"
+msgid "<bookmark_value>shape; equalize width</bookmark_value><bookmark_value>drawing object; equalize width</bookmark_value><bookmark_value>width; equalize</bookmark_value>"
+msgstr ""
+
+#. 7sBAD
+#: equalize_width.xhp
+msgctxt ""
+"equalize_width.xhp\n"
+"hd_41716903489414\n"
+"help.text"
+msgid "<variable id=\"equalize_width_h1\"><link href=\"text/sdraw/01/equalize_width.xhp\">Equalize Width</link></variable>"
+msgstr ""
+
+#. YBRGe
+#: equalize_width.xhp
+msgctxt ""
+"equalize_width.xhp\n"
+"par_id03149165419149\n"
+"help.text"
+msgid "Sets the width of two or more selected objects to the width of the object selected last. <menuitem>Equalize Width</menuitem> is only available when two or more drawing objects are selected."
+msgstr ""
+
+#. VUC74
+#: equalize_width.xhp
+msgctxt ""
+"equalize_width.xhp\n"
+"par_id27975425109289\n"
+"help.text"
+msgid "Choose <menuitem>Shape - Equalize Width</menuitem>."
+msgstr ""
+
+#. Y9hBE
+#: equalize_width.xhp
+msgctxt ""
+"equalize_width.xhp\n"
+"par_id58194124979923\n"
+"help.text"
+msgid "Choose <menuitem>Draw</menuitem>, then in the <menuitem>Draw</menuitem> dropdown choose <menuitem>Equalize Width</menuitem>."
+msgstr ""
+
+#. 3xmAx
+#: equalize_width.xhp
+msgctxt ""
+"equalize_width.xhp\n"
+"par_id35381451047272\n"
+"help.text"
+msgid "Choose <menuitem>Shapes - Equalize Width</menuitem>."
+msgstr ""
+
#. 2LJK2
#: insert_layer.xhp
msgctxt ""
diff --git a/source/ast/helpcontent2/source/text/shared.po b/source/ast/helpcontent2/source/text/shared.po
index 5a5861bba80..c0e5c2a7784 100644
--- a/source/ast/helpcontent2/source/text/shared.po
+++ b/source/ast/helpcontent2/source/text/shared.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-05-27 12:59+0200\n"
-"PO-Revision-Date: 2024-05-05 09:45+0000\n"
+"PO-Revision-Date: 2024-06-02 09:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textshared/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1542196266.000000\n"
#. fcmzq
@@ -1661,7 +1661,7 @@ msgctxt ""
"hd_id3149987\n"
"help.text"
msgid "<variable id=\"edit_points_bar_h1\"><link href=\"text/shared/main0227.xhp\">Edit Points Bar</link></variable>"
-msgstr ""
+msgstr "<variable id=\"edit_points_bar_h1\"><link href=\"text/shared/main0227.xhp\">Barra Editar puntos</link></variable>"
#. N5vQq
#: main0227.xhp
diff --git a/source/ast/helpcontent2/source/text/shared/01.po b/source/ast/helpcontent2/source/text/shared/01.po
index da70cb07ba6..820f7ff4530 100644
--- a/source/ast/helpcontent2/source/text/shared/01.po
+++ b/source/ast/helpcontent2/source/text/shared/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-27 12:59+0200\n"
-"PO-Revision-Date: 2024-05-29 09:45+0000\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"PO-Revision-Date: 2024-06-02 09:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/ast/>\n"
"Language: ast\n"
@@ -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: 1542196269.000000\n"
#. 3u8hR
@@ -3182,7 +3182,7 @@ msgctxt ""
"par_id1001712331484014\n"
"help.text"
msgid "Enter the names of the people, organizations, or other entities that have made contributions to the document. For example, the names of the document’s authors, or team members who contributed data to it."
-msgstr ""
+msgstr "Introduz los nomes de les persones, organizaciones o otres entidaes que fixeron contribuciones al documentu. Por exemplu, los nomes de los autores del documentu o de los miembros del equipu que-y amestaron datos."
#. CicCF
#: 01100100.xhp
@@ -40201,13 +40201,22 @@ msgctxt ""
msgid "Bullets and Numbering"
msgstr ""
-#. eZAKE
+#. ePFg9
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"bm_id11420732550923\n"
+"help.text"
+msgid "<bookmark_value>bullets and numbering; settings</bookmark_value><bookmark_value>bullets and numbering; customization</bookmark_value><bookmark_value>bullets and; add</bookmark_value><bookmark_value>bullets;Impress</bookmark_value><bookmark_value>ordered list;Impress</bookmark_value><bookmark_value>unordered list;Impress</bookmark_value><bookmark_value>bullets;Draw</bookmark_value><bookmark_value>ordered list;Draw</bookmark_value><bookmark_value>unordered list;Draw</bookmark_value>"
+msgstr ""
+
+#. RDsL2
#: 06050000.xhp
msgctxt ""
"06050000.xhp\n"
"hd_id3149551\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050000.xhp\">Bullets and Numbering</link>"
+msgid "<variable id=\"bullets_and_numbering_h1\"><link href=\"text/shared/01/06050000.xhp\">Bullets and Numbering</link></variable>"
msgstr ""
#. S7psX
@@ -40462,6 +40471,15 @@ msgctxt ""
msgid "Image"
msgstr "Imaxe"
+#. 2wccT
+#: 06050400.xhp
+msgctxt ""
+"06050400.xhp\n"
+"bm_id56740500219423\n"
+"help.text"
+msgid "<bookmark_value>bullets and numbering; image</bookmark_value> <bookmark_value>bullets; custom image</bookmark_value>"
+msgstr ""
+
#. CwjBg
#: 06050400.xhp
msgctxt ""
@@ -40480,6 +40498,15 @@ msgctxt ""
msgid "<ahelp hid=\".\">Displays the different graphics that you can use as bullets in an unordered list.</ahelp>"
msgstr ""
+#. DSPTL
+#: 06050400.xhp
+msgctxt ""
+"06050400.xhp\n"
+"par_id51255442180622\n"
+"help.text"
+msgid "Use the <link href=\"text/shared/01/06050000.xhp\"><menuitem>Customize</menuitem></link> and <link href=\"text/shared/01/06050600.xhp\"><menuitem>Position</menuitem></link> tabs to adjust the size, alignment, and position of the image."
+msgstr ""
+
#. yDHf2
#: 06050400.xhp
msgctxt ""
@@ -40498,40 +40525,31 @@ msgctxt ""
msgid "<ahelp hid=\".\">Click the graphics that you want to use as bullets.</ahelp>"
msgstr ""
-#. kzDsV
+#. hAnvd
#: 06050400.xhp
msgctxt ""
"06050400.xhp\n"
-"hd_id061120090436157\n"
+"hd_id45986474959229\n"
"help.text"
-msgid "Link graphics"
+msgid "Add and Resize"
msgstr ""
-#. udZya
+#. coZpZ
#: 06050400.xhp
msgctxt ""
"06050400.xhp\n"
-"par_id0611200904361575\n"
+"par_id55772839958583\n"
"help.text"
-msgid "<ahelp hid=\".\">If enabled, the graphics are inserted as links. If not enabled, the graphics are embedded into the document.</ahelp>"
+msgid "Opens a file picker where you can select an image file to use as a bullet in an unordered list."
msgstr ""
-#. y5Mpc
+#. AcFMD
#: 06050400.xhp
msgctxt ""
"06050400.xhp\n"
-"par_id061120090437338\n"
+"par_id00797416585085\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050600.xhp\">Position tab (Bullets and Numbering dialog)</link>"
-msgstr ""
-
-#. GGXd8
-#: 06050400.xhp
-msgctxt ""
-"06050400.xhp\n"
-"par_id0611200904373391\n"
-"help.text"
-msgid "<link href=\"text/shared/01/06050500.xhp\">Options tab (Bullets and Numbering dialog)</link>"
+msgid "Select an image file from the file picker and click <menuitem>Open</menuitem> to add it as a bullet style. The image is automatically resized to the width and height specified in the <link href=\"text/shared/01/06050500.xhp#bm_id3153363\"><menuitem>Customize</menuitem></link> tab."
msgstr ""
#. MZF62
@@ -40543,22 +40561,22 @@ msgctxt ""
msgid "Customize (Bullets and Numbering)"
msgstr ""
-#. QChMa
+#. SQjo9
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"bm_id4096499\n"
"help.text"
-msgid "<bookmark_value>numbering;options</bookmark_value> <bookmark_value>bullet lists; formatting options</bookmark_value> <bookmark_value>font sizes;bullets</bookmark_value>"
+msgid "<bookmark_value>numbering;options</bookmark_value> <bookmark_value>bullet lists; formatting options</bookmark_value> <bookmark_value>font sizes;bullets</bookmark_value>"
msgstr ""
-#. Roq5k
+#. e9nYq
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"hd_id3147240\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050500.xhp\">Customize</link>"
+msgid "<variable id=\"customize_h1\"><link href=\"text/shared/01/06050500.xhp\">Customize</link></variable>"
msgstr ""
#. ptL6S
diff --git a/source/ast/helpcontent2/source/text/shared/02.po b/source/ast/helpcontent2/source/text/shared/02.po
index 740b0ec24b7..abe21c0005a 100644
--- a/source/ast/helpcontent2/source/text/shared/02.po
+++ b/source/ast/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-27 12:59+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-05-22 09:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textshared02/ast/>\n"
@@ -11888,14 +11888,14 @@ msgctxt ""
msgid "Rotate"
msgstr "Xirar"
-#. 5uEQ4
+#. bjDyk
#: 05090000.xhp
msgctxt ""
"05090000.xhp\n"
"hd_id3154863\n"
"help.text"
-msgid "<link href=\"text/shared/02/05090000.xhp\">Rotate</link>"
-msgstr "<link href=\"text/shared/02/05090000.xhp\">Xirar</link>"
+msgid "<variable id=\"rotate_h1\"><link href=\"text/shared/02/05090000.xhp\">Rotate</link></variable>"
+msgstr ""
#. ycqR8
#: 05090000.xhp
@@ -11996,14 +11996,14 @@ msgctxt ""
msgid "Alignment"
msgstr "Alliniación"
-#. 5YEFv
+#. EBuE8
#: 05110000.xhp
msgctxt ""
"05110000.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "Alignment"
-msgstr "Alliniación"
+msgid "<variable id=\"alignment_h1\"><link href=\"text/shared/02/05110000.xhp\">Alignment</link></variable>"
+msgstr ""
#. GiEnY
#: 05110000.xhp
diff --git a/source/ast/helpcontent2/source/text/shared/menu.po b/source/ast/helpcontent2/source/text/shared/menu.po
index bdef502eb84..f2cdee779e0 100644
--- a/source/ast/helpcontent2/source/text/shared/menu.po
+++ b/source/ast/helpcontent2/source/text/shared/menu.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-30 14:12+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-05-02 09:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsharedmenu/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: 1464059254.000000\n"
#. 4dDYy
@@ -367,14 +367,23 @@ msgctxt ""
msgid "<ahelp hid=\".\">This submenu contains form controls like a textbox, checkbox, option button, and listbox that can be inserted into the document.</ahelp>"
msgstr ""
-#. qHWBR
+#. GmbEB
#: insert_shape.xhp
msgctxt ""
"insert_shape.xhp\n"
"tit\n"
"help.text"
-msgid "Shape"
-msgstr "Forma"
+msgid "Insert Shape"
+msgstr ""
+
+#. PvcFc
+#: insert_shape.xhp
+msgctxt ""
+"insert_shape.xhp\n"
+"hd_id07684081706272\n"
+"help.text"
+msgid "<variable id=\"insert_h1\"><link href=\"text/shared/menu/insert_shape.xhp\">Insert</link></variable>"
+msgstr ""
#. MHwAt
#: insert_shape.xhp
@@ -394,6 +403,15 @@ msgctxt ""
msgid "<ahelp hid=\".\">This submenu contains common shapes like a line, circle, triangle, and square, or a symbol shape like a smiley face, heart, and flower that can be inserted into the document.</ahelp>"
msgstr ""
+#. v9tGR
+#: insert_shape.xhp
+msgctxt ""
+"insert_shape.xhp\n"
+"par_id261716922857055\n"
+"help.text"
+msgid "Choose <menuitem>Shape - Insert</menuitem>."
+msgstr ""
+
#. vcXma
#: insert_shape.xhp
msgctxt ""
diff --git a/source/ast/helpcontent2/source/text/simpress/01.po b/source/ast/helpcontent2/source/text/simpress/01.po
index 3ce608215c8..50a69316467 100644
--- a/source/ast/helpcontent2/source/text/simpress/01.po
+++ b/source/ast/helpcontent2/source/text/simpress/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-05-25 09:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsimpress01/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: 1535978252.000000\n"
#. mu9aV
@@ -853,14 +853,14 @@ msgctxt ""
msgid "Cross-fading"
msgstr "Disolvencia"
-#. Wboxp
+#. ZD3eP
#: 02150000.xhp
msgctxt ""
"02150000.xhp\n"
"hd_id3148577\n"
"help.text"
-msgid "Cross-fading"
-msgstr "Disolvencia"
+msgid "<variable id=\"cross-fading_h1\"><link href=\"text/simpress/01/02150000.xhp\">Cross-fading</link></variable>"
+msgstr ""
#. aCYnB
#: 02150000.xhp
@@ -7918,15 +7918,6 @@ msgctxt ""
msgid "Bullet and Position"
msgstr ""
-#. mjHGa
-#: bulletandposition.xhp
-msgctxt ""
-"bulletandposition.xhp\n"
-"bm_id121623276174916\n"
-"help.text"
-msgid "<bookmark_value>bullets;Impress</bookmark_value><bookmark_value>ordered list;Impress</bookmark_value><bookmark_value>unordered list;Impress</bookmark_value><bookmark_value>bullets;Draw</bookmark_value><bookmark_value>ordered list;Draw</bookmark_value><bookmark_value>unordered list;Draw</bookmark_value>"
-msgstr ""
-
#. xAFoQ
#: bulletandposition.xhp
msgctxt ""
@@ -7954,13 +7945,13 @@ msgctxt ""
msgid "In a selected text, choose <menuitem>Bullets and Numbering</menuitem>."
msgstr ""
-#. CKDCB
+#. eq2HC
#: bulletandposition.xhp
msgctxt ""
"bulletandposition.xhp\n"
"par_id571692539528746\n"
"help.text"
-msgid "On the <menuitem>Home</menuitem> tab, long click on <menuitem>Ordered</menuitem> or <menuitem>Unordered</menuitem> list, select <menuitem>Customize</menuitem>."
+msgid "On the <switchinline select=\"appl\"><caseinline select=\"DRAW\"><menuitem>Text</menuitem></caseinline><caseinline select=\"IMPRESS\"><menuitem>Home</menuitem></caseinline></switchinline> tab, long click on <menuitem>Ordered</menuitem> or <menuitem>Unordered</menuitem> list, select <menuitem>Customize</menuitem>."
msgstr ""
#. 8ABFW
@@ -8170,15 +8161,6 @@ msgctxt ""
msgid "Keep ratio"
msgstr ""
-#. c4vEd
-#: bulletandposition.xhp
-msgctxt ""
-"bulletandposition.xhp\n"
-"par_id261623260666478\n"
-"help.text"
-msgid "Check this box to preserve the height-to-width ratio of the graphic bullet."
-msgstr ""
-
#. AKwMq
#: bulletandposition.xhp
msgctxt ""
diff --git a/source/ast/helpcontent2/source/text/simpress/02.po b/source/ast/helpcontent2/source/text/simpress/02.po
index 142d2a5ecd6..e4bfd99d2a7 100644
--- a/source/ast/helpcontent2/source/text/simpress/02.po
+++ b/source/ast/helpcontent2/source/text/simpress/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-27 12:59+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-05-29 09:45+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"
@@ -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: 1507112012.000000\n"
#. AiACn
@@ -4543,14 +4543,14 @@ msgctxt ""
msgid "<link href=\"text/shared/01/04150100.xhp\">OLE Object</link>"
msgstr "<link href=\"text/shared/01/04150100.xhp\">Oxetu OLE</link>"
-#. Sy8hn
+#. yeRNc
#: 10120000.xhp
msgctxt ""
"10120000.xhp\n"
"tit\n"
"help.text"
-msgid "Arrows"
-msgstr "Fleches"
+msgid "Lines and Arrows"
+msgstr ""
#. MYZ6p
#: 10120000.xhp
@@ -4561,23 +4561,23 @@ msgctxt ""
msgid "<bookmark_value>lines;inserting</bookmark_value><bookmark_value>arrows; inserting</bookmark_value><bookmark_value>inserting; lines</bookmark_value><bookmark_value>inserting; arrows</bookmark_value><bookmark_value>dimension lines; drawing</bookmark_value>"
msgstr "<bookmark_value>llinies;inxertar</bookmark_value><bookmark_value>fleches;inxertar</bookmark_value><bookmark_value>inxertar;llinies</bookmark_value><bookmark_value>inxertar;fleches</bookmark_value><bookmark_value>llinies de dimensiones;dibuxu</bookmark_value>"
-#. JFM62
+#. BGAmB
#: 10120000.xhp
msgctxt ""
"10120000.xhp\n"
"hd_id3145799\n"
"help.text"
-msgid "<link href=\"text/simpress/02/10120000.xhp\">Arrows</link>"
-msgstr "<link href=\"text/simpress/02/10120000.xhp\">Fleches</link>"
+msgid "<variable id=\"lines_and_arrows_h1\"><link href=\"text/simpress/02/10120000.xhp\">Lines and Arrows</link></variable>"
+msgstr ""
-#. dVNDG
+#. 4zGbe
#: 10120000.xhp
msgctxt ""
"10120000.xhp\n"
"par_id3145790\n"
"help.text"
-msgid "<ahelp hid=\".uno:ArrowsToolbox\">Open the <emph>Arrows</emph> toolbar, where you can add straight lines, lines with arrows, and dimension lines to the current slide or page.</ahelp>"
-msgstr "<ahelp hid=\".uno:ArrowsToolbox\">Abra la barra de ferramientes <emph>Fleches</emph>, cola que pue incorporar llinies rectes, llinies con fleches y llinies de cota a la diapositiva o páxina actual.</ahelp>"
+msgid "<ahelp hid=\".uno:ArrowsToolbox\">Open the <variable id=\"lines_and_arrows_menu\"><menuitem>Lines and Arrows</menuitem></variable> toolbar, where you can add straight lines, lines with arrows, and dimension lines to the current slide or page.</ahelp>"
+msgstr ""
#. dJyBN
#: 10120000.xhp
diff --git a/source/ast/helpcontent2/source/text/swriter/guide.po b/source/ast/helpcontent2/source/text/swriter/guide.po
index cd41dc53aef..db248f4cc57 100644
--- a/source/ast/helpcontent2/source/text/swriter/guide.po
+++ b/source/ast/helpcontent2/source/text/swriter/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-05-23 12:40+0200\n"
-"PO-Revision-Date: 2024-05-05 09:45+0000\n"
+"PO-Revision-Date: 2024-06-02 09:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/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: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1542028604.000000\n"
#. XAt2Y
@@ -11750,7 +11750,7 @@ msgctxt ""
"par_id5757621\n"
"help.text"
msgid "Click into the first paragraph of your document."
-msgstr "Faiga clic nel primer párrafu del documentu."
+msgstr "Calca nel primer párrafu del documentu."
#. eVyQd
#: pagenumbers.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 36ac4a65592..23d1af28f93 100644
--- a/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-13 12:37+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-05-29 01:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/ast/>\n"
@@ -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: 1542022492.000000\n"
#. W5ukN
@@ -30398,14 +30398,14 @@ msgctxt ""
msgid "Columns"
msgstr "Columnes"
-#. DqpFK
+#. oziQM
#: Sidebar.xcu
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.QuickFindPanel\n"
"Title\n"
"value.text"
-msgid "QuickFind"
+msgid "Quick Find"
msgstr ""
#. CDJWW
diff --git a/source/ast/sc/messages.po b/source/ast/sc/messages.po
index 871f6df85c2..16efd16803d 100644
--- a/source/ast/sc/messages.po
+++ b/source/ast/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-05-31 01:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/ast/>\n"
@@ -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.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542022495.000000\n"
#. kBovX
@@ -23446,11 +23446,11 @@ msgctxt "drawtemplatedialog|standard"
msgid "_Standard"
msgstr ""
-#. jyFCi
+#. Dnnbp
#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
msgctxt "drawtemplatedialog|organizer"
-msgid "Organizer"
-msgstr "Organizador"
+msgid "General"
+msgstr ""
#. qSfk8
#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
@@ -28487,11 +28487,11 @@ msgctxt "pagetemplatedialog|PageTemplateDialog"
msgid "Page Style"
msgstr "Estilu de páxina"
-#. D22J5
+#. F6ehW
#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
msgctxt "pagetemplatedialog|organizer"
-msgid "Organizer"
-msgstr "Organizador"
+msgid "General"
+msgstr ""
#. CbW7A
#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
@@ -28566,11 +28566,11 @@ msgctxt "paratemplatedialog|ParaTemplateDialog"
msgid "Cell Style"
msgstr "Estilu de caxella"
-#. AGL7z
+#. EMrke
#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
msgctxt "paratemplatedialog|organizer"
-msgid "Organizer"
-msgstr "Organizador"
+msgid "General"
+msgstr ""
#. asnEd
#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
diff --git a/source/ast/scp2/source/ooo.po b/source/ast/scp2/source/ooo.po
index cbc7d844bcd..b9093c2362a 100644
--- a/source/ast/scp2/source/ooo.po
+++ b/source/ast/scp2/source/ooo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-01-10 15:11+0100\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-03-19 01:45+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"
@@ -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"
#. CYBGJ
@@ -2216,6 +2216,24 @@ msgctxt ""
msgid "Installs the Spanish user interface"
msgstr "Instala la interfaz d'usuariu en castellanu"
+#. NreEY
+#: module_langpack.ulf
+msgctxt ""
+"module_langpack.ulf\n"
+"STR_NAME_MODULE_LANGPACK_SUN\n"
+"LngText.text"
+msgid "Sundanese"
+msgstr ""
+
+#. pa3r3
+#: module_langpack.ulf
+msgctxt ""
+"module_langpack.ulf\n"
+"STR_DESC_MODULE_LANGPACK_SUN\n"
+"LngText.text"
+msgid "Installs the Sundanese user interface"
+msgstr ""
+
#. zAWhn
#: module_langpack.ulf
msgctxt ""
diff --git a/source/ast/sd/messages.po b/source/ast/sd/messages.po
index fe484950efd..33743676459 100644
--- a/source/ast/sd/messages.po
+++ b/source/ast/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-13 12:37+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-05-22 01:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/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
@@ -9735,11 +9735,11 @@ msgctxt "templatedialog|standard"
msgid "_Standard"
msgstr "E_stándar"
-#. HsXnQ
+#. BXMVx
#: sd/uiconfig/simpress/ui/templatedialog.ui:126
msgctxt "templatedialog|organizer"
-msgid "Organizer"
-msgstr "Organizador"
+msgid "General"
+msgstr ""
#. 5d7Zo
#: sd/uiconfig/simpress/ui/templatedialog.ui:149
diff --git a/source/ast/sfx2/messages.po b/source/ast/sfx2/messages.po
index 15d8e48f9eb..98914399407 100644
--- a/source/ast/sfx2/messages.po
+++ b/source/ast/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-05-23 01:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/ast/>\n"
@@ -3024,152 +3024,110 @@ msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#. pxEPn
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:18
-msgctxt "descriptioninfopage|label27"
-msgid "_Title:"
-msgstr "_Títulu:"
-
#. HqzQo
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:32
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:18
msgctxt "descriptioninfopage|label28"
msgid "_Subject:"
msgstr "A_suntu:"
#. gEGPn
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:46
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:32
msgctxt "descriptioninfopage|label29"
msgid "_Keywords:"
msgstr "_Pallabres clave:"
-#. FXZzx
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:61
-msgctxt "descriptioninfopage|label31"
-msgid "Co_ntributor:"
-msgstr ""
-
-#. eKsAC
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:76
-msgctxt "descriptioninfopage|label32"
-msgid "Co_verage:"
-msgstr ""
-
-#. Wtpt7
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:91
-msgctxt "descriptioninfopage|label37"
-msgid "_Identifier:"
-msgstr ""
-
-#. 73G3F
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:106
-msgctxt "descriptioninfopage|label39"
-msgid "_Publisher:"
-msgstr ""
-
-#. Axu5g
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:121
-msgctxt "descriptioninfopage|label40"
-msgid "R_elation:"
-msgstr ""
-
-#. AGDpc
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:136
-msgctxt "descriptioninfopage|label41"
-msgid "Ri_ghts:"
-msgstr ""
-
-#. eK4rF
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:151
-msgctxt "descriptioninfopage|label42"
-msgid "So_urce:"
-msgstr ""
-
-#. RFBPC
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:166
-msgctxt "descriptioninfopage|label45"
-msgid "T_ype:"
-msgstr ""
-
#. Nayo4
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:181
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:47
msgctxt "descriptioninfopage|label30"
msgid "_Comments:"
msgstr "_Comentarios:"
#. qw238
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:199
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:65
msgctxt "descriptioninfopage|extended_tip|title"
msgid "Enter a title for the document."
msgstr "Pon un títulu pal documentu."
#. rvZHi
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:216
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:82
msgctxt "descriptioninfopage|extended_tip|subject"
msgid "Enter a subject for the document. You can use a subject to group documents with similar contents."
msgstr ""
#. FoxGh
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:233
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:99
msgctxt "descriptioninfopage|extended_tip|keywords"
msgid "Enter the words that you want to use to index the content of your document. Keywords must be separated by commas. A keyword can contain white space characters or semicolons."
msgstr ""
#. 64GNQ
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:250
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:116
msgctxt "descriptioninfopage|extended_tip|contributor"
msgid "Enter the names of the people, organizations, or other entities that have made contributions to the document."
msgstr ""
-#. ECAfA
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:267
-msgctxt "descriptioninfopage|extended_tip|coverage"
-msgid "Enter the time, place, or jurisdiction that the document is relevant to."
+#. bo2q7
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:140
+msgctxt "descriptioninfopage|extended_tip|comments"
+msgid "Enter comments to help identify the document."
msgstr ""
-#. EGix4
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:284
-msgctxt "descriptioninfopage|extended_tip|identifier"
-msgid "Enter a unique and unambiguous identifier for the document."
+#. pxEPn
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:155
+msgctxt "descriptioninfopage|label27"
+msgid "_Title:"
+msgstr "_Títulu:"
+
+#. x4CGE
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:170
+msgctxt "descriptioninfopage|type_contributor"
+msgid "Contributor"
msgstr ""
-#. FQphA
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:301
-msgctxt "descriptioninfopage|extended_tip|publisher"
-msgid "Enter the name of the entity that is making the document available."
+#. AGXmA
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:171
+msgctxt "descriptioninfopage|type_coverage"
+msgid "Coverage"
msgstr ""
-#. n8gwE
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:318
-msgctxt "descriptioninfopage|extended_tip|relation"
-msgid "Enter information about a resource related to the document."
+#. FDnBu
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:172
+msgctxt "descriptioninfopage|type_identifier"
+msgid "Identifier"
msgstr ""
-#. ZiijJ
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:335
-msgctxt "descriptioninfopage|extended_tip|rights"
-msgid "Enter information about intellectual property rights associated with the document."
-msgstr "Pon información sobre los derechos de propiedá inteleutual atribuyíos al documentu."
+#. iTZFA
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:173
+msgctxt "descriptioninfopage|type_publisher"
+msgid "Publisher"
+msgstr ""
-#. Nze95
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:352
-msgctxt "descriptioninfopage|extended_tip|source"
-msgid "Enter information about other resources from which the document is derived."
+#. c5fHP
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:174
+msgctxt "descriptioninfopage|type_relation"
+msgid "Relation"
msgstr ""
-#. UEyYw
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:369
-msgctxt "descriptioninfopage|extended_tip|type"
-msgid "Enter information about the category or format of the document."
+#. FaGa4
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:175
+msgctxt "descriptioninfopage|type_rights"
+msgid "Rights"
msgstr ""
-#. bo2q7
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:393
-msgctxt "descriptioninfopage|extended_tip|comments"
-msgid "Enter comments to help identify the document."
+#. yDvSu
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:176
+msgctxt "descriptioninfopage|type_source"
+msgid "Source"
+msgstr ""
+
+#. 25AxF
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:177
+msgctxt "descriptioninfopage|type_types"
+msgid "Type"
msgstr ""
#. sGW3Z
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:406
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:187
msgctxt "descriptioninfopage|extended_tip|DescriptionInfoPage"
msgid "Contains descriptive information about the document."
msgstr ""
@@ -3429,86 +3387,86 @@ msgid "_Apply user data"
msgstr "Usar los _datos del usuariu"
#. JFxmP
-#: sfx2/uiconfig/ui/documentinfopage.ui:197
+#: sfx2/uiconfig/ui/documentinfopage.ui:198
msgctxt "documentinfopage|reset"
msgid "Reset Properties"
msgstr "Reafitar les propiedaes"
#. HrN2U
-#: sfx2/uiconfig/ui/documentinfopage.ui:204
+#: sfx2/uiconfig/ui/documentinfopage.ui:205
msgctxt "documentinfopage|extended_tip|reset"
msgid "Resets the editing time to zero, the creation date to the current date and time, and the version number to 1. The modification and printing dates are also deleted."
msgstr ""
#. qeWvU
-#: sfx2/uiconfig/ui/documentinfopage.ui:215
+#: sfx2/uiconfig/ui/documentinfopage.ui:216
#, fuzzy
msgctxt "documentinfopage|signature"
msgid "Di_gital Signatures..."
msgstr "Robla di_xital..."
#. rEEgJ
-#: sfx2/uiconfig/ui/documentinfopage.ui:234
+#: sfx2/uiconfig/ui/documentinfopage.ui:235
msgctxt "documentinfopage|label11"
msgid "_Size:"
msgstr "_Tamañu:"
#. WNFYB
-#: sfx2/uiconfig/ui/documentinfopage.ui:247
+#: sfx2/uiconfig/ui/documentinfopage.ui:248
msgctxt "documentinfopage|showsize"
msgid "unknown"
msgstr "desconocíu"
#. EgtLE
-#: sfx2/uiconfig/ui/documentinfopage.ui:262
+#: sfx2/uiconfig/ui/documentinfopage.ui:263
msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "_Llugar:"
#. 9xhwo
-#: sfx2/uiconfig/ui/documentinfopage.ui:276
+#: sfx2/uiconfig/ui/documentinfopage.ui:277
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "_Triba:"
#. ZLmAo
-#: sfx2/uiconfig/ui/documentinfopage.ui:299
+#: sfx2/uiconfig/ui/documentinfopage.ui:300
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Camudar la _contraseña"
#. oqAZE
-#: sfx2/uiconfig/ui/documentinfopage.ui:317
+#: sfx2/uiconfig/ui/documentinfopage.ui:318
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Plantía:"
#. 5pXPV
-#: sfx2/uiconfig/ui/documentinfopage.ui:366
+#: sfx2/uiconfig/ui/documentinfopage.ui:367
msgctxt "documentinfopage|extended_tip|nameed"
msgid "Displays the file name."
msgstr "Amuesa'l nome del ficheru."
#. LCDUj
-#: sfx2/uiconfig/ui/documentinfopage.ui:397
+#: sfx2/uiconfig/ui/documentinfopage.ui:398
msgctxt "documentinfopage|thumbnailsavecb"
msgid "Save preview image with this document"
msgstr ""
#. 6bF5w
-#: sfx2/uiconfig/ui/documentinfopage.ui:416
+#: sfx2/uiconfig/ui/documentinfopage.ui:419
msgctxt "documentinfopage|image-preferred-dpi-checkbutton"
msgid "Preferred resolution for images:"
msgstr "Resolución preferida pa les imáxenes:"
#. pukYD
-#: sfx2/uiconfig/ui/documentinfopage.ui:466
+#: sfx2/uiconfig/ui/documentinfopage.ui:467
msgctxt "documentinfopage|image-preferred-ppi-unit"
msgid "ppi"
msgstr ""
#. VWjRu
-#: sfx2/uiconfig/ui/documentinfopage.ui:500
+#: sfx2/uiconfig/ui/documentinfopage.ui:508
msgctxt "documentinfopage|extended_tip|DocumentInfoPage"
msgid "Contains basic information about the current file."
msgstr "Contién información básico tocante al ficheru actual."
diff --git a/source/ast/sw/messages.po b/source/ast/sw/messages.po
index 76cd584e06e..4b8d3fb383b 100644
--- a/source/ast/sw/messages.po
+++ b/source/ast/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-05-23 01:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/ast/>\n"
@@ -15614,157 +15614,157 @@ msgid "This is where you insert the references or referenced fields into the cur
msgstr "Equí inxertar les referencies o campos con referencies nel documentu actual. Les referencies son campos con referencies nel mesmu documentu o en subdocumentos d'un documentu maestru."
#. jXhPb
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:71
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:73
msgctxt "fldvarpage|nameft"
msgid "Na_me:"
msgstr "No_me:"
#. juXJz
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:89
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:91
msgctxt "fldvarpage|extended_tip|name"
msgid "Type the name of the user-defined field to create."
msgstr ""
#. mA2Cx
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:105
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:107
msgctxt "fldvarpage|valueft"
msgid "_Value:"
msgstr "_Valor:"
#. onRpf
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:130
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:132
msgctxt "fldvarpage|extended_tip|value"
msgid "Enter the contents to add to a user-defined field."
msgstr ""
#. BLiKH
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:154
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:156
msgctxt "fldvarpage|apply|tooltip_text"
msgid "Apply"
msgstr "Aplicar"
#. iLGxP
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:160
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:162
msgctxt "fldvarpage|extended_tip|apply"
msgid "Adds the user-defined field to the Select list."
msgstr ""
#. GKfDe
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:174
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:176
msgctxt "fldvarpage|delete|tooltip_text"
msgid "Delete"
msgstr "Desaniciar"
#. bGYju
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:180
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:182
msgctxt "fldvarpage|extended_tip|delete"
msgid "Removes the user-defined field from the select list. You can only remove fields that are not used in the current document."
msgstr ""
#. EMeve
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:246
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:248
msgctxt "fldvarpage|extended_tip|type"
msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Select list, and then click Insert."
msgstr "Llista los tipos de campu disponible. P'amestar un campu a un documentu, dase clic nel tipu de campu, clic nun campu de la llista Escoyer , y depués dar clic en Inxertar."
#. MYGxL
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:257
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:259
msgctxt "fldvarpage|label1"
msgid "_Type"
msgstr "_Triba"
#. YfUrq
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:312
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:314
msgctxt "fldvarpage|extended_tip|select"
msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, and then click Insert."
msgstr "Llista los campos disponibles pal tipu de campu escoyíu na llista Tipu. Pa inxertar un campu, dar clic nel campu y depués clic en Inxertar."
#. JFbpp
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:323
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:325
msgctxt "fldvarpage|label2"
msgid "_Select"
msgstr ""
#. eLoJ7
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:386
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:388
msgctxt "fldvarpage|extended_tip|numformat"
msgid "Click the format to apply to the selected field, or click \"Additional formats\" to define a custom format."
msgstr ""
#. bAzUU
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:431
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:433
msgctxt "fldvarpage|extended_tip|format"
msgid "In the Format list, define if the value is inserted as text or as number."
msgstr ""
#. qPpKb
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:445
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:447
msgctxt "fldvarpage|invisible"
msgid "Invisi_ble"
msgstr "Invisi_ble"
#. 4SBL9
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:453
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:455
msgctxt "fldvarpage|extended_tip|invisible"
msgid "Hides the field contents in the document."
msgstr ""
#. jUrib
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:484
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:486
msgctxt "fldvarpage|label5"
msgid "_Up to level:"
msgstr ""
#. uXVGk
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:497
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:499
msgctxt "fldvarpage|separatorft"
msgid "Se_parator:"
msgstr ""
#. xWPdj
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:511
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:513
msgctxt "fldvarpage|level|tooltip_text"
msgid "Choose heading number to prepend to displayed field, where the number comes from the first prior heading whose outline level is equal to or less than the selected outline level. If [None] is selected, no heading number is displayed."
msgstr ""
#. B2VKZ
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:513
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:515
msgctxt "fldvarpage|level"
msgid "[None]"
msgstr "[Nengún]"
#. 3eiSX
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:517
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:519
msgctxt "fldvarpage|extended_tip|level"
msgid "Choose heading number to prepend to displayed field, where the number comes from the first prior heading whose outline level is equal to or less than the selected outline level. For example, select “2” to use the heading number of the first prior heading that has outline level 2 or less. If “None” is selected, no heading number is displayed. To use this option, heading numbers must be enabled. Use “Tools - Heading Numbering”."
msgstr ""
#. Bnsut
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:530
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:532
msgctxt "fldvarpage|separator|tooltip_text"
msgid "Enter the character to use as a separator between the heading number and the field number."
msgstr "Introduz el caráuter que tien de separar el númberu del títulu y el del campu."
#. ECBav
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:533
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:535
msgctxt "fldvarpage|separator"
msgid "."
msgstr "."
#. 3dC3P
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:537
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:539
msgctxt "fldvarpage|extended_tip|separator"
msgid "Enter the character to use as a separator between the heading number and the field number."
msgstr "Introduz el caráuter que tien de separar el númberu del títulu y el del campu."
#. GgDBN
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:552
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:554
msgctxt "fldvarpage|label4"
msgid "With Heading Number"
msgstr "Con númberu de títulu"
#. WRjtn
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:573
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:575
msgctxt "fldvarpage|label3"
msgid "_Format"
msgstr ""
@@ -21444,284 +21444,278 @@ msgctxt "navigatorcontextmenu|STR_DEMOTE_LEVEL"
msgid "Demote Outline Level"
msgstr ""
-#. tukRq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:105
-msgctxt "navigatorcontextmenu|STR_REMOVE_INDEX"
-msgid "_Remove Index"
-msgstr ""
-
#. C4355
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:113
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:105
msgctxt "navigatorcontextmenu|STR_UPDATE"
msgid "_Update"
msgstr ""
#. BtCca
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:121
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:113
msgctxt "navigatorcontextmenu|STR_EDIT_ENTRY"
msgid "Edit..."
msgstr "Editar..."
#. BYyhD
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:129
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:121
msgctxt "navigatorcontextmenu|STR_REMOVE_TBL_PROTECTION"
msgid "_Unprotect"
msgstr ""
#. 6KWWG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:137
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:129
msgctxt "navigatorcontextmenu|STR_READONLY_IDX"
msgid "Read-_only"
msgstr ""
#. Z46XG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:145
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:137
msgctxt "navigatorcontextmenu|STR_DELETE_TABLE"
msgid "Delete Table"
msgstr "Desaniciar la tabla"
#. nWZCB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:154
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:146
msgctxt "navigatorcontextmenu|STR_DELETE_FRAME"
msgid "Delete Frame"
msgstr "Desaniciar el marcu"
#. iA4dL
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:163
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:155
msgctxt "navigatorcontextmenu|STR_DELETE_IMAGE"
msgid "Delete Image"
msgstr "Desaniciar la imaxe"
#. PeDxb
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:172
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:164
msgctxt "navigatorcontextmenu|STR_DELETE_OLE_OBJECT"
msgid "Delete OLE object"
msgstr "Desaniciar l'oxetu OLE"
#. gGdPe
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:181
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:173
msgctxt "navigatorcontextmenu|STR_DELETE_BOOKMARK"
msgid "Delete Bookmark"
msgstr ""
#. CYbsq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:190
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:182
msgctxt "navigatorcontextmenu|STR_DELETE_REGION"
msgid "Delete Section"
msgstr "Desaniciar la seición"
#. NzaP7
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:199
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:191
msgctxt "navigatorcontextmenu|STR_DELETE_HYPERLINK"
msgid "Delete Hyperlink"
msgstr "Desaniciar l'hiperenllaz"
#. hNJRX
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:208
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:200
msgctxt "navigatorcontextmenu|STR_DELETE_REFERENCE"
msgid "Delete Reference"
msgstr "Desaniciar la referencia"
#. LaCMh
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:216
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:208
msgctxt "navigatorcontextmenu|STR_DELETE_INDEX"
msgid "Delete Index"
msgstr "Desaniciar l'índiz"
#. cEyZC
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:225
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:217
msgctxt "navigatorcontextmenu|STR_DELETE_COMMENT"
msgid "Delete Comment"
msgstr "Desaniciar el comentariu"
#. AuAjE
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:234
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:226
msgctxt "navigatorcontextmenu|STR_DELETE_DRAWING_OBJECT"
msgid "Delete Drawing object"
msgstr ""
#. RhyGG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:243
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:235
msgctxt "navigatorcontextmenu|STR_DELETE_FIELD"
msgid "Delete Field"
msgstr "Desaniciar el campu"
#. GGzCM
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:252
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:244
msgctxt "navigatorcontextmenu|STR_DELETE_ALL_FOOTNOTES"
msgid "Delete All Footnotes"
msgstr "Desaniciar toles notes al pie"
#. kyGVJ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:260
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:252
msgctxt "navigatorcontextmenu|STR_DELETE_ALL_ENDNOTES"
msgid "Delete All Endnotes"
msgstr "Desaniciar toles notes a lo cabero"
#. AZchK
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:269
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:261
msgctxt "navigatorcontextmenu|STR_DELETE_FOOTNOTE"
msgid "Delete Footnote"
msgstr "Desaniciar nota al pie"
#. Cv2Cu
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:278
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:270
msgctxt "navigatorcontextmenu|STR_DELETE_ENDNOTE"
msgid "Delete Endnote"
msgstr "Desaniciar nota a lo cabero"
#. CUqD5
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:287
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:279
msgctxt "navigatorcontextmenu|STR_RENAME"
msgid "_Rename..."
msgstr ""
#. f9jYB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:295
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:287
msgctxt "navigatorcontextmenu|STR_PROTECT_SECTION"
msgid "Protect Section"
msgstr "Protexer la seición"
#. MEGAM
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:303
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:295
msgctxt "navigatorcontextmenu|STR_HIDE_SECTION"
msgid "Hide Section"
msgstr "Anubrir la seición"
#. U5nAb
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:311
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:303
msgctxt "navigatorcontextmenu|STR_POSTIT_SHOW"
msgid "Show All"
msgstr "Amosalo too"
#. E2wWp
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:319
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:311
msgctxt "navigatorcontextmenu|STR_POSTIT_HIDE"
msgid "Hide All"
msgstr "Anubrilo too"
#. aDRke
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:327
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:319
msgctxt "navigatorcontextmenu|STR_POSTIT_DELETE"
msgid "Delete All"
msgstr "Desanicialo too"
#. YBipC
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:341
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:333
msgctxt "navigatorcontextmenu|STR_OUTLINE_CONTENT"
msgid "Outline Folding"
msgstr ""
#. EBK2E
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:361
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:353
msgctxt "navigatorcontextmenu|STR_OUTLINE_TRACKING"
msgid "Outline Tracking"
msgstr "Siguimientu d'esquema"
#. fZEEr
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:375
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:367
msgctxt "navigatorcontextmenu|STR_TABLE_TRACKING"
msgid "Table Tracking"
msgstr "Control de tables"
#. 7oCFa
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:383
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:375
msgctxt "navigatorcontextmenu|STR_SECTION_TRACKING"
msgid "Section Tracking"
msgstr "Control de seiciones"
#. YmjQf
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:391
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:383
msgctxt "navigatorcontextmenu|STR_FRAME_TRACKING"
msgid "Frame Tracking"
msgstr "Control de marcos"
#. vhxX5
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:399
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:391
msgctxt "navigatorcontextmenu|STR_IMAGE_TRACKING"
msgid "Image Tracking"
msgstr "Siguimientu d'imáxenes"
#. mcYqZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:407
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:399
msgctxt "navigatorcontextmenu|STR_OLE_OBJECT_TRACKING"
msgid "OLE Object Tracking"
msgstr "Siguimientu d'oxetos OLE"
#. DRaED
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:415
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:407
msgctxt "navigatorcontextmenu|STR_BOOKMARK_TRACKING"
msgid "Bookmark Tracking"
msgstr "Control de marcadores"
#. vpLmh
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:423
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:415
msgctxt "navigatorcontextmenu|STR_HYPERLINK_TRACKING"
msgid "Hyperlink Tracking"
msgstr "Siguimientu d'hiperenllaces"
#. EvBzN
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:431
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:423
msgctxt "navigatorcontextmenu|STR_REFERENCE_TRACKING"
msgid "Reference Tracking"
msgstr "Control de referencies"
#. M8Bes
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:439
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:431
msgctxt "navigatorcontextmenu|STR_INDEX_TRACKING"
msgid "Index Tracking"
msgstr "Siguimientu d'índices"
#. KBFwM
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:447
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:439
msgctxt "navigatorcontextmenu|STR_COMMENT_TRACKING"
msgid "Comment Tracking"
msgstr "Control de comentarios"
#. oGavB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:455
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:447
msgctxt "navigatorcontextmenu|STR_DRAWING_OBJECT_TRACKING"
msgid "Drawing Object Tracking"
msgstr "Siguimientu d'oxetos de dibuxu"
#. w8FTW
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:463
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:455
msgctxt "navigatorcontextmenu|STR_FIELD_TRACKING"
msgid "Field Tracking"
msgstr "Control de campos"
#. BoCeZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:471
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:463
msgctxt "navigatorcontextmenu|STR_FOOTNOTE_TRACKING"
msgid "Footnote Tracking"
msgstr "Control de notes al pie"
#. QqAhu
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:479
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:471
msgctxt "navigatorcontextmenu|STR_ENDNOTE_TRACKING"
msgid "Endnote Tracking"
msgstr "Control de notes a lo cabero"
#. vBGAw
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:487
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:479
msgctxt "navigatorcontextmenu|STR_SORT_ALPHABETICALLY"
msgid "Sort Alphabetically"
msgstr ""
#. cqtBF
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:501
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:493
msgctxt "navigatorcontextmenu|STR_OUTLINE_LEVEL"
msgid "Show Up to Outline Level"
msgstr ""
#. Zehx2
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:515
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:507
msgctxt "navigatorcontextmenu|STR_DISPLAY"
msgid "Display"
msgstr ""
#. bgZoy
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:535
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:527
msgctxt "navigatorcontextmenu|STR_COLLAPSE_ALL_CATEGORIES"
msgid "Collapse All Categories"
msgstr ""
@@ -28028,6 +28022,12 @@ msgctxt "selecttabledialog|extended_tip|SelectTableDialog"
msgid "Select the table that you want to use for mail merge addresses."
msgstr "Escueya la tabla que deseya utilizar pa direiciones de combinar correspondencia."
+#. RWLE7
+#: sw/uiconfig/swriter/ui/sidebarquickfind.ui:36
+msgctxt "sidebarquickfind|find"
+msgid "Find"
+msgstr ""
+
#. DSVQt
#: sw/uiconfig/swriter/ui/sidebartableedit.ui:46
msgctxt "sidebatableedit|rowheight|tooltip_text"
@@ -29166,11 +29166,11 @@ msgctxt "templatedialog1|extended_tip|reset"
msgid "Revert any changes made on the tab shown here to the settings that were present when this dialog was opened."
msgstr ""
-#. UH8Vz
+#. Zp6EK
#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
msgctxt "templatedialog1|organizer"
-msgid "Organizer"
-msgstr "Organizador"
+msgid "General"
+msgstr ""
#. BvEuD
#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
@@ -29220,11 +29220,11 @@ msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
-#. tA5vb
+#. Tuygv
#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
msgctxt "templatedialog16|organizer"
-msgid "Organizer"
-msgstr "Organizador"
+msgid "General"
+msgstr ""
#. 7MAbD
#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
@@ -29304,11 +29304,11 @@ msgctxt "templatedialog2|TemplateDialog2"
msgid "Paragraph Style"
msgstr "Estilu de párrafu"
-#. 2NhWM
+#. FDfTt
#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
-msgid "Organizer"
-msgstr "Organizador"
+msgid "General"
+msgstr ""
#. G7U5N
#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
@@ -29418,11 +29418,11 @@ msgctxt "templatedialog4|TemplateDialog4"
msgid "Frame Style"
msgstr "Estilu del marcu"
-#. 8dRdE
+#. wSfp8
#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
msgctxt "templatedialog4|organizer"
-msgid "Organizer"
-msgstr "Organizador"
+msgid "General"
+msgstr ""
#. Q2PQs
#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
@@ -29484,11 +29484,11 @@ msgctxt "templatedialog8|standard"
msgid "Standard"
msgstr "Estándar"
-#. BvGbL
+#. LTNWZ
#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
msgctxt "templatedialog8|organizer"
-msgid "Organizer"
-msgstr "Organizador"
+msgid "General"
+msgstr ""
#. UbZRu
#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
diff --git a/source/az/officecfg/registry/data/org/openoffice/Office/UI.po b/source/az/officecfg/registry/data/org/openoffice/Office/UI.po
index 7548aeb623e..7dda3f979e1 100644
--- a/source/az/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/az/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-13 12:37+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -30269,14 +30269,14 @@ msgctxt ""
msgid "Columns"
msgstr ""
-#. DqpFK
+#. oziQM
#: Sidebar.xcu
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.QuickFindPanel\n"
"Title\n"
"value.text"
-msgid "QuickFind"
+msgid "Quick Find"
msgstr ""
#. CDJWW
diff --git a/source/az/sc/messages.po b/source/az/sc/messages.po
index a3d0cb5ff12..36c8ebdae6b 100644
--- a/source/az/sc/messages.po
+++ b/source/az/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23157,10 +23157,10 @@ msgctxt "drawtemplatedialog|standard"
msgid "_Standard"
msgstr ""
-#. jyFCi
+#. Dnnbp
#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
msgctxt "drawtemplatedialog|organizer"
-msgid "Organizer"
+msgid "General"
msgstr ""
#. qSfk8
@@ -28150,12 +28150,11 @@ msgctxt "pagetemplatedialog|PageTemplateDialog"
msgid "Page Style"
msgstr ""
-#. D22J5
+#. F6ehW
#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
-#, fuzzy
msgctxt "pagetemplatedialog|organizer"
-msgid "Organizer"
-msgstr "Təşkilatçı..."
+msgid "General"
+msgstr ""
#. CbW7A
#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
@@ -28231,12 +28230,11 @@ msgctxt "paratemplatedialog|ParaTemplateDialog"
msgid "Cell Style"
msgstr ""
-#. AGL7z
+#. EMrke
#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
-#, fuzzy
msgctxt "paratemplatedialog|organizer"
-msgid "Organizer"
-msgstr "Təşkilatçı..."
+msgid "General"
+msgstr ""
#. asnEd
#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
diff --git a/source/az/scp2/source/ooo.po b/source/az/scp2/source/ooo.po
index fa028e35ef6..79ed9f2be1a 100644
--- a/source/az/scp2/source/ooo.po
+++ b/source/az/scp2/source/ooo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-01-10 15:11+0100\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2212,6 +2212,24 @@ msgctxt ""
msgid "Installs the Spanish user interface"
msgstr ""
+#. NreEY
+#: module_langpack.ulf
+msgctxt ""
+"module_langpack.ulf\n"
+"STR_NAME_MODULE_LANGPACK_SUN\n"
+"LngText.text"
+msgid "Sundanese"
+msgstr ""
+
+#. pa3r3
+#: module_langpack.ulf
+msgctxt ""
+"module_langpack.ulf\n"
+"STR_DESC_MODULE_LANGPACK_SUN\n"
+"LngText.text"
+msgid "Installs the Sundanese user interface"
+msgstr ""
+
#. zAWhn
#: module_langpack.ulf
msgctxt ""
diff --git a/source/az/sd/messages.po b/source/az/sd/messages.po
index a1c4591354b..08216003bd7 100644
--- a/source/az/sd/messages.po
+++ b/source/az/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-13 12:37+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9609,12 +9609,11 @@ msgctxt "templatedialog|standard"
msgid "_Standard"
msgstr ""
-#. HsXnQ
+#. BXMVx
#: sd/uiconfig/simpress/ui/templatedialog.ui:126
-#, fuzzy
msgctxt "templatedialog|organizer"
-msgid "Organizer"
-msgstr "Təşkilatçı..."
+msgid "General"
+msgstr ""
#. 5d7Zo
#: sd/uiconfig/simpress/ui/templatedialog.ui:149
diff --git a/source/az/sfx2/messages.po b/source/az/sfx2/messages.po
index 9608918e102..4f8362785c5 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: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2018-10-21 19:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2958,156 +2958,114 @@ msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#. pxEPn
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:18
-#, fuzzy
-msgctxt "descriptioninfopage|label27"
-msgid "_Title:"
-msgstr "Başlıq:"
-
#. HqzQo
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:32
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:18
#, fuzzy
msgctxt "descriptioninfopage|label28"
msgid "_Subject:"
msgstr "Mövzu:"
#. gEGPn
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:46
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:32
#, fuzzy
msgctxt "descriptioninfopage|label29"
msgid "_Keywords:"
msgstr "Açar sözlər:"
-#. FXZzx
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:61
-msgctxt "descriptioninfopage|label31"
-msgid "Co_ntributor:"
-msgstr ""
-
-#. eKsAC
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:76
-msgctxt "descriptioninfopage|label32"
-msgid "Co_verage:"
-msgstr ""
-
-#. Wtpt7
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:91
-msgctxt "descriptioninfopage|label37"
-msgid "_Identifier:"
-msgstr ""
-
-#. 73G3F
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:106
-msgctxt "descriptioninfopage|label39"
-msgid "_Publisher:"
-msgstr ""
-
-#. Axu5g
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:121
-msgctxt "descriptioninfopage|label40"
-msgid "R_elation:"
-msgstr ""
-
-#. AGDpc
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:136
-msgctxt "descriptioninfopage|label41"
-msgid "Ri_ghts:"
-msgstr ""
-
-#. eK4rF
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:151
-msgctxt "descriptioninfopage|label42"
-msgid "So_urce:"
-msgstr ""
-
-#. RFBPC
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:166
-msgctxt "descriptioninfopage|label45"
-msgid "T_ype:"
-msgstr ""
-
#. Nayo4
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:181
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:47
#, fuzzy
msgctxt "descriptioninfopage|label30"
msgid "_Comments:"
msgstr "Şərhlər:"
#. qw238
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:199
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:65
msgctxt "descriptioninfopage|extended_tip|title"
msgid "Enter a title for the document."
msgstr ""
#. rvZHi
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:216
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:82
msgctxt "descriptioninfopage|extended_tip|subject"
msgid "Enter a subject for the document. You can use a subject to group documents with similar contents."
msgstr ""
#. FoxGh
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:233
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:99
msgctxt "descriptioninfopage|extended_tip|keywords"
msgid "Enter the words that you want to use to index the content of your document. Keywords must be separated by commas. A keyword can contain white space characters or semicolons."
msgstr ""
#. 64GNQ
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:250
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:116
msgctxt "descriptioninfopage|extended_tip|contributor"
msgid "Enter the names of the people, organizations, or other entities that have made contributions to the document."
msgstr ""
-#. ECAfA
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:267
-msgctxt "descriptioninfopage|extended_tip|coverage"
-msgid "Enter the time, place, or jurisdiction that the document is relevant to."
+#. bo2q7
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:140
+msgctxt "descriptioninfopage|extended_tip|comments"
+msgid "Enter comments to help identify the document."
msgstr ""
-#. EGix4
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:284
-msgctxt "descriptioninfopage|extended_tip|identifier"
-msgid "Enter a unique and unambiguous identifier for the document."
+#. pxEPn
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:155
+#, fuzzy
+msgctxt "descriptioninfopage|label27"
+msgid "_Title:"
+msgstr "Başlıq:"
+
+#. x4CGE
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:170
+msgctxt "descriptioninfopage|type_contributor"
+msgid "Contributor"
msgstr ""
-#. FQphA
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:301
-msgctxt "descriptioninfopage|extended_tip|publisher"
-msgid "Enter the name of the entity that is making the document available."
+#. AGXmA
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:171
+msgctxt "descriptioninfopage|type_coverage"
+msgid "Coverage"
msgstr ""
-#. n8gwE
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:318
-msgctxt "descriptioninfopage|extended_tip|relation"
-msgid "Enter information about a resource related to the document."
+#. FDnBu
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:172
+msgctxt "descriptioninfopage|type_identifier"
+msgid "Identifier"
msgstr ""
-#. ZiijJ
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:335
-msgctxt "descriptioninfopage|extended_tip|rights"
-msgid "Enter information about intellectual property rights associated with the document."
+#. iTZFA
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:173
+msgctxt "descriptioninfopage|type_publisher"
+msgid "Publisher"
msgstr ""
-#. Nze95
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:352
-msgctxt "descriptioninfopage|extended_tip|source"
-msgid "Enter information about other resources from which the document is derived."
+#. c5fHP
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:174
+msgctxt "descriptioninfopage|type_relation"
+msgid "Relation"
msgstr ""
-#. UEyYw
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:369
-msgctxt "descriptioninfopage|extended_tip|type"
-msgid "Enter information about the category or format of the document."
+#. FaGa4
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:175
+msgctxt "descriptioninfopage|type_rights"
+msgid "Rights"
msgstr ""
-#. bo2q7
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:393
-msgctxt "descriptioninfopage|extended_tip|comments"
-msgid "Enter comments to help identify the document."
+#. yDvSu
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:176
+msgctxt "descriptioninfopage|type_source"
+msgid "Source"
+msgstr ""
+
+#. 25AxF
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:177
+msgctxt "descriptioninfopage|type_types"
+msgid "Type"
msgstr ""
#. sGW3Z
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:406
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:187
msgctxt "descriptioninfopage|extended_tip|DescriptionInfoPage"
msgid "Contains descriptive information about the document."
msgstr ""
@@ -3370,89 +3328,89 @@ msgid "_Apply user data"
msgstr ""
#. JFxmP
-#: sfx2/uiconfig/ui/documentinfopage.ui:197
+#: sfx2/uiconfig/ui/documentinfopage.ui:198
msgctxt "documentinfopage|reset"
msgid "Reset Properties"
msgstr ""
#. HrN2U
-#: sfx2/uiconfig/ui/documentinfopage.ui:204
+#: sfx2/uiconfig/ui/documentinfopage.ui:205
msgctxt "documentinfopage|extended_tip|reset"
msgid "Resets the editing time to zero, the creation date to the current date and time, and the version number to 1. The modification and printing dates are also deleted."
msgstr ""
#. qeWvU
-#: sfx2/uiconfig/ui/documentinfopage.ui:215
+#: sfx2/uiconfig/ui/documentinfopage.ui:216
msgctxt "documentinfopage|signature"
msgid "Di_gital Signatures..."
msgstr ""
#. rEEgJ
-#: sfx2/uiconfig/ui/documentinfopage.ui:234
+#: sfx2/uiconfig/ui/documentinfopage.ui:235
#, fuzzy
msgctxt "documentinfopage|label11"
msgid "_Size:"
msgstr "Ölçü:"
#. WNFYB
-#: sfx2/uiconfig/ui/documentinfopage.ui:247
+#: sfx2/uiconfig/ui/documentinfopage.ui:248
#, fuzzy
msgctxt "documentinfopage|showsize"
msgid "unknown"
msgstr "Naməlum"
#. EgtLE
-#: sfx2/uiconfig/ui/documentinfopage.ui:262
+#: sfx2/uiconfig/ui/documentinfopage.ui:263
#, fuzzy
msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "M_əkan:"
#. 9xhwo
-#: sfx2/uiconfig/ui/documentinfopage.ui:276
+#: sfx2/uiconfig/ui/documentinfopage.ui:277
#, fuzzy
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "Növ:"
#. ZLmAo
-#: sfx2/uiconfig/ui/documentinfopage.ui:299
+#: sfx2/uiconfig/ui/documentinfopage.ui:300
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr ""
#. oqAZE
-#: sfx2/uiconfig/ui/documentinfopage.ui:317
+#: sfx2/uiconfig/ui/documentinfopage.ui:318
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr ""
#. 5pXPV
-#: sfx2/uiconfig/ui/documentinfopage.ui:366
+#: sfx2/uiconfig/ui/documentinfopage.ui:367
msgctxt "documentinfopage|extended_tip|nameed"
msgid "Displays the file name."
msgstr ""
#. LCDUj
-#: sfx2/uiconfig/ui/documentinfopage.ui:397
+#: sfx2/uiconfig/ui/documentinfopage.ui:398
msgctxt "documentinfopage|thumbnailsavecb"
msgid "Save preview image with this document"
msgstr ""
#. 6bF5w
-#: sfx2/uiconfig/ui/documentinfopage.ui:416
+#: sfx2/uiconfig/ui/documentinfopage.ui:419
msgctxt "documentinfopage|image-preferred-dpi-checkbutton"
msgid "Preferred resolution for images:"
msgstr ""
#. pukYD
-#: sfx2/uiconfig/ui/documentinfopage.ui:466
+#: sfx2/uiconfig/ui/documentinfopage.ui:467
msgctxt "documentinfopage|image-preferred-ppi-unit"
msgid "ppi"
msgstr ""
#. VWjRu
-#: sfx2/uiconfig/ui/documentinfopage.ui:500
+#: sfx2/uiconfig/ui/documentinfopage.ui:508
msgctxt "documentinfopage|extended_tip|DocumentInfoPage"
msgid "Contains basic information about the current file."
msgstr ""
diff --git a/source/az/sw/messages.po b/source/az/sw/messages.po
index 5beb71334a0..d0a085e3e1c 100644
--- a/source/az/sw/messages.po
+++ b/source/az/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15604,159 +15604,159 @@ msgid "This is where you insert the references or referenced fields into the cur
msgstr ""
#. jXhPb
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:71
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:73
msgctxt "fldvarpage|nameft"
msgid "Na_me:"
msgstr ""
#. juXJz
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:89
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:91
msgctxt "fldvarpage|extended_tip|name"
msgid "Type the name of the user-defined field to create."
msgstr ""
#. mA2Cx
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:105
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:107
msgctxt "fldvarpage|valueft"
msgid "_Value:"
msgstr ""
#. onRpf
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:130
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:132
msgctxt "fldvarpage|extended_tip|value"
msgid "Enter the contents to add to a user-defined field."
msgstr ""
#. BLiKH
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:154
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:156
msgctxt "fldvarpage|apply|tooltip_text"
msgid "Apply"
msgstr "Tətbiq et"
#. iLGxP
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:160
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:162
msgctxt "fldvarpage|extended_tip|apply"
msgid "Adds the user-defined field to the Select list."
msgstr ""
#. GKfDe
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:174
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:176
#, fuzzy
msgctxt "fldvarpage|delete|tooltip_text"
msgid "Delete"
msgstr "Sil"
#. bGYju
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:180
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:182
msgctxt "fldvarpage|extended_tip|delete"
msgid "Removes the user-defined field from the select list. You can only remove fields that are not used in the current document."
msgstr ""
#. EMeve
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:246
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:248
msgctxt "fldvarpage|extended_tip|type"
msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Select list, and then click Insert."
msgstr ""
#. MYGxL
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:257
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:259
#, fuzzy
msgctxt "fldvarpage|label1"
msgid "_Type"
msgstr "Növ"
#. YfUrq
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:312
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:314
msgctxt "fldvarpage|extended_tip|select"
msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, and then click Insert."
msgstr ""
#. JFbpp
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:323
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:325
msgctxt "fldvarpage|label2"
msgid "_Select"
msgstr ""
#. eLoJ7
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:386
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:388
msgctxt "fldvarpage|extended_tip|numformat"
msgid "Click the format to apply to the selected field, or click \"Additional formats\" to define a custom format."
msgstr ""
#. bAzUU
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:431
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:433
msgctxt "fldvarpage|extended_tip|format"
msgid "In the Format list, define if the value is inserted as text or as number."
msgstr ""
#. qPpKb
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:445
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:447
msgctxt "fldvarpage|invisible"
msgid "Invisi_ble"
msgstr ""
#. 4SBL9
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:453
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:455
msgctxt "fldvarpage|extended_tip|invisible"
msgid "Hides the field contents in the document."
msgstr ""
#. jUrib
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:484
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:486
msgctxt "fldvarpage|label5"
msgid "_Up to level:"
msgstr ""
#. uXVGk
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:497
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:499
msgctxt "fldvarpage|separatorft"
msgid "Se_parator:"
msgstr ""
#. xWPdj
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:511
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:513
msgctxt "fldvarpage|level|tooltip_text"
msgid "Choose heading number to prepend to displayed field, where the number comes from the first prior heading whose outline level is equal to or less than the selected outline level. If [None] is selected, no heading number is displayed."
msgstr ""
#. B2VKZ
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:513
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:515
msgctxt "fldvarpage|level"
msgid "[None]"
msgstr ""
#. 3eiSX
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:517
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:519
msgctxt "fldvarpage|extended_tip|level"
msgid "Choose heading number to prepend to displayed field, where the number comes from the first prior heading whose outline level is equal to or less than the selected outline level. For example, select “2” to use the heading number of the first prior heading that has outline level 2 or less. If “None” is selected, no heading number is displayed. To use this option, heading numbers must be enabled. Use “Tools - Heading Numbering”."
msgstr ""
#. Bnsut
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:530
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:532
msgctxt "fldvarpage|separator|tooltip_text"
msgid "Enter the character to use as a separator between the heading number and the field number."
msgstr ""
#. ECBav
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:533
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:535
msgctxt "fldvarpage|separator"
msgid "."
msgstr ""
#. 3dC3P
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:537
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:539
msgctxt "fldvarpage|extended_tip|separator"
msgid "Enter the character to use as a separator between the heading number and the field number."
msgstr ""
#. GgDBN
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:552
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:554
msgctxt "fldvarpage|label4"
msgid "With Heading Number"
msgstr ""
#. WRjtn
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:573
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:575
msgctxt "fldvarpage|label3"
msgid "_Format"
msgstr ""
@@ -21380,284 +21380,278 @@ msgctxt "navigatorcontextmenu|STR_DEMOTE_LEVEL"
msgid "Demote Outline Level"
msgstr ""
-#. tukRq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:105
-msgctxt "navigatorcontextmenu|STR_REMOVE_INDEX"
-msgid "_Remove Index"
-msgstr ""
-
#. C4355
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:113
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:105
msgctxt "navigatorcontextmenu|STR_UPDATE"
msgid "_Update"
msgstr ""
#. BtCca
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:121
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:113
msgctxt "navigatorcontextmenu|STR_EDIT_ENTRY"
msgid "Edit..."
msgstr ""
#. BYyhD
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:129
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:121
msgctxt "navigatorcontextmenu|STR_REMOVE_TBL_PROTECTION"
msgid "_Unprotect"
msgstr ""
#. 6KWWG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:137
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:129
msgctxt "navigatorcontextmenu|STR_READONLY_IDX"
msgid "Read-_only"
msgstr ""
#. Z46XG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:145
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:137
msgctxt "navigatorcontextmenu|STR_DELETE_TABLE"
msgid "Delete Table"
msgstr ""
#. nWZCB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:154
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:146
msgctxt "navigatorcontextmenu|STR_DELETE_FRAME"
msgid "Delete Frame"
msgstr ""
#. iA4dL
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:163
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:155
msgctxt "navigatorcontextmenu|STR_DELETE_IMAGE"
msgid "Delete Image"
msgstr ""
#. PeDxb
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:172
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:164
msgctxt "navigatorcontextmenu|STR_DELETE_OLE_OBJECT"
msgid "Delete OLE object"
msgstr ""
#. gGdPe
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:181
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:173
msgctxt "navigatorcontextmenu|STR_DELETE_BOOKMARK"
msgid "Delete Bookmark"
msgstr ""
#. CYbsq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:190
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:182
msgctxt "navigatorcontextmenu|STR_DELETE_REGION"
msgid "Delete Section"
msgstr ""
#. NzaP7
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:199
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:191
msgctxt "navigatorcontextmenu|STR_DELETE_HYPERLINK"
msgid "Delete Hyperlink"
msgstr ""
#. hNJRX
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:208
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:200
msgctxt "navigatorcontextmenu|STR_DELETE_REFERENCE"
msgid "Delete Reference"
msgstr ""
#. LaCMh
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:216
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:208
msgctxt "navigatorcontextmenu|STR_DELETE_INDEX"
msgid "Delete Index"
msgstr ""
#. cEyZC
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:225
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:217
msgctxt "navigatorcontextmenu|STR_DELETE_COMMENT"
msgid "Delete Comment"
msgstr ""
#. AuAjE
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:234
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:226
msgctxt "navigatorcontextmenu|STR_DELETE_DRAWING_OBJECT"
msgid "Delete Drawing object"
msgstr ""
#. RhyGG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:243
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:235
msgctxt "navigatorcontextmenu|STR_DELETE_FIELD"
msgid "Delete Field"
msgstr ""
#. GGzCM
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:252
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:244
msgctxt "navigatorcontextmenu|STR_DELETE_ALL_FOOTNOTES"
msgid "Delete All Footnotes"
msgstr ""
#. kyGVJ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:260
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:252
msgctxt "navigatorcontextmenu|STR_DELETE_ALL_ENDNOTES"
msgid "Delete All Endnotes"
msgstr ""
#. AZchK
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:269
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:261
msgctxt "navigatorcontextmenu|STR_DELETE_FOOTNOTE"
msgid "Delete Footnote"
msgstr ""
#. Cv2Cu
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:278
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:270
msgctxt "navigatorcontextmenu|STR_DELETE_ENDNOTE"
msgid "Delete Endnote"
msgstr ""
#. CUqD5
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:287
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:279
msgctxt "navigatorcontextmenu|STR_RENAME"
msgid "_Rename..."
msgstr ""
#. f9jYB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:295
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:287
msgctxt "navigatorcontextmenu|STR_PROTECT_SECTION"
msgid "Protect Section"
msgstr ""
#. MEGAM
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:303
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:295
msgctxt "navigatorcontextmenu|STR_HIDE_SECTION"
msgid "Hide Section"
msgstr ""
#. U5nAb
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:311
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:303
msgctxt "navigatorcontextmenu|STR_POSTIT_SHOW"
msgid "Show All"
msgstr ""
#. E2wWp
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:319
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:311
msgctxt "navigatorcontextmenu|STR_POSTIT_HIDE"
msgid "Hide All"
msgstr ""
#. aDRke
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:327
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:319
msgctxt "navigatorcontextmenu|STR_POSTIT_DELETE"
msgid "Delete All"
msgstr ""
#. YBipC
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:341
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:333
msgctxt "navigatorcontextmenu|STR_OUTLINE_CONTENT"
msgid "Outline Folding"
msgstr ""
#. EBK2E
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:361
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:353
msgctxt "navigatorcontextmenu|STR_OUTLINE_TRACKING"
msgid "Outline Tracking"
msgstr ""
#. fZEEr
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:375
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:367
msgctxt "navigatorcontextmenu|STR_TABLE_TRACKING"
msgid "Table Tracking"
msgstr ""
#. 7oCFa
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:383
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:375
msgctxt "navigatorcontextmenu|STR_SECTION_TRACKING"
msgid "Section Tracking"
msgstr ""
#. YmjQf
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:391
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:383
msgctxt "navigatorcontextmenu|STR_FRAME_TRACKING"
msgid "Frame Tracking"
msgstr ""
#. vhxX5
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:399
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:391
msgctxt "navigatorcontextmenu|STR_IMAGE_TRACKING"
msgid "Image Tracking"
msgstr ""
#. mcYqZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:407
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:399
msgctxt "navigatorcontextmenu|STR_OLE_OBJECT_TRACKING"
msgid "OLE Object Tracking"
msgstr ""
#. DRaED
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:415
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:407
msgctxt "navigatorcontextmenu|STR_BOOKMARK_TRACKING"
msgid "Bookmark Tracking"
msgstr ""
#. vpLmh
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:423
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:415
msgctxt "navigatorcontextmenu|STR_HYPERLINK_TRACKING"
msgid "Hyperlink Tracking"
msgstr ""
#. EvBzN
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:431
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:423
msgctxt "navigatorcontextmenu|STR_REFERENCE_TRACKING"
msgid "Reference Tracking"
msgstr ""
#. M8Bes
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:439
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:431
msgctxt "navigatorcontextmenu|STR_INDEX_TRACKING"
msgid "Index Tracking"
msgstr ""
#. KBFwM
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:447
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:439
msgctxt "navigatorcontextmenu|STR_COMMENT_TRACKING"
msgid "Comment Tracking"
msgstr ""
#. oGavB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:455
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:447
msgctxt "navigatorcontextmenu|STR_DRAWING_OBJECT_TRACKING"
msgid "Drawing Object Tracking"
msgstr ""
#. w8FTW
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:463
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:455
msgctxt "navigatorcontextmenu|STR_FIELD_TRACKING"
msgid "Field Tracking"
msgstr ""
#. BoCeZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:471
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:463
msgctxt "navigatorcontextmenu|STR_FOOTNOTE_TRACKING"
msgid "Footnote Tracking"
msgstr ""
#. QqAhu
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:479
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:471
msgctxt "navigatorcontextmenu|STR_ENDNOTE_TRACKING"
msgid "Endnote Tracking"
msgstr ""
#. vBGAw
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:487
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:479
msgctxt "navigatorcontextmenu|STR_SORT_ALPHABETICALLY"
msgid "Sort Alphabetically"
msgstr ""
#. cqtBF
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:501
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:493
msgctxt "navigatorcontextmenu|STR_OUTLINE_LEVEL"
msgid "Show Up to Outline Level"
msgstr ""
#. Zehx2
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:515
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:507
msgctxt "navigatorcontextmenu|STR_DISPLAY"
msgid "Display"
msgstr ""
#. bgZoy
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:535
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:527
msgctxt "navigatorcontextmenu|STR_COLLAPSE_ALL_CATEGORIES"
msgid "Collapse All Categories"
msgstr ""
@@ -27947,6 +27941,12 @@ msgctxt "selecttabledialog|extended_tip|SelectTableDialog"
msgid "Select the table that you want to use for mail merge addresses."
msgstr ""
+#. RWLE7
+#: sw/uiconfig/swriter/ui/sidebarquickfind.ui:36
+msgctxt "sidebarquickfind|find"
+msgid "Find"
+msgstr ""
+
#. DSVQt
#: sw/uiconfig/swriter/ui/sidebartableedit.ui:46
msgctxt "sidebatableedit|rowheight|tooltip_text"
@@ -29082,12 +29082,11 @@ msgctxt "templatedialog1|extended_tip|reset"
msgid "Revert any changes made on the tab shown here to the settings that were present when this dialog was opened."
msgstr ""
-#. UH8Vz
+#. Zp6EK
#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
-#, fuzzy
msgctxt "templatedialog1|organizer"
-msgid "Organizer"
-msgstr "Təşkilatçı..."
+msgid "General"
+msgstr ""
#. BvEuD
#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
@@ -29137,12 +29136,11 @@ msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
-#. tA5vb
+#. Tuygv
#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
-#, fuzzy
msgctxt "templatedialog16|organizer"
-msgid "Organizer"
-msgstr "Təşkilatçı..."
+msgid "General"
+msgstr ""
#. 7MAbD
#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
@@ -29223,12 +29221,11 @@ msgctxt "templatedialog2|TemplateDialog2"
msgid "Paragraph Style"
msgstr ""
-#. 2NhWM
+#. FDfTt
#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
-#, fuzzy
msgctxt "templatedialog2|organizer"
-msgid "Organizer"
-msgstr "Təşkilatçı..."
+msgid "General"
+msgstr ""
#. G7U5N
#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
@@ -29338,12 +29335,11 @@ msgctxt "templatedialog4|TemplateDialog4"
msgid "Frame Style"
msgstr ""
-#. 8dRdE
+#. wSfp8
#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
-#, fuzzy
msgctxt "templatedialog4|organizer"
-msgid "Organizer"
-msgstr "Təşkilatçı..."
+msgid "General"
+msgstr ""
#. Q2PQs
#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
@@ -29405,12 +29401,11 @@ msgctxt "templatedialog8|standard"
msgid "Standard"
msgstr ""
-#. BvGbL
+#. LTNWZ
#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
-#, fuzzy
msgctxt "templatedialog8|organizer"
-msgid "Organizer"
-msgstr "Təşkilatçı..."
+msgid "General"
+msgstr ""
#. UbZRu
#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
diff --git a/source/be/officecfg/registry/data/org/openoffice/Office/UI.po b/source/be/officecfg/registry/data/org/openoffice/Office/UI.po
index d7cdb772b73..318ec812791 100644
--- a/source/be/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/be/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: UI\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-13 12:37+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
@@ -30155,14 +30155,14 @@ msgctxt ""
msgid "Columns"
msgstr ""
-#. DqpFK
+#. oziQM
#: Sidebar.xcu
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.QuickFindPanel\n"
"Title\n"
"value.text"
-msgid "QuickFind"
+msgid "Quick Find"
msgstr ""
#. CDJWW
diff --git a/source/be/sc/messages.po b/source/be/sc/messages.po
index 12b2c76ce1a..06d8c19c1a7 100644
--- a/source/be/sc/messages.po
+++ b/source/be/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23677,10 +23677,10 @@ msgctxt "drawtemplatedialog|standard"
msgid "_Standard"
msgstr ""
-#. jyFCi
+#. Dnnbp
#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
msgctxt "drawtemplatedialog|organizer"
-msgid "Organizer"
+msgid "General"
msgstr ""
#. qSfk8
@@ -28712,11 +28712,11 @@ msgctxt "pagetemplatedialog|PageTemplateDialog"
msgid "Page Style"
msgstr "Стыль старонкі"
-#. D22J5
+#. F6ehW
#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
msgctxt "pagetemplatedialog|organizer"
-msgid "Organizer"
-msgstr "Арганізатар"
+msgid "General"
+msgstr ""
#. CbW7A
#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
@@ -28791,11 +28791,11 @@ msgctxt "paratemplatedialog|ParaTemplateDialog"
msgid "Cell Style"
msgstr "Стыль клеткі"
-#. AGL7z
+#. EMrke
#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
msgctxt "paratemplatedialog|organizer"
-msgid "Organizer"
-msgstr "Арганізатар"
+msgid "General"
+msgstr ""
#. asnEd
#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
diff --git a/source/be/scp2/source/ooo.po b/source/be/scp2/source/ooo.po
index 32fb1a2b48b..455a6c5e114 100644
--- a/source/be/scp2/source/ooo.po
+++ b/source/be/scp2/source/ooo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ooo\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-01-10 15:11+0100\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: <en@li.org>\n"
@@ -2212,6 +2212,24 @@ msgctxt ""
msgid "Installs the Spanish user interface"
msgstr "Ставіць інтэрфейс на іспанскай мове"
+#. NreEY
+#: module_langpack.ulf
+msgctxt ""
+"module_langpack.ulf\n"
+"STR_NAME_MODULE_LANGPACK_SUN\n"
+"LngText.text"
+msgid "Sundanese"
+msgstr ""
+
+#. pa3r3
+#: module_langpack.ulf
+msgctxt ""
+"module_langpack.ulf\n"
+"STR_DESC_MODULE_LANGPACK_SUN\n"
+"LngText.text"
+msgid "Installs the Sundanese user interface"
+msgstr ""
+
#. zAWhn
#: module_langpack.ulf
msgctxt ""
diff --git a/source/be/sd/messages.po b/source/be/sd/messages.po
index 24fd52a2953..97eb09d5ff2 100644
--- a/source/be/sd/messages.po
+++ b/source/be/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-13 12:37+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9557,11 +9557,11 @@ msgctxt "templatedialog|standard"
msgid "_Standard"
msgstr "Стандарт"
-#. HsXnQ
+#. BXMVx
#: sd/uiconfig/simpress/ui/templatedialog.ui:126
msgctxt "templatedialog|organizer"
-msgid "Organizer"
-msgstr "Арганізатар"
+msgid "General"
+msgstr ""
#. 5d7Zo
#: sd/uiconfig/simpress/ui/templatedialog.ui:149
diff --git a/source/be/sfx2/messages.po b/source/be/sfx2/messages.po
index c7ebb95b06e..d4f62b6a8f9 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: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2018-10-21 19:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2998,152 +2998,110 @@ msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#. pxEPn
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:18
-msgctxt "descriptioninfopage|label27"
-msgid "_Title:"
-msgstr "Загаловак:"
-
#. HqzQo
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:32
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:18
msgctxt "descriptioninfopage|label28"
msgid "_Subject:"
msgstr "Тэма:"
#. gEGPn
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:46
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:32
msgctxt "descriptioninfopage|label29"
msgid "_Keywords:"
msgstr "Ключавыя словы:"
-#. FXZzx
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:61
-msgctxt "descriptioninfopage|label31"
-msgid "Co_ntributor:"
-msgstr ""
-
-#. eKsAC
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:76
-msgctxt "descriptioninfopage|label32"
-msgid "Co_verage:"
-msgstr ""
-
-#. Wtpt7
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:91
-msgctxt "descriptioninfopage|label37"
-msgid "_Identifier:"
-msgstr ""
-
-#. 73G3F
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:106
-msgctxt "descriptioninfopage|label39"
-msgid "_Publisher:"
-msgstr ""
-
-#. Axu5g
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:121
-msgctxt "descriptioninfopage|label40"
-msgid "R_elation:"
-msgstr ""
-
-#. AGDpc
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:136
-msgctxt "descriptioninfopage|label41"
-msgid "Ri_ghts:"
-msgstr ""
-
-#. eK4rF
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:151
-msgctxt "descriptioninfopage|label42"
-msgid "So_urce:"
-msgstr ""
-
-#. RFBPC
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:166
-msgctxt "descriptioninfopage|label45"
-msgid "T_ype:"
-msgstr ""
-
#. Nayo4
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:181
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:47
msgctxt "descriptioninfopage|label30"
msgid "_Comments:"
msgstr "Каментарыі:"
#. qw238
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:199
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:65
msgctxt "descriptioninfopage|extended_tip|title"
msgid "Enter a title for the document."
msgstr ""
#. rvZHi
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:216
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:82
msgctxt "descriptioninfopage|extended_tip|subject"
msgid "Enter a subject for the document. You can use a subject to group documents with similar contents."
msgstr ""
#. FoxGh
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:233
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:99
msgctxt "descriptioninfopage|extended_tip|keywords"
msgid "Enter the words that you want to use to index the content of your document. Keywords must be separated by commas. A keyword can contain white space characters or semicolons."
msgstr ""
#. 64GNQ
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:250
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:116
msgctxt "descriptioninfopage|extended_tip|contributor"
msgid "Enter the names of the people, organizations, or other entities that have made contributions to the document."
msgstr ""
-#. ECAfA
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:267
-msgctxt "descriptioninfopage|extended_tip|coverage"
-msgid "Enter the time, place, or jurisdiction that the document is relevant to."
+#. bo2q7
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:140
+msgctxt "descriptioninfopage|extended_tip|comments"
+msgid "Enter comments to help identify the document."
+msgstr ""
+
+#. pxEPn
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:155
+msgctxt "descriptioninfopage|label27"
+msgid "_Title:"
+msgstr "Загаловак:"
+
+#. x4CGE
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:170
+msgctxt "descriptioninfopage|type_contributor"
+msgid "Contributor"
msgstr ""
-#. EGix4
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:284
-msgctxt "descriptioninfopage|extended_tip|identifier"
-msgid "Enter a unique and unambiguous identifier for the document."
+#. AGXmA
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:171
+msgctxt "descriptioninfopage|type_coverage"
+msgid "Coverage"
msgstr ""
-#. FQphA
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:301
-msgctxt "descriptioninfopage|extended_tip|publisher"
-msgid "Enter the name of the entity that is making the document available."
+#. FDnBu
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:172
+msgctxt "descriptioninfopage|type_identifier"
+msgid "Identifier"
msgstr ""
-#. n8gwE
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:318
-msgctxt "descriptioninfopage|extended_tip|relation"
-msgid "Enter information about a resource related to the document."
+#. iTZFA
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:173
+msgctxt "descriptioninfopage|type_publisher"
+msgid "Publisher"
msgstr ""
-#. ZiijJ
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:335
-msgctxt "descriptioninfopage|extended_tip|rights"
-msgid "Enter information about intellectual property rights associated with the document."
+#. c5fHP
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:174
+msgctxt "descriptioninfopage|type_relation"
+msgid "Relation"
msgstr ""
-#. Nze95
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:352
-msgctxt "descriptioninfopage|extended_tip|source"
-msgid "Enter information about other resources from which the document is derived."
+#. FaGa4
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:175
+msgctxt "descriptioninfopage|type_rights"
+msgid "Rights"
msgstr ""
-#. UEyYw
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:369
-msgctxt "descriptioninfopage|extended_tip|type"
-msgid "Enter information about the category or format of the document."
+#. yDvSu
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:176
+msgctxt "descriptioninfopage|type_source"
+msgid "Source"
msgstr ""
-#. bo2q7
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:393
-msgctxt "descriptioninfopage|extended_tip|comments"
-msgid "Enter comments to help identify the document."
+#. 25AxF
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:177
+msgctxt "descriptioninfopage|type_types"
+msgid "Type"
msgstr ""
#. sGW3Z
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:406
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:187
msgctxt "descriptioninfopage|extended_tip|DescriptionInfoPage"
msgid "Contains descriptive information about the document."
msgstr ""
@@ -3403,85 +3361,85 @@ msgid "_Apply user data"
msgstr "Ужыць даныя карыстальніка"
#. JFxmP
-#: sfx2/uiconfig/ui/documentinfopage.ui:197
+#: sfx2/uiconfig/ui/documentinfopage.ui:198
msgctxt "documentinfopage|reset"
msgid "Reset Properties"
msgstr "Скінуць уласцівасці"
#. HrN2U
-#: sfx2/uiconfig/ui/documentinfopage.ui:204
+#: sfx2/uiconfig/ui/documentinfopage.ui:205
msgctxt "documentinfopage|extended_tip|reset"
msgid "Resets the editing time to zero, the creation date to the current date and time, and the version number to 1. The modification and printing dates are also deleted."
msgstr ""
#. qeWvU
-#: sfx2/uiconfig/ui/documentinfopage.ui:215
+#: sfx2/uiconfig/ui/documentinfopage.ui:216
msgctxt "documentinfopage|signature"
msgid "Di_gital Signatures..."
msgstr "Лічбавыя подпісы..."
#. rEEgJ
-#: sfx2/uiconfig/ui/documentinfopage.ui:234
+#: sfx2/uiconfig/ui/documentinfopage.ui:235
msgctxt "documentinfopage|label11"
msgid "_Size:"
msgstr "Памер:"
#. WNFYB
-#: sfx2/uiconfig/ui/documentinfopage.ui:247
+#: sfx2/uiconfig/ui/documentinfopage.ui:248
msgctxt "documentinfopage|showsize"
msgid "unknown"
msgstr "невядома"
#. EgtLE
-#: sfx2/uiconfig/ui/documentinfopage.ui:262
+#: sfx2/uiconfig/ui/documentinfopage.ui:263
msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "Месца:"
#. 9xhwo
-#: sfx2/uiconfig/ui/documentinfopage.ui:276
+#: sfx2/uiconfig/ui/documentinfopage.ui:277
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "Тып:"
#. ZLmAo
-#: sfx2/uiconfig/ui/documentinfopage.ui:299
+#: sfx2/uiconfig/ui/documentinfopage.ui:300
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Змяніць пароль"
#. oqAZE
-#: sfx2/uiconfig/ui/documentinfopage.ui:317
+#: sfx2/uiconfig/ui/documentinfopage.ui:318
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Шаблон:"
#. 5pXPV
-#: sfx2/uiconfig/ui/documentinfopage.ui:366
+#: sfx2/uiconfig/ui/documentinfopage.ui:367
msgctxt "documentinfopage|extended_tip|nameed"
msgid "Displays the file name."
msgstr ""
#. LCDUj
-#: sfx2/uiconfig/ui/documentinfopage.ui:397
+#: sfx2/uiconfig/ui/documentinfopage.ui:398
msgctxt "documentinfopage|thumbnailsavecb"
msgid "Save preview image with this document"
msgstr "Запісаць эскіз відарыса з дакументам"
#. 6bF5w
-#: sfx2/uiconfig/ui/documentinfopage.ui:416
+#: sfx2/uiconfig/ui/documentinfopage.ui:419
msgctxt "documentinfopage|image-preferred-dpi-checkbutton"
msgid "Preferred resolution for images:"
msgstr ""
#. pukYD
-#: sfx2/uiconfig/ui/documentinfopage.ui:466
+#: sfx2/uiconfig/ui/documentinfopage.ui:467
msgctxt "documentinfopage|image-preferred-ppi-unit"
msgid "ppi"
msgstr ""
#. VWjRu
-#: sfx2/uiconfig/ui/documentinfopage.ui:500
+#: sfx2/uiconfig/ui/documentinfopage.ui:508
msgctxt "documentinfopage|extended_tip|DocumentInfoPage"
msgid "Contains basic information about the current file."
msgstr ""
diff --git a/source/be/sw/messages.po b/source/be/sw/messages.po
index a56bdbb41f9..5c228ffd7ac 100644
--- a/source/be/sw/messages.po
+++ b/source/be/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15488,157 +15488,157 @@ msgid "This is where you insert the references or referenced fields into the cur
msgstr ""
#. jXhPb
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:71
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:73
msgctxt "fldvarpage|nameft"
msgid "Na_me:"
msgstr ""
#. juXJz
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:89
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:91
msgctxt "fldvarpage|extended_tip|name"
msgid "Type the name of the user-defined field to create."
msgstr ""
#. mA2Cx
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:105
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:107
msgctxt "fldvarpage|valueft"
msgid "_Value:"
msgstr ""
#. onRpf
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:130
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:132
msgctxt "fldvarpage|extended_tip|value"
msgid "Enter the contents to add to a user-defined field."
msgstr ""
#. BLiKH
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:154
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:156
msgctxt "fldvarpage|apply|tooltip_text"
msgid "Apply"
msgstr "Ужыць"
#. iLGxP
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:160
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:162
msgctxt "fldvarpage|extended_tip|apply"
msgid "Adds the user-defined field to the Select list."
msgstr ""
#. GKfDe
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:174
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:176
msgctxt "fldvarpage|delete|tooltip_text"
msgid "Delete"
msgstr "Сцерці"
#. bGYju
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:180
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:182
msgctxt "fldvarpage|extended_tip|delete"
msgid "Removes the user-defined field from the select list. You can only remove fields that are not used in the current document."
msgstr ""
#. EMeve
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:246
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:248
msgctxt "fldvarpage|extended_tip|type"
msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Select list, and then click Insert."
msgstr ""
#. MYGxL
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:257
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:259
msgctxt "fldvarpage|label1"
msgid "_Type"
msgstr "_Тып"
#. YfUrq
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:312
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:314
msgctxt "fldvarpage|extended_tip|select"
msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, and then click Insert."
msgstr ""
#. JFbpp
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:323
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:325
msgctxt "fldvarpage|label2"
msgid "_Select"
msgstr ""
#. eLoJ7
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:386
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:388
msgctxt "fldvarpage|extended_tip|numformat"
msgid "Click the format to apply to the selected field, or click \"Additional formats\" to define a custom format."
msgstr ""
#. bAzUU
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:431
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:433
msgctxt "fldvarpage|extended_tip|format"
msgid "In the Format list, define if the value is inserted as text or as number."
msgstr ""
#. qPpKb
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:445
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:447
msgctxt "fldvarpage|invisible"
msgid "Invisi_ble"
msgstr "Нябачная"
#. 4SBL9
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:453
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:455
msgctxt "fldvarpage|extended_tip|invisible"
msgid "Hides the field contents in the document."
msgstr ""
#. jUrib
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:484
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:486
msgctxt "fldvarpage|label5"
msgid "_Up to level:"
msgstr ""
#. uXVGk
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:497
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:499
msgctxt "fldvarpage|separatorft"
msgid "Se_parator:"
msgstr ""
#. xWPdj
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:511
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:513
msgctxt "fldvarpage|level|tooltip_text"
msgid "Choose heading number to prepend to displayed field, where the number comes from the first prior heading whose outline level is equal to or less than the selected outline level. If [None] is selected, no heading number is displayed."
msgstr ""
#. B2VKZ
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:513
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:515
msgctxt "fldvarpage|level"
msgid "[None]"
msgstr ""
#. 3eiSX
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:517
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:519
msgctxt "fldvarpage|extended_tip|level"
msgid "Choose heading number to prepend to displayed field, where the number comes from the first prior heading whose outline level is equal to or less than the selected outline level. For example, select “2” to use the heading number of the first prior heading that has outline level 2 or less. If “None” is selected, no heading number is displayed. To use this option, heading numbers must be enabled. Use “Tools - Heading Numbering”."
msgstr ""
#. Bnsut
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:530
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:532
msgctxt "fldvarpage|separator|tooltip_text"
msgid "Enter the character to use as a separator between the heading number and the field number."
msgstr ""
#. ECBav
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:533
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:535
msgctxt "fldvarpage|separator"
msgid "."
msgstr "."
#. 3dC3P
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:537
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:539
msgctxt "fldvarpage|extended_tip|separator"
msgid "Enter the character to use as a separator between the heading number and the field number."
msgstr ""
#. GgDBN
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:552
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:554
msgctxt "fldvarpage|label4"
msgid "With Heading Number"
msgstr ""
#. WRjtn
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:573
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:575
msgctxt "fldvarpage|label3"
msgid "_Format"
msgstr ""
@@ -21223,284 +21223,278 @@ msgctxt "navigatorcontextmenu|STR_DEMOTE_LEVEL"
msgid "Demote Outline Level"
msgstr ""
-#. tukRq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:105
-msgctxt "navigatorcontextmenu|STR_REMOVE_INDEX"
-msgid "_Remove Index"
-msgstr ""
-
#. C4355
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:113
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:105
msgctxt "navigatorcontextmenu|STR_UPDATE"
msgid "_Update"
msgstr ""
#. BtCca
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:121
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:113
msgctxt "navigatorcontextmenu|STR_EDIT_ENTRY"
msgid "Edit..."
msgstr ""
#. BYyhD
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:129
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:121
msgctxt "navigatorcontextmenu|STR_REMOVE_TBL_PROTECTION"
msgid "_Unprotect"
msgstr ""
#. 6KWWG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:137
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:129
msgctxt "navigatorcontextmenu|STR_READONLY_IDX"
msgid "Read-_only"
msgstr ""
#. Z46XG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:145
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:137
msgctxt "navigatorcontextmenu|STR_DELETE_TABLE"
msgid "Delete Table"
msgstr ""
#. nWZCB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:154
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:146
msgctxt "navigatorcontextmenu|STR_DELETE_FRAME"
msgid "Delete Frame"
msgstr ""
#. iA4dL
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:163
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:155
msgctxt "navigatorcontextmenu|STR_DELETE_IMAGE"
msgid "Delete Image"
msgstr ""
#. PeDxb
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:172
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:164
msgctxt "navigatorcontextmenu|STR_DELETE_OLE_OBJECT"
msgid "Delete OLE object"
msgstr ""
#. gGdPe
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:181
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:173
msgctxt "navigatorcontextmenu|STR_DELETE_BOOKMARK"
msgid "Delete Bookmark"
msgstr ""
#. CYbsq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:190
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:182
msgctxt "navigatorcontextmenu|STR_DELETE_REGION"
msgid "Delete Section"
msgstr ""
#. NzaP7
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:199
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:191
msgctxt "navigatorcontextmenu|STR_DELETE_HYPERLINK"
msgid "Delete Hyperlink"
msgstr ""
#. hNJRX
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:208
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:200
msgctxt "navigatorcontextmenu|STR_DELETE_REFERENCE"
msgid "Delete Reference"
msgstr ""
#. LaCMh
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:216
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:208
msgctxt "navigatorcontextmenu|STR_DELETE_INDEX"
msgid "Delete Index"
msgstr ""
#. cEyZC
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:225
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:217
msgctxt "navigatorcontextmenu|STR_DELETE_COMMENT"
msgid "Delete Comment"
msgstr ""
#. AuAjE
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:234
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:226
msgctxt "navigatorcontextmenu|STR_DELETE_DRAWING_OBJECT"
msgid "Delete Drawing object"
msgstr ""
#. RhyGG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:243
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:235
msgctxt "navigatorcontextmenu|STR_DELETE_FIELD"
msgid "Delete Field"
msgstr ""
#. GGzCM
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:252
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:244
msgctxt "navigatorcontextmenu|STR_DELETE_ALL_FOOTNOTES"
msgid "Delete All Footnotes"
msgstr ""
#. kyGVJ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:260
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:252
msgctxt "navigatorcontextmenu|STR_DELETE_ALL_ENDNOTES"
msgid "Delete All Endnotes"
msgstr ""
#. AZchK
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:269
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:261
msgctxt "navigatorcontextmenu|STR_DELETE_FOOTNOTE"
msgid "Delete Footnote"
msgstr ""
#. Cv2Cu
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:278
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:270
msgctxt "navigatorcontextmenu|STR_DELETE_ENDNOTE"
msgid "Delete Endnote"
msgstr ""
#. CUqD5
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:287
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:279
msgctxt "navigatorcontextmenu|STR_RENAME"
msgid "_Rename..."
msgstr ""
#. f9jYB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:295
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:287
msgctxt "navigatorcontextmenu|STR_PROTECT_SECTION"
msgid "Protect Section"
msgstr ""
#. MEGAM
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:303
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:295
msgctxt "navigatorcontextmenu|STR_HIDE_SECTION"
msgid "Hide Section"
msgstr ""
#. U5nAb
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:311
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:303
msgctxt "navigatorcontextmenu|STR_POSTIT_SHOW"
msgid "Show All"
msgstr ""
#. E2wWp
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:319
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:311
msgctxt "navigatorcontextmenu|STR_POSTIT_HIDE"
msgid "Hide All"
msgstr ""
#. aDRke
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:327
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:319
msgctxt "navigatorcontextmenu|STR_POSTIT_DELETE"
msgid "Delete All"
msgstr ""
#. YBipC
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:341
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:333
msgctxt "navigatorcontextmenu|STR_OUTLINE_CONTENT"
msgid "Outline Folding"
msgstr ""
#. EBK2E
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:361
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:353
msgctxt "navigatorcontextmenu|STR_OUTLINE_TRACKING"
msgid "Outline Tracking"
msgstr ""
#. fZEEr
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:375
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:367
msgctxt "navigatorcontextmenu|STR_TABLE_TRACKING"
msgid "Table Tracking"
msgstr ""
#. 7oCFa
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:383
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:375
msgctxt "navigatorcontextmenu|STR_SECTION_TRACKING"
msgid "Section Tracking"
msgstr ""
#. YmjQf
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:391
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:383
msgctxt "navigatorcontextmenu|STR_FRAME_TRACKING"
msgid "Frame Tracking"
msgstr ""
#. vhxX5
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:399
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:391
msgctxt "navigatorcontextmenu|STR_IMAGE_TRACKING"
msgid "Image Tracking"
msgstr ""
#. mcYqZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:407
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:399
msgctxt "navigatorcontextmenu|STR_OLE_OBJECT_TRACKING"
msgid "OLE Object Tracking"
msgstr ""
#. DRaED
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:415
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:407
msgctxt "navigatorcontextmenu|STR_BOOKMARK_TRACKING"
msgid "Bookmark Tracking"
msgstr ""
#. vpLmh
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:423
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:415
msgctxt "navigatorcontextmenu|STR_HYPERLINK_TRACKING"
msgid "Hyperlink Tracking"
msgstr ""
#. EvBzN
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:431
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:423
msgctxt "navigatorcontextmenu|STR_REFERENCE_TRACKING"
msgid "Reference Tracking"
msgstr ""
#. M8Bes
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:439
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:431
msgctxt "navigatorcontextmenu|STR_INDEX_TRACKING"
msgid "Index Tracking"
msgstr ""
#. KBFwM
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:447
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:439
msgctxt "navigatorcontextmenu|STR_COMMENT_TRACKING"
msgid "Comment Tracking"
msgstr ""
#. oGavB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:455
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:447
msgctxt "navigatorcontextmenu|STR_DRAWING_OBJECT_TRACKING"
msgid "Drawing Object Tracking"
msgstr ""
#. w8FTW
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:463
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:455
msgctxt "navigatorcontextmenu|STR_FIELD_TRACKING"
msgid "Field Tracking"
msgstr ""
#. BoCeZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:471
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:463
msgctxt "navigatorcontextmenu|STR_FOOTNOTE_TRACKING"
msgid "Footnote Tracking"
msgstr ""
#. QqAhu
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:479
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:471
msgctxt "navigatorcontextmenu|STR_ENDNOTE_TRACKING"
msgid "Endnote Tracking"
msgstr ""
#. vBGAw
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:487
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:479
msgctxt "navigatorcontextmenu|STR_SORT_ALPHABETICALLY"
msgid "Sort Alphabetically"
msgstr ""
#. cqtBF
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:501
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:493
msgctxt "navigatorcontextmenu|STR_OUTLINE_LEVEL"
msgid "Show Up to Outline Level"
msgstr ""
#. Zehx2
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:515
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:507
msgctxt "navigatorcontextmenu|STR_DISPLAY"
msgid "Display"
msgstr ""
#. bgZoy
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:535
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:527
msgctxt "navigatorcontextmenu|STR_COLLAPSE_ALL_CATEGORIES"
msgid "Collapse All Categories"
msgstr ""
@@ -27744,6 +27738,12 @@ msgctxt "selecttabledialog|extended_tip|SelectTableDialog"
msgid "Select the table that you want to use for mail merge addresses."
msgstr ""
+#. RWLE7
+#: sw/uiconfig/swriter/ui/sidebarquickfind.ui:36
+msgctxt "sidebarquickfind|find"
+msgid "Find"
+msgstr ""
+
#. DSVQt
#: sw/uiconfig/swriter/ui/sidebartableedit.ui:46
msgctxt "sidebatableedit|rowheight|tooltip_text"
@@ -28866,11 +28866,11 @@ msgctxt "templatedialog1|extended_tip|reset"
msgid "Revert any changes made on the tab shown here to the settings that were present when this dialog was opened."
msgstr ""
-#. UH8Vz
+#. Zp6EK
#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
msgctxt "templatedialog1|organizer"
-msgid "Organizer"
-msgstr "Арганізатар"
+msgid "General"
+msgstr ""
#. BvEuD
#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
@@ -28920,11 +28920,11 @@ msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
-#. tA5vb
+#. Tuygv
#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
msgctxt "templatedialog16|organizer"
-msgid "Organizer"
-msgstr "Арганізатар"
+msgid "General"
+msgstr ""
#. 7MAbD
#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
@@ -29004,11 +29004,11 @@ msgctxt "templatedialog2|TemplateDialog2"
msgid "Paragraph Style"
msgstr "Стыль абзаца"
-#. 2NhWM
+#. FDfTt
#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
-msgid "Organizer"
-msgstr "Арганізатар"
+msgid "General"
+msgstr ""
#. G7U5N
#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
@@ -29118,11 +29118,11 @@ msgctxt "templatedialog4|TemplateDialog4"
msgid "Frame Style"
msgstr "Стыль рамкі"
-#. 8dRdE
+#. wSfp8
#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
msgctxt "templatedialog4|organizer"
-msgid "Organizer"
-msgstr "Арганізатар"
+msgid "General"
+msgstr ""
#. Q2PQs
#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
@@ -29184,11 +29184,11 @@ msgctxt "templatedialog8|standard"
msgid "Standard"
msgstr ""
-#. BvGbL
+#. LTNWZ
#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
msgctxt "templatedialog8|organizer"
-msgid "Organizer"
-msgstr "Арганізатар"
+msgid "General"
+msgstr ""
#. UbZRu
#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
diff --git a/source/bg/helpcontent2/source/text/scalc/01.po b/source/bg/helpcontent2/source/text/scalc/01.po
index 6ad350e89f8..bd9e0396765 100644
--- a/source/bg/helpcontent2/source/text/scalc/01.po
+++ b/source/bg/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-27 12:59+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-05-14 16:59+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/bg/>\n"
@@ -54584,6 +54584,15 @@ msgctxt ""
msgid "This function ignores any text or empty cell within a data range. If you suspect wrong results from this function, look for text in the data ranges. To highlight text contents in a data range, use the <link href=\"text/scalc/01/03080000.xhp\">value highlighting</link> feature."
msgstr "Тази функция игнорира текстовете и празните клетки в диапазон с данни. Ако подозирате, че резултатът ѝ е погрешен, потърсете текст в диапазоните с данни. За да осветите текстовото съдържание в диапазон с данни, използвайте функционалността за <link href=\"text/scalc/01/03080000.xhp\">осветяване на стойности</link>."
+#. DB6XT
+#: common_func.xhp
+msgctxt ""
+"common_func.xhp\n"
+"par_id431716730587722\n"
+"help.text"
+msgid "Any of the optional arguments can be omitted. An optional argument is required to be preceded by the preceding separators."
+msgstr ""
+
#. GAPGX
#: common_func_workdaysintl.xhp
msgctxt ""
@@ -57149,6 +57158,15 @@ msgctxt ""
msgid "This function is always recalculated whenever a recalculation occurs."
msgstr "Тази функция се преизчислява всеки път, когато се извършва преизчисляване."
+#. fSXNw
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"par_id711715953325962\n"
+"help.text"
+msgid "The function is always <emph>case insensitive</emph>, independent from the setting of <emph>Case sensitive</emph> checkbox in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\"><menuitem>%PRODUCTNAME Calc - Calculate</menuitem></link>."
+msgstr ""
+
#. 8DbP2
#: func_aggregate.xhp
msgctxt ""
@@ -62414,22 +62432,22 @@ msgctxt ""
msgid "<variable id=\"h1\"><link href=\"text/scalc/01/func_filter.xhp\">FILTER</link></variable>"
msgstr ""
-#. nKHpG
+#. dxbQ9
#: func_filter.xhp
msgctxt ""
"func_filter.xhp\n"
"par_id771708806478128\n"
"help.text"
-msgid "Filters a data range or array based on conditions you specify."
+msgid "Filters a data range or array based on specified conditions."
msgstr ""
-#. M2JTs
+#. tuppo
#: func_filter.xhp
msgctxt ""
"func_filter.xhp\n"
"par_id211708281649651\n"
"help.text"
-msgid "FILTER(Range, Criteria, Return if empty)"
+msgid "FILTER( Range; Criteria [; Return if empty])"
msgstr ""
#. SGrA5
@@ -62450,31 +62468,31 @@ msgctxt ""
msgid "<emph>Criteria</emph>: A boolean array whose height (filtering by columns) or width (filtering by rows) is the same as the array, used to select data from the <emph>Range</emph>."
msgstr ""
-#. KjAXK
+#. ZcP2E
#: func_filter.xhp
msgctxt ""
"func_filter.xhp\n"
"par_id421709395146863\n"
"help.text"
-msgid "<emph>Return if empty</emph>: the value to return if all values in the Include array are empty (filter return nothing)."
+msgid "<emph>Result if empty</emph>: (optional) the value to return if all values in the <emph>Criteria</emph> array are empty (filter return nothing)."
msgstr ""
-#. PAajv
+#. AFtpH
#: func_filter.xhp
msgctxt ""
"func_filter.xhp\n"
"par_id21709506838932\n"
"help.text"
-msgid "<input>{=FILTER(A2:C13,A2:A13>50)}</input> returns the array {57,49,12|56,33,60|57,,} containing all grades with Maths grade above 50. Note that this is an array formula."
+msgid "<input>{=FILTER(A2:C13;A2:A13>50)}</input> returns the array containing all grades with Maths grade above 50. Note that this is an <link href=\"text/scalc/01/04060107.xhp#creating_array_formulas\">array formula</link>."
msgstr ""
-#. WhdTC
+#. METQ9
#: func_filter.xhp
msgctxt ""
"func_filter.xhp\n"
"par_id561709507935610\n"
"help.text"
-msgid "<input>{=FILTER(A2:C13,B2:B13>90,\"No results\")}</input> Returns the string \"No results\", since no grade on Physics is above 90."
+msgid "<input>{=FILTER(A2:C13;B2:B13>90;\"No results\")}</input> Returns the string \"No results\", since no grade on Physics is above 90."
msgstr ""
#. q34Yg
@@ -66941,13 +66959,13 @@ msgctxt ""
msgid "Generates an array of random numbers between two limit values."
msgstr ""
-#. 9wxNC
+#. ArGrF
#: func_randarray.xhp
msgctxt ""
"func_randarray.xhp\n"
"par_id211708281649651\n"
"help.text"
-msgid "RANDARRAY([Rows], [Columns], [Min], [Max], [Integers])"
+msgid "RANDARRAY([Rows [; Columns [; Min [; Max [; Integers] ] ] ])"
msgstr ""
#. FDbmd
@@ -67013,13 +67031,13 @@ msgctxt ""
msgid "If <emph>Rows</emph> or <emph>Columns</emph> are references to the content of other cells, the array dimensions do not change when the referenced content changes. The array formula must be deleted and re-entered."
msgstr ""
-#. ERYkg
+#. mz6p3
#: func_randarray.xhp
msgctxt ""
"func_randarray.xhp\n"
"par_id521715616457946\n"
"help.text"
-msgid "<input>{=RANDARRAY(10,4,10,50,1)}</input> returns an array of 10 rows, 4 columns with minimum value 10 and maximum value of 50 of whole numbers (integers)."
+msgid "<input>{=RANDARRAY(10;4;10;50;1)}</input> returns an array of 10 rows, 4 columns with minimum value 10 and maximum value of 50 of whole numbers (integers)."
msgstr ""
#. iGDsD
@@ -68084,13 +68102,13 @@ msgctxt ""
msgid "The array is filled from the first row to the right up to the value of <emph>Columns</emph>, and then down to the number of rows."
msgstr ""
-#. sC8E6
+#. u9vnG
#: func_sequence.xhp
msgctxt ""
"func_sequence.xhp\n"
"par_id201714595986945\n"
"help.text"
-msgid "<input>{=SEQUENCE(3,3,10,11)}</input> returns the 3-by-3 array below with an upper-right value of 10 and filling the array to the right and then downward in steps of 11."
+msgid "<input>{=SEQUENCE(3,3,10,11)}</input> returns the 3-by-3 array below with an upper-left value of 10 and filling the array to the right and then downward in steps of 11."
msgstr ""
#. sNE2S
@@ -68237,49 +68255,49 @@ msgctxt ""
msgid "Enter the formula as an <link href=\"text/scalc/01/04060107.xhp\">array formula</link>."
msgstr ""
-#. LksfE
+#. DmRKh
#: func_sort.xhp
msgctxt ""
"func_sort.xhp\n"
"par_id211708281649651\n"
"help.text"
-msgid "SORT(Range [, SortIndex[, SortOrder[, ByCol]]])"
+msgid "SORT(Range [; SortIndex [; SortOrder [; ByCol] ] ])"
msgstr ""
-#. 4iAJz
+#. gmV6H
#: func_sort.xhp
msgctxt ""
"func_sort.xhp\n"
"par_id551711457515235\n"
"help.text"
-msgid "<emph>Range:</emph> Required. The range or array to sort."
+msgid "<emph>Range:</emph> the range or array to sort."
msgstr ""
-#. Epf9D
+#. WQaKY
#: func_sort.xhp
msgctxt ""
"func_sort.xhp\n"
"par_id151711457520290\n"
"help.text"
-msgid "<emph>SortIndex:</emph> Optional. The number indicating the row or column to sort by."
+msgid "<emph>SortIndex:</emph> (optional). The number indicating the row or column to sort by."
msgstr ""
-#. 2cgDj
+#. P5DGG
#: func_sort.xhp
msgctxt ""
"func_sort.xhp\n"
"par_id131711457525811\n"
"help.text"
-msgid "<emph>SortOrder:</emph> Optional. A number indicating the desired sort order; 1 for ascending order (default), -1 for descending order."
+msgid "<emph>SortOrder:</emph> (optional). A number indicating the desired sort order; 1 for ascending order (default), -1 for descending order."
msgstr ""
-#. JwCYE
+#. 5Vo8L
#: func_sort.xhp
msgctxt ""
"func_sort.xhp\n"
"par_id351711457531579\n"
"help.text"
-msgid "<emph>ByCol:</emph> Optional. A logical value indicating the desired sort direction; <emph>FALSE</emph> to sort by row (default), <emph>TRUE</emph> to sort by column."
+msgid "<emph>ByCol:</emph> (optional). A logical value indicating the desired sort direction; <emph>FALSE</emph> to sort by row (default), <emph>TRUE</emph> to sort by column."
msgstr ""
#. hDBib
@@ -68471,13 +68489,13 @@ msgctxt ""
msgid "Sorts the contents of a range or array based on the values in a corresponding range or array."
msgstr ""
-#. EUgaa
+#. 52ZFJ
#: func_sortby.xhp
msgctxt ""
"func_sortby.xhp\n"
"par_id211708281649651\n"
"help.text"
-msgid "SORTBY(Range, SortByRange1, SortOrder1[, SortByRange2, SortOrder2,[...]])"
+msgid "SORTBY(Range; SortByRange1; SortOrder1 [; SortByRange2; SortOrder2,[...] ])"
msgstr ""
#. gifyS
@@ -68489,31 +68507,31 @@ msgctxt ""
msgid "<emph>Range</emph>: The array or range to sort."
msgstr ""
-#. k3ADs
+#. i3EwL
#: func_sortby.xhp
msgctxt ""
"func_sortby.xhp\n"
"par_id291711544460323\n"
"help.text"
-msgid "<emph>SortByRange1, SortByRange2,... </emph>: Range 1, range 2,... are the arrays or ranges to sort on."
+msgid "<emph>SortByRange1, SortByRange2,... </emph>: range 1, range 2,... are the arrays or ranges to sort on."
msgstr ""
-#. FTuBa
+#. BA6NF
#: func_sortby.xhp
msgctxt ""
"func_sortby.xhp\n"
"par_id501711544465886\n"
"help.text"
-msgid "<emph>SortOrder1, SortOrder2,...</emph> : Order 1, order 2,... are the orders to use for sorting. 1 for ascending, -1 for descending. Default is ascending."
+msgid "<emph>SortOrder1, SortOrder2,...</emph> : order 1, order 2,... are the orders to use for sorting. 1 for ascending, -1 for descending. Default is ascending."
msgstr ""
-#. FA2hL
+#. jhZ65
#: func_sortby.xhp
msgctxt ""
"func_sortby.xhp\n"
"par_id131711466000482\n"
"help.text"
-msgid "<input>{=SORTBY(A2:C7,A2:A7,1,C2:C7,-1)}</input>"
+msgid "<input>{=SORTBY(A2:C7;A2:A7;1;C2:C7;-1)}</input>"
msgstr ""
#. q9cpQ
@@ -69956,15 +69974,6 @@ msgctxt ""
msgid "Returns the array of unique values from a range or array of values."
msgstr ""
-#. h3r2U
-#: func_unique.xhp
-msgctxt ""
-"func_unique.xhp\n"
-"par_id711715953325962\n"
-"help.text"
-msgid "The UNIQUE function is always case sensitive, independent from the setting of <emph>Case sensitive</emph> checkbox in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\"><menuitem>%PRODUCTNAME Calc - Calculate</menuitem></link>."
-msgstr ""
-
#. A8bJf
#: func_unique.xhp
msgctxt ""
@@ -70784,6 +70793,15 @@ msgctxt ""
msgid "System"
msgstr "NETWORKDAYS.INTL(НачалнаДата; КрайнаДата; Уикенд; Празници)"
+#. cM6zS
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"par_id901535122363436\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
#. V79BD
#: func_weeknum.xhp
msgctxt ""
@@ -71585,40 +71603,40 @@ msgctxt ""
msgid "Searches for a value in an array and returns a reference to a cell or range of cells."
msgstr ""
-#. xMTVW
+#. bywFk
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id631708282151776\n"
"help.text"
-msgid "XLOOKUP function is a modern and flexible replacement for older functions like <link href=\"text/scalc/01/04060109.xhp#Section9\">VLOOKUP</link>, <link href=\"text/scalc/01/04060109.xhp#Section17\">HLOOKUP</link>, and <link href=\"text/scalc/01/04060109.xhp#Section14\">LOOKUP</link>. XLOOKUP supports approximate and exact matching, wildcards (* ?) for partial matches, and lookups in vertical or horizontal ranges. XLOOKUP can perform a reverse search and offers a fast binary search option when working with large datasets."
+msgid "XLOOKUP function is a modern and flexible replacement for older functions like <link href=\"text/scalc/01/04060109.xhp#Section9\">VLOOKUP</link>, <link href=\"text/scalc/01/04060109.xhp#Section17\">HLOOKUP</link>, and <link href=\"text/scalc/01/04060109.xhp#Section14\">LOOKUP</link>. XLOOKUP supports approximate and exact matching, wildcards (* ?) for partial matches, and lookups in vertical or horizontal ranges. XLOOKUP can perform a reverse search and offers a fast binary search option when working with large datasets."
msgstr ""
-#. VESoP
+#. TwFcc
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id211708281649651\n"
"help.text"
-msgid "XLOOKUP(Lookup; Array; Return [; NotFound; MatchType; SearchMode ] )"
+msgid "XLOOKUP( [Lookup] ; Array ; Return [ ; [ NotFound ] [ ; [MatchType] [ ; SearchMode ] ] ] )"
msgstr ""
-#. 3zUXb
+#. WoJu6
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id861708281340704\n"
"help.text"
-msgid "<emph>Lookup</emph>: The value of any type to search for in <emph>Array</emph>. If omitted, XLOOKUP returns blank cells it finds in <emph>Array</emph>."
+msgid "<emph>Lookup</emph>: (optional) The value of any type to search for in <emph>Array</emph>. If omitted, XLOOKUP returns blank cells it finds in <emph>Array</emph>."
msgstr ""
-#. qUjAU
+#. hBE9s
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id831708281625340\n"
"help.text"
-msgid "<emph>Array</emph>: is the reference of the array or range to search."
+msgid "<emph>Array</emph>: is the reference of the array to search. Array must be a 1-dimensional array and must be contained in one sheet only."
msgstr ""
#. nWhEP
@@ -71630,175 +71648,148 @@ msgctxt ""
msgid "<emph>Return</emph>: is the reference of the array or range to return."
msgstr ""
-#. 2LnvD
+#. G4DLq
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id821708357634624\n"
"help.text"
-msgid "If <emph>Return</emph> is an array of values, the XLOOKUP function must be entered as an <link href=\"text/scalc/01/04060107.xhp#creating_array_formulas\">array formula</link>."
+msgid "If <emph>Return</emph> is a range of cells, the XLOOKUP function must be entered as an <link href=\"text/scalc/01/04060107.xhp#creating_array_formulas\">array formula</link>."
msgstr ""
-#. 3fY6K
+#. WTFGZ
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id271708281637035\n"
"help.text"
-msgid "<emph>NotFound</emph>: a text to return if the <emph>Lookup</emph> value is not found. If a valid match is not found, and <emph>NotFound</emph> is omitted, returns #N/A."
+msgid "<emph>NotFound</emph>: a text or cell content to return if the <emph>Lookup</emph> value is not found. If a valid match is not found and <emph>NotFound</emph> is omitted, the function returns the #N/A error."
msgstr ""
-#. hBDsh
+#. ruAWq
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id121708281643207\n"
"help.text"
-msgid "<emph>MatchType</emph>: Specify the match type:"
+msgid "<emph>MatchType</emph>: (optional) specifies the match type. Values can be:"
msgstr ""
-#. aCZbP
+#. go9sN
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id111708281542144\n"
"help.text"
-msgid "<emph>0</emph> - Exact match (default). If <emph>Lookup</emph> value is not found and <emph>NotFound</emph> text is omitted, then return #N/A."
+msgid "<emph>0</emph>: exact match (default). If <emph>Lookup</emph> value is not found and <emph>NotFound</emph> text is omitted, then return the #N/A error."
msgstr ""
-#. w5rBH
+#. CtG9A
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id851708281548335\n"
"help.text"
-msgid "<emph>-1</emph> - Exact match. If <emph>Lookup</emph> value is not found, then return the next smaller item."
+msgid "<emph>-1</emph>: attempt exact match. If <emph>Lookup</emph> value is not found, then return the next smaller item."
msgstr ""
-#. zQiND
+#. CpEkK
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id801708281553430\n"
"help.text"
-msgid "<emph>1</emph> - Exact match. If <emph>Lookup</emph> value is not found, then return the next larger item."
+msgid "<emph>1</emph>: attempt exact match. If <emph>Lookup</emph> value is not found, then return the next larger item."
msgstr ""
-#. 4Jxvx
+#. JJ3M2
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id881708281558005\n"
"help.text"
-msgid "<emph>2</emph> - A <link href=\"text/scalc/guide/wildcards.xhp\">wildcard</link> match where characters *, ?, and ~ have special meaning."
+msgid "<emph>2</emph>: a <link href=\"text/scalc/guide/wildcards.xhp\">wildcard</link> match where characters *, ?, and ~ have special meanings."
msgstr ""
-#. CxCof
+#. EqTBc
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id871708281607313\n"
"help.text"
-msgid "<emph>SearchMode</emph>: Specify the search mode to use:"
+msgid "<emph>SearchMode</emph>: (optional) specifies the search mode to use."
msgstr ""
-#. Lc3bp
+#. FfKjN
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id281708281579757\n"
"help.text"
-msgid "<emph>1</emph>: - Search starting at the first item (default)."
+msgid "<emph>1</emph>: returns the first occurrence starting from the first item of <emph>Array</emph> (default)."
msgstr ""
-#. HVoEm
+#. 8CD3w
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id251708281584285\n"
"help.text"
-msgid "<emph>-1</emph> - Reverse search starting at the last item."
+msgid "<emph>-1</emph>: reverse search. Returns the first occurrence starting from the last item of <emph>Array</emph>."
msgstr ""
-#. CFAD4
+#. 6aABE
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id191708281589997\n"
"help.text"
-msgid "<emph>2</emph> - Binary search that relies on <emph>Array</emph> being sorted in ascending order. If not sorted, invalid results will be returned."
+msgid "<emph>2</emph>: binary search that relies on <emph>Array</emph> being sorted in ascending order. If not sorted, invalid results will be returned."
msgstr ""
-#. mAGCX
+#. pwwij
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id561708281595885\n"
"help.text"
-msgid "<emph>-2</emph> - Binary search that relies on <emph>Array</emph> being sorted in descending order. If not sorted, invalid results will be returned."
-msgstr ""
-
-#. vD6hn
-#: func_xlookup.xhp
-msgctxt ""
-"func_xlookup.xhp\n"
-"par_id961708354814163\n"
-"help.text"
-msgid "The table below contains a glossary for translators:"
-msgstr ""
-
-#. MSv55
-#: func_xlookup.xhp
-msgctxt ""
-"func_xlookup.xhp\n"
-"par_id781708353695722\n"
-"help.text"
-msgid "<emph>English</emph>"
+msgid "<emph>-2</emph>: binary search that relies on <emph>Array</emph> being sorted in descending order. If not sorted, invalid results will be returned."
msgstr ""
-#. 5G7WA
+#. fHQrZ
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
-"par_id641708353695723\n"
+"par_id141716739193733\n"
"help.text"
-msgid "<emph>French</emph>"
+msgid "<input>{=XLOOKUP(\"Atomic Number\";A2:A4;A2:DO4)}</input> returns the array"
msgstr ""
-#. GRDeG
+#. tkRq7
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
-"par_id671708353695724\n"
+"par_id231716739652495\n"
"help.text"
-msgid "<emph>Italian</emph>"
+msgid "<input>{=XLOOKUP(\"Helium\";B1:DO1;B1:DO4)}</input> returns the array"
msgstr ""
-#. JfbWn
+#. D5tG5
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
-"par_id331708353781503\n"
+"par_id21716739329244\n"
"help.text"
-msgid "<emph>Japanese</emph>"
-msgstr ""
-
-#. CmUw2
-#: func_xlookup.xhp
-msgctxt ""
-"func_xlookup.xhp\n"
-"par_id31708356677157\n"
-"help.text"
-msgid "<input>={XLOOKUP(\"New\", A2:A4, B2:D4,\"Missing\")}</input> returns the array {\"Nouveau\",\"Nuovo\",\"新しい\"}."
+msgid "Helium"
msgstr ""
-#. Z9pX4
+#. vaCSD
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id671708356683379\n"
"help.text"
-msgid "<input>={XLOOKUP(\"Reload\", A2:A4, B2:D4,\"Missing\")}</input> returns the array {\"Missing\",\"Missing\",\"Missing\"}."
+msgid "<input>{=XLOOKUP(\"Kryptonite\";B1:DO1;B1:DO4;\"Unknown element\")}</input> returns the array {\"Unknown element\",\"Unknown element\",\"Unknown element\",\"Unknown element\"}."
msgstr ""
#. SzUpN
@@ -71837,22 +71828,31 @@ msgctxt ""
msgid "<variable id=\"h1\"><link href=\"text/scalc/01/func_xmatch.xhp\">XMATCH</link></variable>"
msgstr ""
-#. B9dyV
+#. 8GYav
#: func_xmatch.xhp
msgctxt ""
"func_xmatch.xhp\n"
"par_id581708279355738\n"
"help.text"
-msgid "Searches for a value in an array or range of cells and returns the relative position of the item."
+msgid "Searches for a value in a one-dimensional array and returns the relative position of the item."
+msgstr ""
+
+#. qJsbC
+#: func_xmatch.xhp
+msgctxt ""
+"func_xmatch.xhp\n"
+"par_id321716754048322\n"
+"help.text"
+msgid "XMATCH outperforms function <link href=\"text/scalc/01/04060109.xhp#Section12\">MATCH</link> as it allows searches according to the search mode."
msgstr ""
-#. MFVXB
+#. NFwz8
#: func_xmatch.xhp
msgctxt ""
"func_xmatch.xhp\n"
"par_id211708281649651\n"
"help.text"
-msgid "XMATCH(Lookup; Array [; MatchType; SearchMode ] )"
+msgid "XMATCH(Lookup; Array [; MatchType [; SearchMode ] ] )"
msgstr ""
#. NA2BM
@@ -71873,22 +71873,22 @@ msgctxt ""
msgid "<emph>Array</emph>: is the reference of the array or range to search."
msgstr ""
-#. EorAV
+#. WMXaP
#: func_xmatch.xhp
msgctxt ""
"func_xmatch.xhp\n"
-"par_id391708364611193\n"
+"par_id471716753503759\n"
"help.text"
-msgid "XMATCH outperforms function MATCH as it allows searches according to the search mode."
+msgid "<input>=XMATCH(\"Atomic Number\",A1:A4)</input> returns 3, the third line of the A1:A4 array."
msgstr ""
-#. yRpQy
+#. QTDzi
#: func_xmatch.xhp
msgctxt ""
"func_xmatch.xhp\n"
-"par_id31708356677157\n"
+"par_id581716753499133\n"
"help.text"
-msgid "<input>=XMATCH(\"Save\", A2:A4, 0, 1)</input> returns 2, the second line of the A2:A4 range."
+msgid "<input>=XMATCH(\"Li\",A2:DO2)</input> returns 4, the fourth column of the A2:DO2 array."
msgstr ""
#. 2AAX5
diff --git a/source/bg/helpcontent2/source/text/scalc/guide.po b/source/bg/helpcontent2/source/text/scalc/guide.po
index f7cb3b7869e..284a9574e09 100644
--- a/source/bg/helpcontent2/source/text/scalc/guide.po
+++ b/source/bg/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-13 12:37+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-05-14 16:59+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textscalcguide/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-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1562356865.000000\n"
@@ -2411,14 +2411,14 @@ msgctxt ""
msgid "This method can also be used to insert a range from another sheet of the same document into the current sheet. Select the active document as source in step 4 above."
msgstr "Чрез този метод можете също да вмъкнете област от друг лист на същия документ в текущия лист. Изберете активния документ като източник в стъпка 4 по-горе."
-#. ANNjW
+#. fw7FU
#: cellreferences.xhp
msgctxt ""
"cellreferences.xhp\n"
"tit\n"
"help.text"
-msgid "Referencing a Cell in Another Document"
-msgstr "Цитиране на клетка от друг документ"
+msgid "Referencing a Cell in Another Sheet"
+msgstr ""
#. FkFV9
#: cellreferences.xhp
@@ -2429,14 +2429,14 @@ msgctxt ""
msgid "<bookmark_value>sheet references</bookmark_value> <bookmark_value>references; to cells in other sheets/documents</bookmark_value> <bookmark_value>addresses; to cells in other sheets/documents</bookmark_value> <bookmark_value>cells; operating in another document</bookmark_value> <bookmark_value>documents;references</bookmark_value> <bookmark_value>cell;address</bookmark_value> <bookmark_value>address; of cell</bookmark_value>"
msgstr "<bookmark_value>обръщения към листи</bookmark_value><bookmark_value>обръщения; към клетки в друг лист/документ</bookmark_value><bookmark_value>адреси; на клетки в друг лист/документ</bookmark_value><bookmark_value>клетки; използване в друг документ</bookmark_value><bookmark_value>документи;обръщения</bookmark_value><bookmark_value>клетка;адрес</bookmark_value><bookmark_value>адрес; на клетка</bookmark_value>"
-#. a5WVc
+#. 5EvNw
#: cellreferences.xhp
msgctxt ""
"cellreferences.xhp\n"
"hd_id3147436\n"
"help.text"
-msgid "<variable id=\"cellreferences\"><link href=\"text/scalc/guide/cellreferences.xhp\">Referencing Other Sheets</link></variable>"
-msgstr "<variable id=\"cellreferences\"><link href=\"text/scalc/guide/cellreferences.xhp\">Цитиране на клетка от друг документ</link></variable>"
+msgid "<variable id=\"cellreferences\"><link href=\"text/scalc/guide/cellreferences.xhp\">Referencing a Cell in Another Sheet</link></variable>"
+msgstr ""
#. S3C6m
#: cellreferences.xhp
@@ -2627,14 +2627,14 @@ msgctxt ""
msgid "If you examine the name of the other document in this formula, you will notice that it is written as a <link href=\"text/shared/00/00000002.xhp#url\">URL</link>. This means that you can also enter a URL from the Internet."
msgstr "Ако разгледате името на другия документ в тази формула, ще забележите, че то е изписано като <link href=\"text/shared/00/00000002.xhp#url\">URL</link> адрес. Това означава, че можете да въведете и URL от Интернет."
-#. ABuMQ
+#. jtXog
#: cellreferences_url.xhp
msgctxt ""
"cellreferences_url.xhp\n"
"tit\n"
"help.text"
-msgid "References to Other Sheets and Referencing URLs"
-msgstr "Обръщения към други листове и към URL адреси"
+msgid "Referencing URLs in other Sheets"
+msgstr ""
#. 7ELAq
#: cellreferences_url.xhp
@@ -2645,14 +2645,14 @@ msgctxt ""
msgid "<bookmark_value>HTML; in sheet cells</bookmark_value><bookmark_value>references; URL in cells</bookmark_value><bookmark_value>cells; Internet references</bookmark_value><bookmark_value>URL; in Calc</bookmark_value>"
msgstr "<bookmark_value>HTML; в клетки от лист</bookmark_value><bookmark_value>обръщения; URL в клетки</bookmark_value><bookmark_value>клетки; обръщения към Интернет</bookmark_value><bookmark_value>URL; в Calc</bookmark_value>"
-#. M5F2f
+#. qpmog
#: cellreferences_url.xhp
msgctxt ""
"cellreferences_url.xhp\n"
"hd_id3150441\n"
"help.text"
-msgid "<variable id=\"cellreferences_url\"><link href=\"text/scalc/guide/cellreferences_url.xhp\">Referencing URLs</link></variable>"
-msgstr "<variable id=\"cellreferences_url\"><link href=\"text/scalc/guide/cellreferences_url.xhp\">Обръщения към URL</link></variable>"
+msgid "<variable id=\"cellreferences_url\"><link href=\"text/scalc/guide/cellreferences_url.xhp\">Referencing URLs in other Sheets</link></variable>"
+msgstr ""
#. VHDGU
#: cellreferences_url.xhp
@@ -12023,14 +12023,14 @@ msgctxt ""
msgid "January"
msgstr "Януари"
-#. GTvgG
+#. kGDze
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
"par_id3153566\n"
"help.text"
-msgid "Specify that only rows which either have the value <literal>January</literal> in the <emph>Month</emph> cells OR a value of under 160000 in the <emph>Standard</emph> cells will be displayed."
-msgstr "Указва, че ще се показват само редовете, които съдържат стойност <literal>Януари</literal> в колоната <emph>Месец</emph> ИЛИ стойност, по-малка от 160000, в колоната <emph>Стандартна</emph>."
+msgid "Specify that only rows which either have the value <literal>January</literal> in the <emph>Month</emph> cells OR a value of over 160000 in the <emph>Standard</emph> cells will be displayed."
+msgstr ""
#. ApUpg
#: specialfilter.xhp
diff --git a/source/bg/helpcontent2/source/text/sdraw.po b/source/bg/helpcontent2/source/text/sdraw.po
index f7d11839928..178b21f363d 100644
--- a/source/bg/helpcontent2/source/text/sdraw.po
+++ b/source/bg/helpcontent2/source/text/sdraw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-02-02 00:04+0100\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-02-27 09:45+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textsdraw/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: 1558972026.000000\n"
#. dHbww
@@ -1024,14 +1024,14 @@ msgctxt ""
msgid "Shape"
msgstr "Фигура"
-#. C5hGB
+#. GfQCR
#: main_shape.xhp
msgctxt ""
"main_shape.xhp\n"
"hd_id381558217682354\n"
"help.text"
-msgid "<link href=\"text/sdraw/main_shape.xhp\">Shape</link>"
-msgstr "<link href=\"text/sdraw/main_shape.xhp\">Фигура</link>"
+msgid "<variable id=\"shape_h1\"><link href=\"text/sdraw/main_shape.xhp\">Shape</link></variable>"
+msgstr ""
#. Eeyb5
#: main_shape.xhp
diff --git a/source/bg/helpcontent2/source/text/sdraw/01.po b/source/bg/helpcontent2/source/text/sdraw/01.po
index 70464e2a9c1..1a4b16ce7bf 100644
--- a/source/bg/helpcontent2/source/text/sdraw/01.po
+++ b/source/bg/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-03-04 14:25+0100\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-04-25 09:45+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textsdraw01/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: 1558871705.000000\n"
#. 9EjcP
@@ -529,14 +529,14 @@ msgctxt ""
msgid "<bookmark_value>text box consolidation</bookmark_value><bookmark_value>join PDF lines;text box consolidation</bookmark_value><bookmark_value>combine text box;text box consolidation</bookmark_value><bookmark_value>combine text frames;text box consolidation</bookmark_value>"
msgstr "<bookmark_value>текстови полета, консолидиране</bookmark_value><bookmark_value>обединяване на редове в PDF;консолидиране на текстови полета</bookmark_value><bookmark_value>комбиниране на текстови полета;консолидиране на текстови полета</bookmark_value><bookmark_value>комбиниране на текстови рамки;консолидиране на текстови полета</bookmark_value>"
-#. naVUY
+#. oW3jP
#: consolidatetext.xhp
msgctxt ""
"consolidatetext.xhp\n"
"hd_id861623510996086\n"
"help.text"
-msgid "<link href=\"text/sdraw/01/consolidatetext.xhp\">Text Box Consolidation</link>"
-msgstr "<link href=\"text/sdraw/01/consolidatetext.xhp\">Консолидиране на текстови полета</link>"
+msgid "<link href=\"text/sdraw/01/consolidatetext.xhp\">Consolidate Text</link>"
+msgstr ""
#. zsb7F
#: consolidatetext.xhp
@@ -709,6 +709,132 @@ msgctxt ""
msgid "<ahelp hid=\".uno:DuplicatePage\" visibility=\"visible\">Inserts a copy of the current page after the current page.</ahelp>"
msgstr "<ahelp hid=\".uno:DuplicatePage\" visibility=\"visible\">Вмъква копие на текущата страница след нея.</ahelp>"
+#. JATBB
+#: equalize_height.xhp
+msgctxt ""
+"equalize_height.xhp\n"
+"tit\n"
+"help.text"
+msgid "Equalize Height"
+msgstr ""
+
+#. YzLZ7
+#: equalize_height.xhp
+msgctxt ""
+"equalize_height.xhp\n"
+"bm_id911716062352822\n"
+"help.text"
+msgid "<bookmark_value>shape; equalize height</bookmark_value><bookmark_value>drawing object; equalize height</bookmark_value><bookmark_value>height; equalize</bookmark_value>"
+msgstr ""
+
+#. 6aFop
+#: equalize_height.xhp
+msgctxt ""
+"equalize_height.xhp\n"
+"hd_41716903489414\n"
+"help.text"
+msgid "<variable id=\"equalize_height_h1\"><link href=\"text/sdraw/01/equalize_height.xhp\">Equalize Height</link></variable>"
+msgstr ""
+
+#. jbdbE
+#: equalize_height.xhp
+msgctxt ""
+"equalize_height.xhp\n"
+"par_id03149165419149\n"
+"help.text"
+msgid "Sets the height of two or more selected objects to the height of the object selected last. <menuitem>Equalize Height</menuitem> is only available when two or more drawing objects are selected."
+msgstr ""
+
+#. cvXqr
+#: equalize_height.xhp
+msgctxt ""
+"equalize_height.xhp\n"
+"par_id27975425109289\n"
+"help.text"
+msgid "Choose <menuitem>Shape - Equalize Height</menuitem>."
+msgstr ""
+
+#. h7hJ7
+#: equalize_height.xhp
+msgctxt ""
+"equalize_height.xhp\n"
+"par_id09268594688434\n"
+"help.text"
+msgid "Choose <menuitem>Draw</menuitem>, then in the <menuitem>Draw</menuitem> dropdown choose <menuitem>Equalize Height</menuitem>."
+msgstr ""
+
+#. xDKxC
+#: equalize_height.xhp
+msgctxt ""
+"equalize_height.xhp\n"
+"par_id35381451047272\n"
+"help.text"
+msgid "Choose <menuitem>Shapes - Equalize Height</menuitem>."
+msgstr ""
+
+#. KD2Cv
+#: equalize_width.xhp
+msgctxt ""
+"equalize_width.xhp\n"
+"tit\n"
+"help.text"
+msgid "Equalize Width"
+msgstr ""
+
+#. dFStW
+#: equalize_width.xhp
+msgctxt ""
+"equalize_width.xhp\n"
+"bm_id911716062352822\n"
+"help.text"
+msgid "<bookmark_value>shape; equalize width</bookmark_value><bookmark_value>drawing object; equalize width</bookmark_value><bookmark_value>width; equalize</bookmark_value>"
+msgstr ""
+
+#. 7sBAD
+#: equalize_width.xhp
+msgctxt ""
+"equalize_width.xhp\n"
+"hd_41716903489414\n"
+"help.text"
+msgid "<variable id=\"equalize_width_h1\"><link href=\"text/sdraw/01/equalize_width.xhp\">Equalize Width</link></variable>"
+msgstr ""
+
+#. YBRGe
+#: equalize_width.xhp
+msgctxt ""
+"equalize_width.xhp\n"
+"par_id03149165419149\n"
+"help.text"
+msgid "Sets the width of two or more selected objects to the width of the object selected last. <menuitem>Equalize Width</menuitem> is only available when two or more drawing objects are selected."
+msgstr ""
+
+#. VUC74
+#: equalize_width.xhp
+msgctxt ""
+"equalize_width.xhp\n"
+"par_id27975425109289\n"
+"help.text"
+msgid "Choose <menuitem>Shape - Equalize Width</menuitem>."
+msgstr ""
+
+#. Y9hBE
+#: equalize_width.xhp
+msgctxt ""
+"equalize_width.xhp\n"
+"par_id58194124979923\n"
+"help.text"
+msgid "Choose <menuitem>Draw</menuitem>, then in the <menuitem>Draw</menuitem> dropdown choose <menuitem>Equalize Width</menuitem>."
+msgstr ""
+
+#. 3xmAx
+#: equalize_width.xhp
+msgctxt ""
+"equalize_width.xhp\n"
+"par_id35381451047272\n"
+"help.text"
+msgid "Choose <menuitem>Shapes - Equalize Width</menuitem>."
+msgstr ""
+
#. 2LJK2
#: insert_layer.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/shared/01.po b/source/bg/helpcontent2/source/text/shared/01.po
index 780ccce1e51..1a37211ceff 100644
--- a/source/bg/helpcontent2/source/text/shared/01.po
+++ b/source/bg/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-27 12:59+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-05-10 09:45+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/bg/>\n"
@@ -40202,14 +40202,23 @@ msgctxt ""
msgid "Bullets and Numbering"
msgstr "Водачи и номерация"
-#. eZAKE
+#. ePFg9
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"bm_id11420732550923\n"
+"help.text"
+msgid "<bookmark_value>bullets and numbering; settings</bookmark_value><bookmark_value>bullets and numbering; customization</bookmark_value><bookmark_value>bullets and; add</bookmark_value><bookmark_value>bullets;Impress</bookmark_value><bookmark_value>ordered list;Impress</bookmark_value><bookmark_value>unordered list;Impress</bookmark_value><bookmark_value>bullets;Draw</bookmark_value><bookmark_value>ordered list;Draw</bookmark_value><bookmark_value>unordered list;Draw</bookmark_value>"
+msgstr ""
+
+#. RDsL2
#: 06050000.xhp
msgctxt ""
"06050000.xhp\n"
"hd_id3149551\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050000.xhp\">Bullets and Numbering</link>"
-msgstr "<link href=\"text/shared/01/06050000.xhp\">Водачи и номерация</link>"
+msgid "<variable id=\"bullets_and_numbering_h1\"><link href=\"text/shared/01/06050000.xhp\">Bullets and Numbering</link></variable>"
+msgstr ""
#. S7psX
#: 06050000.xhp
@@ -40463,6 +40472,15 @@ msgctxt ""
msgid "Image"
msgstr "Изображение"
+#. 2wccT
+#: 06050400.xhp
+msgctxt ""
+"06050400.xhp\n"
+"bm_id56740500219423\n"
+"help.text"
+msgid "<bookmark_value>bullets and numbering; image</bookmark_value> <bookmark_value>bullets; custom image</bookmark_value>"
+msgstr ""
+
#. CwjBg
#: 06050400.xhp
msgctxt ""
@@ -40481,6 +40499,15 @@ msgctxt ""
msgid "<ahelp hid=\".\">Displays the different graphics that you can use as bullets in an unordered list.</ahelp>"
msgstr "<ahelp hid=\".\">Показва различните графики, които можете да използвате като водещи символи в неподреден списък.</ahelp>"
+#. DSPTL
+#: 06050400.xhp
+msgctxt ""
+"06050400.xhp\n"
+"par_id51255442180622\n"
+"help.text"
+msgid "Use the <link href=\"text/shared/01/06050000.xhp\"><menuitem>Customize</menuitem></link> and <link href=\"text/shared/01/06050600.xhp\"><menuitem>Position</menuitem></link> tabs to adjust the size, alignment, and position of the image."
+msgstr ""
+
#. yDHf2
#: 06050400.xhp
msgctxt ""
@@ -40499,41 +40526,32 @@ msgctxt ""
msgid "<ahelp hid=\".\">Click the graphics that you want to use as bullets.</ahelp>"
msgstr "<ahelp hid=\".\">Щракнете върху графиката, която искате да използвате за водачите.</ahelp>"
-#. kzDsV
-#: 06050400.xhp
-msgctxt ""
-"06050400.xhp\n"
-"hd_id061120090436157\n"
-"help.text"
-msgid "Link graphics"
-msgstr "Връзка към графиката"
-
-#. udZya
+#. hAnvd
#: 06050400.xhp
msgctxt ""
"06050400.xhp\n"
-"par_id0611200904361575\n"
+"hd_id45986474959229\n"
"help.text"
-msgid "<ahelp hid=\".\">If enabled, the graphics are inserted as links. If not enabled, the graphics are embedded into the document.</ahelp>"
-msgstr "<ahelp hid=\".\">Ако е отметнато, графиките се вмъкват като връзки. Ако не е отметнато, те се вграждат в документа.</ahelp>"
+msgid "Add and Resize"
+msgstr ""
-#. y5Mpc
+#. coZpZ
#: 06050400.xhp
msgctxt ""
"06050400.xhp\n"
-"par_id061120090437338\n"
+"par_id55772839958583\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050600.xhp\">Position tab (Bullets and Numbering dialog)</link>"
-msgstr "<link href=\"text/shared/01/06050600.xhp\">Раздел „Позиция“ (диалогов прозорец „Водачи и номерация“)</link>"
+msgid "Opens a file picker where you can select an image file to use as a bullet in an unordered list."
+msgstr ""
-#. GGXd8
+#. AcFMD
#: 06050400.xhp
msgctxt ""
"06050400.xhp\n"
-"par_id0611200904373391\n"
+"par_id00797416585085\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050500.xhp\">Options tab (Bullets and Numbering dialog)</link>"
-msgstr "<link href=\"text/shared/01/06050500.xhp\">Раздел „Настройки“ (диалогов прозорец „Водачи и номерация“)</link>"
+msgid "Select an image file from the file picker and click <menuitem>Open</menuitem> to add it as a bullet style. The image is automatically resized to the width and height specified in the <link href=\"text/shared/01/06050500.xhp#bm_id3153363\"><menuitem>Customize</menuitem></link> tab."
+msgstr ""
#. MZF62
#: 06050500.xhp
@@ -40544,23 +40562,23 @@ msgctxt ""
msgid "Customize (Bullets and Numbering)"
msgstr "Настройки (водачи и номерация)"
-#. QChMa
+#. SQjo9
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"bm_id4096499\n"
"help.text"
-msgid "<bookmark_value>numbering;options</bookmark_value> <bookmark_value>bullet lists; formatting options</bookmark_value> <bookmark_value>font sizes;bullets</bookmark_value>"
-msgstr "<bookmark_value>номериране;настройки</bookmark_value><bookmark_value>списъци с водачи; настройки за форматиране</bookmark_value><bookmark_value>размер на шрифт;водачи</bookmark_value>"
+msgid "<bookmark_value>numbering;options</bookmark_value> <bookmark_value>bullet lists; formatting options</bookmark_value> <bookmark_value>font sizes;bullets</bookmark_value>"
+msgstr ""
-#. Roq5k
+#. e9nYq
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"hd_id3147240\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050500.xhp\">Customize</link>"
-msgstr "<link href=\"text/shared/01/06050500.xhp\">Персонализиране</link>"
+msgid "<variable id=\"customize_h1\"><link href=\"text/shared/01/06050500.xhp\">Customize</link></variable>"
+msgstr ""
#. ptL6S
#: 06050500.xhp
diff --git a/source/bg/helpcontent2/source/text/shared/02.po b/source/bg/helpcontent2/source/text/shared/02.po
index 1decd5e9342..183946c9015 100644
--- a/source/bg/helpcontent2/source/text/shared/02.po
+++ b/source/bg/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-27 12:59+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-05-30 21:08+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textshared02/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.4.3\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1562357690.000000\n"
@@ -11888,14 +11888,14 @@ msgctxt ""
msgid "Rotate"
msgstr "Въртене"
-#. 5uEQ4
+#. bjDyk
#: 05090000.xhp
msgctxt ""
"05090000.xhp\n"
"hd_id3154863\n"
"help.text"
-msgid "<link href=\"text/shared/02/05090000.xhp\">Rotate</link>"
-msgstr "<link href=\"text/shared/02/05090000.xhp\">Въртене</link>"
+msgid "<variable id=\"rotate_h1\"><link href=\"text/shared/02/05090000.xhp\">Rotate</link></variable>"
+msgstr ""
#. ycqR8
#: 05090000.xhp
@@ -11996,14 +11996,14 @@ msgctxt ""
msgid "Alignment"
msgstr "Подравняване"
-#. 5YEFv
+#. EBuE8
#: 05110000.xhp
msgctxt ""
"05110000.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "Alignment"
-msgstr "Подравняване"
+msgid "<variable id=\"alignment_h1\"><link href=\"text/shared/02/05110000.xhp\">Alignment</link></variable>"
+msgstr ""
#. GiEnY
#: 05110000.xhp
diff --git a/source/bg/helpcontent2/source/text/shared/menu.po b/source/bg/helpcontent2/source/text/shared/menu.po
index 16b0085b484..2375879b989 100644
--- a/source/bg/helpcontent2/source/text/shared/menu.po
+++ b/source/bg/helpcontent2/source/text/shared/menu.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-30 14:12+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-05-10 09:45+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textsharedmenu/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: 1474243044.000000\n"
#. 4dDYy
@@ -367,14 +367,23 @@ msgctxt ""
msgid "<ahelp hid=\".\">This submenu contains form controls like a textbox, checkbox, option button, and listbox that can be inserted into the document.</ahelp>"
msgstr "<ahelp hid=\".\">Това подменю съдържа контроли за формуляр, като текстово поле, поле за отметка, бутони за избор или списъчно поле, които могат да бъдат вмъквани в документа.</ahelp>"
-#. qHWBR
+#. GmbEB
#: insert_shape.xhp
msgctxt ""
"insert_shape.xhp\n"
"tit\n"
"help.text"
-msgid "Shape"
-msgstr "Фигура"
+msgid "Insert Shape"
+msgstr ""
+
+#. PvcFc
+#: insert_shape.xhp
+msgctxt ""
+"insert_shape.xhp\n"
+"hd_id07684081706272\n"
+"help.text"
+msgid "<variable id=\"insert_h1\"><link href=\"text/shared/menu/insert_shape.xhp\">Insert</link></variable>"
+msgstr ""
#. MHwAt
#: insert_shape.xhp
@@ -394,6 +403,15 @@ msgctxt ""
msgid "<ahelp hid=\".\">This submenu contains common shapes like a line, circle, triangle, and square, or a symbol shape like a smiley face, heart, and flower that can be inserted into the document.</ahelp>"
msgstr "<ahelp hid=\".\">Това подменю съдържа обикновени фигури като отсечка, кръг, триъгълник и квадрат, както и фигури – символи като усмихнато лице, сърце или цвете, които могат да бъдат вмъквани в документа.</ahelp>"
+#. v9tGR
+#: insert_shape.xhp
+msgctxt ""
+"insert_shape.xhp\n"
+"par_id261716922857055\n"
+"help.text"
+msgid "Choose <menuitem>Shape - Insert</menuitem>."
+msgstr ""
+
#. vcXma
#: insert_shape.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/simpress/01.po b/source/bg/helpcontent2/source/text/simpress/01.po
index 15c0ff85132..0e916ab7d74 100644
--- a/source/bg/helpcontent2/source/text/simpress/01.po
+++ b/source/bg/helpcontent2/source/text/simpress/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-05-24 12:27+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textsimpress01/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: 1558857650.000000\n"
#. mu9aV
@@ -853,14 +853,14 @@ msgctxt ""
msgid "Cross-fading"
msgstr "Преливане"
-#. Wboxp
+#. ZD3eP
#: 02150000.xhp
msgctxt ""
"02150000.xhp\n"
"hd_id3148577\n"
"help.text"
-msgid "Cross-fading"
-msgstr "Преливане"
+msgid "<variable id=\"cross-fading_h1\"><link href=\"text/simpress/01/02150000.xhp\">Cross-fading</link></variable>"
+msgstr ""
#. aCYnB
#: 02150000.xhp
@@ -7918,15 +7918,6 @@ msgctxt ""
msgid "Bullet and Position"
msgstr "Водещ символ и позиция"
-#. mjHGa
-#: bulletandposition.xhp
-msgctxt ""
-"bulletandposition.xhp\n"
-"bm_id121623276174916\n"
-"help.text"
-msgid "<bookmark_value>bullets;Impress</bookmark_value><bookmark_value>ordered list;Impress</bookmark_value><bookmark_value>unordered list;Impress</bookmark_value><bookmark_value>bullets;Draw</bookmark_value><bookmark_value>ordered list;Draw</bookmark_value><bookmark_value>unordered list;Draw</bookmark_value>"
-msgstr "<bookmark_value>водещи символи;Impress</bookmark_value><bookmark_value>подреден списък;Impress</bookmark_value><bookmark_value>неподреден списък;Impress</bookmark_value><bookmark_value>водещи символи;Draw</bookmark_value><bookmark_value>подреден списък;Draw</bookmark_value><bookmark_value>неподреден списък;Draw</bookmark_value>"
-
#. xAFoQ
#: bulletandposition.xhp
msgctxt ""
@@ -7954,13 +7945,13 @@ msgctxt ""
msgid "In a selected text, choose <menuitem>Bullets and Numbering</menuitem>."
msgstr ""
-#. CKDCB
+#. eq2HC
#: bulletandposition.xhp
msgctxt ""
"bulletandposition.xhp\n"
"par_id571692539528746\n"
"help.text"
-msgid "On the <menuitem>Home</menuitem> tab, long click on <menuitem>Ordered</menuitem> or <menuitem>Unordered</menuitem> list, select <menuitem>Customize</menuitem>."
+msgid "On the <switchinline select=\"appl\"><caseinline select=\"DRAW\"><menuitem>Text</menuitem></caseinline><caseinline select=\"IMPRESS\"><menuitem>Home</menuitem></caseinline></switchinline> tab, long click on <menuitem>Ordered</menuitem> or <menuitem>Unordered</menuitem> list, select <menuitem>Customize</menuitem>."
msgstr ""
#. 8ABFW
@@ -8170,15 +8161,6 @@ msgctxt ""
msgid "Keep ratio"
msgstr "Запазване на пропорциите"
-#. c4vEd
-#: bulletandposition.xhp
-msgctxt ""
-"bulletandposition.xhp\n"
-"par_id261623260666478\n"
-"help.text"
-msgid "Check this box to preserve the height-to-width ratio of the graphic bullet."
-msgstr "Отметнете това поле, за да се запазва съотношението между височината и ширината на графичния водещ символ."
-
#. AKwMq
#: bulletandposition.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/simpress/02.po b/source/bg/helpcontent2/source/text/simpress/02.po
index f42e8c1f70e..8b06be4f8d9 100644
--- a/source/bg/helpcontent2/source/text/simpress/02.po
+++ b/source/bg/helpcontent2/source/text/simpress/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-27 12:59+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-05-30 21:08+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textsimpress02/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.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1557754620.000000\n"
#. AiACn
@@ -4543,14 +4543,14 @@ msgctxt ""
msgid "<link href=\"text/shared/01/04150100.xhp\">OLE Object</link>"
msgstr "<link href=\"text/shared/01/04150100.xhp\">OLE обект</link>"
-#. Sy8hn
+#. yeRNc
#: 10120000.xhp
msgctxt ""
"10120000.xhp\n"
"tit\n"
"help.text"
-msgid "Arrows"
-msgstr "Стрелки"
+msgid "Lines and Arrows"
+msgstr ""
#. MYZ6p
#: 10120000.xhp
@@ -4561,23 +4561,23 @@ msgctxt ""
msgid "<bookmark_value>lines;inserting</bookmark_value><bookmark_value>arrows; inserting</bookmark_value><bookmark_value>inserting; lines</bookmark_value><bookmark_value>inserting; arrows</bookmark_value><bookmark_value>dimension lines; drawing</bookmark_value>"
msgstr "<bookmark_value>линии;вмъкване</bookmark_value><bookmark_value>стрелки; вмъкване</bookmark_value><bookmark_value>вмъкване; линии</bookmark_value><bookmark_value>вмъкване; стрелки</bookmark_value><bookmark_value>размерни линии; чертане</bookmark_value>"
-#. JFM62
+#. BGAmB
#: 10120000.xhp
msgctxt ""
"10120000.xhp\n"
"hd_id3145799\n"
"help.text"
-msgid "<link href=\"text/simpress/02/10120000.xhp\">Arrows</link>"
-msgstr "<link href=\"text/simpress/02/10120000.xhp\">Стрелки</link>"
+msgid "<variable id=\"lines_and_arrows_h1\"><link href=\"text/simpress/02/10120000.xhp\">Lines and Arrows</link></variable>"
+msgstr ""
-#. dVNDG
+#. 4zGbe
#: 10120000.xhp
msgctxt ""
"10120000.xhp\n"
"par_id3145790\n"
"help.text"
-msgid "<ahelp hid=\".uno:ArrowsToolbox\">Open the <emph>Arrows</emph> toolbar, where you can add straight lines, lines with arrows, and dimension lines to the current slide or page.</ahelp>"
-msgstr "<ahelp hid=\".uno:ArrowsToolbox\">Отваря лентата <emph>Стрелки</emph>, чрез която можете да добавяте прави линии, линии със стрелки и размерни линии към текущия кадър или страница.</ahelp>"
+msgid "<ahelp hid=\".uno:ArrowsToolbox\">Open the <variable id=\"lines_and_arrows_menu\"><menuitem>Lines and Arrows</menuitem></variable> toolbar, where you can add straight lines, lines with arrows, and dimension lines to the current slide or page.</ahelp>"
+msgstr ""
#. dJyBN
#: 10120000.xhp
diff --git a/source/bg/officecfg/registry/data/org/openoffice/Office/UI.po b/source/bg/officecfg/registry/data/org/openoffice/Office/UI.po
index 99b4ed45668..b06a6b43d1e 100644
--- a/source/bg/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/bg/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-13 12:37+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-05-14 16:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/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: 1564897305.000000\n"
#. W5ukN
@@ -30138,15 +30138,15 @@ msgctxt ""
msgid "Columns"
msgstr "Колони"
-#. DqpFK
+#. oziQM
#: Sidebar.xcu
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.QuickFindPanel\n"
"Title\n"
"value.text"
-msgid "QuickFind"
-msgstr "Бързо търсене"
+msgid "Quick Find"
+msgstr ""
#. CDJWW
#: StartModuleWindowState.xcu
diff --git a/source/bg/sc/messages.po b/source/bg/sc/messages.po
index 55090eaafe5..0ad1194571e 100644
--- a/source/bg/sc/messages.po
+++ b/source/bg/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-05-24 14:55+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/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: 1562424086.000000\n"
#. kBovX
@@ -23174,11 +23174,11 @@ msgctxt "drawtemplatedialog|standard"
msgid "_Standard"
msgstr "Стандартно"
-#. jyFCi
+#. Dnnbp
#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
msgctxt "drawtemplatedialog|organizer"
-msgid "Organizer"
-msgstr "Организатор"
+msgid "General"
+msgstr ""
#. qSfk8
#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
@@ -28121,11 +28121,11 @@ msgctxt "pagetemplatedialog|PageTemplateDialog"
msgid "Page Style"
msgstr "Стил за страници"
-#. D22J5
+#. F6ehW
#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
msgctxt "pagetemplatedialog|organizer"
-msgid "Organizer"
-msgstr "Организатор"
+msgid "General"
+msgstr ""
#. CbW7A
#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
@@ -28199,11 +28199,11 @@ msgctxt "paratemplatedialog|ParaTemplateDialog"
msgid "Cell Style"
msgstr "Стил за клетки"
-#. AGL7z
+#. EMrke
#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
msgctxt "paratemplatedialog|organizer"
-msgid "Organizer"
-msgstr "Организатор"
+msgid "General"
+msgstr ""
#. asnEd
#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
diff --git a/source/bg/scp2/source/ooo.po b/source/bg/scp2/source/ooo.po
index 41e3ec24106..dff1f50b713 100644
--- a/source/bg/scp2/source/ooo.po
+++ b/source/bg/scp2/source/ooo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-01-10 15:11+0100\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-01-20 01:45+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/scp2sourceooo/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: 1558861792.000000\n"
#. CYBGJ
@@ -2212,6 +2212,24 @@ msgctxt ""
msgid "Installs the Spanish user interface"
msgstr "Инсталира потребителски интерфейс на испански"
+#. NreEY
+#: module_langpack.ulf
+msgctxt ""
+"module_langpack.ulf\n"
+"STR_NAME_MODULE_LANGPACK_SUN\n"
+"LngText.text"
+msgid "Sundanese"
+msgstr ""
+
+#. pa3r3
+#: module_langpack.ulf
+msgctxt ""
+"module_langpack.ulf\n"
+"STR_DESC_MODULE_LANGPACK_SUN\n"
+"LngText.text"
+msgid "Installs the Sundanese user interface"
+msgstr ""
+
#. zAWhn
#: module_langpack.ulf
msgctxt ""
diff --git a/source/bg/sd/messages.po b/source/bg/sd/messages.po
index e9ad8378691..d5b6ec6f329 100644
--- a/source/bg/sd/messages.po
+++ b/source/bg/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-13 12:37+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-04-22 01:45+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/bg/>\n"
@@ -9557,11 +9557,11 @@ msgctxt "templatedialog|standard"
msgid "_Standard"
msgstr "_Стандартен"
-#. HsXnQ
+#. BXMVx
#: sd/uiconfig/simpress/ui/templatedialog.ui:126
msgctxt "templatedialog|organizer"
-msgid "Organizer"
-msgstr "Организатор"
+msgid "General"
+msgstr ""
#. 5d7Zo
#: sd/uiconfig/simpress/ui/templatedialog.ui:149
diff --git a/source/bg/sfx2/messages.po b/source/bg/sfx2/messages.po
index abf067dadb2..623a46cba9d 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: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-05-24 01:45+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.3.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1559599623.000000\n"
#. bHbFE
@@ -3017,152 +3017,110 @@ msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Затваряне на страничната лента"
-#. pxEPn
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:18
-msgctxt "descriptioninfopage|label27"
-msgid "_Title:"
-msgstr "Заглавие:"
-
#. HqzQo
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:32
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:18
msgctxt "descriptioninfopage|label28"
msgid "_Subject:"
msgstr "Тема:"
#. gEGPn
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:46
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:32
msgctxt "descriptioninfopage|label29"
msgid "_Keywords:"
msgstr "Ключови думи:"
-#. FXZzx
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:61
-msgctxt "descriptioninfopage|label31"
-msgid "Co_ntributor:"
-msgstr "Сътрудник:"
-
-#. eKsAC
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:76
-msgctxt "descriptioninfopage|label32"
-msgid "Co_verage:"
-msgstr "Обхват:"
-
-#. Wtpt7
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:91
-msgctxt "descriptioninfopage|label37"
-msgid "_Identifier:"
-msgstr "Идентификатор:"
-
-#. 73G3F
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:106
-msgctxt "descriptioninfopage|label39"
-msgid "_Publisher:"
-msgstr "Издател:"
-
-#. Axu5g
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:121
-msgctxt "descriptioninfopage|label40"
-msgid "R_elation:"
-msgstr "Връзка:"
-
-#. AGDpc
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:136
-msgctxt "descriptioninfopage|label41"
-msgid "Ri_ghts:"
-msgstr "Права:"
-
-#. eK4rF
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:151
-msgctxt "descriptioninfopage|label42"
-msgid "So_urce:"
-msgstr "Източник:"
-
-#. RFBPC
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:166
-msgctxt "descriptioninfopage|label45"
-msgid "T_ype:"
-msgstr "Тип:"
-
#. Nayo4
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:181
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:47
msgctxt "descriptioninfopage|label30"
msgid "_Comments:"
msgstr "Коментари:"
#. qw238
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:199
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:65
msgctxt "descriptioninfopage|extended_tip|title"
msgid "Enter a title for the document."
msgstr "Въведете заглавие за документа."
#. rvZHi
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:216
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:82
msgctxt "descriptioninfopage|extended_tip|subject"
msgid "Enter a subject for the document. You can use a subject to group documents with similar contents."
msgstr "Въведете тема на документа. Можете да ползвате темата, за да групирате документи със сходно съдържание."
#. FoxGh
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:233
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:99
msgctxt "descriptioninfopage|extended_tip|keywords"
msgid "Enter the words that you want to use to index the content of your document. Keywords must be separated by commas. A keyword can contain white space characters or semicolons."
msgstr "Въведете думите, които желаете да ползвате за индексиране съдържанието на документа. Ключовите думи трябва да са разделени със запетаи и могат да съдържат интервали или точки и запетаи."
#. 64GNQ
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:250
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:116
msgctxt "descriptioninfopage|extended_tip|contributor"
msgid "Enter the names of the people, organizations, or other entities that have made contributions to the document."
msgstr "Въведете имената на хората, организациите или други страни, които имат принос към документа."
-#. ECAfA
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:267
-msgctxt "descriptioninfopage|extended_tip|coverage"
-msgid "Enter the time, place, or jurisdiction that the document is relevant to."
-msgstr "Въведете времето, мястото или юрисдикцията, за която се отнася документът."
-
-#. EGix4
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:284
-msgctxt "descriptioninfopage|extended_tip|identifier"
-msgid "Enter a unique and unambiguous identifier for the document."
-msgstr "Въведете уникален и недвусмислен идентификатор за документа."
-
-#. FQphA
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:301
-msgctxt "descriptioninfopage|extended_tip|publisher"
-msgid "Enter the name of the entity that is making the document available."
-msgstr "Въведете името на организацията, която предоставя документа."
-
-#. n8gwE
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:318
-msgctxt "descriptioninfopage|extended_tip|relation"
-msgid "Enter information about a resource related to the document."
-msgstr "Въведете информация за ресурс, свързан с документа."
-
-#. ZiijJ
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:335
-msgctxt "descriptioninfopage|extended_tip|rights"
-msgid "Enter information about intellectual property rights associated with the document."
-msgstr "Въведете информация за интелектуална собственост, свързана с документа."
-
-#. Nze95
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:352
-msgctxt "descriptioninfopage|extended_tip|source"
-msgid "Enter information about other resources from which the document is derived."
-msgstr "Въведете информация за други ресурси, от които е производен документът."
-
-#. UEyYw
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:369
-msgctxt "descriptioninfopage|extended_tip|type"
-msgid "Enter information about the category or format of the document."
-msgstr "Въведете информация за категорията или форма̀та на документа."
-
#. bo2q7
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:393
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:140
msgctxt "descriptioninfopage|extended_tip|comments"
msgid "Enter comments to help identify the document."
msgstr "Въведете коментари, улесняващи идентифицирането на документа."
+#. pxEPn
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:155
+msgctxt "descriptioninfopage|label27"
+msgid "_Title:"
+msgstr "Заглавие:"
+
+#. x4CGE
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:170
+msgctxt "descriptioninfopage|type_contributor"
+msgid "Contributor"
+msgstr ""
+
+#. AGXmA
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:171
+msgctxt "descriptioninfopage|type_coverage"
+msgid "Coverage"
+msgstr ""
+
+#. FDnBu
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:172
+msgctxt "descriptioninfopage|type_identifier"
+msgid "Identifier"
+msgstr ""
+
+#. iTZFA
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:173
+msgctxt "descriptioninfopage|type_publisher"
+msgid "Publisher"
+msgstr ""
+
+#. c5fHP
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:174
+msgctxt "descriptioninfopage|type_relation"
+msgid "Relation"
+msgstr ""
+
+#. FaGa4
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:175
+msgctxt "descriptioninfopage|type_rights"
+msgid "Rights"
+msgstr ""
+
+#. yDvSu
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:176
+msgctxt "descriptioninfopage|type_source"
+msgid "Source"
+msgstr ""
+
+#. 25AxF
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:177
+msgctxt "descriptioninfopage|type_types"
+msgid "Type"
+msgstr ""
+
#. sGW3Z
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:406
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:187
msgctxt "descriptioninfopage|extended_tip|DescriptionInfoPage"
msgid "Contains descriptive information about the document."
msgstr "Съдържа описателна информация за документа."
@@ -3422,85 +3380,85 @@ msgid "_Apply user data"
msgstr "_Прилагане на потребителски данни"
#. JFxmP
-#: sfx2/uiconfig/ui/documentinfopage.ui:197
+#: sfx2/uiconfig/ui/documentinfopage.ui:198
msgctxt "documentinfopage|reset"
msgid "Reset Properties"
msgstr "Нулиране на свойствата"
#. HrN2U
-#: sfx2/uiconfig/ui/documentinfopage.ui:204
+#: sfx2/uiconfig/ui/documentinfopage.ui:205
msgctxt "documentinfopage|extended_tip|reset"
msgid "Resets the editing time to zero, the creation date to the current date and time, and the version number to 1. The modification and printing dates are also deleted."
msgstr "Нулира времето на редактиране, задава текущата дата и час като дата на създаване и променя номера на версия на 1. Датите на промяна и отпечатване се изтриват."
#. qeWvU
-#: sfx2/uiconfig/ui/documentinfopage.ui:215
+#: sfx2/uiconfig/ui/documentinfopage.ui:216
msgctxt "documentinfopage|signature"
msgid "Di_gital Signatures..."
msgstr "Цифрови подписи..."
#. rEEgJ
-#: sfx2/uiconfig/ui/documentinfopage.ui:234
+#: sfx2/uiconfig/ui/documentinfopage.ui:235
msgctxt "documentinfopage|label11"
msgid "_Size:"
msgstr "_Размер:"
#. WNFYB
-#: sfx2/uiconfig/ui/documentinfopage.ui:247
+#: sfx2/uiconfig/ui/documentinfopage.ui:248
msgctxt "documentinfopage|showsize"
msgid "unknown"
msgstr "неизвестно"
#. EgtLE
-#: sfx2/uiconfig/ui/documentinfopage.ui:262
+#: sfx2/uiconfig/ui/documentinfopage.ui:263
msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "_Местоположение:"
#. 9xhwo
-#: sfx2/uiconfig/ui/documentinfopage.ui:276
+#: sfx2/uiconfig/ui/documentinfopage.ui:277
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "_Тип:"
#. ZLmAo
-#: sfx2/uiconfig/ui/documentinfopage.ui:299
+#: sfx2/uiconfig/ui/documentinfopage.ui:300
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "_Смяна на паролата"
#. oqAZE
-#: sfx2/uiconfig/ui/documentinfopage.ui:317
+#: sfx2/uiconfig/ui/documentinfopage.ui:318
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Шаблон:"
#. 5pXPV
-#: sfx2/uiconfig/ui/documentinfopage.ui:366
+#: sfx2/uiconfig/ui/documentinfopage.ui:367
msgctxt "documentinfopage|extended_tip|nameed"
msgid "Displays the file name."
msgstr "Показва името на файла."
#. LCDUj
-#: sfx2/uiconfig/ui/documentinfopage.ui:397
+#: sfx2/uiconfig/ui/documentinfopage.ui:398
msgctxt "documentinfopage|thumbnailsavecb"
msgid "Save preview image with this document"
msgstr "Записване на изображение – мостра с документа"
#. 6bF5w
-#: sfx2/uiconfig/ui/documentinfopage.ui:416
+#: sfx2/uiconfig/ui/documentinfopage.ui:419
msgctxt "documentinfopage|image-preferred-dpi-checkbutton"
msgid "Preferred resolution for images:"
msgstr "Предпочитана разд. способност за изображения:"
#. pukYD
-#: sfx2/uiconfig/ui/documentinfopage.ui:466
+#: sfx2/uiconfig/ui/documentinfopage.ui:467
msgctxt "documentinfopage|image-preferred-ppi-unit"
msgid "ppi"
msgstr "пкс/инч"
#. VWjRu
-#: sfx2/uiconfig/ui/documentinfopage.ui:500
+#: sfx2/uiconfig/ui/documentinfopage.ui:508
msgctxt "documentinfopage|extended_tip|DocumentInfoPage"
msgid "Contains basic information about the current file."
msgstr "Съдържа основна информация относно текущия файл."
diff --git a/source/bg/sw/messages.po b/source/bg/sw/messages.po
index e334f4cedb8..6f1aa731c91 100644
--- a/source/bg/sw/messages.po
+++ b/source/bg/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2024-05-14 16:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/bg/>\n"
@@ -15488,157 +15488,157 @@ msgid "This is where you insert the references or referenced fields into the cur
msgstr "От тук се вмъкват обръщения или полета за обръщения в текущия документ. Обръщенията са полета за обръщения в същия документ или във под документи на главния документ."
#. jXhPb
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:71
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:73
msgctxt "fldvarpage|nameft"
msgid "Na_me:"
msgstr "Име:"
#. juXJz
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:89
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:91
msgctxt "fldvarpage|extended_tip|name"
msgid "Type the name of the user-defined field to create."
msgstr "Въведете името на създаваното потребителско поле."
#. mA2Cx
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:105
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:107
msgctxt "fldvarpage|valueft"
msgid "_Value:"
msgstr "Стойност:"
#. onRpf
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:130
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:132
msgctxt "fldvarpage|extended_tip|value"
msgid "Enter the contents to add to a user-defined field."
msgstr "Въведете съдържанието, което да се добави към потребителското поле."
#. BLiKH
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:154
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:156
msgctxt "fldvarpage|apply|tooltip_text"
msgid "Apply"
msgstr "Прилагане"
#. iLGxP
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:160
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:162
msgctxt "fldvarpage|extended_tip|apply"
msgid "Adds the user-defined field to the Select list."
msgstr "Прибавя потребителското поле към списъка Избор."
#. GKfDe
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:174
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:176
msgctxt "fldvarpage|delete|tooltip_text"
msgid "Delete"
msgstr "Изтриване"
#. bGYju
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:180
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:182
msgctxt "fldvarpage|extended_tip|delete"
msgid "Removes the user-defined field from the select list. You can only remove fields that are not used in the current document."
msgstr "Премахва потребителското поле от списъка. Могат да се изтриват само неизползвани в текущия документ полета."
#. EMeve
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:246
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:248
msgctxt "fldvarpage|extended_tip|type"
msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Select list, and then click Insert."
msgstr "Показва наличните типове полета. За да добавите поле в документа, посочете тип полета, изберете поле от списъка Избор и натиснете Вмъкване."
#. MYGxL
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:257
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:259
msgctxt "fldvarpage|label1"
msgid "_Type"
msgstr "_Тип"
#. YfUrq
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:312
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:314
msgctxt "fldvarpage|extended_tip|select"
msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, and then click Insert."
msgstr "Показва наличните полета за типа поле, избран в списъка „Тип“. За да вмъкнете поле, щракнете върху него, после щракнете върху „Вмъкване“."
#. JFbpp
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:323
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:325
msgctxt "fldvarpage|label2"
msgid "_Select"
msgstr "Избор"
#. eLoJ7
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:386
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:388
msgctxt "fldvarpage|extended_tip|numformat"
msgid "Click the format to apply to the selected field, or click \"Additional formats\" to define a custom format."
msgstr "Изберете формата, който искате да приложите върху избраното поле, или щракнете върху „Допълнителни формати“, за да зададете формат по избор."
#. bAzUU
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:431
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:433
msgctxt "fldvarpage|extended_tip|format"
msgid "In the Format list, define if the value is inserted as text or as number."
msgstr "В списъка „Формат“ укажете дали стойността да се вмъкне като текст, или като число."
#. qPpKb
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:445
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:447
msgctxt "fldvarpage|invisible"
msgid "Invisi_ble"
msgstr "Нев_идимо"
#. 4SBL9
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:453
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:455
msgctxt "fldvarpage|extended_tip|invisible"
msgid "Hides the field contents in the document."
msgstr "Скрива съдържанието на полето в документа."
#. jUrib
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:484
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:486
msgctxt "fldvarpage|label5"
msgid "_Up to level:"
msgstr "До ниво:"
#. uXVGk
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:497
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:499
msgctxt "fldvarpage|separatorft"
msgid "Se_parator:"
msgstr "Разделител:"
#. xWPdj
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:511
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:513
msgctxt "fldvarpage|level|tooltip_text"
msgid "Choose heading number to prepend to displayed field, where the number comes from the first prior heading whose outline level is equal to or less than the selected outline level. If [None] is selected, no heading number is displayed."
msgstr "Изберете номер на заглавие, който да бъде поставен преди показаното поле, като номерът се взема от първото предходно заглавие, чието ниво в плана е равно на или по-малко от избраното ниво. Ако е избрано [Няма], не се показва номер на заглавие."
#. B2VKZ
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:513
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:515
msgctxt "fldvarpage|level"
msgid "[None]"
msgstr "[Няма]"
#. 3eiSX
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:517
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:519
msgctxt "fldvarpage|extended_tip|level"
msgid "Choose heading number to prepend to displayed field, where the number comes from the first prior heading whose outline level is equal to or less than the selected outline level. For example, select “2” to use the heading number of the first prior heading that has outline level 2 or less. If “None” is selected, no heading number is displayed. To use this option, heading numbers must be enabled. Use “Tools - Heading Numbering”."
msgstr "Изберете номер на заглавие, който да бъде поставен преди показаното поле, като номерът се взема от първото предходно заглавие, чието ниво в плана е равно на или по-малко от избраното ниво. Например изберете „2“, за да се използва номерът на първото предходно заглавие, което има ниво 2 или по-малко. Ако е избрано [Няма], не се показва номер на заглавие. За да използвате тази настройка, трябва да са активирани номерата на заглавия. Използвайте „Инструменти - Номерация на заглавия“."
#. Bnsut
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:530
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:532
msgctxt "fldvarpage|separator|tooltip_text"
msgid "Enter the character to use as a separator between the heading number and the field number."
msgstr "Въведете знака, който да се използва като разделител между номера на заглавие и номера на поле."
#. ECBav
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:533
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:535
msgctxt "fldvarpage|separator"
msgid "."
msgstr "."
#. 3dC3P
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:537
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:539
msgctxt "fldvarpage|extended_tip|separator"
msgid "Enter the character to use as a separator between the heading number and the field number."
msgstr "Въведете знака, който да се използва като разделител между номера на заглавие и номера на поле."
#. GgDBN
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:552
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:554
msgctxt "fldvarpage|label4"
msgid "With Heading Number"
msgstr "С номер на заглавие"
#. WRjtn
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:573
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:575
msgctxt "fldvarpage|label3"
msgid "_Format"
msgstr "Формат"
@@ -21223,284 +21223,278 @@ msgctxt "navigatorcontextmenu|STR_DEMOTE_LEVEL"
msgid "Demote Outline Level"
msgstr "Понижаване на ниво от плана"
-#. tukRq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:105
-msgctxt "navigatorcontextmenu|STR_REMOVE_INDEX"
-msgid "_Remove Index"
-msgstr "Премахване на указател"
-
#. C4355
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:113
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:105
msgctxt "navigatorcontextmenu|STR_UPDATE"
msgid "_Update"
msgstr "Обновяване"
#. BtCca
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:121
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:113
msgctxt "navigatorcontextmenu|STR_EDIT_ENTRY"
msgid "Edit..."
msgstr "Редактиране..."
#. BYyhD
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:129
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:121
msgctxt "navigatorcontextmenu|STR_REMOVE_TBL_PROTECTION"
msgid "_Unprotect"
msgstr "Премахване на защитата"
#. 6KWWG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:137
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:129
msgctxt "navigatorcontextmenu|STR_READONLY_IDX"
msgid "Read-_only"
msgstr "Само за четене"
#. Z46XG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:145
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:137
msgctxt "navigatorcontextmenu|STR_DELETE_TABLE"
msgid "Delete Table"
msgstr "Изтриване на таблица"
#. nWZCB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:154
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:146
msgctxt "navigatorcontextmenu|STR_DELETE_FRAME"
msgid "Delete Frame"
msgstr "Изтриване на рамка"
#. iA4dL
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:163
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:155
msgctxt "navigatorcontextmenu|STR_DELETE_IMAGE"
msgid "Delete Image"
msgstr "Изтриване на изображение"
#. PeDxb
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:172
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:164
msgctxt "navigatorcontextmenu|STR_DELETE_OLE_OBJECT"
msgid "Delete OLE object"
msgstr "Изтриване на OLE обект"
#. gGdPe
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:181
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:173
msgctxt "navigatorcontextmenu|STR_DELETE_BOOKMARK"
msgid "Delete Bookmark"
msgstr "Изтриване на показалец"
#. CYbsq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:190
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:182
msgctxt "navigatorcontextmenu|STR_DELETE_REGION"
msgid "Delete Section"
msgstr "Изтриване на раздел"
#. NzaP7
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:199
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:191
msgctxt "navigatorcontextmenu|STR_DELETE_HYPERLINK"
msgid "Delete Hyperlink"
msgstr "Изтриване на хипервръзка"
#. hNJRX
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:208
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:200
msgctxt "navigatorcontextmenu|STR_DELETE_REFERENCE"
msgid "Delete Reference"
msgstr "Изтриване на препратка"
#. LaCMh
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:216
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:208
msgctxt "navigatorcontextmenu|STR_DELETE_INDEX"
msgid "Delete Index"
msgstr "Изтриване на указател"
#. cEyZC
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:225
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:217
msgctxt "navigatorcontextmenu|STR_DELETE_COMMENT"
msgid "Delete Comment"
msgstr "Изтриване на коментар"
#. AuAjE
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:234
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:226
msgctxt "navigatorcontextmenu|STR_DELETE_DRAWING_OBJECT"
msgid "Delete Drawing object"
msgstr "Изтриване на графичен обект"
#. RhyGG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:243
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:235
msgctxt "navigatorcontextmenu|STR_DELETE_FIELD"
msgid "Delete Field"
msgstr "Изтриване на поле"
#. GGzCM
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:252
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:244
msgctxt "navigatorcontextmenu|STR_DELETE_ALL_FOOTNOTES"
msgid "Delete All Footnotes"
msgstr "Изтриване на всички бележки под линия"
#. kyGVJ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:260
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:252
msgctxt "navigatorcontextmenu|STR_DELETE_ALL_ENDNOTES"
msgid "Delete All Endnotes"
msgstr "Изтриване на всички бележки в края"
#. AZchK
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:269
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:261
msgctxt "navigatorcontextmenu|STR_DELETE_FOOTNOTE"
msgid "Delete Footnote"
msgstr "Изтриване на бележка под линия"
#. Cv2Cu
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:278
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:270
msgctxt "navigatorcontextmenu|STR_DELETE_ENDNOTE"
msgid "Delete Endnote"
msgstr "Изтриване на бележка в края"
#. CUqD5
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:287
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:279
msgctxt "navigatorcontextmenu|STR_RENAME"
msgid "_Rename..."
msgstr "Преименуване..."
#. f9jYB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:295
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:287
msgctxt "navigatorcontextmenu|STR_PROTECT_SECTION"
msgid "Protect Section"
msgstr "Защитаване на раздел"
#. MEGAM
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:303
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:295
msgctxt "navigatorcontextmenu|STR_HIDE_SECTION"
msgid "Hide Section"
msgstr "Скриване на раздел"
#. U5nAb
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:311
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:303
msgctxt "navigatorcontextmenu|STR_POSTIT_SHOW"
msgid "Show All"
msgstr "Показване - всичко"
#. E2wWp
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:319
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:311
msgctxt "navigatorcontextmenu|STR_POSTIT_HIDE"
msgid "Hide All"
msgstr "Скриване - всичко"
#. aDRke
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:327
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:319
msgctxt "navigatorcontextmenu|STR_POSTIT_DELETE"
msgid "Delete All"
msgstr "Изтриване - всичко"
#. YBipC
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:341
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:333
msgctxt "navigatorcontextmenu|STR_OUTLINE_CONTENT"
msgid "Outline Folding"
msgstr "Нагъване на плана"
#. EBK2E
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:361
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:353
msgctxt "navigatorcontextmenu|STR_OUTLINE_TRACKING"
msgid "Outline Tracking"
msgstr "Проследяване в плана"
#. fZEEr
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:375
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:367
msgctxt "navigatorcontextmenu|STR_TABLE_TRACKING"
msgid "Table Tracking"
msgstr "Проследяване на таблиците"
#. 7oCFa
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:383
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:375
msgctxt "navigatorcontextmenu|STR_SECTION_TRACKING"
msgid "Section Tracking"
msgstr "Проследяване на разделите"
#. YmjQf
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:391
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:383
msgctxt "navigatorcontextmenu|STR_FRAME_TRACKING"
msgid "Frame Tracking"
msgstr "Проследяване на рамките"
#. vhxX5
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:399
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:391
msgctxt "navigatorcontextmenu|STR_IMAGE_TRACKING"
msgid "Image Tracking"
msgstr "Проследяване на изображенията"
#. mcYqZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:407
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:399
msgctxt "navigatorcontextmenu|STR_OLE_OBJECT_TRACKING"
msgid "OLE Object Tracking"
msgstr "Проследяване на OLE обектите"
#. DRaED
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:415
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:407
msgctxt "navigatorcontextmenu|STR_BOOKMARK_TRACKING"
msgid "Bookmark Tracking"
msgstr "Проследяване на показалците"
#. vpLmh
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:423
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:415
msgctxt "navigatorcontextmenu|STR_HYPERLINK_TRACKING"
msgid "Hyperlink Tracking"
msgstr "Проследяване на хипервръзките"
#. EvBzN
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:431
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:423
msgctxt "navigatorcontextmenu|STR_REFERENCE_TRACKING"
msgid "Reference Tracking"
msgstr "Проследяване на препратките"
#. M8Bes
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:439
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:431
msgctxt "navigatorcontextmenu|STR_INDEX_TRACKING"
msgid "Index Tracking"
msgstr "Проследяване на указателите"
#. KBFwM
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:447
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:439
msgctxt "navigatorcontextmenu|STR_COMMENT_TRACKING"
msgid "Comment Tracking"
msgstr "Проследяване на коментарите"
#. oGavB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:455
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:447
msgctxt "navigatorcontextmenu|STR_DRAWING_OBJECT_TRACKING"
msgid "Drawing Object Tracking"
msgstr "Проследяване на графичните обекти"
#. w8FTW
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:463
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:455
msgctxt "navigatorcontextmenu|STR_FIELD_TRACKING"
msgid "Field Tracking"
msgstr "Проследяване на полетата"
#. BoCeZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:471
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:463
msgctxt "navigatorcontextmenu|STR_FOOTNOTE_TRACKING"
msgid "Footnote Tracking"
msgstr "Проследяване на бележките под линия"
#. QqAhu
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:479
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:471
msgctxt "navigatorcontextmenu|STR_ENDNOTE_TRACKING"
msgid "Endnote Tracking"
msgstr "Проследяване на бележките в края"
#. vBGAw
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:487
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:479
msgctxt "navigatorcontextmenu|STR_SORT_ALPHABETICALLY"
msgid "Sort Alphabetically"
msgstr "Азбучно сортиране"
#. cqtBF
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:501
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:493
msgctxt "navigatorcontextmenu|STR_OUTLINE_LEVEL"
msgid "Show Up to Outline Level"
msgstr "Показване до ниво от плана"
#. Zehx2
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:515
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:507
msgctxt "navigatorcontextmenu|STR_DISPLAY"
msgid "Display"
msgstr "Показване"
#. bgZoy
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:535
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:527
msgctxt "navigatorcontextmenu|STR_COLLAPSE_ALL_CATEGORIES"
msgid "Collapse All Categories"
msgstr "Свиване на всички категории"
@@ -27746,6 +27740,12 @@ msgctxt "selecttabledialog|extended_tip|SelectTableDialog"
msgid "Select the table that you want to use for mail merge addresses."
msgstr "Изберете таблицата, която ще използвате за адресите на циркулярните писма."
+#. RWLE7
+#: sw/uiconfig/swriter/ui/sidebarquickfind.ui:36
+msgctxt "sidebarquickfind|find"
+msgid "Find"
+msgstr ""
+
#. DSVQt
#: sw/uiconfig/swriter/ui/sidebartableedit.ui:46
msgctxt "sidebatableedit|rowheight|tooltip_text"
@@ -28868,11 +28868,11 @@ msgctxt "templatedialog1|extended_tip|reset"
msgid "Revert any changes made on the tab shown here to the settings that were present when this dialog was opened."
msgstr "Връщане на всички промени в показания тук раздел към настройките, които са присъствали при отваряне на диалога."
-#. UH8Vz
+#. Zp6EK
#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
msgctxt "templatedialog1|organizer"
-msgid "Organizer"
-msgstr "Организатор"
+msgid "General"
+msgstr ""
#. BvEuD
#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
@@ -28922,11 +28922,11 @@ msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr "Наименуване и скриване на потребителски стилове"
-#. tA5vb
+#. Tuygv
#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
msgctxt "templatedialog16|organizer"
-msgid "Organizer"
-msgstr "Организатор"
+msgid "General"
+msgstr ""
#. 7MAbD
#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
@@ -29006,11 +29006,11 @@ msgctxt "templatedialog2|TemplateDialog2"
msgid "Paragraph Style"
msgstr "Абзацен стил"
-#. 2NhWM
+#. FDfTt
#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
-msgid "Organizer"
-msgstr "Организатор"
+msgid "General"
+msgstr ""
#. G7U5N
#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
@@ -29120,11 +29120,11 @@ msgctxt "templatedialog4|TemplateDialog4"
msgid "Frame Style"
msgstr "Стил за рамки"
-#. 8dRdE
+#. wSfp8
#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
msgctxt "templatedialog4|organizer"
-msgid "Organizer"
-msgstr "Организатор"
+msgid "General"
+msgstr ""
#. Q2PQs
#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
@@ -29186,11 +29186,11 @@ msgctxt "templatedialog8|standard"
msgid "Standard"
msgstr "Стандартни"
-#. BvGbL
+#. LTNWZ
#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
msgctxt "templatedialog8|organizer"
-msgid "Organizer"
-msgstr "Организатор"
+msgid "General"
+msgstr ""
#. UbZRu
#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
diff --git a/source/bn-IN/helpcontent2/source/text/scalc/01.po b/source/bn-IN/helpcontent2/source/text/scalc/01.po
index a042b25e375..ea6f99e21c7 100644
--- a/source/bn-IN/helpcontent2/source/text/scalc/01.po
+++ b/source/bn-IN/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-27 12:59+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2020-12-31 12:36+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Bengali (India) <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/bn_IN/>\n"
@@ -54583,6 +54583,15 @@ msgctxt ""
msgid "This function ignores any text or empty cell within a data range. If you suspect wrong results from this function, look for text in the data ranges. To highlight text contents in a data range, use the <link href=\"text/scalc/01/03080000.xhp\">value highlighting</link> feature."
msgstr ""
+#. DB6XT
+#: common_func.xhp
+msgctxt ""
+"common_func.xhp\n"
+"par_id431716730587722\n"
+"help.text"
+msgid "Any of the optional arguments can be omitted. An optional argument is required to be preceded by the preceding separators."
+msgstr ""
+
#. GAPGX
#: common_func_workdaysintl.xhp
msgctxt ""
@@ -57148,6 +57157,15 @@ msgctxt ""
msgid "This function is always recalculated whenever a recalculation occurs."
msgstr ""
+#. fSXNw
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"par_id711715953325962\n"
+"help.text"
+msgid "The function is always <emph>case insensitive</emph>, independent from the setting of <emph>Case sensitive</emph> checkbox in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\"><menuitem>%PRODUCTNAME Calc - Calculate</menuitem></link>."
+msgstr ""
+
#. 8DbP2
#: func_aggregate.xhp
msgctxt ""
@@ -62413,22 +62431,22 @@ msgctxt ""
msgid "<variable id=\"h1\"><link href=\"text/scalc/01/func_filter.xhp\">FILTER</link></variable>"
msgstr ""
-#. nKHpG
+#. dxbQ9
#: func_filter.xhp
msgctxt ""
"func_filter.xhp\n"
"par_id771708806478128\n"
"help.text"
-msgid "Filters a data range or array based on conditions you specify."
+msgid "Filters a data range or array based on specified conditions."
msgstr ""
-#. M2JTs
+#. tuppo
#: func_filter.xhp
msgctxt ""
"func_filter.xhp\n"
"par_id211708281649651\n"
"help.text"
-msgid "FILTER(Range, Criteria, Return if empty)"
+msgid "FILTER( Range; Criteria [; Return if empty])"
msgstr ""
#. SGrA5
@@ -62449,31 +62467,31 @@ msgctxt ""
msgid "<emph>Criteria</emph>: A boolean array whose height (filtering by columns) or width (filtering by rows) is the same as the array, used to select data from the <emph>Range</emph>."
msgstr ""
-#. KjAXK
+#. ZcP2E
#: func_filter.xhp
msgctxt ""
"func_filter.xhp\n"
"par_id421709395146863\n"
"help.text"
-msgid "<emph>Return if empty</emph>: the value to return if all values in the Include array are empty (filter return nothing)."
+msgid "<emph>Result if empty</emph>: (optional) the value to return if all values in the <emph>Criteria</emph> array are empty (filter return nothing)."
msgstr ""
-#. PAajv
+#. AFtpH
#: func_filter.xhp
msgctxt ""
"func_filter.xhp\n"
"par_id21709506838932\n"
"help.text"
-msgid "<input>{=FILTER(A2:C13,A2:A13>50)}</input> returns the array {57,49,12|56,33,60|57,,} containing all grades with Maths grade above 50. Note that this is an array formula."
+msgid "<input>{=FILTER(A2:C13;A2:A13>50)}</input> returns the array containing all grades with Maths grade above 50. Note that this is an <link href=\"text/scalc/01/04060107.xhp#creating_array_formulas\">array formula</link>."
msgstr ""
-#. WhdTC
+#. METQ9
#: func_filter.xhp
msgctxt ""
"func_filter.xhp\n"
"par_id561709507935610\n"
"help.text"
-msgid "<input>{=FILTER(A2:C13,B2:B13>90,\"No results\")}</input> Returns the string \"No results\", since no grade on Physics is above 90."
+msgid "<input>{=FILTER(A2:C13;B2:B13>90;\"No results\")}</input> Returns the string \"No results\", since no grade on Physics is above 90."
msgstr ""
#. q34Yg
@@ -66940,13 +66958,13 @@ msgctxt ""
msgid "Generates an array of random numbers between two limit values."
msgstr ""
-#. 9wxNC
+#. ArGrF
#: func_randarray.xhp
msgctxt ""
"func_randarray.xhp\n"
"par_id211708281649651\n"
"help.text"
-msgid "RANDARRAY([Rows], [Columns], [Min], [Max], [Integers])"
+msgid "RANDARRAY([Rows [; Columns [; Min [; Max [; Integers] ] ] ])"
msgstr ""
#. FDbmd
@@ -67012,13 +67030,13 @@ msgctxt ""
msgid "If <emph>Rows</emph> or <emph>Columns</emph> are references to the content of other cells, the array dimensions do not change when the referenced content changes. The array formula must be deleted and re-entered."
msgstr ""
-#. ERYkg
+#. mz6p3
#: func_randarray.xhp
msgctxt ""
"func_randarray.xhp\n"
"par_id521715616457946\n"
"help.text"
-msgid "<input>{=RANDARRAY(10,4,10,50,1)}</input> returns an array of 10 rows, 4 columns with minimum value 10 and maximum value of 50 of whole numbers (integers)."
+msgid "<input>{=RANDARRAY(10;4;10;50;1)}</input> returns an array of 10 rows, 4 columns with minimum value 10 and maximum value of 50 of whole numbers (integers)."
msgstr ""
#. iGDsD
@@ -68083,13 +68101,13 @@ msgctxt ""
msgid "The array is filled from the first row to the right up to the value of <emph>Columns</emph>, and then down to the number of rows."
msgstr ""
-#. sC8E6
+#. u9vnG
#: func_sequence.xhp
msgctxt ""
"func_sequence.xhp\n"
"par_id201714595986945\n"
"help.text"
-msgid "<input>{=SEQUENCE(3,3,10,11)}</input> returns the 3-by-3 array below with an upper-right value of 10 and filling the array to the right and then downward in steps of 11."
+msgid "<input>{=SEQUENCE(3,3,10,11)}</input> returns the 3-by-3 array below with an upper-left value of 10 and filling the array to the right and then downward in steps of 11."
msgstr ""
#. sNE2S
@@ -68236,49 +68254,49 @@ msgctxt ""
msgid "Enter the formula as an <link href=\"text/scalc/01/04060107.xhp\">array formula</link>."
msgstr ""
-#. LksfE
+#. DmRKh
#: func_sort.xhp
msgctxt ""
"func_sort.xhp\n"
"par_id211708281649651\n"
"help.text"
-msgid "SORT(Range [, SortIndex[, SortOrder[, ByCol]]])"
+msgid "SORT(Range [; SortIndex [; SortOrder [; ByCol] ] ])"
msgstr ""
-#. 4iAJz
+#. gmV6H
#: func_sort.xhp
msgctxt ""
"func_sort.xhp\n"
"par_id551711457515235\n"
"help.text"
-msgid "<emph>Range:</emph> Required. The range or array to sort."
+msgid "<emph>Range:</emph> the range or array to sort."
msgstr ""
-#. Epf9D
+#. WQaKY
#: func_sort.xhp
msgctxt ""
"func_sort.xhp\n"
"par_id151711457520290\n"
"help.text"
-msgid "<emph>SortIndex:</emph> Optional. The number indicating the row or column to sort by."
+msgid "<emph>SortIndex:</emph> (optional). The number indicating the row or column to sort by."
msgstr ""
-#. 2cgDj
+#. P5DGG
#: func_sort.xhp
msgctxt ""
"func_sort.xhp\n"
"par_id131711457525811\n"
"help.text"
-msgid "<emph>SortOrder:</emph> Optional. A number indicating the desired sort order; 1 for ascending order (default), -1 for descending order."
+msgid "<emph>SortOrder:</emph> (optional). A number indicating the desired sort order; 1 for ascending order (default), -1 for descending order."
msgstr ""
-#. JwCYE
+#. 5Vo8L
#: func_sort.xhp
msgctxt ""
"func_sort.xhp\n"
"par_id351711457531579\n"
"help.text"
-msgid "<emph>ByCol:</emph> Optional. A logical value indicating the desired sort direction; <emph>FALSE</emph> to sort by row (default), <emph>TRUE</emph> to sort by column."
+msgid "<emph>ByCol:</emph> (optional). A logical value indicating the desired sort direction; <emph>FALSE</emph> to sort by row (default), <emph>TRUE</emph> to sort by column."
msgstr ""
#. hDBib
@@ -68470,13 +68488,13 @@ msgctxt ""
msgid "Sorts the contents of a range or array based on the values in a corresponding range or array."
msgstr ""
-#. EUgaa
+#. 52ZFJ
#: func_sortby.xhp
msgctxt ""
"func_sortby.xhp\n"
"par_id211708281649651\n"
"help.text"
-msgid "SORTBY(Range, SortByRange1, SortOrder1[, SortByRange2, SortOrder2,[...]])"
+msgid "SORTBY(Range; SortByRange1; SortOrder1 [; SortByRange2; SortOrder2,[...] ])"
msgstr ""
#. gifyS
@@ -68488,31 +68506,31 @@ msgctxt ""
msgid "<emph>Range</emph>: The array or range to sort."
msgstr ""
-#. k3ADs
+#. i3EwL
#: func_sortby.xhp
msgctxt ""
"func_sortby.xhp\n"
"par_id291711544460323\n"
"help.text"
-msgid "<emph>SortByRange1, SortByRange2,... </emph>: Range 1, range 2,... are the arrays or ranges to sort on."
+msgid "<emph>SortByRange1, SortByRange2,... </emph>: range 1, range 2,... are the arrays or ranges to sort on."
msgstr ""
-#. FTuBa
+#. BA6NF
#: func_sortby.xhp
msgctxt ""
"func_sortby.xhp\n"
"par_id501711544465886\n"
"help.text"
-msgid "<emph>SortOrder1, SortOrder2,...</emph> : Order 1, order 2,... are the orders to use for sorting. 1 for ascending, -1 for descending. Default is ascending."
+msgid "<emph>SortOrder1, SortOrder2,...</emph> : order 1, order 2,... are the orders to use for sorting. 1 for ascending, -1 for descending. Default is ascending."
msgstr ""
-#. FA2hL
+#. jhZ65
#: func_sortby.xhp
msgctxt ""
"func_sortby.xhp\n"
"par_id131711466000482\n"
"help.text"
-msgid "<input>{=SORTBY(A2:C7,A2:A7,1,C2:C7,-1)}</input>"
+msgid "<input>{=SORTBY(A2:C7;A2:A7;1;C2:C7;-1)}</input>"
msgstr ""
#. q9cpQ
@@ -69955,15 +69973,6 @@ msgctxt ""
msgid "Returns the array of unique values from a range or array of values."
msgstr ""
-#. h3r2U
-#: func_unique.xhp
-msgctxt ""
-"func_unique.xhp\n"
-"par_id711715953325962\n"
-"help.text"
-msgid "The UNIQUE function is always case sensitive, independent from the setting of <emph>Case sensitive</emph> checkbox in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\"><menuitem>%PRODUCTNAME Calc - Calculate</menuitem></link>."
-msgstr ""
-
#. A8bJf
#: func_unique.xhp
msgctxt ""
@@ -70783,6 +70792,15 @@ msgctxt ""
msgid "System"
msgstr ""
+#. cM6zS
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"par_id901535122363436\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
#. V79BD
#: func_weeknum.xhp
msgctxt ""
@@ -71584,40 +71602,40 @@ msgctxt ""
msgid "Searches for a value in an array and returns a reference to a cell or range of cells."
msgstr ""
-#. xMTVW
+#. bywFk
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id631708282151776\n"
"help.text"
-msgid "XLOOKUP function is a modern and flexible replacement for older functions like <link href=\"text/scalc/01/04060109.xhp#Section9\">VLOOKUP</link>, <link href=\"text/scalc/01/04060109.xhp#Section17\">HLOOKUP</link>, and <link href=\"text/scalc/01/04060109.xhp#Section14\">LOOKUP</link>. XLOOKUP supports approximate and exact matching, wildcards (* ?) for partial matches, and lookups in vertical or horizontal ranges. XLOOKUP can perform a reverse search and offers a fast binary search option when working with large datasets."
+msgid "XLOOKUP function is a modern and flexible replacement for older functions like <link href=\"text/scalc/01/04060109.xhp#Section9\">VLOOKUP</link>, <link href=\"text/scalc/01/04060109.xhp#Section17\">HLOOKUP</link>, and <link href=\"text/scalc/01/04060109.xhp#Section14\">LOOKUP</link>. XLOOKUP supports approximate and exact matching, wildcards (* ?) for partial matches, and lookups in vertical or horizontal ranges. XLOOKUP can perform a reverse search and offers a fast binary search option when working with large datasets."
msgstr ""
-#. VESoP
+#. TwFcc
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id211708281649651\n"
"help.text"
-msgid "XLOOKUP(Lookup; Array; Return [; NotFound; MatchType; SearchMode ] )"
+msgid "XLOOKUP( [Lookup] ; Array ; Return [ ; [ NotFound ] [ ; [MatchType] [ ; SearchMode ] ] ] )"
msgstr ""
-#. 3zUXb
+#. WoJu6
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id861708281340704\n"
"help.text"
-msgid "<emph>Lookup</emph>: The value of any type to search for in <emph>Array</emph>. If omitted, XLOOKUP returns blank cells it finds in <emph>Array</emph>."
+msgid "<emph>Lookup</emph>: (optional) The value of any type to search for in <emph>Array</emph>. If omitted, XLOOKUP returns blank cells it finds in <emph>Array</emph>."
msgstr ""
-#. qUjAU
+#. hBE9s
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id831708281625340\n"
"help.text"
-msgid "<emph>Array</emph>: is the reference of the array or range to search."
+msgid "<emph>Array</emph>: is the reference of the array to search. Array must be a 1-dimensional array and must be contained in one sheet only."
msgstr ""
#. nWhEP
@@ -71629,175 +71647,148 @@ msgctxt ""
msgid "<emph>Return</emph>: is the reference of the array or range to return."
msgstr ""
-#. 2LnvD
+#. G4DLq
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id821708357634624\n"
"help.text"
-msgid "If <emph>Return</emph> is an array of values, the XLOOKUP function must be entered as an <link href=\"text/scalc/01/04060107.xhp#creating_array_formulas\">array formula</link>."
+msgid "If <emph>Return</emph> is a range of cells, the XLOOKUP function must be entered as an <link href=\"text/scalc/01/04060107.xhp#creating_array_formulas\">array formula</link>."
msgstr ""
-#. 3fY6K
+#. WTFGZ
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id271708281637035\n"
"help.text"
-msgid "<emph>NotFound</emph>: a text to return if the <emph>Lookup</emph> value is not found. If a valid match is not found, and <emph>NotFound</emph> is omitted, returns #N/A."
+msgid "<emph>NotFound</emph>: a text or cell content to return if the <emph>Lookup</emph> value is not found. If a valid match is not found and <emph>NotFound</emph> is omitted, the function returns the #N/A error."
msgstr ""
-#. hBDsh
+#. ruAWq
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id121708281643207\n"
"help.text"
-msgid "<emph>MatchType</emph>: Specify the match type:"
+msgid "<emph>MatchType</emph>: (optional) specifies the match type. Values can be:"
msgstr ""
-#. aCZbP
+#. go9sN
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id111708281542144\n"
"help.text"
-msgid "<emph>0</emph> - Exact match (default). If <emph>Lookup</emph> value is not found and <emph>NotFound</emph> text is omitted, then return #N/A."
+msgid "<emph>0</emph>: exact match (default). If <emph>Lookup</emph> value is not found and <emph>NotFound</emph> text is omitted, then return the #N/A error."
msgstr ""
-#. w5rBH
+#. CtG9A
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id851708281548335\n"
"help.text"
-msgid "<emph>-1</emph> - Exact match. If <emph>Lookup</emph> value is not found, then return the next smaller item."
+msgid "<emph>-1</emph>: attempt exact match. If <emph>Lookup</emph> value is not found, then return the next smaller item."
msgstr ""
-#. zQiND
+#. CpEkK
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id801708281553430\n"
"help.text"
-msgid "<emph>1</emph> - Exact match. If <emph>Lookup</emph> value is not found, then return the next larger item."
+msgid "<emph>1</emph>: attempt exact match. If <emph>Lookup</emph> value is not found, then return the next larger item."
msgstr ""
-#. 4Jxvx
+#. JJ3M2
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id881708281558005\n"
"help.text"
-msgid "<emph>2</emph> - A <link href=\"text/scalc/guide/wildcards.xhp\">wildcard</link> match where characters *, ?, and ~ have special meaning."
+msgid "<emph>2</emph>: a <link href=\"text/scalc/guide/wildcards.xhp\">wildcard</link> match where characters *, ?, and ~ have special meanings."
msgstr ""
-#. CxCof
+#. EqTBc
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id871708281607313\n"
"help.text"
-msgid "<emph>SearchMode</emph>: Specify the search mode to use:"
+msgid "<emph>SearchMode</emph>: (optional) specifies the search mode to use."
msgstr ""
-#. Lc3bp
+#. FfKjN
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id281708281579757\n"
"help.text"
-msgid "<emph>1</emph>: - Search starting at the first item (default)."
+msgid "<emph>1</emph>: returns the first occurrence starting from the first item of <emph>Array</emph> (default)."
msgstr ""
-#. HVoEm
+#. 8CD3w
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id251708281584285\n"
"help.text"
-msgid "<emph>-1</emph> - Reverse search starting at the last item."
+msgid "<emph>-1</emph>: reverse search. Returns the first occurrence starting from the last item of <emph>Array</emph>."
msgstr ""
-#. CFAD4
+#. 6aABE
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id191708281589997\n"
"help.text"
-msgid "<emph>2</emph> - Binary search that relies on <emph>Array</emph> being sorted in ascending order. If not sorted, invalid results will be returned."
+msgid "<emph>2</emph>: binary search that relies on <emph>Array</emph> being sorted in ascending order. If not sorted, invalid results will be returned."
msgstr ""
-#. mAGCX
+#. pwwij
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id561708281595885\n"
"help.text"
-msgid "<emph>-2</emph> - Binary search that relies on <emph>Array</emph> being sorted in descending order. If not sorted, invalid results will be returned."
-msgstr ""
-
-#. vD6hn
-#: func_xlookup.xhp
-msgctxt ""
-"func_xlookup.xhp\n"
-"par_id961708354814163\n"
-"help.text"
-msgid "The table below contains a glossary for translators:"
-msgstr ""
-
-#. MSv55
-#: func_xlookup.xhp
-msgctxt ""
-"func_xlookup.xhp\n"
-"par_id781708353695722\n"
-"help.text"
-msgid "<emph>English</emph>"
+msgid "<emph>-2</emph>: binary search that relies on <emph>Array</emph> being sorted in descending order. If not sorted, invalid results will be returned."
msgstr ""
-#. 5G7WA
+#. fHQrZ
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
-"par_id641708353695723\n"
+"par_id141716739193733\n"
"help.text"
-msgid "<emph>French</emph>"
+msgid "<input>{=XLOOKUP(\"Atomic Number\";A2:A4;A2:DO4)}</input> returns the array"
msgstr ""
-#. GRDeG
+#. tkRq7
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
-"par_id671708353695724\n"
+"par_id231716739652495\n"
"help.text"
-msgid "<emph>Italian</emph>"
+msgid "<input>{=XLOOKUP(\"Helium\";B1:DO1;B1:DO4)}</input> returns the array"
msgstr ""
-#. JfbWn
+#. D5tG5
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
-"par_id331708353781503\n"
+"par_id21716739329244\n"
"help.text"
-msgid "<emph>Japanese</emph>"
-msgstr ""
-
-#. CmUw2
-#: func_xlookup.xhp
-msgctxt ""
-"func_xlookup.xhp\n"
-"par_id31708356677157\n"
-"help.text"
-msgid "<input>={XLOOKUP(\"New\", A2:A4, B2:D4,\"Missing\")}</input> returns the array {\"Nouveau\",\"Nuovo\",\"新しい\"}."
+msgid "Helium"
msgstr ""
-#. Z9pX4
+#. vaCSD
#: func_xlookup.xhp
msgctxt ""
"func_xlookup.xhp\n"
"par_id671708356683379\n"
"help.text"
-msgid "<input>={XLOOKUP(\"Reload\", A2:A4, B2:D4,\"Missing\")}</input> returns the array {\"Missing\",\"Missing\",\"Missing\"}."
+msgid "<input>{=XLOOKUP(\"Kryptonite\";B1:DO1;B1:DO4;\"Unknown element\")}</input> returns the array {\"Unknown element\",\"Unknown element\",\"Unknown element\",\"Unknown element\"}."
msgstr ""
#. SzUpN
@@ -71836,22 +71827,31 @@ msgctxt ""
msgid "<variable id=\"h1\"><link href=\"text/scalc/01/func_xmatch.xhp\">XMATCH</link></variable>"
msgstr ""
-#. B9dyV
+#. 8GYav
#: func_xmatch.xhp
msgctxt ""
"func_xmatch.xhp\n"
"par_id581708279355738\n"
"help.text"
-msgid "Searches for a value in an array or range of cells and returns the relative position of the item."
+msgid "Searches for a value in a one-dimensional array and returns the relative position of the item."
+msgstr ""
+
+#. qJsbC
+#: func_xmatch.xhp
+msgctxt ""
+"func_xmatch.xhp\n"
+"par_id321716754048322\n"
+"help.text"
+msgid "XMATCH outperforms function <link href=\"text/scalc/01/04060109.xhp#Section12\">MATCH</link> as it allows searches according to the search mode."
msgstr ""
-#. MFVXB
+#. NFwz8
#: func_xmatch.xhp
msgctxt ""
"func_xmatch.xhp\n"
"par_id211708281649651\n"
"help.text"
-msgid "XMATCH(Lookup; Array [; MatchType; SearchMode ] )"
+msgid "XMATCH(Lookup; Array [; MatchType [; SearchMode ] ] )"
msgstr ""
#. NA2BM
@@ -71872,22 +71872,22 @@ msgctxt ""
msgid "<emph>Array</emph>: is the reference of the array or range to search."
msgstr ""
-#. EorAV
+#. WMXaP
#: func_xmatch.xhp
msgctxt ""
"func_xmatch.xhp\n"
-"par_id391708364611193\n"
+"par_id471716753503759\n"
"help.text"
-msgid "XMATCH outperforms function MATCH as it allows searches according to the search mode."
+msgid "<input>=XMATCH(\"Atomic Number\",A1:A4)</input> returns 3, the third line of the A1:A4 array."
msgstr ""
-#. yRpQy
+#. QTDzi
#: func_xmatch.xhp
msgctxt ""
"func_xmatch.xhp\n"
-"par_id31708356677157\n"
+"par_id581716753499133\n"
"help.text"
-msgid "<input>=XMATCH(\"Save\", A2:A4, 0, 1)</input> returns 2, the second line of the A2:A4 range."
+msgid "<input>=XMATCH(\"Li\",A2:DO2)</input> returns 4, the fourth column of the A2:DO2 array."
msgstr ""
#. 2AAX5
diff --git a/source/bn-IN/helpcontent2/source/text/scalc/guide.po b/source/bn-IN/helpcontent2/source/text/scalc/guide.po
index a3d0f0f163a..c00453a8022 100644
--- a/source/bn-IN/helpcontent2/source/text/scalc/guide.po
+++ b/source/bn-IN/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-13 12:37+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2410,14 +2410,14 @@ msgctxt ""
msgid "This method can also be used to insert a range from another sheet of the same document into the current sheet. Select the active document as source in step 4 above."
msgstr "বর্তমান পাতায় একই নথির অন্য পাতা থেকে একটি পরিসর সন্নিবেশ করাতে এই পদ্ধতিও ব্যবহার করা যাবে। উপরের ধাপ ৪ এ সক্রিয় নথিকে উৎস হিসেবে নির্বাচন করুন।"
-#. ANNjW
+#. fw7FU
#: cellreferences.xhp
msgctxt ""
"cellreferences.xhp\n"
"tit\n"
"help.text"
-msgid "Referencing a Cell in Another Document"
-msgstr "অন্য নথিতে একটি ঘর রেফারেন্স করা হচ্ছে"
+msgid "Referencing a Cell in Another Sheet"
+msgstr ""
#. FkFV9
#: cellreferences.xhp
@@ -2428,14 +2428,14 @@ msgctxt ""
msgid "<bookmark_value>sheet references</bookmark_value> <bookmark_value>references; to cells in other sheets/documents</bookmark_value> <bookmark_value>addresses; to cells in other sheets/documents</bookmark_value> <bookmark_value>cells; operating in another document</bookmark_value> <bookmark_value>documents;references</bookmark_value> <bookmark_value>cell;address</bookmark_value> <bookmark_value>address; of cell</bookmark_value>"
msgstr ""
-#. a5WVc
+#. 5EvNw
#: cellreferences.xhp
msgctxt ""
"cellreferences.xhp\n"
"hd_id3147436\n"
"help.text"
-msgid "<variable id=\"cellreferences\"><link href=\"text/scalc/guide/cellreferences.xhp\">Referencing Other Sheets</link></variable>"
-msgstr "<variable id=\"cellreferences\"><link href=\"text/scalc/guide/cellreferences.xhp\">অন্য পাতা রেফারেন্স করা হচ্ছে</link></variable>"
+msgid "<variable id=\"cellreferences\"><link href=\"text/scalc/guide/cellreferences.xhp\">Referencing a Cell in Another Sheet</link></variable>"
+msgstr ""
#. S3C6m
#: cellreferences.xhp
@@ -2626,14 +2626,14 @@ msgctxt ""
msgid "If you examine the name of the other document in this formula, you will notice that it is written as a <link href=\"text/shared/00/00000002.xhp#url\">URL</link>. This means that you can also enter a URL from the Internet."
msgstr "যদি আপনি এই সূত্রে অন্য নথির নাম সতর্কতার সাথে পরীক্ষা করে দেখেন, আপনি লক্ষ করবেন যে এটি <link href=\"text/shared/00/00000002.xhp#url\">URL</link>হিসেবে লেখা হয়েছে। এর মানে আপনি ইন্টারনেট থেকে একটি URL সন্নিবেশ করাতে পারেন।"
-#. ABuMQ
+#. jtXog
#: cellreferences_url.xhp
msgctxt ""
"cellreferences_url.xhp\n"
"tit\n"
"help.text"
-msgid "References to Other Sheets and Referencing URLs"
-msgstr "অন্য পাতায় রেফারেন্স এবং URLs রেফারেন্স করা হচ্ছে।"
+msgid "Referencing URLs in other Sheets"
+msgstr ""
#. 7ELAq
#: cellreferences_url.xhp
@@ -2644,14 +2644,14 @@ msgctxt ""
msgid "<bookmark_value>HTML; in sheet cells</bookmark_value><bookmark_value>references; URL in cells</bookmark_value><bookmark_value>cells; Internet references</bookmark_value><bookmark_value>URL; in Calc</bookmark_value>"
msgstr "<bookmark_value>HTML; in sheet cells</bookmark_value><bookmark_value>references; URL in cells</bookmark_value><bookmark_value>cells; Internet references</bookmark_value><bookmark_value>URL; in Calc</bookmark_value>"
-#. M5F2f
+#. qpmog
#: cellreferences_url.xhp
msgctxt ""
"cellreferences_url.xhp\n"
"hd_id3150441\n"
"help.text"
-msgid "<variable id=\"cellreferences_url\"><link href=\"text/scalc/guide/cellreferences_url.xhp\">Referencing URLs</link></variable>"
-msgstr "<variable id=\"cellreferences_url\"><link href=\"text/scalc/guide/cellreferences_url.xhp\">URLs রেফারেন্স করা হচ্ছে</link></variable>"
+msgid "<variable id=\"cellreferences_url\"><link href=\"text/scalc/guide/cellreferences_url.xhp\">Referencing URLs in other Sheets</link></variable>"
+msgstr ""
#. VHDGU
#: cellreferences_url.xhp
@@ -12022,13 +12022,13 @@ msgctxt ""
msgid "January"
msgstr "জানুয়ারি"
-#. GTvgG
+#. kGDze
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
"par_id3153566\n"
"help.text"
-msgid "Specify that only rows which either have the value <literal>January</literal> in the <emph>Month</emph> cells OR a value of under 160000 in the <emph>Standard</emph> cells will be displayed."
+msgid "Specify that only rows which either have the value <literal>January</literal> in the <emph>Month</emph> cells OR a value of over 160000 in the <emph>Standard</emph> cells will be displayed."
msgstr ""
#. ApUpg
diff --git a/source/bn-IN/helpcontent2/source/text/sdraw.po b/source/bn-IN/helpcontent2/source/text/sdraw.po
index 641c3c035d5..57d5858ddb2 100644
--- a/source/bn-IN/helpcontent2/source/text/sdraw.po
+++ b/source/bn-IN/helpcontent2/source/text/sdraw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-02-02 00:04+0100\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2017-10-04 10:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1024,13 +1024,13 @@ msgctxt ""
msgid "Shape"
msgstr ""
-#. C5hGB
+#. GfQCR
#: main_shape.xhp
msgctxt ""
"main_shape.xhp\n"
"hd_id381558217682354\n"
"help.text"
-msgid "<link href=\"text/sdraw/main_shape.xhp\">Shape</link>"
+msgid "<variable id=\"shape_h1\"><link href=\"text/sdraw/main_shape.xhp\">Shape</link></variable>"
msgstr ""
#. Eeyb5
diff --git a/source/bn-IN/helpcontent2/source/text/sdraw/01.po b/source/bn-IN/helpcontent2/source/text/sdraw/01.po
index ade6e05299f..f9859c628dc 100644
--- a/source/bn-IN/helpcontent2/source/text/sdraw/01.po
+++ b/source/bn-IN/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-03-04 14:25+0100\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2017-05-09 17:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -529,13 +529,13 @@ msgctxt ""
msgid "<bookmark_value>text box consolidation</bookmark_value><bookmark_value>join PDF lines;text box consolidation</bookmark_value><bookmark_value>combine text box;text box consolidation</bookmark_value><bookmark_value>combine text frames;text box consolidation</bookmark_value>"
msgstr ""
-#. naVUY
+#. oW3jP
#: consolidatetext.xhp
msgctxt ""
"consolidatetext.xhp\n"
"hd_id861623510996086\n"
"help.text"
-msgid "<link href=\"text/sdraw/01/consolidatetext.xhp\">Text Box Consolidation</link>"
+msgid "<link href=\"text/sdraw/01/consolidatetext.xhp\">Consolidate Text</link>"
msgstr ""
#. zsb7F
@@ -709,6 +709,132 @@ msgctxt ""
msgid "<ahelp hid=\".uno:DuplicatePage\" visibility=\"visible\">Inserts a copy of the current page after the current page.</ahelp>"
msgstr ""
+#. JATBB
+#: equalize_height.xhp
+msgctxt ""
+"equalize_height.xhp\n"
+"tit\n"
+"help.text"
+msgid "Equalize Height"
+msgstr ""
+
+#. YzLZ7
+#: equalize_height.xhp
+msgctxt ""
+"equalize_height.xhp\n"
+"bm_id911716062352822\n"
+"help.text"
+msgid "<bookmark_value>shape; equalize height</bookmark_value><bookmark_value>drawing object; equalize height</bookmark_value><bookmark_value>height; equalize</bookmark_value>"
+msgstr ""
+
+#. 6aFop
+#: equalize_height.xhp
+msgctxt ""
+"equalize_height.xhp\n"
+"hd_41716903489414\n"
+"help.text"
+msgid "<variable id=\"equalize_height_h1\"><link href=\"text/sdraw/01/equalize_height.xhp\">Equalize Height</link></variable>"
+msgstr ""
+
+#. jbdbE
+#: equalize_height.xhp
+msgctxt ""
+"equalize_height.xhp\n"
+"par_id03149165419149\n"
+"help.text"
+msgid "Sets the height of two or more selected objects to the height of the object selected last. <menuitem>Equalize Height</menuitem> is only available when two or more drawing objects are selected."
+msgstr ""
+
+#. cvXqr
+#: equalize_height.xhp
+msgctxt ""
+"equalize_height.xhp\n"
+"par_id27975425109289\n"
+"help.text"
+msgid "Choose <menuitem>Shape - Equalize Height</menuitem>."
+msgstr ""
+
+#. h7hJ7
+#: equalize_height.xhp
+msgctxt ""
+"equalize_height.xhp\n"
+"par_id09268594688434\n"
+"help.text"
+msgid "Choose <menuitem>Draw</menuitem>, then in the <menuitem>Draw</menuitem> dropdown choose <menuitem>Equalize Height</menuitem>."
+msgstr ""
+
+#. xDKxC
+#: equalize_height.xhp
+msgctxt ""
+"equalize_height.xhp\n"
+"par_id35381451047272\n"
+"help.text"
+msgid "Choose <menuitem>Shapes - Equalize Height</menuitem>."
+msgstr ""
+
+#. KD2Cv
+#: equalize_width.xhp
+msgctxt ""
+"equalize_width.xhp\n"
+"tit\n"
+"help.text"
+msgid "Equalize Width"
+msgstr ""
+
+#. dFStW
+#: equalize_width.xhp
+msgctxt ""
+"equalize_width.xhp\n"
+"bm_id911716062352822\n"
+"help.text"
+msgid "<bookmark_value>shape; equalize width</bookmark_value><bookmark_value>drawing object; equalize width</bookmark_value><bookmark_value>width; equalize</bookmark_value>"
+msgstr ""
+
+#. 7sBAD
+#: equalize_width.xhp
+msgctxt ""
+"equalize_width.xhp\n"
+"hd_41716903489414\n"
+"help.text"
+msgid "<variable id=\"equalize_width_h1\"><link href=\"text/sdraw/01/equalize_width.xhp\">Equalize Width</link></variable>"
+msgstr ""
+
+#. YBRGe
+#: equalize_width.xhp
+msgctxt ""
+"equalize_width.xhp\n"
+"par_id03149165419149\n"
+"help.text"
+msgid "Sets the width of two or more selected objects to the width of the object selected last. <menuitem>Equalize Width</menuitem> is only available when two or more drawing objects are selected."
+msgstr ""
+
+#. VUC74
+#: equalize_width.xhp
+msgctxt ""
+"equalize_width.xhp\n"
+"par_id27975425109289\n"
+"help.text"
+msgid "Choose <menuitem>Shape - Equalize Width</menuitem>."
+msgstr ""
+
+#. Y9hBE
+#: equalize_width.xhp
+msgctxt ""
+"equalize_width.xhp\n"
+"par_id58194124979923\n"
+"help.text"
+msgid "Choose <menuitem>Draw</menuitem>, then in the <menuitem>Draw</menuitem> dropdown choose <menuitem>Equalize Width</menuitem>."
+msgstr ""
+
+#. 3xmAx
+#: equalize_width.xhp
+msgctxt ""
+"equalize_width.xhp\n"
+"par_id35381451047272\n"
+"help.text"
+msgid "Choose <menuitem>Shapes - Equalize Width</menuitem>."
+msgstr ""
+
#. 2LJK2
#: insert_layer.xhp
msgctxt ""
diff --git a/source/bn-IN/helpcontent2/source/text/shared/01.po b/source/bn-IN/helpcontent2/source/text/shared/01.po
index de2ee276115..ce3b018f228 100644
--- a/source/bn-IN/helpcontent2/source/text/shared/01.po
+++ b/source/bn-IN/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-27 12:59+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2021-11-15 11:38+0000\n"
"Last-Translator: Shaunak Basu <basushaunak@msn.com>\n"
"Language-Team: Bengali (India) <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/bn_IN/>\n"
@@ -40201,13 +40201,22 @@ msgctxt ""
msgid "Bullets and Numbering"
msgstr ""
-#. eZAKE
+#. ePFg9
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"bm_id11420732550923\n"
+"help.text"
+msgid "<bookmark_value>bullets and numbering; settings</bookmark_value><bookmark_value>bullets and numbering; customization</bookmark_value><bookmark_value>bullets and; add</bookmark_value><bookmark_value>bullets;Impress</bookmark_value><bookmark_value>ordered list;Impress</bookmark_value><bookmark_value>unordered list;Impress</bookmark_value><bookmark_value>bullets;Draw</bookmark_value><bookmark_value>ordered list;Draw</bookmark_value><bookmark_value>unordered list;Draw</bookmark_value>"
+msgstr ""
+
+#. RDsL2
#: 06050000.xhp
msgctxt ""
"06050000.xhp\n"
"hd_id3149551\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050000.xhp\">Bullets and Numbering</link>"
+msgid "<variable id=\"bullets_and_numbering_h1\"><link href=\"text/shared/01/06050000.xhp\">Bullets and Numbering</link></variable>"
msgstr ""
#. S7psX
@@ -40462,6 +40471,15 @@ msgctxt ""
msgid "Image"
msgstr ""
+#. 2wccT
+#: 06050400.xhp
+msgctxt ""
+"06050400.xhp\n"
+"bm_id56740500219423\n"
+"help.text"
+msgid "<bookmark_value>bullets and numbering; image</bookmark_value> <bookmark_value>bullets; custom image</bookmark_value>"
+msgstr ""
+
#. CwjBg
#: 06050400.xhp
msgctxt ""
@@ -40480,58 +40498,58 @@ msgctxt ""
msgid "<ahelp hid=\".\">Displays the different graphics that you can use as bullets in an unordered list.</ahelp>"
msgstr ""
-#. yDHf2
+#. DSPTL
#: 06050400.xhp
msgctxt ""
"06050400.xhp\n"
-"hd_id0611200904361573\n"
+"par_id51255442180622\n"
"help.text"
-msgid "Selection"
+msgid "Use the <link href=\"text/shared/01/06050000.xhp\"><menuitem>Customize</menuitem></link> and <link href=\"text/shared/01/06050600.xhp\"><menuitem>Position</menuitem></link> tabs to adjust the size, alignment, and position of the image."
msgstr ""
-#. wdJjw
+#. yDHf2
#: 06050400.xhp
msgctxt ""
"06050400.xhp\n"
-"par_id061120090436150\n"
+"hd_id0611200904361573\n"
"help.text"
-msgid "<ahelp hid=\".\">Click the graphics that you want to use as bullets.</ahelp>"
+msgid "Selection"
msgstr ""
-#. kzDsV
+#. wdJjw
#: 06050400.xhp
msgctxt ""
"06050400.xhp\n"
-"hd_id061120090436157\n"
+"par_id061120090436150\n"
"help.text"
-msgid "Link graphics"
+msgid "<ahelp hid=\".\">Click the graphics that you want to use as bullets.</ahelp>"
msgstr ""
-#. udZya
+#. hAnvd
#: 06050400.xhp
msgctxt ""
"06050400.xhp\n"
-"par_id0611200904361575\n"
+"hd_id45986474959229\n"
"help.text"
-msgid "<ahelp hid=\".\">If enabled, the graphics are inserted as links. If not enabled, the graphics are embedded into the document.</ahelp>"
+msgid "Add and Resize"
msgstr ""
-#. y5Mpc
+#. coZpZ
#: 06050400.xhp
msgctxt ""
"06050400.xhp\n"
-"par_id061120090437338\n"
+"par_id55772839958583\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050600.xhp\">Position tab (Bullets and Numbering dialog)</link>"
+msgid "Opens a file picker where you can select an image file to use as a bullet in an unordered list."
msgstr ""
-#. GGXd8
+#. AcFMD
#: 06050400.xhp
msgctxt ""
"06050400.xhp\n"
-"par_id0611200904373391\n"
+"par_id00797416585085\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050500.xhp\">Options tab (Bullets and Numbering dialog)</link>"
+msgid "Select an image file from the file picker and click <menuitem>Open</menuitem> to add it as a bullet style. The image is automatically resized to the width and height specified in the <link href=\"text/shared/01/06050500.xhp#bm_id3153363\"><menuitem>Customize</menuitem></link> tab."
msgstr ""
#. MZF62
@@ -40543,22 +40561,22 @@ msgctxt ""
msgid "Customize (Bullets and Numbering)"
msgstr ""
-#. QChMa
+#. SQjo9
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"bm_id4096499\n"
"help.text"
-msgid "<bookmark_value>numbering;options</bookmark_value> <bookmark_value>bullet lists; formatting options</bookmark_value> <bookmark_value>font sizes;bullets</bookmark_value>"
+msgid "<bookmark_value>numbering;options</bookmark_value> <bookmark_value>bullet lists; formatting options</bookmark_value> <bookmark_value>font sizes;bullets</bookmark_value>"
msgstr ""
-#. Roq5k
+#. e9nYq
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"hd_id3147240\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050500.xhp\">Customize</link>"
+msgid "<variable id=\"customize_h1\"><link href=\"text/shared/01/06050500.xhp\">Customize</link></variable>"
msgstr ""
#. ptL6S
diff --git a/source/bn-IN/helpcontent2/source/text/shared/02.po b/source/bn-IN/helpcontent2/source/text/shared/02.po
index 296481db020..52b0edd2477 100644
--- a/source/bn-IN/helpcontent2/source/text/shared/02.po
+++ b/source/bn-IN/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-27 12:59+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2021-11-19 15:26+0000\n"
"Last-Translator: Shaunak Basu <basushaunak@msn.com>\n"
"Language-Team: Bengali (India) <https://translations.documentfoundation.org/projects/libo_help-master/textshared02/bn_IN/>\n"
@@ -11887,14 +11887,14 @@ msgctxt ""
msgid "Rotate"
msgstr "পর্যায়ক্রমে আসা"
-#. 5uEQ4
+#. bjDyk
#: 05090000.xhp
msgctxt ""
"05090000.xhp\n"
"hd_id3154863\n"
"help.text"
-msgid "<link href=\"text/shared/02/05090000.xhp\">Rotate</link>"
-msgstr "<link href=\"text/shared/02/05090000.xhp\">পর্যায়ক্রমে আসা</link>"
+msgid "<variable id=\"rotate_h1\"><link href=\"text/shared/02/05090000.xhp\">Rotate</link></variable>"
+msgstr ""
#. ycqR8
#: 05090000.xhp
@@ -11995,14 +11995,14 @@ msgctxt ""
msgid "Alignment"
msgstr "সারিবদ্ধ করা"
-#. 5YEFv
+#. EBuE8
#: 05110000.xhp
msgctxt ""
"05110000.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "Alignment"
-msgstr "সারিবদ্ধ করা"
+msgid "<variable id=\"alignment_h1\"><link href=\"text/shared/02/05110000.xhp\">Alignment</link></variable>"
+msgstr ""
#. GiEnY
#: 05110000.xhp
diff --git a/source/bn-IN/helpcontent2/source/text/shared/menu.po b/source/bn-IN/helpcontent2/source/text/shared/menu.po
index 48b613245c7..85495349823 100644
--- a/source/bn-IN/helpcontent2/source/text/shared/menu.po
+++ b/source/bn-IN/helpcontent2/source/text/shared/menu.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-30 14:12+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2021-11-14 09:37+0000\n"
"Last-Translator: Shaunak Basu <basushaunak@msn.com>\n"
"Language-Team: Bengali (India) <https://translations.documentfoundation.org/projects/libo_help-master/textsharedmenu/bn_IN/>\n"
@@ -367,14 +367,23 @@ msgctxt ""
msgid "<ahelp hid=\".\">This submenu contains form controls like a textbox, checkbox, option button, and listbox that can be inserted into the document.</ahelp>"
msgstr "<ahelp hid=\".\">এই উপতালিকায় টেক্সটবক্স, চেকবক্স, অপশনবক্স, লিস্টবক্স জাতীয় ফর্ম নিয়ন্ত্রক আছে যা নথিতে প্রতিস্থাপিত করা যাবে.</ahelp>"
-#. qHWBR
+#. GmbEB
#: insert_shape.xhp
msgctxt ""
"insert_shape.xhp\n"
"tit\n"
"help.text"
-msgid "Shape"
-msgstr "আকার"
+msgid "Insert Shape"
+msgstr ""
+
+#. PvcFc
+#: insert_shape.xhp
+msgctxt ""
+"insert_shape.xhp\n"
+"hd_id07684081706272\n"
+"help.text"
+msgid "<variable id=\"insert_h1\"><link href=\"text/shared/menu/insert_shape.xhp\">Insert</link></variable>"
+msgstr ""
#. MHwAt
#: insert_shape.xhp
@@ -394,6 +403,15 @@ msgctxt ""
msgid "<ahelp hid=\".\">This submenu contains common shapes like a line, circle, triangle, and square, or a symbol shape like a smiley face, heart, and flower that can be inserted into the document.</ahelp>"
msgstr ""
+#. v9tGR
+#: insert_shape.xhp
+msgctxt ""
+"insert_shape.xhp\n"
+"par_id261716922857055\n"
+"help.text"
+msgid "Choose <menuitem>Shape - Insert</menuitem>."
+msgstr ""
+
#. vcXma
#: insert_shape.xhp
msgctxt ""
diff --git a/source/bn-IN/helpcontent2/source/text/simpress/01.po b/source/bn-IN/helpcontent2/source/text/simpress/01.po
index 2f49e04ff65..542c9cea90b 100644
--- a/source/bn-IN/helpcontent2/source/text/simpress/01.po
+++ b/source/bn-IN/helpcontent2/source/text/simpress/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2018-09-03 12:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -853,14 +853,14 @@ msgctxt ""
msgid "Cross-fading"
msgstr "ক্রস-ফেডিং"
-#. Wboxp
+#. ZD3eP
#: 02150000.xhp
msgctxt ""
"02150000.xhp\n"
"hd_id3148577\n"
"help.text"
-msgid "Cross-fading"
-msgstr "ক্রস-ফেডিং"
+msgid "<variable id=\"cross-fading_h1\"><link href=\"text/simpress/01/02150000.xhp\">Cross-fading</link></variable>"
+msgstr ""
#. aCYnB
#: 02150000.xhp
@@ -7918,15 +7918,6 @@ msgctxt ""
msgid "Bullet and Position"
msgstr ""
-#. mjHGa
-#: bulletandposition.xhp
-msgctxt ""
-"bulletandposition.xhp\n"
-"bm_id121623276174916\n"
-"help.text"
-msgid "<bookmark_value>bullets;Impress</bookmark_value><bookmark_value>ordered list;Impress</bookmark_value><bookmark_value>unordered list;Impress</bookmark_value><bookmark_value>bullets;Draw</bookmark_value><bookmark_value>ordered list;Draw</bookmark_value><bookmark_value>unordered list;Draw</bookmark_value>"
-msgstr ""
-
#. xAFoQ
#: bulletandposition.xhp
msgctxt ""
@@ -7954,13 +7945,13 @@ msgctxt ""
msgid "In a selected text, choose <menuitem>Bullets and Numbering</menuitem>."
msgstr ""
-#. CKDCB
+#. eq2HC
#: bulletandposition.xhp
msgctxt ""
"bulletandposition.xhp\n"
"par_id571692539528746\n"
"help.text"
-msgid "On the <menuitem>Home</menuitem> tab, long click on <menuitem>Ordered</menuitem> or <menuitem>Unordered</menuitem> list, select <menuitem>Customize</menuitem>."
+msgid "On the <switchinline select=\"appl\"><caseinline select=\"DRAW\"><menuitem>Text</menuitem></caseinline><caseinline select=\"IMPRESS\"><menuitem>Home</menuitem></caseinline></switchinline> tab, long click on <menuitem>Ordered</menuitem> or <menuitem>Unordered</menuitem> list, select <menuitem>Customize</menuitem>."
msgstr ""
#. 8ABFW
@@ -8170,15 +8161,6 @@ msgctxt ""
msgid "Keep ratio"
msgstr ""
-#. c4vEd
-#: bulletandposition.xhp
-msgctxt ""
-"bulletandposition.xhp\n"
-"par_id261623260666478\n"
-"help.text"
-msgid "Check this box to preserve the height-to-width ratio of the graphic bullet."
-msgstr ""
-
#. AKwMq
#: bulletandposition.xhp
msgctxt ""
diff --git a/source/bn-IN/helpcontent2/source/text/simpress/02.po b/source/bn-IN/helpcontent2/source/text/simpress/02.po
index 658830bc136..0e7c234a3d9 100644
--- a/source/bn-IN/helpcontent2/source/text/simpress/02.po
+++ b/source/bn-IN/helpcontent2/source/text/simpress/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-27 12:59+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2017-10-04 10:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4543,14 +4543,14 @@ msgctxt ""
msgid "<link href=\"text/shared/01/04150100.xhp\">OLE Object</link>"
msgstr "<link href=\"text/shared/01/04150100.xhp\">OLE অবজেক্টে</link>"
-#. Sy8hn
+#. yeRNc
#: 10120000.xhp
msgctxt ""
"10120000.xhp\n"
"tit\n"
"help.text"
-msgid "Arrows"
-msgstr "তীরসমূহ"
+msgid "Lines and Arrows"
+msgstr ""
#. MYZ6p
#: 10120000.xhp
@@ -4561,23 +4561,23 @@ msgctxt ""
msgid "<bookmark_value>lines;inserting</bookmark_value><bookmark_value>arrows; inserting</bookmark_value><bookmark_value>inserting; lines</bookmark_value><bookmark_value>inserting; arrows</bookmark_value><bookmark_value>dimension lines; drawing</bookmark_value>"
msgstr "<bookmark_value>lines;inserting</bookmark_value><bookmark_value>arrows; inserting</bookmark_value><bookmark_value>inserting; lines</bookmark_value><bookmark_value>inserting; arrows</bookmark_value><bookmark_value>dimension lines; drawing</bookmark_value>"
-#. JFM62
+#. BGAmB
#: 10120000.xhp
msgctxt ""
"10120000.xhp\n"
"hd_id3145799\n"
"help.text"
-msgid "<link href=\"text/simpress/02/10120000.xhp\">Arrows</link>"
-msgstr "<link href=\"text/simpress/02/10120000.xhp\">তীরসমূহ</link>"
+msgid "<variable id=\"lines_and_arrows_h1\"><link href=\"text/simpress/02/10120000.xhp\">Lines and Arrows</link></variable>"
+msgstr ""
-#. dVNDG
+#. 4zGbe
#: 10120000.xhp
msgctxt ""
"10120000.xhp\n"
"par_id3145790\n"
"help.text"
-msgid "<ahelp hid=\".uno:ArrowsToolbox\">Open the <emph>Arrows</emph> toolbar, where you can add straight lines, lines with arrows, and dimension lines to the current slide or page.</ahelp>"
-msgstr "<ahelp hid=\".uno:ArrowsToolbox\"> <emph>তীরসমূহের</emph> টুলবার খোলে, যেখানে আপনি বর্তমান স্লাইড বা পৃষ্ঠায় সোজা রেখা, তীর যুক্ত রেখা, এবং মাত্রা রেখা যুক্ত করতে পারেন।</ahelp>"
+msgid "<ahelp hid=\".uno:ArrowsToolbox\">Open the <variable id=\"lines_and_arrows_menu\"><menuitem>Lines and Arrows</menuitem></variable> toolbar, where you can add straight lines, lines with arrows, and dimension lines to the current slide or page.</ahelp>"
+msgstr ""
#. dJyBN
#: 10120000.xhp
diff --git a/source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.po b/source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.po
index 77db37d1e97..7b4ff7e5e2b 100644
--- a/source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-13 12:37+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2021-11-17 12:37+0000\n"
"Last-Translator: Shaunak Basu <basushaunak@msn.com>\n"
"Language-Team: Bengali (India) <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/bn_IN/>\n"
@@ -30497,14 +30497,14 @@ msgctxt ""
msgid "Columns"
msgstr ""
-#. DqpFK
+#. oziQM
#: Sidebar.xcu
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.QuickFindPanel\n"
"Title\n"
"value.text"
-msgid "QuickFind"
+msgid "Quick Find"
msgstr ""
#. CDJWW
diff --git a/source/bn-IN/sc/messages.po b/source/bn-IN/sc/messages.po
index a5d709425c4..facdd39e4a0 100644
--- a/source/bn-IN/sc/messages.po
+++ b/source/bn-IN/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2021-11-17 12:37+0000\n"
"Last-Translator: Shaunak Basu <basushaunak@msn.com>\n"
"Language-Team: Bengali (India) <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/bn_IN/>\n"
@@ -23633,10 +23633,10 @@ msgctxt "drawtemplatedialog|standard"
msgid "_Standard"
msgstr ""
-#. jyFCi
+#. Dnnbp
#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
msgctxt "drawtemplatedialog|organizer"
-msgid "Organizer"
+msgid "General"
msgstr ""
#. qSfk8
@@ -28677,11 +28677,11 @@ msgctxt "pagetemplatedialog|PageTemplateDialog"
msgid "Page Style"
msgstr "পৃষ্ঠার শৈলী"
-#. D22J5
+#. F6ehW
#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
msgctxt "pagetemplatedialog|organizer"
-msgid "Organizer"
-msgstr "সংগঠক"
+msgid "General"
+msgstr ""
#. CbW7A
#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
@@ -28755,11 +28755,11 @@ msgctxt "paratemplatedialog|ParaTemplateDialog"
msgid "Cell Style"
msgstr "ঘরের শৈলী"
-#. AGL7z
+#. EMrke
#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
msgctxt "paratemplatedialog|organizer"
-msgid "Organizer"
-msgstr "সংগঠক"
+msgid "General"
+msgstr ""
#. asnEd
#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
diff --git a/source/bn-IN/scp2/source/ooo.po b/source/bn-IN/scp2/source/ooo.po
index f20b44ac389..7daca516e8a 100644
--- a/source/bn-IN/scp2/source/ooo.po
+++ b/source/bn-IN/scp2/source/ooo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-01-10 15:11+0100\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2021-11-15 11:37+0000\n"
"Last-Translator: Shaunak Basu <basushaunak@msn.com>\n"
"Language-Team: Bengali (India) <https://translations.documentfoundation.org/projects/libo_ui-master/scp2sourceooo/bn_IN/>\n"
@@ -2213,6 +2213,24 @@ msgctxt ""
msgid "Installs the Spanish user interface"
msgstr "স্প্যানিশ ইউজার ইন্টারফেস ইনস্টল করতে ব্যবহৃত হয়"
+#. NreEY
+#: module_langpack.ulf
+msgctxt ""
+"module_langpack.ulf\n"
+"STR_NAME_MODULE_LANGPACK_SUN\n"
+"LngText.text"
+msgid "Sundanese"
+msgstr ""
+
+#. pa3r3
+#: module_langpack.ulf
+msgctxt ""
+"module_langpack.ulf\n"
+"STR_DESC_MODULE_LANGPACK_SUN\n"
+"LngText.text"
+msgid "Installs the Sundanese user interface"
+msgstr ""
+
#. zAWhn
#: module_langpack.ulf
msgctxt ""
diff --git a/source/bn-IN/sd/messages.po b/source/bn-IN/sd/messages.po
index 76719879430..3fe410bd42b 100644
--- a/source/bn-IN/sd/messages.po
+++ b/source/bn-IN/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-13 12:37+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2021-11-17 12:37+0000\n"
"Last-Translator: Shaunak Basu <basushaunak@msn.com>\n"
"Language-Team: Bengali (India) <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/bn_IN/>\n"
@@ -9731,11 +9731,11 @@ msgctxt "templatedialog|standard"
msgid "_Standard"
msgstr "মানক (_S)"
-#. HsXnQ
+#. BXMVx
#: sd/uiconfig/simpress/ui/templatedialog.ui:126
msgctxt "templatedialog|organizer"
-msgid "Organizer"
-msgstr "সংগঠক"
+msgid "General"
+msgstr ""
#. 5d7Zo
#: sd/uiconfig/simpress/ui/templatedialog.ui:149
diff --git a/source/bn-IN/sfx2/messages.po b/source/bn-IN/sfx2/messages.po
index 817b1760b85..626359e97d7 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: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2021-08-25 05:04+0000\n"
"Last-Translator: Shaunak Basu <basushaunak@msn.com>\n"
"Language-Team: Bengali (India) <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/bn_IN/>\n"
@@ -2994,152 +2994,110 @@ msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#. pxEPn
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:18
-msgctxt "descriptioninfopage|label27"
-msgid "_Title:"
-msgstr "শিরোনাম (_T):"
-
#. HqzQo
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:32
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:18
msgctxt "descriptioninfopage|label28"
msgid "_Subject:"
msgstr "বিষয় (_S):"
#. gEGPn
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:46
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:32
msgctxt "descriptioninfopage|label29"
msgid "_Keywords:"
msgstr "মূলশব্দ (_K):"
-#. FXZzx
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:61
-msgctxt "descriptioninfopage|label31"
-msgid "Co_ntributor:"
-msgstr ""
-
-#. eKsAC
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:76
-msgctxt "descriptioninfopage|label32"
-msgid "Co_verage:"
-msgstr ""
-
-#. Wtpt7
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:91
-msgctxt "descriptioninfopage|label37"
-msgid "_Identifier:"
-msgstr ""
-
-#. 73G3F
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:106
-msgctxt "descriptioninfopage|label39"
-msgid "_Publisher:"
-msgstr ""
-
-#. Axu5g
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:121
-msgctxt "descriptioninfopage|label40"
-msgid "R_elation:"
-msgstr ""
-
-#. AGDpc
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:136
-msgctxt "descriptioninfopage|label41"
-msgid "Ri_ghts:"
-msgstr ""
-
-#. eK4rF
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:151
-msgctxt "descriptioninfopage|label42"
-msgid "So_urce:"
-msgstr ""
-
-#. RFBPC
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:166
-msgctxt "descriptioninfopage|label45"
-msgid "T_ype:"
-msgstr ""
-
#. Nayo4
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:181
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:47
msgctxt "descriptioninfopage|label30"
msgid "_Comments:"
msgstr "মন্তব্য (_C):"
#. qw238
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:199
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:65
msgctxt "descriptioninfopage|extended_tip|title"
msgid "Enter a title for the document."
msgstr ""
#. rvZHi
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:216
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:82
msgctxt "descriptioninfopage|extended_tip|subject"
msgid "Enter a subject for the document. You can use a subject to group documents with similar contents."
msgstr ""
#. FoxGh
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:233
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:99
msgctxt "descriptioninfopage|extended_tip|keywords"
msgid "Enter the words that you want to use to index the content of your document. Keywords must be separated by commas. A keyword can contain white space characters or semicolons."
msgstr ""
#. 64GNQ
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:250
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:116
msgctxt "descriptioninfopage|extended_tip|contributor"
msgid "Enter the names of the people, organizations, or other entities that have made contributions to the document."
msgstr ""
-#. ECAfA
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:267
-msgctxt "descriptioninfopage|extended_tip|coverage"
-msgid "Enter the time, place, or jurisdiction that the document is relevant to."
+#. bo2q7
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:140
+msgctxt "descriptioninfopage|extended_tip|comments"
+msgid "Enter comments to help identify the document."
+msgstr ""
+
+#. pxEPn
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:155
+msgctxt "descriptioninfopage|label27"
+msgid "_Title:"
+msgstr "শিরোনাম (_T):"
+
+#. x4CGE
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:170
+msgctxt "descriptioninfopage|type_contributor"
+msgid "Contributor"
msgstr ""
-#. EGix4
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:284
-msgctxt "descriptioninfopage|extended_tip|identifier"
-msgid "Enter a unique and unambiguous identifier for the document."
+#. AGXmA
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:171
+msgctxt "descriptioninfopage|type_coverage"
+msgid "Coverage"
msgstr ""
-#. FQphA
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:301
-msgctxt "descriptioninfopage|extended_tip|publisher"
-msgid "Enter the name of the entity that is making the document available."
+#. FDnBu
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:172
+msgctxt "descriptioninfopage|type_identifier"
+msgid "Identifier"
msgstr ""
-#. n8gwE
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:318
-msgctxt "descriptioninfopage|extended_tip|relation"
-msgid "Enter information about a resource related to the document."
+#. iTZFA
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:173
+msgctxt "descriptioninfopage|type_publisher"
+msgid "Publisher"
msgstr ""
-#. ZiijJ
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:335
-msgctxt "descriptioninfopage|extended_tip|rights"
-msgid "Enter information about intellectual property rights associated with the document."
+#. c5fHP
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:174
+msgctxt "descriptioninfopage|type_relation"
+msgid "Relation"
msgstr ""
-#. Nze95
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:352
-msgctxt "descriptioninfopage|extended_tip|source"
-msgid "Enter information about other resources from which the document is derived."
+#. FaGa4
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:175
+msgctxt "descriptioninfopage|type_rights"
+msgid "Rights"
msgstr ""
-#. UEyYw
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:369
-msgctxt "descriptioninfopage|extended_tip|type"
-msgid "Enter information about the category or format of the document."
+#. yDvSu
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:176
+msgctxt "descriptioninfopage|type_source"
+msgid "Source"
msgstr ""
-#. bo2q7
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:393
-msgctxt "descriptioninfopage|extended_tip|comments"
-msgid "Enter comments to help identify the document."
+#. 25AxF
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:177
+msgctxt "descriptioninfopage|type_types"
+msgid "Type"
msgstr ""
#. sGW3Z
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:406
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:187
msgctxt "descriptioninfopage|extended_tip|DescriptionInfoPage"
msgid "Contains descriptive information about the document."
msgstr ""
@@ -3399,86 +3357,86 @@ msgid "_Apply user data"
msgstr "ব্যবহারকারীর ডাটা প্রয়োগ (_A)"
#. JFxmP
-#: sfx2/uiconfig/ui/documentinfopage.ui:197
+#: sfx2/uiconfig/ui/documentinfopage.ui:198
msgctxt "documentinfopage|reset"
msgid "Reset Properties"
msgstr "বৈশিষ্ট্য রিসেট করুন"
#. HrN2U
-#: sfx2/uiconfig/ui/documentinfopage.ui:204
+#: sfx2/uiconfig/ui/documentinfopage.ui:205
msgctxt "documentinfopage|extended_tip|reset"
msgid "Resets the editing time to zero, the creation date to the current date and time, and the version number to 1. The modification and printing dates are also deleted."
msgstr ""
#. qeWvU
-#: sfx2/uiconfig/ui/documentinfopage.ui:215
+#: sfx2/uiconfig/ui/documentinfopage.ui:216
#, fuzzy
msgctxt "documentinfopage|signature"
msgid "Di_gital Signatures..."
msgstr "ডিজিট্যাল স্বাক্ষর (_g)..."
#. rEEgJ
-#: sfx2/uiconfig/ui/documentinfopage.ui:234
+#: sfx2/uiconfig/ui/documentinfopage.ui:235
msgctxt "documentinfopage|label11"
msgid "_Size:"
msgstr "মাপ (_S):"
#. WNFYB
-#: sfx2/uiconfig/ui/documentinfopage.ui:247
+#: sfx2/uiconfig/ui/documentinfopage.ui:248
msgctxt "documentinfopage|showsize"
msgid "unknown"
msgstr "অজানা"
#. EgtLE
-#: sfx2/uiconfig/ui/documentinfopage.ui:262
+#: sfx2/uiconfig/ui/documentinfopage.ui:263
msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "অবস্থান (_L):"
#. 9xhwo
-#: sfx2/uiconfig/ui/documentinfopage.ui:276
+#: sfx2/uiconfig/ui/documentinfopage.ui:277
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "ধরন (_T):"
#. ZLmAo
-#: sfx2/uiconfig/ui/documentinfopage.ui:299
+#: sfx2/uiconfig/ui/documentinfopage.ui:300
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "পাসওয়ার্ড পরিবর্তন করুন (_P)"
#. oqAZE
-#: sfx2/uiconfig/ui/documentinfopage.ui:317
+#: sfx2/uiconfig/ui/documentinfopage.ui:318
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "ফর্মা:"
#. 5pXPV
-#: sfx2/uiconfig/ui/documentinfopage.ui:366
+#: sfx2/uiconfig/ui/documentinfopage.ui:367
msgctxt "documentinfopage|extended_tip|nameed"
msgid "Displays the file name."
msgstr ""
#. LCDUj
-#: sfx2/uiconfig/ui/documentinfopage.ui:397
+#: sfx2/uiconfig/ui/documentinfopage.ui:398
msgctxt "documentinfopage|thumbnailsavecb"
msgid "Save preview image with this document"
msgstr "এই নথির সাথে পূর্বরূপ ছবি সংরক্ষণ করুন"
#. 6bF5w
-#: sfx2/uiconfig/ui/documentinfopage.ui:416
+#: sfx2/uiconfig/ui/documentinfopage.ui:419
msgctxt "documentinfopage|image-preferred-dpi-checkbutton"
msgid "Preferred resolution for images:"
msgstr ""
#. pukYD
-#: sfx2/uiconfig/ui/documentinfopage.ui:466
+#: sfx2/uiconfig/ui/documentinfopage.ui:467
msgctxt "documentinfopage|image-preferred-ppi-unit"
msgid "ppi"
msgstr ""
#. VWjRu
-#: sfx2/uiconfig/ui/documentinfopage.ui:500
+#: sfx2/uiconfig/ui/documentinfopage.ui:508
msgctxt "documentinfopage|extended_tip|DocumentInfoPage"
msgid "Contains basic information about the current file."
msgstr ""
diff --git a/source/bn-IN/sw/messages.po b/source/bn-IN/sw/messages.po
index 84785ae0417..649406f676d 100644
--- a/source/bn-IN/sw/messages.po
+++ b/source/bn-IN/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-03 12:06+0200\n"
"PO-Revision-Date: 2021-11-17 12:37+0000\n"
"Last-Translator: Shaunak Basu <basushaunak@msn.com>\n"
"Language-Team: Bengali (India) <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/bn_IN/>\n"
@@ -15791,160 +15791,160 @@ msgid "This is where you insert the references or referenced fields into the cur
msgstr "এটি যেখানে আপনি বর্তমান নথির রেফারেন্স এবং রেফারেন্স ক্ষেত্র সন্নিবেশ করান। রেফারেন্স একই নথি অথবা একটি প্রধান নথির অভ্যন্তরের রেফারেন্স ক্ষেত্র। "
#. jXhPb
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:71
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:73
msgctxt "fldvarpage|nameft"
msgid "Na_me:"
msgstr ""
#. juXJz
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:89
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:91
msgctxt "fldvarpage|extended_tip|name"
msgid "Type the name of the user-defined field to create."
msgstr ""
#. mA2Cx
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:105
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:107
msgctxt "fldvarpage|valueft"
msgid "_Value:"
msgstr ""
#. onRpf
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:130
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:132
msgctxt "fldvarpage|extended_tip|value"
msgid "Enter the contents to add to a user-defined field."
msgstr ""
#. BLiKH
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:154
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:156
#, fuzzy
msgctxt "fldvarpage|apply|tooltip_text"
msgid "Apply"
msgstr "প্রয়োগ করুন"
#. iLGxP
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:160
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:162
msgctxt "fldvarpage|extended_tip|apply"
msgid "Adds the user-defined field to the Select list."
msgstr ""
#. GKfDe
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:174
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:176
msgctxt "fldvarpage|delete|tooltip_text"
msgid "Delete"
msgstr "মুছে ফেলুন"
#. bGYju
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:180
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:182
msgctxt "fldvarpage|extended_tip|delete"
msgid "Removes the user-defined field from the select list. You can only remove fields that are not used in the current document."
msgstr ""
#. EMeve
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:246
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:248
msgctxt "fldvarpage|extended_tip|type"
msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Select list, and then click Insert."
msgstr "বিদ্যমান সব ক্ষেত্র ধরন তালিকাবদ্ধ করা হয়। আপনার নথিতে একটি ক্ষেত্র যোগ করতে, একটি ক্ষেত্র ধরনে ক্লিক করুন, নির্বাচন তালিকায় একটি ক্ষেত্রে ক্লিক করুন, অতঃপর সন্নিবেশ ক্লিক করুন।"
#. MYGxL
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:257
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:259
#, fuzzy
msgctxt "fldvarpage|label1"
msgid "_Type"
msgstr "ধরন"
#. YfUrq
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:312
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:314
msgctxt "fldvarpage|extended_tip|select"
msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, and then click Insert."
msgstr "ধরন তালিকায় নির্বাচিত ক্ষেত্র ধরনের জন্য বিদ্যমান ক্ষেত্র তালিকা করুন। একটি ক্ষেত্র সন্নিবেশ করাতে, ক্ষেত্রে ক্লিক করুন, এবং এরপর সন্নিবেশ করানএ ক্লিক করুন। "
#. JFbpp
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:323
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:325
msgctxt "fldvarpage|label2"
msgid "_Select"
msgstr ""
#. eLoJ7
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:386
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:388
msgctxt "fldvarpage|extended_tip|numformat"
msgid "Click the format to apply to the selected field, or click \"Additional formats\" to define a custom format."
msgstr ""
#. bAzUU
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:431
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:433
msgctxt "fldvarpage|extended_tip|format"
msgid "In the Format list, define if the value is inserted as text or as number."
msgstr ""
#. qPpKb
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:445
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:447
#, fuzzy
msgctxt "fldvarpage|invisible"
msgid "Invisi_ble"
msgstr "অদৃশ্য"
#. 4SBL9
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:453
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:455
msgctxt "fldvarpage|extended_tip|invisible"
msgid "Hides the field contents in the document."
msgstr ""
#. jUrib
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:484
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:486
msgctxt "fldvarpage|label5"
msgid "_Up to level:"
msgstr ""
#. uXVGk
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:497
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:499
msgctxt "fldvarpage|separatorft"
msgid "Se_parator:"
msgstr ""
#. xWPdj
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:511
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:513
msgctxt "fldvarpage|level|tooltip_text"
msgid "Choose heading number to prepend to displayed field, where the number comes from the first prior heading whose outline level is equal to or less than the selected outline level. If [None] is selected, no heading number is displayed."
msgstr ""
#. B2VKZ
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:513
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:515
msgctxt "fldvarpage|level"
msgid "[None]"
msgstr ""
#. 3eiSX
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:517
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:519
msgctxt "fldvarpage|extended_tip|level"
msgid "Choose heading number to prepend to displayed field, where the number comes from the first prior heading whose outline level is equal to or less than the selected outline level. For example, select “2” to use the heading number of the first prior heading that has outline level 2 or less. If “None” is selected, no heading number is displayed. To use this option, heading numbers must be enabled. Use “Tools - Heading Numbering”."
msgstr ""
#. Bnsut
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:530
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:532
msgctxt "fldvarpage|separator|tooltip_text"
msgid "Enter the character to use as a separator between the heading number and the field number."
msgstr ""
#. ECBav
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:533
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:535
msgctxt "fldvarpage|separator"
msgid "."
msgstr ""
#. 3dC3P
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:537
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:539
msgctxt "fldvarpage|extended_tip|separator"
msgid "Enter the character to use as a separator between the heading number and the field number."
msgstr ""
#. GgDBN
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:552
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:554
msgctxt "fldvarpage|label4"
msgid "With Heading Number"
msgstr ""
#. WRjtn
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:573
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:575
msgctxt "fldvarpage|label3"
msgid "_Format"
msgstr ""
@@ -21711,284 +21711,278 @@ msgctxt "navigatorcontextmenu|STR_DEMOTE_LEVEL"
msgid "Demote Outline Level"
msgstr ""
-#. tukRq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:105
-msgctxt "navigatorcontextmenu|STR_REMOVE_INDEX"
-msgid "_Remove Index"
-msgstr ""
-
#. C4355
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:113
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:105
msgctxt "navigatorcontextmenu|STR_UPDATE"
msgid "_Update"
msgstr ""
#. BtCca
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:121
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:113
msgctxt "navigatorcontextmenu|STR_EDIT_ENTRY"
msgid "Edit..."
msgstr ""
#. BYyhD
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:129
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:121
msgctxt "navigatorcontextmenu|STR_REMOVE_TBL_PROTECTION"
msgid "_Unprotect"
msgstr ""
#. 6KWWG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:137
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:129
msgctxt "navigatorcontextmenu|STR_READONLY_IDX"
msgid "Read-_only"
msgstr ""
#. Z46XG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:145
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:137
msgctxt "navigatorcontextmenu|STR_DELETE_TABLE"
msgid "Delete Table"
msgstr ""
#. nWZCB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:154
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:146
msgctxt "navigatorcontextmenu|STR_DELETE_FRAME"
msgid "Delete Frame"
msgstr ""
#. iA4dL
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:163
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:155
msgctxt "navigatorcontextmenu|STR_DELETE_IMAGE"
msgid "Delete Image"
msgstr ""
#. PeDxb
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:172
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:164
msgctxt "navigatorcontextmenu|STR_DELETE_OLE_OBJECT"
msgid "Delete OLE object"
msgstr ""
#. gGdPe
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:181
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:173
msgctxt "navigatorcontextmenu|STR_DELETE_BOOKMARK"
msgid "Delete Bookmark"
msgstr ""
#. CYbsq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:190
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:182
msgctxt "navigatorcontextmenu|STR_DELETE_REGION"
msgid "Delete Section"
msgstr ""
#. NzaP7
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:199
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:191
msgctxt "navigatorcontextmenu|STR_DELETE_HYPERLINK"
msgid "Delete Hyperlink"
msgstr ""
#. hNJRX
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:208
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:200
msgctxt "navigatorcontextmenu|STR_DELETE_REFERENCE"
msgid "Delete Reference"
msgstr ""
#. LaCMh
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:216
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:208
msgctxt "navigatorcontextmenu|STR_DELETE_INDEX"
msgid "Delete Index"
msgstr ""
#. cEyZC
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:225
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:217
msgctxt "navigatorcontextmenu|STR_DELETE_COMMENT"
msgid "Delete Comment"
msgstr ""
#. AuAjE
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:234
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:226
msgctxt "navigatorcontextmenu|STR_DELETE_DRAWING_OBJECT"
msgid "Delete Drawing object"
msgstr ""
#. RhyGG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:243
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:235
msgctxt "navigatorcontextmenu|STR_DELETE_FIELD"
msgid "Delete Field"
msgstr ""
#. GGzCM
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:252
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:244
msgctxt "navigatorcontextmenu|STR_DELETE_ALL_FOOTNOTES"
msgid "Delete All Footnotes"
msgstr ""
#. kyGVJ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:260
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:252
msgctxt "navigatorcontextmenu|STR_DELETE_ALL_ENDNOTES"
msgid "Delete All Endnotes"
msgstr ""
#. AZchK
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:269
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:261
msgctxt "navigatorcontextmenu|STR_DELETE_FOOTNOTE"
msgid "Delete Footnote"
msgstr ""
#. Cv2Cu
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:278
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:270
msgctxt "navigatorcontextmenu|STR_DELETE_ENDNOTE"
msgid "Delete Endnote"
msgstr ""
#. CUqD5
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:287
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:279
msgctxt "navigatorcontextmenu|STR_RENAME"
msgid "_Rename..."
msgstr ""
#. f9jYB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:295
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:287
msgctxt "navigatorcontextmenu|STR_PROTECT_SECTION"
msgid "Protect Section"
msgstr ""
#. MEGAM
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:303
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:295
msgctxt "navigatorcontextmenu|STR_HIDE_SECTION"
msgid "Hide Section"
msgstr ""
#. U5nAb
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:311
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:303
msgctxt "navigatorcontextmenu|STR_POSTIT_SHOW"
msgid "Show All"
msgstr ""
#. E2wWp
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:319
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:311
msgctxt "navigatorcontextmenu|STR_POSTIT_HIDE"
msgid "Hide All"
msgstr ""
#. aDRke
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:327
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:319
msgctxt "navigatorcontextmenu|STR_POSTIT_DELETE"
msgid "Delete All"
msgstr ""
#. YBipC
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:341
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:333
msgctxt "navigatorcontextmenu|STR_OUTLINE_CONTENT"
msgid "Outline Folding"
msgstr ""
#. EBK2E
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:361
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:353
msgctxt "navigatorcontextmenu|STR_OUTLINE_TRACKING"
msgid "Outline Tracking"
msgstr ""
#. fZEEr
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:375
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:367
msgctxt "navigatorcontextmenu|STR_TABLE_TRACKING"
msgid "Table Tracking"
msgstr ""
#. 7oCFa
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:383
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:375
msgctxt "navigatorcontextmenu|STR_SECTION_TRACKING"
msgid "Section Tracking"
msgstr ""
#. YmjQf
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:391
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:383
msgctxt "navigatorcontextmenu|STR_FRAME_TRACKING"
msgid "Frame Tracking"
msgstr ""
#. vhxX5
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:399
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:391
msgctxt "navigatorcontextmenu|STR_IMAGE_TRACKING"
msgid "Image Tracking"
msgstr ""
#. mcYqZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:407
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:399
msgctxt "navigatorcontextmenu|STR_OLE_OBJECT_TRACKING"
msgid "OLE Object Tracking"
msgstr ""
#. DRaED
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:415
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:407
msgctxt "navigatorcontextmenu|STR_BOOKMARK_TRACKING"
msgid "Bookmark Tracking"
msgstr ""
#. vpLmh
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:423
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:415
msgctxt "navigatorcontextmenu|STR_HYPERLINK_TRACKING"
msgid "Hyperlink Tracking"
msgstr ""
#. EvBzN
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:431
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:423
msgctxt "navigatorcontextmenu|STR_REFERENCE_TRACKING"
msgid "Reference Tracking"
msgstr ""
#. M8Bes
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:439
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:431
msgctxt "navigatorcontextmenu|STR_INDEX_TRACKING"
msgid "Index Tracking"
msgstr ""
#. KBFwM
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:447
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:439
msgctxt "navigatorcontextmenu|STR_COMMENT_TRACKING"
msgid "Comment Tracking"
msgstr ""
#. oGavB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:455
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:447
msgctxt "navigatorcontextmenu|STR_DRAWING_OBJECT_TRACKING"
msgid "Drawing Object Tracking"
msgstr ""
#. w8FTW
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:463
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:455
msgctxt "navigatorcontextmenu|STR_FIELD_TRACKING"
msgid "Field Tracking"
msgstr ""
#. BoCeZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:471
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:463
msgctxt "navigatorcontextmenu|STR_FOOTNOTE_TRACKING"
msgid "Footnote Tracking"
msgstr ""
#. QqAhu
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:479
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:471
msgctxt "navigatorcontextmenu|STR_ENDNOTE_TRACKING"
msgid "Endnote Tracking"
msgstr ""
#. vBGAw
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:487
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:479
msgctxt "navigatorcontextmenu|STR_SORT_ALPHABETICALLY"
msgid "Sort Alphabetically"
msgstr ""
#. cqtBF
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:501
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:493
msgctxt "navigatorcontextmenu|STR_OUTLINE_LEVEL"
msgid "Show Up to Outline Level"
msgstr ""
#. Zehx2
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:515
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:507
msgctxt "navigatorcontextmenu|STR_DISPLAY"
msgid "Display"
msgstr ""
#. bgZoy
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:535
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:527
msgctxt "navigatorcontextmenu|STR_COLLAPSE_ALL_CATEGORIES"
msgid "Collapse All Categories"
msgstr ""
@@ -28398,6 +28392,12 @@ msgctxt "selecttabledialog|extended_tip|SelectTableDialog"
msgid "Select the table that you want to use for mail merge addresses."
msgstr "সারণি নির্বাচন করুন যা আপনি বার্তা একত্রিতকরণ ঠিকানার জন্য ব্যবহার করতে চান।"
+#. RWLE7
+#: sw/uiconfig/swriter/ui/sidebarquickfind.ui:36
+msgctxt "sidebarquickfind|find"
+msgid "Find"
+msgstr ""
+
#. DSVQt
#: sw/uiconfig/swriter/ui/sidebartableedit.ui:46
msgctxt "sidebatableedit|rowheight|tooltip_text"
@@ -29546,11 +29546,11 @@ msgctxt "templatedialog1|extended_tip|reset"
msgid "Revert any changes made on the tab shown here to the settings that were present when this dialog was opened."
msgstr ""
-#. UH8Vz
+#. Zp6EK
#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
msgctxt "templatedialog1|organizer"
-msgid "Organizer"
-msgstr "সংগঠক"
+msgid "General"
+msgstr ""
#. BvEuD
#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
@@ -29601,11 +29601,11 @@ msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
-#. tA5vb
+#. Tuygv
#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
msgctxt "templatedialog16|organizer"
-msgid "Organizer"
-msgstr "সংগঠক"
+msgid "General"
+msgstr ""
#. 7MAbD
#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
@@ -29688,11 +29688,11 @@ msgctxt "templatedialog2|TemplateDialog2"
msgid "Paragraph Style"
msgstr "(অনুচ্ছেদ শৈলী:"
-#. 2NhWM
+#. FDfTt
#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
-msgid "Organizer"
-msgstr "সংগঠক"
+msgid "General"
+msgstr ""
#. G7U5N
#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
@@ -29807,11 +29807,11 @@ msgctxt "templatedialog4|TemplateDialog4"
msgid "Frame Style"
msgstr "ফ্রেমের শৈলী"
-#. 8dRdE
+#. wSfp8
#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
msgctxt "templatedialog4|organizer"
-msgid "Organizer"
-msgstr "সংগঠক"
+msgid "General"
+msgstr ""
#. Q2PQs
#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
@@ -29876,11 +29876,11 @@ msgctxt "templatedialog8|standard"
msgid "Standard"
msgstr ""
-#. BvGbL
+#. LTNWZ
#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
msgctxt "templatedialog8|organizer"
-msgid "Organizer"
-msgstr "সংগঠক"
+msgid "General"
+msgstr ""
#. UbZRu
#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
diff --git a/source/bn/helpcontent2/source/text/scalc/01.po b/source/bn/helpcontent2/source/text/scalc/01.po
index 557717ccbe9..f5ac1c8b403 100644
--- a/source/bn/helpcontent2/source/text/scalc/01.po
+++ b/source/bn/helpcontent2/source/text/scalc/01.po