summaryrefslogtreecommitdiff
path: root/sfx2/source/appl/appbas.cxx
blob: 9d0e759ce5751c8ed001d6bd735a2f85751320c5 (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
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
/*************************************************************************
 *
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * Copyright 2000, 2010 Oracle and/or its affiliates.
 *
 * OpenOffice.org - a multi-platform office productivity suite
 *
 * This file is part of OpenOffice.org.
 *
 * OpenOffice.org is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License version 3
 * only, as published by the Free Software Foundation.
 *
 * OpenOffice.org is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License version 3 for more details
 * (a copy is included in the LICENSE file that accompanied this code).
 *
 * You should have received a copy of the GNU Lesser General Public License
 * version 3 along with OpenOffice.org.  If not, see
 * <http://www.openoffice.org/license.html>
 * for a copy of the LGPLv3 License.
 *
 ************************************************************************/

// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_sfx2.hxx"
#include <com/sun/star/frame/XDesktop.hpp>
#include <com/sun/star/script/XLibraryContainer.hpp>
#include <comphelper/processfactory.hxx>
#include <com/sun/star/uno/Reference.h>
#include <basic/basrdll.hxx>
#include <tools/urlobj.hxx>
#include <svl/macitem.hxx>
#include <basic/sbxfac.hxx>
#include <basic/sbx.hxx>
#include <vcl/gradient.hxx>
#include <svl/rectitem.hxx>
#include <svl/intitem.hxx>
#include <svl/eitem.hxx>
#include <basic/sbmod.hxx>
#include <svl/whiter.hxx>
#include <basic/sbmeth.hxx>
#include <basic/sbstar.hxx>
#include <vcl/wrkwin.hxx>
#include <vcl/msgbox.hxx>
#include <basic/sbuno.hxx>
#include <svtools/sfxecode.hxx>
#include <svtools/ehdl.hxx>

#include <unotools/undoopt.hxx>
#include <unotools/pathoptions.hxx>
#include <unotools/useroptions.hxx>
#include <unotools/bootstrap.hxx>

#include <sfx2/appuno.hxx>
#include <sfx2/module.hxx>
#include "arrdecl.hxx"
#include <sfx2/app.hxx>
#include "sfxtypes.hxx"
#include "sfx2/sfxresid.hxx"
#include <sfx2/msg.hxx>
#include <sfx2/msgpool.hxx>
#include <sfx2/progress.hxx>
#include <sfx2/objsh.hxx>
#include <sfx2/objitem.hxx>
#include <sfx2/viewfrm.hxx>
#include <sfx2/viewsh.hxx>
#include <sfx2/dispatch.hxx>
#include "sfx2/tplpitem.hxx"
#include "sfx2/minfitem.hxx"
#include "app.hrc"
#include <sfx2/evntconf.hxx>
#include <sfx2/request.hxx>
#include <sfx2/dinfdlg.hxx>
#include "appdata.hxx"
#include "appbas.hxx"
#include "sfx2/sfxhelp.hxx"
#include "sfx2/basmgr.hxx"
#include "sorgitm.hxx"
#include "appbaslib.hxx"
#include <basic/basicmanagerrepository.hxx>

#define ITEMID_SEARCH SID_SEARCH_ITEM

#include <svl/srchitem.hxx>
#include <vos/socket.hxx>

#define SFX_TYPEMAP
#define Selection
#include "sfxslots.hxx"

using namespace ::com::sun::star;
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::frame;
using namespace ::com::sun::star::script;

using ::basic::BasicManagerRepository;

// #ifndef STR_VERSION_ID
// #define STR_VERSION_ID 1
// #endif
// #ifndef STR_VERSION_TYPE
// #define STR_VERSION_TYPE 1
// #endif

//=========================================================================
/*ASDBG
const SfxConstant __FAR_DATA aConstants[] =
{
    SFX_USHORT_CONSTANT( "AlignBottom",         ALIGN_BOTTOM ),
    SFX_USHORT_CONSTANT( "AlignTop",            ALIGN_TOP ),
    SFX_USHORT_CONSTANT( "CharSetANSI",         CHARSET_ANSI ),
    SFX_USHORT_CONSTANT( "CharSetDontKnow",     CHARSET_DONTKNOW ),
    SFX_USHORT_CONSTANT( "CharSetIBMPC437",     CHARSET_IBMPC_437 ),
    SFX_USHORT_CONSTANT( "CharSetIBMPC850",     CHARSET_IBMPC_850 ),
    SFX_USHORT_CONSTANT( "CharSetIBMPC860",     CHARSET_IBMPC_860 ),
    SFX_USHORT_CONSTANT( "CharSetIBMPC861",     CHARSET_IBMPC_861 ),
    SFX_USHORT_CONSTANT( "CharSetIBMPC863",     CHARSET_IBMPC_863 ),
    SFX_USHORT_CONSTANT( "CharSetIBMPC865",     CHARSET_IBMPC_865 ),
    SFX_USHORT_CONSTANT( "CharSetIBMPC",        CHARSET_IBMPC ),
    SFX_USHORT_CONSTANT( "CharSetMac",          CHARSET_MAC ),
    SFX_USHORT_CONSTANT( "CharSetSymbol",       CHARSET_SYMBOL ),
    SFX_USHORT_CONSTANT( "CharSetSystem",       RTL_TEXTENCODING_UTF8 ),
    SFX_USHORT_CONSTANT( "FamilyDecorative",    FAMILY_DECORATIVE ),
    SFX_USHORT_CONSTANT( "FamilyDontknow",      FAMILY_DONTKNOW ),
    SFX_USHORT_CONSTANT( "FamilyModern",        FAMILY_MODERN ),
    SFX_USHORT_CONSTANT( "FamilyRoman",         FAMILY_ROMAN ),
    SFX_USHORT_CONSTANT( "FamilyScript",        FAMILY_SCRIPT ),
    SFX_USHORT_CONSTANT( "FamilySwiss",         FAMILY_SWISS ),
    SFX_USHORT_CONSTANT( "FamilySystem",        FAMILY_SYSTEM ),
    SFX_USHORT_CONSTANT( "GradientAxial",       GRADIENT_AXIAL ),
    SFX_USHORT_CONSTANT( "GradientElliptical",  GRADIENT_ELLIPTICAL ),
    SFX_USHORT_CONSTANT( "GradientLinear",      GRADIENT_LINEAR ),
    SFX_USHORT_CONSTANT( "GradientRadial",      GRADIENT_RADIAL ),
    SFX_USHORT_CONSTANT( "GradientRect",        GRADIENT_RECT ),
    SFX_USHORT_CONSTANT( "GradientSquare",      GRADIENT_SQUARE ),
    SFX_USHORT_CONSTANT( "ItalicNone",          ITALIC_NONE ),
    SFX_USHORT_CONSTANT( "ItalicOblique",       ITALIC_OBLIQUE ),
    SFX_USHORT_CONSTANT( "StrikeThroughDouble", STRIKEOUT_DOUBLE ),
    SFX_USHORT_CONSTANT( "StrikeThroughNone",   STRIKEOUT_NONE ),
    SFX_USHORT_CONSTANT( "StrikeThroughSingle", STRIKEOUT_SINGLE ),
    SFX_USHORT_CONSTANT( "UnderlineDotted",     UNDERLINE_DOTTED ),
    SFX_USHORT_CONSTANT( "UnderlineDouble",     UNDERLINE_DOUBLE ),
    SFX_USHORT_CONSTANT( "UnderlineNone",       UNDERLINE_NONE ),
    SFX_USHORT_CONSTANT( "UnderlineSingle",     UNDERLINE_SINGLE ),
    SFX_USHORT_CONSTANT( "UnitFoot",            FUNIT_FOOT ),
    SFX_USHORT_CONSTANT( "UnitInch",            FUNIT_INCH ),
    SFX_USHORT_CONSTANT( "UnitMile",            FUNIT_MILE ),
    SFX_USHORT_CONSTANT( "UnitPercent",         FUNIT_PERCENT ),
    SFX_USHORT_CONSTANT( "UnitPoint",           FUNIT_POINT ),
    SFX_USHORT_CONSTANT( "UnitTwip",            FUNIT_TWIP ),
    SFX_USHORT_CONSTANT( "Unit_cm",             FUNIT_CM ),
    SFX_USHORT_CONSTANT( "Unit_m",              FUNIT_M ),
    SFX_USHORT_CONSTANT( "Unit_mm",             FUNIT_MM ),
    SFX_USHORT_CONSTANT( "WeightBlack",         WEIGHT_BLACK ),
    SFX_USHORT_CONSTANT( "WeightBold",          WEIGHT_BOLD ),
    SFX_USHORT_CONSTANT( "WeightDontKnow",      WEIGHT_DONTKNOW ),
    SFX_USHORT_CONSTANT( "WeightLight",         WEIGHT_LIGHT ),
    SFX_USHORT_CONSTANT( "WeightMedium",        WEIGHT_MEDIUM ),
    SFX_USHORT_CONSTANT( "WeightNormal",        WEIGHT_NORMAL ),
    SFX_USHORT_CONSTANT( "WeightSemibold",      WEIGHT_SEMIBOLD ),
    SFX_USHORT_CONSTANT( "WeightSemilight",     WEIGHT_SEMILIGHT ),
    SFX_USHORT_CONSTANT( "WeightThin",          WEIGHT_THIN ),
    SFX_USHORT_CONSTANT( "WeightUltrabold",     WEIGHT_ULTRABOLD ),
    SFX_USHORT_CONSTANT( "WeightUltralight",    WEIGHT_ULTRALIGHT )
};
*/
//========================================================================

//------------------------------------------------------------------------
String lcl_GetVersionString(ResMgr* /*pAppData_ImplResMgr*/)
{
    ::rtl::OUString aDefault;
    String aVersion( utl::Bootstrap::getBuildIdData( aDefault ));

    if ( aVersion.Len() == 0 )
    {
        DBG_ERROR( "No BUILDID in bootstrap file found" );
    }

    aVersion.Erase( 0, aVersion.Search( ':' ) + 1 );
    aVersion.Erase( aVersion.Search( ')' ) );
    return aVersion;
}

//=========================================================================
sal_uInt16 SfxApplication::SaveBasicManager() const
{
    return 0;
}

//--------------------------------------------------------------------
sal_uInt16 SfxApplication::SaveBasicAndDialogContainer() const
{
    if ( pAppData_Impl->pBasicManager->isValid() )
        pAppData_Impl->pBasicManager->storeAllLibraries();
    return 0;
}

//--------------------------------------------------------------------

void SfxApplication::RegisterBasicConstants
(
    const char*,        // Prefix vor Konstanten-Namen
    const SfxConstant*, // Array von <SfxConstant> Instanzen
    sal_uInt16          // Anahl der Kontanten in pConsts
)

/*  [Beschreibung]

    Diese Methode meldet Konstanten beim BASIC an. Sie sollte on-demand
    (in GetSbxObject() der Applikation) gerufen werden. Das Array mu\s
    alphabetisch nach den Namen sortiert sein!

    Durch den Prefix kann Speicher gespart und das Suchen beschleunigt
    werden. Im StarOffice soll der Prefix "so" verwendet werden.


    [Beispiel]

    const SfxConstant __FAR_DATA aConstants[] =
    {
        SFX_BOOL_CONSTANT( "False", sal_False ),
        SFX_BOOL_CONSTANT( "True",  sal_True ),
    };

    ...
    SFX_APP()->RegisterBasicConstants( 0, aConstants, 2 );
    ...

*/

{
//  DBG_ASSERT( pAppData_Impl->pBasicMgr, "no basic available" );

//  pAppData_Impl->pBasicMgr->GetLib(0)->Insert(
//              new SfxConstants_Impl( pPrefix, pConsts, nCount ) );
}

//--------------------------------------------------------------------

SbxVariable* MakeVariable( StarBASIC *pBas, SbxObject *pObject,
           const char *pName, sal_uInt32 nSID, SbxDataType eType, SbxClassType eClassType )
{
    SbxVariable *pVar = pBas->Make( String::CreateFromAscii(pName), eClassType, eType ); //SbxCLASS_PROPERTY
    pVar->SetUserData( nSID );
    pVar->SetFlag( SBX_DONTSTORE );
    pObject->StartListening( pVar->GetBroadcaster() );
    return pVar;
}

//--------------------------------------------------------------------

BasicManager* SfxApplication::GetBasicManager()
{
    return BasicManagerRepository::getApplicationBasicManager( true );
}

//--------------------------------------------------------------------

Reference< XLibraryContainer > SfxApplication::GetDialogContainer()
{
    if ( !pAppData_Impl->pBasicManager->isValid() )
        GetBasicManager();
    return pAppData_Impl->pBasicManager->getLibraryContainer( SfxBasicManagerHolder::DIALOGS );
}

//--------------------------------------------------------------------

Reference< XLibraryContainer > SfxApplication::GetBasicContainer()
{
    if ( !pAppData_Impl->pBasicManager->isValid() )
        GetBasicManager();
    return pAppData_Impl->pBasicManager->getLibraryContainer( SfxBasicManagerHolder::SCRIPTS );
}

//--------------------------------------------------------------------

StarBASIC* SfxApplication::GetBasic()
{
    return GetBasicManager()->GetLib(0);
}

//-------------------------------------------------------------------------
void SfxApplication::PropExec_Impl( SfxRequest &rReq )
{
    rReq.GetArgs();
    sal_uInt16 nSID = rReq.GetSlot();
    switch ( nSID )
    {
        case SID_CREATE_BASICOBJECT:
        {
            SFX_REQUEST_ARG(rReq, pItem, SfxStringItem, nSID, sal_False);
            if ( pItem )
            {
                SbxObject* pObject = SbxBase::CreateObject( pItem->GetValue() );
                pObject->AddRef();
//(mba)                rReq.SetReturnValue( SfxObjectItem( 0, pObject ) );
                rReq.Done();
            }
            break;
        }

        case SID_DELETE_BASICOBJECT:
        {
            SFX_REQUEST_ARG(rReq, pItem, SfxObjectItem, nSID, sal_False);
            if ( pItem )
            {
//(mba)                SbxObject* pObject = pItem->GetObject();
//(mba)                pObject->ReleaseRef();
            }
            break;
        }

        case SID_ATTR_UNDO_COUNT:
        {
            SFX_REQUEST_ARG(rReq, pCountItem, SfxUInt16Item, nSID, sal_False);
            SvtUndoOptions().SetUndoCount( pCountItem->GetValue() );
            break;
        }

        case SID_WIN_VISIBLE:
        {
            break;
        }

        case SID_STATUSBARTEXT:
        {
            SFX_REQUEST_ARG(rReq, pStringItem, SfxStringItem, nSID, sal_False);
            String aText = pStringItem->GetValue();
            if ( aText.Len() )
                GetpApp()->ShowStatusText( aText );
            else
                GetpApp()->HideStatusText();
            break;
        }

        case SID_OFFICE_PRIVATE_USE:
        case SID_OFFICE_COMMERCIAL_USE:
        {
            DBG_ASSERT( sal_False, "SfxApplication::PropExec_Impl()\nSID_OFFICE_PRIVATE_USE & SID_OFFICE_COMMERCIAL_USE are obsolete!\n" );
            break;
        }

        case SID_OFFICE_CUSTOMERNUMBER:
        {
            SFX_REQUEST_ARG(rReq, pStringItem, SfxStringItem, nSID, sal_False);

            if ( pStringItem )
                SvtUserOptions().SetCustomerNumber( pStringItem->GetValue() );
            break;
        }
    }
}

//-------------------------------------------------------------------------
void SfxApplication::PropState_Impl( SfxItemSet &rSet )
{
//  SfxViewFrame *pFrame = SfxViewFrame::Current();
    SfxWhichIter aIter(rSet);
    for ( sal_uInt16 nSID = aIter.FirstWhich(); nSID; nSID = aIter.NextWhich() )
    {
        switch ( nSID )
        {
            case SID_PROGNAME:
                rSet.Put( SfxStringItem( SID_PROGNAME, GetName() ) );
                break;

            case SID_ACTIVEDOCUMENT:
                rSet.Put( SfxObjectItem( SID_ACTIVEDOCUMENT, SfxObjectShell::Current() ) );
                break;

            case SID_APPLICATION:
                rSet.Put( SfxObjectItem( SID_APPLICATION, this ) );
                break;

            case SID_PROGFILENAME:
                rSet.Put( SfxStringItem( SID_PROGFILENAME, Application::GetAppFileName() ) );
                break;

            case SID_ATTR_UNDO_COUNT:
                rSet.Put( SfxUInt16Item( SID_ATTR_UNDO_COUNT, sal::static_int_cast< sal_uInt16 >( SvtUndoOptions().GetUndoCount() ) ) );
                break;

            case SID_UPDATE_VERSION:
                rSet.Put( SfxUInt32Item( SID_UPDATE_VERSION, SUPD ) );
                break;

            case SID_BUILD_VERSION:
            {
                String aVersion = lcl_GetVersionString(pAppData_Impl->pLabelResMgr);
                rSet.Put( SfxUInt32Item( SID_BUILD_VERSION, (sal_uInt32) aVersion.ToInt32() ) );
                break;
            }

            case SID_OFFICE_PRIVATE_USE:
            case SID_OFFICE_COMMERCIAL_USE:
            {
                DBG_ASSERT( sal_False, "SfxApplication::PropState_Impl()\nSID_OFFICE_PRIVATE_USE & SID_OFFICE_COMMERCIAL_USE are obsolete!\n" );
                break;
            }

            case SID_OFFICE_CUSTOMERNUMBER:
            {
                rSet.Put( SfxStringItem( nSID, SvtUserOptions().GetCustomerNumber() ) );
                break;
            }
        }
    }
}

table> -rw-r--r--source/ast/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/ast/helpcontent2/source/text/sbasic/python.po124
-rw-r--r--source/ast/helpcontent2/source/text/sbasic/shared.po754
-rw-r--r--source/ast/helpcontent2/source/text/sbasic/shared/03.po40
-rw-r--r--source/ast/helpcontent2/source/text/scalc.po8
-rw-r--r--source/ast/helpcontent2/source/text/scalc/01.po444
-rw-r--r--source/ast/helpcontent2/source/text/scalc/guide.po36
-rw-r--r--source/ast/helpcontent2/source/text/sdatabase.po1565
-rw-r--r--source/ast/helpcontent2/source/text/sdraw.po13
-rw-r--r--source/ast/helpcontent2/source/text/sdraw/00.po15
-rw-r--r--source/ast/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/ast/helpcontent2/source/text/sdraw/guide.po16
-rw-r--r--source/ast/helpcontent2/source/text/shared/00.po28
-rw-r--r--source/ast/helpcontent2/source/text/shared/01.po286
-rw-r--r--source/ast/helpcontent2/source/text/shared/explorer/database.po1489
-rw-r--r--source/ast/helpcontent2/source/text/shared/guide.po119
-rw-r--r--source/ast/helpcontent2/source/text/shared/optionen.po24
-rw-r--r--source/ast/helpcontent2/source/text/simpress/00.po23
-rw-r--r--source/ast/helpcontent2/source/text/simpress/01.po209
-rw-r--r--source/ast/helpcontent2/source/text/simpress/guide.po52
-rw-r--r--source/ast/helpcontent2/source/text/swriter.po22
-rw-r--r--source/ast/helpcontent2/source/text/swriter/00.po72
-rw-r--r--source/ast/helpcontent2/source/text/swriter/01.po177
-rw-r--r--source/ast/helpcontent2/source/text/swriter/02.po10
-rw-r--r--source/ast/helpcontent2/source/text/swriter/guide.po206
-rw-r--r--source/ast/officecfg/registry/data/org/openoffice/Office/UI.po56
-rw-r--r--source/ast/sc/messages.po152
-rw-r--r--source/ast/scp2/source/ooo.po33
-rw-r--r--source/ast/sd/messages.po165
-rw-r--r--source/ast/sfx2/messages.po72
-rw-r--r--source/ast/svtools/messages.po148
-rw-r--r--source/ast/svx/messages.po144
-rw-r--r--source/ast/sw/messages.po1980
-rw-r--r--source/ast/vcl/messages.po180
-rw-r--r--source/ast/wizards/source/resources.po8
-rw-r--r--source/az/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/az/extensions/messages.po104
-rw-r--r--source/az/fpicker/messages.po44
-rw-r--r--source/az/officecfg/registry/data/org/openoffice/Office/UI.po40
-rw-r--r--source/az/sc/messages.po136
-rw-r--r--source/az/sd/messages.po138
-rw-r--r--source/az/sfx2/messages.po56
-rw-r--r--source/az/svtools/messages.po128
-rw-r--r--source/az/svx/messages.po140
-rw-r--r--source/az/sw/messages.po1964
-rw-r--r--source/az/vcl/messages.po178
-rw-r--r--source/be/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/be/extensions/messages.po104
-rw-r--r--source/be/fpicker/messages.po44
-rw-r--r--source/be/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/be/sc/messages.po136
-rw-r--r--source/be/sd/messages.po138
-rw-r--r--source/be/sfx2/messages.po56
-rw-r--r--source/be/svtools/messages.po128
-rw-r--r--source/be/svx/messages.po140
-rw-r--r--source/be/sw/messages.po1964
-rw-r--r--source/be/vcl/messages.po178
-rw-r--r--source/bg/basic/messages.po6
-rw-r--r--source/bg/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/bg/dbaccess/messages.po36
-rw-r--r--source/bg/dictionaries/be_BY.po8
-rw-r--r--source/bg/extensions/messages.po106
-rw-r--r--source/bg/filter/messages.po36
-rw-r--r--source/bg/filter/source/config/fragments/filters.po8
-rw-r--r--source/bg/fpicker/messages.po44
-rw-r--r--source/bg/helpcontent2/source/auxiliary.po13
-rw-r--r--source/bg/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/bg/helpcontent2/source/text/sbasic/python.po134
-rw-r--r--source/bg/helpcontent2/source/text/sbasic/shared.po774
-rw-r--r--source/bg/helpcontent2/source/text/sbasic/shared/03.po30
-rw-r--r--source/bg/helpcontent2/source/text/scalc.po8
-rw-r--r--source/bg/helpcontent2/source/text/scalc/01.po442
-rw-r--r--source/bg/helpcontent2/source/text/scalc/guide.po38
-rw-r--r--source/bg/helpcontent2/source/text/sdatabase.po1573
-rw-r--r--source/bg/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/bg/helpcontent2/source/text/sdraw/00.po23
-rw-r--r--source/bg/helpcontent2/source/text/sdraw/01.po10
-rw-r--r--source/bg/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/bg/helpcontent2/source/text/shared/01.po284
-rw-r--r--source/bg/helpcontent2/source/text/shared/explorer/database.po1493
-rw-r--r--source/bg/helpcontent2/source/text/shared/guide.po135
-rw-r--r--source/bg/helpcontent2/source/text/shared/optionen.po26
-rw-r--r--source/bg/helpcontent2/source/text/simpress/00.po17
-rw-r--r--source/bg/helpcontent2/source/text/simpress/01.po205
-rw-r--r--source/bg/helpcontent2/source/text/simpress/guide.po52
-rw-r--r--source/bg/helpcontent2/source/text/swriter.po20
-rw-r--r--source/bg/helpcontent2/source/text/swriter/00.po84
-rw-r--r--source/bg/helpcontent2/source/text/swriter/01.po167
-rw-r--r--source/bg/helpcontent2/source/text/swriter/02.po10
-rw-r--r--source/bg/helpcontent2/source/text/swriter/guide.po208
-rw-r--r--source/bg/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/bg/sc/messages.po136
-rw-r--r--source/bg/sd/messages.po152
-rw-r--r--source/bg/sfx2/messages.po56
-rw-r--r--source/bg/starmath/messages.po24
-rw-r--r--source/bg/svtools/messages.po132
-rw-r--r--source/bg/svx/messages.po174
-rw-r--r--source/bg/sw/messages.po1966
-rw-r--r--source/bg/vcl/messages.po192
-rw-r--r--source/bn-IN/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/bn-IN/extensions/messages.po104
-rw-r--r--source/bn-IN/fpicker/messages.po46
-rw-r--r--source/bn-IN/helpcontent2/source/auxiliary.po11
-rw-r--r--source/bn-IN/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/bn-IN/helpcontent2/source/text/sbasic/python.po120
-rw-r--r--source/bn-IN/helpcontent2/source/text/sbasic/shared.po746
-rw-r--r--source/bn-IN/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/bn-IN/helpcontent2/source/text/scalc.po8
-rw-r--r--source/bn-IN/helpcontent2/source/text/scalc/01.po438
-rw-r--r--source/bn-IN/helpcontent2/source/text/scalc/guide.po34
-rw-r--r--source/bn-IN/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/bn-IN/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/bn-IN/helpcontent2/source/text/sdraw/00.po15
-rw-r--r--source/bn-IN/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/01.po278
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/explorer/database.po1485
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/guide.po119
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/optionen.po22
-rw-r--r--source/bn-IN/helpcontent2/source/text/simpress/00.po15
-rw-r--r--source/bn-IN/helpcontent2/source/text/simpress/01.po201
-rw-r--r--source/bn-IN/helpcontent2/source/text/simpress/guide.po52
-rw-r--r--source/bn-IN/helpcontent2/source/text/swriter.po20
-rw-r--r--source/bn-IN/helpcontent2/source/text/swriter/00.po72
-rw-r--r--source/bn-IN/helpcontent2/source/text/swriter/01.po165
-rw-r--r--source/bn-IN/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/bn-IN/helpcontent2/source/text/swriter/guide.po198
-rw-r--r--source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/bn-IN/sc/messages.po136
-rw-r--r--source/bn-IN/sd/messages.po142
-rw-r--r--source/bn-IN/sfx2/messages.po56
-rw-r--r--source/bn-IN/svtools/messages.po128
-rw-r--r--source/bn-IN/svx/messages.po140
-rw-r--r--source/bn-IN/sw/messages.po1964
-rw-r--r--source/bn-IN/vcl/messages.po178
-rw-r--r--source/bn/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/bn/extensions/messages.po104
-rw-r--r--source/bn/fpicker/messages.po44
-rw-r--r--source/bn/helpcontent2/source/auxiliary.po11
-rw-r--r--source/bn/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/bn/helpcontent2/source/text/sbasic/python.po120
-rw-r--r--source/bn/helpcontent2/source/text/sbasic/shared.po746
-rw-r--r--source/bn/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/bn/helpcontent2/source/text/scalc.po8
-rw-r--r--source/bn/helpcontent2/source/text/scalc/01.po438
-rw-r--r--source/bn/helpcontent2/source/text/scalc/guide.po34
-rw-r--r--source/bn/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/bn/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/bn/helpcontent2/source/text/sdraw/00.po15
-rw-r--r--source/bn/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/bn/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/bn/helpcontent2/source/text/shared/01.po278
-rw-r--r--source/bn/helpcontent2/source/text/shared/explorer/database.po1485
-rw-r--r--source/bn/helpcontent2/source/text/shared/guide.po119
-rw-r--r--source/bn/helpcontent2/source/text/shared/optionen.po22
-rw-r--r--source/bn/helpcontent2/source/text/simpress/00.po15
-rw-r--r--source/bn/helpcontent2/source/text/simpress/01.po201
-rw-r--r--source/bn/helpcontent2/source/text/simpress/guide.po52
-rw-r--r--source/bn/helpcontent2/source/text/swriter.po20
-rw-r--r--source/bn/helpcontent2/source/text/swriter/00.po72
-rw-r--r--source/bn/helpcontent2/source/text/swriter/01.po165
-rw-r--r--source/bn/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/bn/helpcontent2/source/text/swriter/guide.po198
-rw-r--r--source/bn/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/bn/sc/messages.po136
-rw-r--r--source/bn/sd/messages.po145
-rw-r--r--source/bn/sfx2/messages.po56
-rw-r--r--source/bn/svtools/messages.po128
-rw-r--r--source/bn/svx/messages.po140
-rw-r--r--source/bn/sw/messages.po1964
-rw-r--r--source/bn/vcl/messages.po178
-rw-r--r--source/bo/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/bo/extensions/messages.po104
-rw-r--r--source/bo/fpicker/messages.po44
-rw-r--r--source/bo/helpcontent2/source/auxiliary.po11
-rw-r--r--source/bo/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/bo/helpcontent2/source/text/sbasic/python.po120
-rw-r--r--source/bo/helpcontent2/source/text/sbasic/shared.po746
-rw-r--r--source/bo/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/bo/helpcontent2/source/text/scalc.po8
-rw-r--r--source/bo/helpcontent2/source/text/scalc/01.po438
-rw-r--r--source/bo/helpcontent2/source/text/scalc/guide.po34
-rw-r--r--source/bo/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/bo/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/bo/helpcontent2/source/text/sdraw/00.po15
-rw-r--r--source/bo/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/bo/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/bo/helpcontent2/source/text/shared/01.po278
-rw-r--r--source/bo/helpcontent2/source/text/shared/explorer/database.po1487
-rw-r--r--source/bo/helpcontent2/source/text/shared/guide.po119
-rw-r--r--source/bo/helpcontent2/source/text/shared/optionen.po22
-rw-r--r--source/bo/helpcontent2/source/text/simpress/00.po15
-rw-r--r--source/bo/helpcontent2/source/text/simpress/01.po201
-rw-r--r--source/bo/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/bo/helpcontent2/source/text/swriter.po20
-rw-r--r--source/bo/helpcontent2/source/text/swriter/00.po72
-rw-r--r--source/bo/helpcontent2/source/text/swriter/01.po165
-rw-r--r--source/bo/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/bo/helpcontent2/source/text/swriter/guide.po198
-rw-r--r--source/bo/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/bo/sc/messages.po136
-rw-r--r--source/bo/sd/messages.po145
-rw-r--r--source/bo/sfx2/messages.po56
-rw-r--r--source/bo/svtools/messages.po128
-rw-r--r--source/bo/svx/messages.po140
-rw-r--r--source/bo/sw/messages.po1964
-rw-r--r--source/bo/vcl/messages.po178
-rw-r--r--source/br/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/br/extensions/messages.po104
-rw-r--r--source/br/fpicker/messages.po44
-rw-r--r--source/br/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/br/sc/messages.po136
-rw-r--r--source/br/sd/messages.po138
-rw-r--r--source/br/sfx2/messages.po56
-rw-r--r--source/br/svtools/messages.po128
-rw-r--r--source/br/svx/messages.po140
-rw-r--r--source/br/sw/messages.po1964
-rw-r--r--source/br/vcl/messages.po178
-rw-r--r--source/brx/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/brx/extensions/messages.po104
-rw-r--r--source/brx/fpicker/messages.po44
-rw-r--r--source/brx/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/brx/sc/messages.po136
-rw-r--r--source/brx/sd/messages.po145
-rw-r--r--source/brx/sfx2/messages.po56
-rw-r--r--source/brx/svtools/messages.po128
-rw-r--r--source/brx/svx/messages.po140
-rw-r--r--source/brx/sw/messages.po1964
-rw-r--r--source/brx/vcl/messages.po178
-rw-r--r--source/bs/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/bs/extensions/messages.po104
-rw-r--r--source/bs/fpicker/messages.po44
-rw-r--r--source/bs/helpcontent2/source/auxiliary.po11
-rw-r--r--source/bs/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/bs/helpcontent2/source/text/sbasic/python.po120
-rw-r--r--source/bs/helpcontent2/source/text/sbasic/shared.po744
-rw-r--r--source/bs/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/bs/helpcontent2/source/text/scalc.po8
-rw-r--r--source/bs/helpcontent2/source/text/scalc/01.po438
-rw-r--r--source/bs/helpcontent2/source/text/scalc/guide.po34
-rw-r--r--source/bs/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/bs/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/bs/helpcontent2/source/text/sdraw/00.po15
-rw-r--r--source/bs/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/bs/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/bs/helpcontent2/source/text/shared/01.po278
-rw-r--r--source/bs/helpcontent2/source/text/shared/explorer/database.po1487
-rw-r--r--source/bs/helpcontent2/source/text/shared/guide.po117
-rw-r--r--source/bs/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/bs/helpcontent2/source/text/simpress/00.po15
-rw-r--r--source/bs/helpcontent2/source/text/simpress/01.po195
-rw-r--r--source/bs/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/bs/helpcontent2/source/text/swriter.po14
-rw-r--r--source/bs/helpcontent2/source/text/swriter/00.po50
-rw-r--r--source/bs/helpcontent2/source/text/swriter/01.po165
-rw-r--r--source/bs/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/bs/helpcontent2/source/text/swriter/guide.po176
-rw-r--r--source/bs/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/bs/sc/messages.po136
-rw-r--r--source/bs/sd/messages.po142
-rw-r--r--source/bs/sfx2/messages.po56
-rw-r--r--source/bs/svtools/messages.po128
-rw-r--r--source/bs/svx/messages.po140
-rw-r--r--source/bs/sw/messages.po1964
-rw-r--r--source/bs/vcl/messages.po178
-rw-r--r--source/ca-valencia/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/ca-valencia/extensions/messages.po104
-rw-r--r--source/ca-valencia/fpicker/messages.po44
-rw-r--r--source/ca-valencia/helpcontent2/source/auxiliary.po11
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sbasic/python.po128
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sbasic/shared.po764
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/ca-valencia/helpcontent2/source/text/scalc.po8
-rw-r--r--source/ca-valencia/helpcontent2/source/text/scalc/01.po440
-rw-r--r--source/ca-valencia/helpcontent2/source/text/scalc/guide.po36
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sdraw/00.po19
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/01.po282
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/explorer/database.po1493
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/guide.po129
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/optionen.po22
-rw-r--r--source/ca-valencia/helpcontent2/source/text/simpress/00.po17
-rw-r--r--source/ca-valencia/helpcontent2/source/text/simpress/01.po205
-rw-r--r--source/ca-valencia/helpcontent2/source/text/simpress/guide.po52
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter.po20
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter/00.po72
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter/01.po165
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter/guide.po202
-rw-r--r--source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/ca-valencia/sc/messages.po136
-rw-r--r--source/ca-valencia/sd/messages.po140
-rw-r--r--source/ca-valencia/sfx2/messages.po56
-rw-r--r--source/ca-valencia/svtools/messages.po128
-rw-r--r--source/ca-valencia/svx/messages.po140
-rw-r--r--source/ca-valencia/sw/messages.po1966
-rw-r--r--source/ca-valencia/vcl/messages.po178
-rw-r--r--source/ca/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/ca/cui/messages.po28
-rw-r--r--source/ca/dbaccess/messages.po8
-rw-r--r--source/ca/dictionaries/be_BY.po8
-rw-r--r--source/ca/dictionaries/pt_BR/dialog.po4
-rw-r--r--source/ca/extensions/messages.po106
-rw-r--r--source/ca/filter/source/config/fragments/filters.po10
-rw-r--r--source/ca/fpicker/messages.po44
-rw-r--r--source/ca/helpcontent2/source/auxiliary.po19
-rw-r--r--source/ca/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/ca/helpcontent2/source/text/sbasic/python.po128
-rw-r--r--source/ca/helpcontent2/source/text/sbasic/shared.po824
-rw-r--r--source/ca/helpcontent2/source/text/sbasic/shared/01.po8
-rw-r--r--source/ca/helpcontent2/source/text/sbasic/shared/03.po62
-rw-r--r--source/ca/helpcontent2/source/text/scalc.po8
-rw-r--r--source/ca/helpcontent2/source/text/scalc/01.po460
-rw-r--r--source/ca/helpcontent2/source/text/scalc/guide.po45
-rw-r--r--source/ca/helpcontent2/source/text/sdatabase.po1566
-rw-r--r--source/ca/helpcontent2/source/text/sdraw.po15
-rw-r--r--source/ca/helpcontent2/source/text/sdraw/00.po19
-rw-r--r--source/ca/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/ca/helpcontent2/source/text/shared/00.po28
-rw-r--r--source/ca/helpcontent2/source/text/shared/01.po319
-rw-r--r--source/ca/helpcontent2/source/text/shared/02.po6
-rw-r--r--source/ca/helpcontent2/source/text/shared/explorer/database.po1513
-rw-r--r--source/ca/helpcontent2/source/text/shared/guide.po225
-rw-r--r--source/ca/helpcontent2/source/text/shared/optionen.po58
-rw-r--r--source/ca/helpcontent2/source/text/simpress/00.po17
-rw-r--r--source/ca/helpcontent2/source/text/simpress/01.po205
-rw-r--r--source/ca/helpcontent2/source/text/simpress/guide.po74
-rw-r--r--source/ca/helpcontent2/source/text/smath/00.po10
-rw-r--r--source/ca/helpcontent2/source/text/smath/01.po16
-rw-r--r--source/ca/helpcontent2/source/text/swriter.po24
-rw-r--r--source/ca/helpcontent2/source/text/swriter/00.po75
-rw-r--r--source/ca/helpcontent2/source/text/swriter/01.po190
-rw-r--r--source/ca/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/ca/helpcontent2/source/text/swriter/guide.po214
-rw-r--r--source/ca/officecfg/registry/data/org/openoffice/Office/UI.po50
-rw-r--r--source/ca/sc/messages.po144
-rw-r--r--source/ca/sd/messages.po142
-rw-r--r--source/ca/sfx2/messages.po66
-rw-r--r--source/ca/starmath/messages.po6
-rw-r--r--source/ca/svtools/messages.po134
-rw-r--r--source/ca/svx/messages.po176
-rw-r--r--source/ca/sw/messages.po1988
-rw-r--r--source/ca/vcl/messages.po180
-rw-r--r--source/ckb/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po10
-rw-r--r--source/ckb/extensions/messages.po104
-rw-r--r--source/ckb/fpicker/messages.po44
-rw-r--r--source/ckb/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/ckb/sc/messages.po136
-rw-r--r--source/ckb/sd/messages.po138
-rw-r--r--source/ckb/sfx2/messages.po56
-rw-r--r--source/ckb/svtools/messages.po128
-rw-r--r--source/ckb/svx/messages.po140
-rw-r--r--source/ckb/sw/messages.po1966
-rw-r--r--source/ckb/vcl/messages.po178
-rw-r--r--source/cs/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po14
-rw-r--r--source/cs/cui/messages.po16
-rw-r--r--source/cs/dbaccess/messages.po54
-rw-r--r--source/cs/extensions/messages.po106
-rw-r--r--source/cs/fpicker/messages.po44
-rw-r--r--source/cs/helpcontent2/source/auxiliary.po13
-rw-r--r--source/cs/helpcontent2/source/text/sbasic/guide.po436
-rw-r--r--source/cs/helpcontent2/source/text/sbasic/python.po178
-rw-r--r--source/cs/helpcontent2/source/text/sbasic/shared.po784
-rw-r--r--source/cs/helpcontent2/source/text/sbasic/shared/02.po72
-rw-r--r--source/cs/helpcontent2/source/text/sbasic/shared/03.po36
-rw-r--r--source/cs/helpcontent2/source/text/scalc.po12
-rw-r--r--source/cs/helpcontent2/source/text/scalc/00.po16
-rw-r--r--source/cs/helpcontent2/source/text/scalc/01.po442
-rw-r--r--source/cs/helpcontent2/source/text/scalc/04.po46
-rw-r--r--source/cs/helpcontent2/source/text/scalc/guide.po38
-rw-r--r--source/cs/helpcontent2/source/text/schart/01.po10
-rw-r--r--source/cs/helpcontent2/source/text/sdatabase.po1537
-rw-r--r--source/cs/helpcontent2/source/text/sdraw.po23
-rw-r--r--source/cs/helpcontent2/source/text/sdraw/00.po23
-rw-r--r--source/cs/helpcontent2/source/text/sdraw/01.po40
-rw-r--r--source/cs/helpcontent2/source/text/shared.po26
-rw-r--r--source/cs/helpcontent2/source/text/shared/00.po46
-rw-r--r--source/cs/helpcontent2/source/text/shared/01.po284
-rw-r--r--source/cs/helpcontent2/source/text/shared/02.po92
-rw-r--r--source/cs/helpcontent2/source/text/shared/explorer/database.po1495
-rw-r--r--source/cs/helpcontent2/source/text/shared/guide.po133
-rw-r--r--source/cs/helpcontent2/source/text/shared/optionen.po84
-rw-r--r--source/cs/helpcontent2/source/text/simpress/00.po19
-rw-r--r--source/cs/helpcontent2/source/text/simpress/01.po303
-rw-r--r--source/cs/helpcontent2/source/text/simpress/02.po76
-rw-r--r--source/cs/helpcontent2/source/text/simpress/guide.po96
-rw-r--r--source/cs/helpcontent2/source/text/swriter.po36
-rw-r--r--source/cs/helpcontent2/source/text/swriter/00.po82
-rw-r--r--source/cs/helpcontent2/source/text/swriter/01.po167
-rw-r--r--source/cs/helpcontent2/source/text/swriter/02.po10
-rw-r--r--source/cs/helpcontent2/source/text/swriter/guide.po234
-rw-r--r--source/cs/helpcontent2/source/text/swriter/librelogo.po8
-rw-r--r--source/cs/officecfg/registry/data/org/openoffice/Office/UI.po54
-rw-r--r--source/cs/sc/messages.po138
-rw-r--r--source/cs/sd/messages.po142
-rw-r--r--source/cs/sfx2/messages.po58
-rw-r--r--source/cs/svtools/messages.po130
-rw-r--r--source/cs/svx/messages.po178
-rw-r--r--source/cs/sw/messages.po1978
-rw-r--r--source/cs/vcl/messages.po180
-rw-r--r--source/cy/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po14
-rw-r--r--source/cy/cui/messages.po6
-rw-r--r--source/cy/dbaccess/messages.po54
-rw-r--r--source/cy/extensions/messages.po106
-rw-r--r--source/cy/fpicker/messages.po44
-rw-r--r--source/cy/officecfg/registry/data/org/openoffice/Office/UI.po52
-rw-r--r--source/cy/sc/messages.po140
-rw-r--r--source/cy/scaddins/messages.po18
-rw-r--r--source/cy/sd/messages.po142
-rw-r--r--source/cy/sfx2/messages.po58
-rw-r--r--source/cy/svtools/messages.po130
-rw-r--r--source/cy/svx/messages.po182
-rw-r--r--source/cy/sw/messages.po1978
-rw-r--r--source/cy/vcl/messages.po180
-rw-r--r--source/da/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/da/extensions/messages.po104
-rw-r--r--source/da/fpicker/messages.po44
-rw-r--r--source/da/helpcontent2/source/auxiliary.po13
-rw-r--r--source/da/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/da/helpcontent2/source/text/sbasic/python.po136
-rw-r--r--source/da/helpcontent2/source/text/sbasic/shared.po933
-rw-r--r--source/da/helpcontent2/source/text/sbasic/shared/03.po62
-rw-r--r--source/da/helpcontent2/source/text/scalc.po8
-rw-r--r--source/da/helpcontent2/source/text/scalc/01.po926
-rw-r--r--source/da/helpcontent2/source/text/scalc/guide.po38
-rw-r--r--source/da/helpcontent2/source/text/sdatabase.po1657
-rw-r--r--source/da/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/da/helpcontent2/source/text/sdraw/00.po19
-rw-r--r--source/da/helpcontent2/source/text/sdraw/01.po10
-rw-r--r--source/da/helpcontent2/source/text/shared/00.po22
-rw-r--r--source/da/helpcontent2/source/text/shared/01.po284
-rw-r--r--source/da/helpcontent2/source/text/shared/explorer/database.po1493
-rw-r--r--source/da/helpcontent2/source/text/shared/guide.po507
-rw-r--r--source/da/helpcontent2/source/text/shared/optionen.po26
-rw-r--r--source/da/helpcontent2/source/text/simpress/00.po17
-rw-r--r--source/da/helpcontent2/source/text/simpress/01.po207
-rw-r--r--source/da/helpcontent2/source/text/simpress/guide.po52
-rw-r--r--source/da/helpcontent2/source/text/swriter.po20
-rw-r--r--source/da/helpcontent2/source/text/swriter/00.po74
-rw-r--r--source/da/helpcontent2/source/text/swriter/01.po169
-rw-r--r--source/da/helpcontent2/source/text/swriter/02.po10
-rw-r--r--source/da/helpcontent2/source/text/swriter/guide.po208
-rw-r--r--source/da/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/da/sc/messages.po138
-rw-r--r--source/da/sd/messages.po140
-rw-r--r--source/da/sfx2/messages.po56
-rw-r--r--source/da/svtools/messages.po128
-rw-r--r--source/da/svx/messages.po174
-rw-r--r--source/da/sw/messages.po1966
-rw-r--r--source/da/vcl/messages.po178
-rw-r--r--source/de/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/de/cui/messages.po18
-rw-r--r--source/de/dictionaries/be_BY.po8
-rw-r--r--source/de/dictionaries/ca.po12
-rw-r--r--source/de/dictionaries/cs_CZ.po12
-rw-r--r--source/de/dictionaries/da_DK.po6
-rw-r--r--source/de/dictionaries/de.po12
-rw-r--r--source/de/dictionaries/en.po12
-rw-r--r--source/de/dictionaries/eo.po6
-rw-r--r--source/de/dictionaries/es.po6
-rw-r--r--source/de/dictionaries/gl.po12
-rw-r--r--source/de/dictionaries/hu_HU.po12
-rw-r--r--source/de/dictionaries/hu_HU/dialog.po8
-rw-r--r--source/de/dictionaries/id.po12
-rw-r--r--source/de/dictionaries/is.po12
-rw-r--r--source/de/dictionaries/kmr_Latn.po12
-rw-r--r--source/de/dictionaries/mn_MN.po8
-rw-r--r--source/de/dictionaries/no.po12
-rw-r--r--source/de/dictionaries/pt_BR.po12
-rw-r--r--source/de/dictionaries/pt_BR/dialog.po66
-rw-r--r--source/de/dictionaries/pt_PT.po8
-rw-r--r--source/de/dictionaries/ru_RU.po12
-rw-r--r--source/de/dictionaries/sq_AL.po6
-rw-r--r--source/de/dictionaries/sr.po8
-rw-r--r--source/de/dictionaries/sv_SE.po12
-rw-r--r--source/de/dictionaries/tr_TR.po10
-rw-r--r--source/de/extensions/messages.po104
-rw-r--r--source/de/filter/messages.po20
-rw-r--r--source/de/fpicker/messages.po46
-rw-r--r--source/de/helpcontent2/source/auxiliary.po11
-rw-r--r--source/de/helpcontent2/source/text/sbasic/guide.po348
-rw-r--r--source/de/helpcontent2/source/text/sbasic/python.po128
-rw-r--r--source/de/helpcontent2/source/text/sbasic/shared.po774
-rw-r--r--source/de/helpcontent2/source/text/sbasic/shared/03.po46
-rw-r--r--source/de/helpcontent2/source/text/scalc.po8
-rw-r--r--source/de/helpcontent2/source/text/scalc/01.po442
-rw-r--r--source/de/helpcontent2/source/text/scalc/guide.po38
-rw-r--r--source/de/helpcontent2/source/text/sdatabase.po1585
-rw-r--r--source/de/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/de/helpcontent2/source/text/sdraw/00.po19
-rw-r--r--source/de/helpcontent2/source/text/sdraw/01.po8
-rw-r--r--source/de/helpcontent2/source/text/shared/00.po136
-rw-r--r--source/de/helpcontent2/source/text/shared/01.po282
-rw-r--r--source/de/helpcontent2/source/text/shared/explorer/database.po1493
-rw-r--r--source/de/helpcontent2/source/text/shared/guide.po133
-rw-r--r--source/de/helpcontent2/source/text/shared/optionen.po26
-rw-r--r--source/de/helpcontent2/source/text/simpress/00.po17
-rw-r--r--source/de/helpcontent2/source/text/simpress/01.po205
-rw-r--r--source/de/helpcontent2/source/text/simpress/guide.po52
-rw-r--r--source/de/helpcontent2/source/text/swriter.po20
-rw-r--r--source/de/helpcontent2/source/text/swriter/00.po74
-rw-r--r--source/de/helpcontent2/source/text/swriter/01.po181
-rw-r--r--source/de/helpcontent2/source/text/swriter/02.po8
-rw-r--r--source/de/helpcontent2/source/text/swriter/guide.po202
-rw-r--r--source/de/nlpsolver/src/locale.po6
-rw-r--r--source/de/officecfg/registry/data/org/openoffice/Office/UI.po48
-rw-r--r--source/de/readlicense_oo/docs.po8
-rw-r--r--source/de/sc/messages.po136
-rw-r--r--source/de/scp2/source/ooo.po108
-rw-r--r--source/de/sd/messages.po150
-rw-r--r--source/de/sfx2/messages.po76
-rw-r--r--source/de/svtools/messages.po128
-rw-r--r--source/de/svx/messages.po174
-rw-r--r--source/de/sw/messages.po1976
-rw-r--r--source/de/vcl/messages.po192
-rw-r--r--source/de/xmlsecurity/messages.po12
-rw-r--r--source/dgo/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/dgo/extensions/messages.po104
-rw-r--r--source/dgo/fpicker/messages.po44
-rw-r--r--source/dgo/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/dgo/sc/messages.po136
-rw-r--r--source/dgo/sd/messages.po144
-rw-r--r--source/dgo/sfx2/messages.po56
-rw-r--r--source/dgo/svtools/messages.po128
-rw-r--r--source/dgo/svx/messages.po140
-rw-r--r--source/dgo/sw/messages.po1964
-rw-r--r--source/dgo/vcl/messages.po178
-rw-r--r--source/dsb/basic/messages.po6
-rw-r--r--source/dsb/chart2/messages.po10
-rw-r--r--source/dsb/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/dsb/dictionaries/be_BY.po8
-rw-r--r--source/dsb/extensions/messages.po116
-rw-r--r--source/dsb/filter/messages.po36
-rw-r--r--source/dsb/fpicker/messages.po44
-rw-r--r--source/dsb/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/dsb/readlicense_oo/docs.po8
-rw-r--r--source/dsb/sc/messages.po136
-rw-r--r--source/dsb/sd/messages.po140
-rw-r--r--source/dsb/sfx2/classification.po36
-rw-r--r--source/dsb/sfx2/messages.po56
-rw-r--r--source/dsb/starmath/messages.po42
-rw-r--r--source/dsb/svtools/messages.po142
-rw-r--r--source/dsb/svx/messages.po174
-rw-r--r--source/dsb/sw/messages.po1964
-rw-r--r--source/dsb/uui/messages.po44
-rw-r--r--source/dsb/vcl/messages.po202
-rw-r--r--source/dz/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/dz/extensions/messages.po104
-rw-r--r--source/dz/fpicker/messages.po44
-rw-r--r--source/dz/helpcontent2/source/auxiliary.po11
-rw-r--r--source/dz/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/dz/helpcontent2/source/text/sbasic/python.po120
-rw-r--r--source/dz/helpcontent2/source/text/sbasic/shared.po746
-rw-r--r--source/dz/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/dz/helpcontent2/source/text/scalc.po8
-rw-r--r--source/dz/helpcontent2/source/text/scalc/01.po438
-rw-r--r--source/dz/helpcontent2/source/text/scalc/guide.po34
-rw-r--r--source/dz/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/dz/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/dz/helpcontent2/source/text/sdraw/00.po15
-rw-r--r--source/dz/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/dz/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/dz/helpcontent2/source/text/shared/01.po282
-rw-r--r--source/dz/helpcontent2/source/text/shared/explorer/database.po1487
-rw-r--r--source/dz/helpcontent2/source/text/shared/guide.po119
-rw-r--r--source/dz/helpcontent2/source/text/shared/optionen.po22
-rw-r--r--source/dz/helpcontent2/source/text/simpress/00.po15
-rw-r--r--source/dz/helpcontent2/source/text/simpress/01.po201
-rw-r--r--source/dz/helpcontent2/source/text/simpress/guide.po52
-rw-r--r--source/dz/helpcontent2/source/text/swriter.po20
-rw-r--r--source/dz/helpcontent2/source/text/swriter/00.po72
-rw-r--r--source/dz/helpcontent2/source/text/swriter/01.po165
-rw-r--r--source/dz/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/dz/helpcontent2/source/text/swriter/guide.po198
-rw-r--r--source/dz/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/dz/sc/messages.po136
-rw-r--r--source/dz/sd/messages.po145
-rw-r--r--source/dz/sfx2/messages.po56
-rw-r--r--source/dz/svtools/messages.po128
-rw-r--r--source/dz/svx/messages.po140
-rw-r--r--source/dz/sw/messages.po1964
-rw-r--r--source/dz/vcl/messages.po178
-rw-r--r--source/el/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po18
-rw-r--r--source/el/cui/messages.po24
-rw-r--r--source/el/dbaccess/messages.po54
-rw-r--r--source/el/dictionaries/be_BY.po8
-rw-r--r--source/el/dictionaries/pt_BR/dialog.po6
-rw-r--r--source/el/extensions/messages.po106
-rw-r--r--source/el/fpicker/messages.po44
-rw-r--r--source/el/helpcontent2/source/auxiliary.po11
-rw-r--r--source/el/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/el/helpcontent2/source/text/sbasic/python.po128
-rw-r--r--source/el/helpcontent2/source/text/sbasic/shared.po774
-rw-r--r--source/el/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/el/helpcontent2/source/text/scalc.po12
-rw-r--r--source/el/helpcontent2/source/text/scalc/01.po1190
-rw-r--r--source/el/helpcontent2/source/text/scalc/guide.po200
-rw-r--r--source/el/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/el/helpcontent2/source/text/sdraw.po13
-rw-r--r--source/el/helpcontent2/source/text/sdraw/00.po23
-rw-r--r--source/el/helpcontent2/source/text/sdraw/01.po10
-rw-r--r--source/el/helpcontent2/source/text/sdraw/guide.po8
-rw-r--r--source/el/helpcontent2/source/text/shared.po26
-rw-r--r--source/el/helpcontent2/source/text/shared/00.po78
-rw-r--r--source/el/helpcontent2/source/text/shared/01.po484
-rw-r--r--source/el/helpcontent2/source/text/shared/02.po92
-rw-r--r--source/el/helpcontent2/source/text/shared/05.po10
-rw-r--r--source/el/helpcontent2/source/text/shared/explorer/database.po1497
-rw-r--r--source/el/helpcontent2/source/text/shared/guide.po179
-rw-r--r--source/el/helpcontent2/source/text/shared/optionen.po54
-rw-r--r--source/el/helpcontent2/source/text/simpress.po12
-rw-r--r--source/el/helpcontent2/source/text/simpress/00.po21
-rw-r--r--source/el/helpcontent2/source/text/simpress/01.po303
-rw-r--r--source/el/helpcontent2/source/text/simpress/02.po10
-rw-r--r--source/el/helpcontent2/source/text/simpress/guide.po58
-rw-r--r--source/el/helpcontent2/source/text/swriter.po22
-rw-r--r--source/el/helpcontent2/source/text/swriter/00.po78
-rw-r--r--source/el/helpcontent2/source/text/swriter/01.po173
-rw-r--r--source/el/helpcontent2/source/text/swriter/02.po10
-rw-r--r--source/el/helpcontent2/source/text/swriter/guide.po208
-rw-r--r--source/el/officecfg/registry/data/org/openoffice/Office/UI.po52
-rw-r--r--source/el/sc/messages.po158
-rw-r--r--source/el/sd/messages.po142
-rw-r--r--source/el/sfx2/messages.po60
-rw-r--r--source/el/svtools/messages.po130
-rw-r--r--source/el/svx/messages.po182
-rw-r--r--source/el/sw/messages.po1978
-rw-r--r--source/el/vcl/messages.po180
-rw-r--r--source/en-GB/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/en-GB/extensions/messages.po104
-rw-r--r--source/en-GB/fpicker/messages.po44
-rw-r--r--source/en-GB/helpcontent2/source/auxiliary.po11
-rw-r--r--source/en-GB/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/en-GB/helpcontent2/source/text/sbasic/python.po128
-rw-r--r--source/en-GB/helpcontent2/source/text/sbasic/shared.po772
-rw-r--r--source/en-GB/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/en-GB/helpcontent2/source/text/scalc.po8
-rw-r--r--source/en-GB/helpcontent2/source/text/scalc/01.po442
-rw-r--r--source/en-GB/helpcontent2/source/text/scalc/guide.po38
-rw-r--r--source/en-GB/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/en-GB/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/en-GB/helpcontent2/source/text/sdraw/00.po19
-rw-r--r--source/en-GB/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/01.po282
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/explorer/database.po1493
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/guide.po133
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/optionen.po24
-rw-r--r--source/en-GB/helpcontent2/source/text/simpress/00.po17
-rw-r--r--source/en-GB/helpcontent2/source/text/simpress/01.po205
-rw-r--r--source/en-GB/helpcontent2/source/text/simpress/guide.po52
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter.po20
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter/00.po72
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter/01.po165
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter/guide.po202
-rw-r--r--source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/en-GB/sc/messages.po136
-rw-r--r--source/en-GB/sd/messages.po140
-rw-r--r--source/en-GB/sfx2/messages.po56
-rw-r--r--source/en-GB/svtools/messages.po128
-rw-r--r--source/en-GB/svx/messages.po140
-rw-r--r--source/en-GB/sw/messages.po1964
-rw-r--r--source/en-GB/vcl/messages.po178
-rw-r--r--source/en-ZA/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/en-ZA/extensions/messages.po104
-rw-r--r--source/en-ZA/fpicker/messages.po44
-rw-r--r--source/en-ZA/helpcontent2/source/auxiliary.po11
-rw-r--r--source/en-ZA/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/en-ZA/helpcontent2/source/text/sbasic/python.po120
-rw-r--r--source/en-ZA/helpcontent2/source/text/sbasic/shared.po746
-rw-r--r--source/en-ZA/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/en-ZA/helpcontent2/source/text/scalc.po8
-rw-r--r--source/en-ZA/helpcontent2/source/text/scalc/01.po438
-rw-r--r--source/en-ZA/helpcontent2/source/text/scalc/guide.po36
-rw-r--r--source/en-ZA/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/en-ZA/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/en-ZA/helpcontent2/source/text/sdraw/00.po15
-rw-r--r--source/en-ZA/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/01.po282
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/explorer/database.po1485
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/guide.po119
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/optionen.po22
-rw-r--r--source/en-ZA/helpcontent2/source/text/simpress/00.po15
-rw-r--r--source/en-ZA/helpcontent2/source/text/simpress/01.po201
-rw-r--r--source/en-ZA/helpcontent2/source/text/simpress/guide.po52
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter.po20
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/00.po72
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/01.po165
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/guide.po198
-rw-r--r--source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/en-ZA/sc/messages.po136
-rw-r--r--source/en-ZA/sd/messages.po145
-rw-r--r--source/en-ZA/sfx2/messages.po56
-rw-r--r--source/en-ZA/svtools/messages.po128
-rw-r--r--source/en-ZA/svx/messages.po140
-rw-r--r--source/en-ZA/sw/messages.po1964
-rw-r--r--source/en-ZA/vcl/messages.po178
-rw-r--r--source/eo/basic/messages.po8
-rw-r--r--source/eo/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/eo/cui/messages.po24
-rw-r--r--source/eo/dbaccess/messages.po54
-rw-r--r--source/eo/extensions/messages.po106
-rw-r--r--source/eo/fpicker/messages.po44
-rw-r--r--source/eo/helpcontent2/source/auxiliary.po11
-rw-r--r--source/eo/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/eo/helpcontent2/source/text/sbasic/python.po120
-rw-r--r--source/eo/helpcontent2/source/text/sbasic/shared.po746
-rw-r--r--source/eo/helpcontent2/source/text/sbasic/shared/03.po30
-rw-r--r--source/eo/helpcontent2/source/text/scalc.po8
-rw-r--r--source/eo/helpcontent2/source/text/scalc/01.po438
-rw-r--r--source/eo/helpcontent2/source/text/scalc/guide.po34
-rw-r--r--source/eo/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/eo/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/eo/helpcontent2/source/text/sdraw/00.po15
-rw-r--r--source/eo/helpcontent2/source/text/sdraw/01.po8
-rw-r--r--source/eo/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/eo/helpcontent2/source/text/shared/01.po278
-rw-r--r--source/eo/helpcontent2/source/text/shared/explorer/database.po1487
-rw-r--r--source/eo/helpcontent2/source/text/shared/guide.po119
-rw-r--r--source/eo/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/eo/helpcontent2/source/text/simpress/00.po15
-rw-r--r--source/eo/helpcontent2/source/text/simpress/01.po187
-rw-r--r--source/eo/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/eo/helpcontent2/source/text/swriter.po20
-rw-r--r--source/eo/helpcontent2/source/text/swriter/00.po74
-rw-r--r--source/eo/helpcontent2/source/text/swriter/01.po167
-rw-r--r--source/eo/helpcontent2/source/text/swriter/02.po8
-rw-r--r--source/eo/helpcontent2/source/text/swriter/guide.po202
-rw-r--r--source/eo/officecfg/registry/data/org/openoffice/Office/UI.po78
-rw-r--r--source/eo/sc/messages.po158
-rw-r--r--source/eo/sd/messages.po140
-rw-r--r--source/eo/sfx2/messages.po60
-rw-r--r--source/eo/svtools/messages.po130
-rw-r--r--source/eo/svx/messages.po194
-rw-r--r--source/eo/sw/messages.po1976
-rw-r--r--source/eo/vcl/messages.po180
-rw-r--r--source/es/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/es/cui/messages.po54
-rw-r--r--source/es/dbaccess/messages.po14
-rw-r--r--source/es/dictionaries/be_BY.po8
-rw-r--r--source/es/dictionaries/pt_BR/dialog.po12
-rw-r--r--source/es/editeng/messages.po6
-rw-r--r--source/es/extensions/messages.po106
-rw-r--r--source/es/filter/source/config/fragments/filters.po8
-rw-r--r--source/es/fpicker/messages.po44
-rw-r--r--source/es/framework/messages.po8
-rw-r--r--source/es/helpcontent2/source/auxiliary.po13
-rw-r--r--source/es/helpcontent2/source/text/sbasic/guide.po352
-rw-r--r--source/es/helpcontent2/source/text/sbasic/python.po130
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared.po898
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared/02.po6
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared/03.po76
-rw-r--r--source/es/helpcontent2/source/text/scalc.po12
-rw-r--r--source/es/helpcontent2/source/text/scalc/01.po486
-rw-r--r--source/es/helpcontent2/source/text/scalc/guide.po52
-rw-r--r--source/es/helpcontent2/source/text/sdatabase.po1663
-rw-r--r--source/es/helpcontent2/source/text/sdraw.po15
-rw-r--r--source/es/helpcontent2/source/text/sdraw/00.po19
-rw-r--r--source/es/helpcontent2/source/text/sdraw/01.po14
-rw-r--r--source/es/helpcontent2/source/text/shared.po8
-rw-r--r--source/es/helpcontent2/source/text/shared/00.po24
-rw-r--r--source/es/helpcontent2/source/text/shared/01.po328
-rw-r--r--source/es/helpcontent2/source/text/shared/02.po4
-rw-r--r--source/es/helpcontent2/source/text/shared/autopi.po28
-rw-r--r--source/es/helpcontent2/source/text/shared/explorer/database.po1497
-rw-r--r--source/es/helpcontent2/source/text/shared/guide.po175
-rw-r--r--source/es/helpcontent2/source/text/shared/optionen.po62
-rw-r--r--source/es/helpcontent2/source/text/simpress.po4
-rw-r--r--source/es/helpcontent2/source/text/simpress/00.po23
-rw-r--r--source/es/helpcontent2/source/text/simpress/01.po219
-rw-r--r--source/es/helpcontent2/source/text/simpress/02.po6
-rw-r--r--source/es/helpcontent2/source/text/simpress/guide.po66
-rw-r--r--source/es/helpcontent2/source/text/smath/01.po4
-rw-r--r--source/es/helpcontent2/source/text/swriter.po22
-rw-r--r--source/es/helpcontent2/source/text/swriter/00.po96
-rw-r--r--source/es/helpcontent2/source/text/swriter/01.po195
-rw-r--r--source/es/helpcontent2/source/text/swriter/02.po16
-rw-r--r--source/es/helpcontent2/source/text/swriter/04.po4
-rw-r--r--source/es/helpcontent2/source/text/swriter/guide.po238
-rw-r--r--source/es/helpcontent2/source/text/swriter/librelogo.po6
-rw-r--r--source/es/librelogo/source/pythonpath.po8
-rw-r--r--source/es/officecfg/registry/data/org/openoffice/Office/UI.po76
-rw-r--r--source/es/sc/messages.po152
-rw-r--r--source/es/sd/messages.po144
-rw-r--r--source/es/sfx2/messages.po64
-rw-r--r--source/es/starmath/messages.po10
-rw-r--r--source/es/svtools/messages.po140
-rw-r--r--source/es/svx/messages.po158
-rw-r--r--source/es/sw/messages.po2040
-rw-r--r--source/es/vcl/messages.po180
-rw-r--r--source/et/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/et/extensions/messages.po104
-rw-r--r--source/et/fpicker/messages.po46
-rw-r--r--source/et/helpcontent2/source/auxiliary.po11
-rw-r--r--source/et/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/et/helpcontent2/source/text/sbasic/python.po122
-rw-r--r--source/et/helpcontent2/source/text/sbasic/shared.po756
-rw-r--r--source/et/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/et/helpcontent2/source/text/scalc.po8
-rw-r--r--source/et/helpcontent2/source/text/scalc/01.po440
-rw-r--r--source/et/helpcontent2/source/text/scalc/guide.po36
-rw-r--r--source/et/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/et/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/et/helpcontent2/source/text/sdraw/00.po19
-rw-r--r--source/et/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/et/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/et/helpcontent2/source/text/shared/01.po282
-rw-r--r--source/et/helpcontent2/source/text/shared/explorer/database.po1487
-rw-r--r--source/et/helpcontent2/source/text/shared/guide.po123
-rw-r--r--source/et/helpcontent2/source/text/shared/optionen.po26
-rw-r--r--source/et/helpcontent2/source/text/simpress/00.po17
-rw-r--r--source/et/helpcontent2/source/text/simpress/01.po205
-rw-r--r--source/et/helpcontent2/source/text/simpress/guide.po52
-rw-r--r--source/et/helpcontent2/source/text/swriter.po20
-rw-r--r--source/et/helpcontent2/source/text/swriter/00.po72
-rw-r--r--source/et/helpcontent2/source/text/swriter/01.po165
-rw-r--r--source/et/helpcontent2/source/text/swriter/02.po8
-rw-r--r--source/et/helpcontent2/source/text/swriter/guide.po202
-rw-r--r--source/et/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/et/sc/messages.po136
-rw-r--r--source/et/sd/messages.po140
-rw-r--r--source/et/sfx2/messages.po56
-rw-r--r--source/et/svtools/messages.po128
-rw-r--r--source/et/svx/messages.po174
-rw-r--r--source/et/sw/messages.po1966
-rw-r--r--source/et/vcl/messages.po178
-rw-r--r--source/eu/basic/messages.po6
-rw-r--r--source/eu/chart2/messages.po10
-rw-r--r--source/eu/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po16
-rw-r--r--source/eu/cui/messages.po130
-rw-r--r--source/eu/dbaccess/messages.po60
-rw-r--r--source/eu/dictionaries/be_BY.po8
-rw-r--r--source/eu/dictionaries/pt_BR/dialog.po28
-rw-r--r--source/eu/extensions/messages.po120
-rw-r--r--source/eu/filter/messages.po42
-rw-r--r--source/eu/filter/source/config/fragments/filters.po10
-rw-r--r--source/eu/fpicker/messages.po44
-rw-r--r--source/eu/helpcontent2/source/auxiliary.po13
-rw-r--r--source/eu/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/eu/helpcontent2/source/text/sbasic/python.po138
-rw-r--r--source/eu/helpcontent2/source/text/sbasic/shared.po774
-rw-r--r--source/eu/helpcontent2/source/text/sbasic/shared/03.po42
-rw-r--r--source/eu/helpcontent2/source/text/scalc.po8
-rw-r--r--source/eu/helpcontent2/source/text/scalc/01.po442
-rw-r--r--source/eu/helpcontent2/source/text/scalc/04.po4
-rw-r--r--source/eu/helpcontent2/source/text/scalc/guide.po56
-rw-r--r--source/eu/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/eu/helpcontent2/source/text/sdraw.po19
-rw-r--r--source/eu/helpcontent2/source/text/sdraw/00.po23
-rw-r--r--source/eu/helpcontent2/source/text/sdraw/01.po10
-rw-r--r--source/eu/helpcontent2/source/text/shared.po16
-rw-r--r--source/eu/helpcontent2/source/text/shared/00.po32
-rw-r--r--source/eu/helpcontent2/source/text/shared/01.po288
-rw-r--r--source/eu/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/eu/helpcontent2/source/text/shared/explorer/database.po1493
-rw-r--r--source/eu/helpcontent2/source/text/shared/guide.po135
-rw-r--r--source/eu/helpcontent2/source/text/shared/optionen.po26
-rw-r--r--source/eu/helpcontent2/source/text/simpress/00.po25
-rw-r--r--source/eu/helpcontent2/source/text/simpress/01.po205
-rw-r--r--source/eu/helpcontent2/source/text/simpress/04.po8
-rw-r--r--source/eu/helpcontent2/source/text/simpress/guide.po52
-rw-r--r--source/eu/helpcontent2/source/text/swriter.po20
-rw-r--r--source/eu/helpcontent2/source/text/swriter/00.po80
-rw-r--r--source/eu/helpcontent2/source/text/swriter/01.po167
-rw-r--r--source/eu/helpcontent2/source/text/swriter/02.po10
-rw-r--r--source/eu/helpcontent2/source/text/swriter/04.po28
-rw-r--r--source/eu/helpcontent2/source/text/swriter/guide.po214
-rw-r--r--source/eu/officecfg/registry/data/org/openoffice/Office/UI.po142
-rw-r--r--source/eu/readlicense_oo/docs.po8
-rw-r--r--source/eu/sc/messages.po336
-rw-r--r--source/eu/scp2/source/ooo.po6
-rw-r--r--source/eu/sd/messages.po154
-rw-r--r--source/eu/sfx2/messages.po86
-rw-r--r--source/eu/starmath/messages.po28
-rw-r--r--source/eu/svtools/messages.po136
-rw-r--r--source/eu/svx/messages.po212
-rw-r--r--source/eu/sw/messages.po2000
-rw-r--r--source/eu/vcl/messages.po190
-rw-r--r--source/fa/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po10
-rw-r--r--source/fa/extensions/messages.po104
-rw-r--r--source/fa/fpicker/messages.po44
-rw-r--r--source/fa/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/fa/sc/messages.po136
-rw-r--r--source/fa/sd/messages.po145
-rw-r--r--source/fa/sfx2/messages.po56
-rw-r--r--source/fa/svtools/messages.po128
-rw-r--r--source/fa/svx/messages.po140
-rw-r--r--source/fa/sw/messages.po1964
-rw-r--r--source/fa/vcl/messages.po178
-rw-r--r--source/fi/basctl/messages.po14
-rw-r--r--source/fi/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/fi/cui/messages.po307
-rw-r--r--source/fi/extensions/messages.po116
-rw-r--r--source/fi/formula/messages.po4
-rw-r--r--source/fi/fpicker/messages.po44
-rw-r--r--source/fi/helpcontent2/source/auxiliary.po13
-rw-r--r--source/fi/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/fi/helpcontent2/source/text/sbasic/python.po120
-rw-r--r--source/fi/helpcontent2/source/text/sbasic/shared.po746
-rw-r--r--source/fi/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/fi/helpcontent2/source/text/scalc.po8
-rw-r--r--source/fi/helpcontent2/source/text/scalc/01.po436
-rw-r--r--source/fi/helpcontent2/source/text/scalc/guide.po36
-rw-r--r--source/fi/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/fi/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/fi/helpcontent2/source/text/sdraw/00.po15
-rw-r--r--source/fi/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/fi/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/fi/helpcontent2/source/text/shared/01.po282
-rw-r--r--source/fi/helpcontent2/source/text/shared/explorer/database.po1494
-rw-r--r--source/fi/helpcontent2/source/text/shared/guide.po119
-rw-r--r--source/fi/helpcontent2/source/text/shared/optionen.po29
-rw-r--r--source/fi/helpcontent2/source/text/simpress/00.po15
-rw-r--r--source/fi/helpcontent2/source/text/simpress/01.po201
-rw-r--r--source/fi/helpcontent2/source/text/simpress/02.po6
-rw-r--r--source/fi/helpcontent2/source/text/simpress/guide.po52
-rw-r--r--source/fi/helpcontent2/source/text/smath/01.po5
-rw-r--r--source/fi/helpcontent2/source/text/swriter.po20
-rw-r--r--source/fi/helpcontent2/source/text/swriter/00.po76
-rw-r--r--source/fi/helpcontent2/source/text/swriter/01.po165
-rw-r--r--source/fi/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/fi/helpcontent2/source/text/swriter/guide.po198
-rw-r--r--source/fi/officecfg/registry/data/org/openoffice/Office.po12
-rw-r--r--source/fi/officecfg/registry/data/org/openoffice/Office/UI.po82
-rw-r--r--source/fi/sc/messages.po161
-rw-r--r--source/fi/sd/messages.po154
-rw-r--r--source/fi/sfx2/messages.po62
-rw-r--r--source/fi/starmath/messages.po10
-rw-r--r--source/fi/svtools/messages.po130
-rw-r--r--source/fi/svx/messages.po184
-rw-r--r--source/fi/sw/messages.po2744
-rw-r--r--source/fi/vcl/messages.po180
-rw-r--r--source/fi/xmlsecurity/messages.po42
-rw-r--r--source/fr/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/fr/extensions/messages.po104
-rw-r--r--source/fr/fpicker/messages.po46
-rw-r--r--source/fr/helpcontent2/source/auxiliary.po15
-rw-r--r--source/fr/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/fr/helpcontent2/source/text/sbasic/python.po134
-rw-r--r--source/fr/helpcontent2/source/text/sbasic/shared.po774
-rw-r--r--source/fr/helpcontent2/source/text/sbasic/shared/03.po30
-rw-r--r--source/fr/helpcontent2/source/text/scalc.po12
-rw-r--r--source/fr/helpcontent2/source/text/scalc/00.po16
-rw-r--r--source/fr/helpcontent2/source/text/scalc/01.po442
-rw-r--r--source/fr/helpcontent2/source/text/scalc/04.po44
-rw-r--r--source/fr/helpcontent2/source/text/scalc/guide.po38
-rw-r--r--source/fr/helpcontent2/source/text/schart/01.po12
-rw-r--r--source/fr/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/fr/helpcontent2/source/text/sdraw.po23
-rw-r--r--source/fr/helpcontent2/source/text/sdraw/00.po19
-rw-r--r--source/fr/helpcontent2/source/text/sdraw/01.po10
-rw-r--r--source/fr/helpcontent2/source/text/sdraw/guide.po8
-rw-r--r--source/fr/helpcontent2/source/text/shared.po26
-rw-r--r--source/fr/helpcontent2/source/text/shared/00.po76
-rw-r--r--source/fr/helpcontent2/source/text/shared/01.po284
-rw-r--r--source/fr/helpcontent2/source/text/shared/05.po10
-rw-r--r--source/fr/helpcontent2/source/text/shared/explorer/database.po1497
-rw-r--r--source/fr/helpcontent2/source/text/shared/guide.po135
-rw-r--r--source/fr/helpcontent2/source/text/shared/optionen.po54
-rw-r--r--source/fr/helpcontent2/source/text/simpress.po12
-rw-r--r--source/fr/helpcontent2/source/text/simpress/00.po23
-rw-r--r--source/fr/helpcontent2/source/text/simpress/01.po211
-rw-r--r--source/fr/helpcontent2/source/text/simpress/guide.po96
-rw-r--r--source/fr/helpcontent2/source/text/swriter.po36
-rw-r--r--source/fr/helpcontent2/source/text/swriter/00.po88
-rw-r--r--source/fr/helpcontent2/source/text/swriter/01.po167
-rw-r--r--source/fr/helpcontent2/source/text/swriter/02.po10
-rw-r--r--source/fr/helpcontent2/source/text/swriter/04.po6
-rw-r--r--source/fr/helpcontent2/source/text/swriter/guide.po222
-rw-r--r--source/fr/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/fr/sc/messages.po136
-rw-r--r--source/fr/sd/messages.po140
-rw-r--r--source/fr/sfx2/messages.po56
-rw-r--r--source/fr/svtools/messages.po128
-rw-r--r--source/fr/svx/messages.po174
-rw-r--r--source/fr/sw/messages.po1966
-rw-r--r--source/fr/vcl/messages.po178
-rw-r--r--source/fur/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po10
-rw-r--r--source/fur/extensions/messages.po104
-rw-r--r--source/fur/fpicker/messages.po46
-rw-r--r--source/fur/officecfg/registry/data/org/openoffice/Office/UI.po40
-rw-r--r--source/fur/sc/messages.po136
-rw-r--r--source/fur/sd/messages.po138
-rw-r--r--source/fur/sfx2/messages.po56
-rw-r--r--source/fur/svtools/messages.po128
-rw-r--r--source/fur/svx/messages.po140
-rw-r--r--source/fur/sw/messages.po1964
-rw-r--r--source/fur/vcl/messages.po178
-rw-r--r--source/fy/basic/messages.po6
-rw-r--r--source/fy/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/fy/extensions/messages.po104
-rw-r--r--source/fy/fpicker/messages.po44
-rw-r--r--source/fy/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/fy/sc/messages.po136
-rw-r--r--source/fy/sd/messages.po140
-rw-r--r--source/fy/sfx2/messages.po56
-rw-r--r--source/fy/svtools/messages.po130
-rw-r--r--source/fy/svx/messages.po142
-rw-r--r--source/fy/sw/messages.po1966
-rw-r--r--source/fy/vcl/messages.po178
-rw-r--r--source/ga/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/ga/extensions/messages.po104
-rw-r--r--source/ga/fpicker/messages.po44
-rw-r--r--source/ga/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/ga/sc/messages.po136
-rw-r--r--source/ga/sd/messages.po138
-rw-r--r--source/ga/sfx2/messages.po56
-rw-r--r--source/ga/svtools/messages.po128
-rw-r--r--source/ga/svx/messages.po140
-rw-r--r--source/ga/sw/messages.po1964
-rw-r--r--source/ga/vcl/messages.po178
-rw-r--r--source/gd/connectivity/messages.po8
-rw-r--r--source/gd/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/gd/dictionaries/eo.po12
-rw-r--r--source/gd/dictionaries/es.po12
-rw-r--r--source/gd/dictionaries/ko_KR.po12
-rw-r--r--source/gd/dictionaries/mn_MN.po12
-rw-r--r--source/gd/dictionaries/pt_PT.po12
-rw-r--r--source/gd/dictionaries/sq_AL.po8
-rw-r--r--source/gd/extensions/messages.po104
-rw-r--r--source/gd/fpicker/messages.po44
-rw-r--r--source/gd/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/gd/oox/messages.po12
-rw-r--r--source/gd/sc/messages.po136
-rw-r--r--source/gd/sd/messages.po138
-rw-r--r--source/gd/setup_native/source/mac.po9
-rw-r--r--source/gd/sfx2/classification.po12
-rw-r--r--source/gd/sfx2/messages.po56
-rw-r--r--source/gd/svtools/messages.po128
-rw-r--r--source/gd/svx/messages.po140
-rw-r--r--source/gd/sw/messages.po1972
-rw-r--r--source/gd/vcl/messages.po178
-rw-r--r--source/gl/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/gl/cui/messages.po16
-rw-r--r--source/gl/dbaccess/messages.po58
-rw-r--r--source/gl/dictionaries/be_BY.po8
-rw-r--r--source/gl/extensions/messages.po106
-rw-r--r--source/gl/fpicker/messages.po44
-rw-r--r--source/gl/helpcontent2/source/auxiliary.po11
-rw-r--r--source/gl/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/gl/helpcontent2/source/text/sbasic/python.po120
-rw-r--r--source/gl/helpcontent2/source/text/sbasic/shared.po752
-rw-r--r--source/gl/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/gl/helpcontent2/source/text/scalc.po8
-rw-r--r--source/gl/helpcontent2/source/text/scalc/01.po451
-rw-r--r--source/gl/helpcontent2/source/text/scalc/guide.po34
-rw-r--r--source/gl/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/gl/helpcontent2/source/text/sdraw.po13
-rw-r--r--source/gl/helpcontent2/source/text/sdraw/00.po19
-rw-r--r--source/gl/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/gl/helpcontent2/source/text/shared/00.po22
-rw-r--r--source/gl/helpcontent2/source/text/shared/01.po282
-rw-r--r--source/gl/helpcontent2/source/text/shared/explorer/database.po1489
-rw-r--r--source/gl/helpcontent2/source/text/shared/guide.po119
-rw-r--r--source/gl/helpcontent2/source/text/shared/optionen.po22
-rw-r--r--source/gl/helpcontent2/source/text/simpress/00.po17
-rw-r--r--source/gl/helpcontent2/source/text/simpress/01.po195
-rw-r--r--source/gl/helpcontent2/source/text/simpress/guide.po52
-rw-r--r--source/gl/helpcontent2/source/text/swriter.po22
-rw-r--r--source/gl/helpcontent2/source/text/swriter/00.po72
-rw-r--r--source/gl/helpcontent2/source/text/swriter/01.po165
-rw-r--r--source/gl/helpcontent2/source/text/swriter/02.po8
-rw-r--r--source/gl/helpcontent2/source/text/swriter/guide.po200
-rw-r--r--source/gl/officecfg/registry/data/org/openoffice/Office/UI.po50
-rw-r--r--source/gl/sc/messages.po140
-rw-r--r--source/gl/sd/messages.po152
-rw-r--r--source/gl/sfx2/messages.po60
-rw-r--r--source/gl/svtools/messages.po132
-rw-r--r--source/gl/svx/messages.po176
-rw-r--r--source/gl/sw/messages.po1978
-rw-r--r--source/gl/vcl/messages.po180
-rw-r--r--source/gu/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/gu/extensions/messages.po104
-rw-r--r--source/gu/fpicker/messages.po44
-rw-r--r--source/gu/helpcontent2/source/auxiliary.po11
-rw-r--r--source/gu/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/gu/helpcontent2/source/text/sbasic/python.po120
-rw-r--r--source/gu/helpcontent2/source/text/sbasic/shared.po746
-rw-r--r--source/gu/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/gu/helpcontent2/source/text/scalc.po8
-rw-r--r--source/gu/helpcontent2/source/text/scalc/01.po438
-rw-r--r--source/gu/helpcontent2/source/text/scalc/guide.po34
-rw-r--r--source/gu/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/gu/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/gu/helpcontent2/source/text/sdraw/00.po15
-rw-r--r--source/gu/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/gu/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/gu/helpcontent2/source/text/shared/01.po280
-rw-r--r--source/gu/helpcontent2/source/text/shared/explorer/database.po1487
-rw-r--r--source/gu/helpcontent2/source/text/shared/guide.po119
-rw-r--r--source/gu/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/gu/helpcontent2/source/text/simpress/00.po15
-rw-r--r--source/gu/helpcontent2/source/text/simpress/01.po201
-rw-r--r--source/gu/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/gu/helpcontent2/source/text/swriter.po20
-rw-r--r--source/gu/helpcontent2/source/text/swriter/00.po72
-rw-r--r--source/gu/helpcontent2/source/text/swriter/01.po163
-rw-r--r--source/gu/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/gu/helpcontent2/source/text/swriter/guide.po194
-rw-r--r--source/gu/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/gu/sc/messages.po136
-rw-r--r--source/gu/sd/messages.po142
-rw-r--r--source/gu/sfx2/messages.po56
-rw-r--r--source/gu/svtools/messages.po128
-rw-r--r--source/gu/svx/messages.po140
-rw-r--r--source/gu/sw/messages.po1964
-rw-r--r--source/gu/vcl/messages.po178
-rw-r--r--source/gug/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/gug/extensions/messages.po104
-rw-r--r--source/gug/fpicker/messages.po44
-rw-r--r--source/gug/helpcontent2/source/auxiliary.po13
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/guide.po352
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/python.po130
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/shared.po898
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/shared/02.po6
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/shared/03.po76
-rw-r--r--source/gug/helpcontent2/source/text/scalc.po12
-rw-r--r--source/gug/helpcontent2/source/text/scalc/01.po486
-rw-r--r--source/gug/helpcontent2/source/text/scalc/guide.po52
-rw-r--r--source/gug/helpcontent2/source/text/sdatabase.po1663
-rw-r--r--source/gug/helpcontent2/source/text/sdraw.po15
-rw-r--r--source/gug/helpcontent2/source/text/sdraw/00.po19
-rw-r--r--source/gug/helpcontent2/source/text/sdraw/01.po14
-rw-r--r--source/gug/helpcontent2/source/text/shared.po8
-rw-r--r--source/gug/helpcontent2/source/text/shared/00.po24
-rw-r--r--source/gug/helpcontent2/source/text/shared/01.po328
-rw-r--r--source/gug/helpcontent2/source/text/shared/02.po4
-rw-r--r--source/gug/helpcontent2/source/text/shared/autopi.po28
-rw-r--r--source/gug/helpcontent2/source/text/shared/explorer/database.po1497
-rw-r--r--source/gug/helpcontent2/source/text/shared/guide.po175
-rw-r--r--source/gug/helpcontent2/source/text/shared/optionen.po62
-rw-r--r--source/gug/helpcontent2/source/text/simpress.po4
-rw-r--r--source/gug/helpcontent2/source/text/simpress/00.po23
-rw-r--r--source/gug/helpcontent2/source/text/simpress/01.po219
-rw-r--r--source/gug/helpcontent2/source/text/simpress/02.po6
-rw-r--r--source/gug/helpcontent2/source/text/simpress/guide.po66
-rw-r--r--source/gug/helpcontent2/source/text/smath/01.po4
-rw-r--r--source/gug/helpcontent2/source/text/swriter.po22
-rw-r--r--source/gug/helpcontent2/source/text/swriter/00.po96
-rw-r--r--source/gug/helpcontent2/source/text/swriter/01.po195
-rw-r--r--source/gug/helpcontent2/source/text/swriter/02.po16
-rw-r--r--source/gug/helpcontent2/source/text/swriter/04.po4
-rw-r--r--source/gug/helpcontent2/source/text/swriter/guide.po238
-rw-r--r--source/gug/helpcontent2/source/text/swriter/librelogo.po6
-rw-r--r--source/gug/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/gug/sc/messages.po136
-rw-r--r--source/gug/sd/messages.po138
-rw-r--r--source/gug/sfx2/messages.po56
-rw-r--r--source/gug/svtools/messages.po128
-rw-r--r--source/gug/svx/messages.po140
-rw-r--r--source/gug/sw/messages.po1964
-rw-r--r--source/gug/vcl/messages.po178
-rw-r--r--source/he/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/he/dictionaries/be_BY.po8
-rw-r--r--source/he/dictionaries/pt_BR/dialog.po70
-rw-r--r--source/he/extensions/messages.po104
-rw-r--r--source/he/fpicker/messages.po44
-rw-r--r--source/he/helpcontent2/source/auxiliary.po11
-rw-r--r--source/he/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/he/helpcontent2/source/text/sbasic/python.po120
-rw-r--r--source/he/helpcontent2/source/text/sbasic/shared.po746
-rw-r--r--source/he/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/he/helpcontent2/source/text/scalc.po6
-rw-r--r--source/he/helpcontent2/source/text/scalc/01.po438
-rw-r--r--source/he/helpcontent2/source/text/scalc/guide.po34
-rw-r--r--source/he/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/he/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/he/helpcontent2/source/text/sdraw/00.po15
-rw-r--r--source/he/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/he/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/he/helpcontent2/source/text/shared/01.po280
-rw-r--r--source/he/helpcontent2/source/text/shared/explorer/database.po1487
-rw-r--r--source/he/helpcontent2/source/text/shared/guide.po117
-rw-r--r--source/he/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/he/helpcontent2/source/text/simpress/00.po15
-rw-r--r--source/he/helpcontent2/source/text/simpress/01.po193
-rw-r--r--source/he/helpcontent2/source/text/simpress/guide.po52
-rw-r--r--source/he/helpcontent2/source/text/swriter.po14
-rw-r--r--source/he/helpcontent2/source/text/swriter/00.po50
-rw-r--r--source/he/helpcontent2/source/text/swriter/01.po165
-rw-r--r--source/he/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/he/helpcontent2/source/text/swriter/guide.po196
-rw-r--r--source/he/nlpsolver/src/locale.po8
-rw-r--r--source/he/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/he/sc/messages.po136
-rw-r--r--source/he/sd/messages.po141
-rw-r--r--source/he/sfx2/messages.po56
-rw-r--r--source/he/svtools/messages.po128
-rw-r--r--source/he/svx/messages.po140
-rw-r--r--source/he/sw/messages.po2218
-rw-r--r--source/he/vcl/messages.po178
-rw-r--r--source/hi/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/hi/extensions/messages.po104
-rw-r--r--source/hi/fpicker/messages.po44
-rw-r--r--source/hi/helpcontent2/source/auxiliary.po11
-rw-r--r--source/hi/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/hi/helpcontent2/source/text/sbasic/python.po120
-rw-r--r--source/hi/helpcontent2/source/text/sbasic/shared.po742
-rw-r--r--source/hi/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/hi/helpcontent2/source/text/scalc.po6
-rw-r--r--source/hi/helpcontent2/source/text/scalc/01.po436
-rw-r--r--source/hi/helpcontent2/source/text/scalc/guide.po34
-rw-r--r--source/hi/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/hi/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/hi/helpcontent2/source/text/sdraw/00.po15
-rw-r--r--source/hi/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/hi/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/hi/helpcontent2/source/text/shared/01.po278
-rw-r--r--source/hi/helpcontent2/source/text/shared/explorer/database.po1485
-rw-r--r--source/hi/helpcontent2/source/text/shared/guide.po115
-rw-r--r--source/hi/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/hi/helpcontent2/source/text/simpress/00.po15
-rw-r--r--source/hi/helpcontent2/source/text/simpress/01.po189
-rw-r--r--source/hi/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/hi/helpcontent2/source/text/swriter.po14
-rw-r--r--source/hi/helpcontent2/source/text/swriter/00.po50
-rw-r--r--source/hi/helpcontent2/source/text/swriter/01.po163
-rw-r--r--source/hi/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/hi/helpcontent2/source/text/swriter/guide.po186
-rw-r--r--source/hi/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/hi/sc/messages.po136
-rw-r--r--source/hi/sd/messages.po145
-rw-r--r--source/hi/sfx2/messages.po56
-rw-r--r--source/hi/svtools/messages.po128
-rw-r--r--source/hi/svx/messages.po140
-rw-r--r--source/hi/sw/messages.po1964
-rw-r--r--source/hi/vcl/messages.po178
-rw-r--r--source/hr/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/hr/extensions/messages.po104
-rw-r--r--source/hr/fpicker/messages.po46
-rw-r--r--source/hr/helpcontent2/source/auxiliary.po11
-rw-r--r--source/hr/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/hr/helpcontent2/source/text/sbasic/python.po120
-rw-r--r--source/hr/helpcontent2/source/text/sbasic/shared.po742
-rw-r--r--source/hr/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/hr/helpcontent2/source/text/scalc.po6
-rw-r--r--source/hr/helpcontent2/source/text/scalc/01.po436
-rw-r--r--source/hr/helpcontent2/source/text/scalc/guide.po34
-rw-r--r--source/hr/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/hr/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/hr/helpcontent2/source/text/sdraw/00.po17
-rw-r--r--source/hr/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/hr/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/hr/helpcontent2/source/text/shared/01.po278
-rw-r--r--source/hr/helpcontent2/source/text/shared/explorer/database.po1485
-rw-r--r--source/hr/helpcontent2/source/text/shared/guide.po115
-rw-r--r--source/hr/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/hr/helpcontent2/source/text/simpress/00.po15
-rw-r--r--source/hr/helpcontent2/source/text/simpress/01.po187
-rw-r--r--source/hr/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/hr/helpcontent2/source/text/swriter.po14
-rw-r--r--source/hr/helpcontent2/source/text/swriter/00.po50
-rw-r--r--source/hr/helpcontent2/source/text/swriter/01.po165
-rw-r--r--source/hr/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/hr/helpcontent2/source/text/swriter/guide.po188
-rw-r--r--source/hr/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/hr/sc/messages.po136
-rw-r--r--source/hr/sd/messages.po138
-rw-r--r--source/hr/sfx2/messages.po56
-rw-r--r--source/hr/svtools/messages.po128
-rw-r--r--source/hr/svx/messages.po140
-rw-r--r--source/hr/sw/messages.po1964
-rw-r--r--source/hr/vcl/messages.po178
-rw-r--r--source/hsb/basic/messages.po6
-rw-r--r--source/hsb/chart2/messages.po10
-rw-r--r--source/hsb/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/hsb/dbaccess/messages.po20
-rw-r--r--source/hsb/dictionaries/be_BY.po8
-rw-r--r--source/hsb/extensions/messages.po116
-rw-r--r--source/hsb/filter/messages.po36
-rw-r--r--source/hsb/fpicker/messages.po44
-rw-r--r--source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/hsb/readlicense_oo/docs.po8
-rw-r--r--source/hsb/sc/messages.po136
-rw-r--r--source/hsb/sd/messages.po196
-rw-r--r--source/hsb/sfx2/classification.po36
-rw-r--r--source/hsb/sfx2/messages.po104
-rw-r--r--source/hsb/starmath/messages.po32
-rw-r--r--source/hsb/svtools/messages.po136
-rw-r--r--source/hsb/svx/messages.po174
-rw-r--r--source/hsb/sw/messages.po1964
-rw-r--r--source/hsb/uui/messages.po18
-rw-r--r--source/hsb/vcl/messages.po192
-rw-r--r--source/hu/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/hu/extensions/messages.po104
-rw-r--r--source/hu/fpicker/messages.po46
-rw-r--r--source/hu/helpcontent2/source/auxiliary.po11
-rw-r--r--source/hu/helpcontent2/source/text/sbasic/guide.po346
-rw-r--r--source/hu/helpcontent2/source/text/sbasic/python.po120
-rw-r--r--source/hu/helpcontent2/source/text/sbasic/shared.po758
-rw-r--r--source/hu/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/hu/helpcontent2/source/text/scalc.po8
-rw-r--r--source/hu/helpcontent2/source/text/scalc/01.po438
-rw-r--r--source/hu/helpcontent2/source/text/scalc/guide.po36
-rw-r--r--source/hu/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/hu/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/hu/helpcontent2/source/text/sdraw/00.po19
-rw-r--r--source/hu/helpcontent2/source/text/sdraw/01.po8
-rw-r--r--source/hu/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/hu/helpcontent2/source/text/shared/01.po282
-rw-r--r--source/hu/helpcontent2/source/text/shared/explorer/database.po1493
-rw-r--r--source/hu/helpcontent2/source/text/shared/guide.po119
-rw-r--r--source/hu/helpcontent2/source/text/shared/optionen.po22
-rw-r--r--source/hu/helpcontent2/source/text/simpress/00.po17
-rw-r--r--source/hu/helpcontent2/source/text/simpress/01.po201
-rw-r--r--source/hu/helpcontent2/source/text/simpress/guide.po52
-rw-r--r--source/hu/helpcontent2/source/text/swriter.po20
-rw-r--r--source/hu/helpcontent2/source/text/swriter/00.po72
-rw-r--r--source/hu/helpcontent2/source/text/swriter/01.po165
-rw-r--r--source/hu/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/hu/helpcontent2/source/text/swriter/guide.po198
-rw-r--r--source/hu/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/hu/sc/messages.po136
-rw-r--r--source/hu/sd/messages.po140
-rw-r--r--source/hu/sfx2/messages.po56
-rw-r--r--source/hu/svtools/messages.po128
-rw-r--r--source/hu/svx/messages.po174
-rw-r--r--source/hu/sw/messages.po1966
-rw-r--r--source/hu/vcl/messages.po178
-rw-r--r--source/id/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/id/extensions/messages.po106
-rw-r--r--source/id/fpicker/messages.po46
-rw-r--r--source/id/helpcontent2/source/auxiliary.po13
-rw-r--r--source/id/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/id/helpcontent2/source/text/sbasic/python.po128
-rw-r--r--source/id/helpcontent2/source/text/sbasic/shared.po768
-rw-r--r--source/id/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/id/helpcontent2/source/text/scalc.po8
-rw-r--r--source/id/helpcontent2/source/text/scalc/01.po443
-rw-r--r--source/id/helpcontent2/source/text/scalc/guide.po38
-rw-r--r--source/id/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/id/helpcontent2/source/text/sdraw.po13
-rw-r--r--source/id/helpcontent2/source/text/sdraw/00.po19
-rw-r--r--source/id/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/id/helpcontent2/source/text/shared/00.po22
-rw-r--r--source/id/helpcontent2/source/text/shared/01.po282
-rw-r--r--source/id/helpcontent2/source/text/shared/explorer/database.po1495
-rw-r--r--source/id/helpcontent2/source/text/shared/guide.po133
-rw-r--r--source/id/helpcontent2/source/text/shared/optionen.po26
-rw-r--r--source/id/helpcontent2/source/text/simpress/00.po17
-rw-r--r--source/id/helpcontent2/source/text/simpress/01.po203
-rw-r--r--source/id/helpcontent2/source/text/simpress/guide.po52
-rw-r--r--source/id/helpcontent2/source/text/swriter.po22
-rw-r--r--source/id/helpcontent2/source/text/swriter/00.po72
-rw-r--r--source/id/helpcontent2/source/text/swriter/01.po167
-rw-r--r--source/id/helpcontent2/source/text/swriter/02.po8
-rw-r--r--source/id/helpcontent2/source/text/swriter/guide.po202
-rw-r--r--source/id/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/id/sc/messages.po136
-rw-r--r--source/id/sd/messages.po142
-rw-r--r--source/id/sfx2/messages.po56
-rw-r--r--source/id/svtools/messages.po128
-rw-r--r--source/id/svx/messages.po182
-rw-r--r--source/id/sw/messages.po1966
-rw-r--r--source/id/vcl/messages.po180
-rw-r--r--source/is/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/is/extensions/messages.po104
-rw-r--r--source/is/fpicker/messages.po44
-rw-r--r--source/is/helpcontent2/source/auxiliary.po11
-rw-r--r--source/is/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/is/helpcontent2/source/text/sbasic/python.po120
-rw-r--r--source/is/helpcontent2/source/text/sbasic/shared.po744
-rw-r--r--source/is/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/is/helpcontent2/source/text/scalc.po8
-rw-r--r--source/is/helpcontent2/source/text/scalc/01.po436
-rw-r--r--source/is/helpcontent2/source/text/scalc/guide.po34
-rw-r--r--source/is/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/is/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/is/helpcontent2/source/text/sdraw/00.po15
-rw-r--r--source/is/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/is/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/is/helpcontent2/source/text/shared/01.po278
-rw-r--r--source/is/helpcontent2/source/text/shared/explorer/database.po1485
-rw-r--r--source/is/helpcontent2/source/text/shared/guide.po115
-rw-r--r--source/is/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/is/helpcontent2/source/text/simpress/00.po15
-rw-r--r--source/is/helpcontent2/source/text/simpress/01.po187
-rw-r--r--source/is/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/is/helpcontent2/source/text/swriter.po20
-rw-r--r--source/is/helpcontent2/source/text/swriter/00.po72
-rw-r--r--source/is/helpcontent2/source/text/swriter/01.po165
-rw-r--r--source/is/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/is/helpcontent2/source/text/swriter/guide.po178
-rw-r--r--source/is/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/is/sc/messages.po136
-rw-r--r--source/is/sd/messages.po140
-rw-r--r--source/is/sfx2/messages.po56
-rw-r--r--source/is/svtools/messages.po128
-rw-r--r--source/is/svx/messages.po140
-rw-r--r--source/is/sw/messages.po1964
-rw-r--r--source/is/vcl/messages.po178
-rw-r--r--source/it/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/it/extensions/messages.po104
-rw-r--r--source/it/fpicker/messages.po46
-rw-r--r--source/it/helpcontent2/source/auxiliary.po11
-rw-r--r--source/it/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/it/helpcontent2/source/text/sbasic/python.po134
-rw-r--r--source/it/helpcontent2/source/text/sbasic/shared.po774
-rw-r--r--source/it/helpcontent2/source/text/sbasic/shared/03.po85
-rw-r--r--source/it/helpcontent2/source/text/scalc.po8
-rw-r--r--source/it/helpcontent2/source/text/scalc/01.po442
-rw-r--r--source/it/helpcontent2/source/text/scalc/guide.po38
-rw-r--r--source/it/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/it/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/it/helpcontent2/source/text/sdraw/00.po19
-rw-r--r--source/it/helpcontent2/source/text/sdraw/01.po10
-rw-r--r--source/it/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/it/helpcontent2/source/text/shared/01.po284
-rw-r--r--source/it/helpcontent2/source/text/shared/explorer/database.po1493
-rw-r--r--source/it/helpcontent2/source/text/shared/guide.po135
-rw-r--r--source/it/helpcontent2/source/text/shared/optionen.po26
-rw-r--r--source/it/helpcontent2/source/text/simpress/00.po17
-rw-r--r--source/it/helpcontent2/source/text/simpress/01.po205
-rw-r--r--source/it/helpcontent2/source/text/simpress/guide.po52
-rw-r--r--source/it/helpcontent2/source/text/swriter.po20
-rw-r--r--source/it/helpcontent2/source/text/swriter/00.po74
-rw-r--r--source/it/helpcontent2/source/text/swriter/01.po167
-rw-r--r--source/it/helpcontent2/source/text/swriter/02.po10
-rw-r--r--source/it/helpcontent2/source/text/swriter/guide.po208
-rw-r--r--source/it/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/it/sc/messages.po136
-rw-r--r--source/it/sd/messages.po140
-rw-r--r--source/it/sfx2/messages.po56
-rw-r--r--source/it/svtools/messages.po128
-rw-r--r--source/it/svx/messages.po174
-rw-r--r--source/it/sw/messages.po1966
-rw-r--r--source/it/vcl/messages.po178
-rw-r--r--source/ja/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/ja/extensions/messages.po104
-rw-r--r--source/ja/fpicker/messages.po44
-rw-r--r--source/ja/helpcontent2/source/auxiliary.po11
-rw-r--r--source/ja/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/ja/helpcontent2/source/text/sbasic/python.po128
-rw-r--r--source/ja/helpcontent2/source/text/sbasic/shared.po746
-rw-r--r--source/ja/helpcontent2/source/text/sbasic/shared/03.po28
-rw-r--r--source/ja/helpcontent2/source/text/scalc.po8
-rw-r--r--source/ja/helpcontent2/source/text/scalc/01.po438
-rw-r--r--source/ja/helpcontent2/source/text/scalc/guide.po36
-rw-r--r--source/ja/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/ja/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/ja/helpcontent2/source/text/sdraw/00.po15
-rw-r--r--source/ja/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/ja/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/ja/helpcontent2/source/text/shared/01.po282
-rw-r--r--source/ja/helpcontent2/source/text/shared/explorer/database.po1487
-rw-r--r--source/ja/helpcontent2/source/text/shared/guide.po167
-rw-r--r--source/ja/helpcontent2/source/text/shared/optionen.po22
-rw-r--r--source/ja/helpcontent2/source/text/simpress/00.po15
-rw-r--r--source/ja/helpcontent2/source/text/simpress/01.po201
-rw-r--r--source/ja/helpcontent2/source/text/simpress/guide.po52
-rw-r--r--source/ja/helpcontent2/source/text/swriter.po20
-rw-r--r--source/ja/helpcontent2/source/text/swriter/00.po72
-rw-r--r--source/ja/helpcontent2/source/text/swriter/01.po165
-rw-r--r--source/ja/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/ja/helpcontent2/source/text/swriter/guide.po198
-rw-r--r--source/ja/officecfg/registry/data/org/openoffice/Office/UI.po104
-rw-r--r--source/ja/sc/messages.po136
-rw-r--r--source/ja/sd/messages.po140
-rw-r--r--source/ja/sfx2/messages.po90
-rw-r--r--source/ja/svtools/messages.po128
-rw-r--r--source/ja/svx/messages.po176
-rw-r--r--source/ja/sw/messages.po1976
-rw-r--r--source/ja/vcl/messages.po180
-rw-r--r--source/jv/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/jv/extensions/messages.po104
-rw-r--r--source/jv/fpicker/messages.po44
-rw-r--r--source/jv/officecfg/registry/data/org/openoffice/Office/UI.po40
-rw-r--r--source/jv/sc/messages.po136
-rw-r--r--source/jv/sd/messages.po138
-rw-r--r--source/jv/sfx2/messages.po56
-rw-r--r--source/jv/svtools/messages.po128
-rw-r--r--source/jv/svx/messages.po140
-rw-r--r--source/jv/sw/messages.po1964
-rw-r--r--source/jv/vcl/messages.po178
-rw-r--r--source/ka/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/ka/extensions/messages.po104
-rw-r--r--source/ka/fpicker/messages.po44
-rw-r--r--source/ka/helpcontent2/source/auxiliary.po11
-rw-r--r--source/ka/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/ka/helpcontent2/source/text/sbasic/python.po120
-rw-r--r--source/ka/helpcontent2/source/text/sbasic/shared.po746
-rw-r--r--source/ka/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/ka/helpcontent2/source/text/scalc.po8
-rw-r--r--source/ka/helpcontent2/source/text/scalc/01.po436
-rw-r--r--source/ka/helpcontent2/source/text/scalc/guide.po34
-rw-r--r--source/ka/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/ka/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/ka/helpcontent2/source/text/sdraw/00.po15
-rw-r--r--source/ka/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/ka/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/ka/helpcontent2/source/text/shared/01.po278
-rw-r--r--source/ka/helpcontent2/source/text/shared/explorer/database.po1487
-rw-r--r--source/ka/helpcontent2/source/text/shared/guide.po115
-rw-r--r--source/ka/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/ka/helpcontent2/source/text/simpress/00.po15
-rw-r--r--source/ka/helpcontent2/source/text/simpress/01.po183
-rw-r--r--source/ka/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/ka/helpcontent2/source/text/swriter.po20
-rw-r--r--source/ka/helpcontent2/source/text/swriter/00.po50
-rw-r--r--source/ka/helpcontent2/source/text/swriter/01.po165
-rw-r--r--source/ka/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/ka/helpcontent2/source/text/swriter/guide.po178
-rw-r--r--source/ka/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/ka/sc/messages.po136
-rw-r--r--source/ka/sd/messages.po145
-rw-r--r--source/ka/sfx2/messages.po56
-rw-r--r--source/ka/svtools/messages.po128
-rw-r--r--source/ka/svx/messages.po140
-rw-r--r--source/ka/sw/messages.po1964
-rw-r--r--source/ka/vcl/messages.po178
-rw-r--r--source/kab/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/kab/extensions/messages.po104
-rw-r--r--source/kab/fpicker/messages.po44
-rw-r--r--source/kab/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/kab/sc/messages.po136
-rw-r--r--source/kab/sd/messages.po138
-rw-r--r--source/kab/sfx2/messages.po56
-rw-r--r--source/kab/svtools/messages.po128
-rw-r--r--source/kab/svx/messages.po140
-rw-r--r--source/kab/sw/messages.po1964
-rw-r--r--source/kab/vcl/messages.po178
-rw-r--r--source/kk/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po10
-rw-r--r--source/kk/extensions/messages.po104
-rw-r--r--source/kk/fpicker/messages.po44
-rw-r--r--source/kk/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/kk/sc/messages.po136
-rw-r--r--source/kk/sd/messages.po140
-rw-r--r--source/kk/sfx2/messages.po56
-rw-r--r--source/kk/svtools/messages.po128
-rw-r--r--source/kk/svx/messages.po144
-rw-r--r--source/kk/sw/messages.po1966
-rw-r--r--source/kk/vcl/messages.po178
-rw-r--r--source/kl/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/kl/extensions/messages.po104
-rw-r--r--source/kl/fpicker/messages.po44
-rw-r--r--source/kl/officecfg/registry/data/org/openoffice/Office/UI.po40
-rw-r--r--source/kl/sc/messages.po136
-rw-r--r--source/kl/sd/messages.po138
-rw-r--r--source/kl/sfx2/messages.po56
-rw-r--r--source/kl/svtools/messages.po128
-rw-r--r--source/kl/svx/messages.po140
-rw-r--r--source/kl/sw/messages.po1964
-rw-r--r--source/kl/vcl/messages.po178
-rw-r--r--source/km/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/km/extensions/messages.po104
-rw-r--r--source/km/fpicker/messages.po44
-rw-r--r--source/km/helpcontent2/source/auxiliary.po11
-rw-r--r--source/km/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/km/helpcontent2/source/text/sbasic/python.po120
-rw-r--r--source/km/helpcontent2/source/text/sbasic/shared.po746
-rw-r--r--source/km/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/km/helpcontent2/source/text/scalc.po8
-rw-r--r--source/km/helpcontent2/source/text/scalc/01.po438
-rw-r--r--source/km/helpcontent2/source/text/scalc/guide.po36
-rw-r--r--source/km/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/km/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/km/helpcontent2/source/text/sdraw/00.po15
-rw-r--r--source/km/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/km/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/km/helpcontent2/source/text/shared/01.po282
-rw-r--r--source/km/helpcontent2/source/text/shared/explorer/database.po1487
-rw-r--r--source/km/helpcontent2/source/text/shared/guide.po119
-rw-r--r--source/km/helpcontent2/source/text/shared/optionen.po22
-rw-r--r--source/km/helpcontent2/source/text/simpress/00.po15
-rw-r--r--source/km/helpcontent2/source/text/simpress/01.po201
-rw-r--r--source/km/helpcontent2/source/text/simpress/guide.po52
-rw-r--r--source/km/helpcontent2/source/text/swriter.po20
-rw-r--r--source/km/helpcontent2/source/text/swriter/00.po72
-rw-r--r--source/km/helpcontent2/source/text/swriter/01.po165
-rw-r--r--source/km/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/km/helpcontent2/source/text/swriter/guide.po198
-rw-r--r--source/km/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/km/sc/messages.po136
-rw-r--r--source/km/sd/messages.po142
-rw-r--r--source/km/sfx2/messages.po56
-rw-r--r--source/km/svtools/messages.po128
-rw-r--r--source/km/svx/messages.po140
-rw-r--r--source/km/sw/messages.po1964
-rw-r--r--source/km/vcl/messages.po178
-rw-r--r--source/kmr-Latn/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/kmr-Latn/extensions/messages.po104
-rw-r--r--source/kmr-Latn/fpicker/messages.po44
-rw-r--r--source/kmr-Latn/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/kmr-Latn/sc/messages.po136
-rw-r--r--source/kmr-Latn/sd/messages.po145
-rw-r--r--source/kmr-Latn/sfx2/messages.po56
-rw-r--r--source/kmr-Latn/svtools/messages.po128
-rw-r--r--source/kmr-Latn/svx/messages.po140
-rw-r--r--source/kmr-Latn/sw/messages.po1964
-rw-r--r--source/kmr-Latn/vcl/messages.po178
-rw-r--r--source/kn/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/kn/extensions/messages.po104
-rw-r--r--source/kn/fpicker/messages.po44
-rw-r--r--source/kn/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/kn/sc/messages.po136
-rw-r--r--source/kn/sd/messages.po142
-rw-r--r--source/kn/sfx2/messages.po56
-rw-r--r--source/kn/svtools/messages.po128
-rw-r--r--source/kn/svx/messages.po140
-rw-r--r--source/kn/sw/messages.po1964
-rw-r--r--source/kn/vcl/messages.po178
-rw-r--r--source/ko/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/ko/extensions/messages.po104
-rw-r--r--source/ko/fpicker/messages.po46
-rw-r--r--source/ko/helpcontent2/source/auxiliary.po20
-rw-r--r--source/ko/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/ko/helpcontent2/source/text/sbasic/python.po120
-rw-r--r--source/ko/helpcontent2/source/text/sbasic/shared.po746
-rw-r--r--source/ko/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/ko/helpcontent2/source/text/scalc.po8
-rw-r--r--source/ko/helpcontent2/source/text/scalc/01.po438
-rw-r--r--source/ko/helpcontent2/source/text/scalc/guide.po36
-rw-r--r--source/ko/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/ko/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/ko/helpcontent2/source/text/sdraw/00.po15
-rw-r--r--source/ko/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/ko/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/ko/helpcontent2/source/text/shared/01.po282
-rw-r--r--source/ko/helpcontent2/source/text/shared/explorer/database.po1489
-rw-r--r--source/ko/helpcontent2/source/text/shared/guide.po119
-rw-r--r--source/ko/helpcontent2/source/text/shared/optionen.po22
-rw-r--r--source/ko/helpcontent2/source/text/simpress/00.po15
-rw-r--r--source/ko/helpcontent2/source/text/simpress/01.po201
-rw-r--r--source/ko/helpcontent2/source/text/simpress/guide.po52
-rw-r--r--source/ko/helpcontent2/source/text/swriter.po20
-rw-r--r--source/ko/helpcontent2/source/text/swriter/00.po72
-rw-r--r--source/ko/helpcontent2/source/text/swriter/01.po165
-rw-r--r--source/ko/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/ko/helpcontent2/source/text/swriter/guide.po198
-rw-r--r--source/ko/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/ko/sc/messages.po146
-rw-r--r--source/ko/sd/messages.po138
-rw-r--r--source/ko/sfx2/messages.po56
-rw-r--r--source/ko/svtools/messages.po128
-rw-r--r--source/ko/svx/messages.po140
-rw-r--r--source/ko/sw/messages.po1979
-rw-r--r--source/ko/vcl/messages.po178
-rw-r--r--source/kok/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/kok/extensions/messages.po104
-rw-r--r--source/kok/fpicker/messages.po44
-rw-r--r--source/kok/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/kok/sc/messages.po136
-rw-r--r--source/kok/sd/messages.po145
-rw-r--r--source/kok/sfx2/messages.po56
-rw-r--r--source/kok/svtools/messages.po128
-rw-r--r--source/kok/svx/messages.po140
-rw-r--r--source/kok/sw/messages.po1964
-rw-r--r--source/kok/vcl/messages.po178
-rw-r--r--source/ks/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/ks/extensions/messages.po104
-rw-r--r--source/ks/fpicker/messages.po44
-rw-r--r--source/ks/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/ks/sc/messages.po136
-rw-r--r--source/ks/sd/messages.po145
-rw-r--r--source/ks/sfx2/messages.po56
-rw-r--r--source/ks/svtools/messages.po128
-rw-r--r--source/ks/svx/messages.po140
-rw-r--r--source/ks/sw/messages.po1964
-rw-r--r--source/ks/vcl/messages.po178
-rw-r--r--source/ky/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/ky/extensions/messages.po104
-rw-r--r--source/ky/fpicker/messages.po44
-rw-r--r--source/ky/officecfg/registry/data/org/openoffice/Office/UI.po40
-rw-r--r--source/ky/sc/messages.po136
-rw-r--r--source/ky/sd/messages.po138
-rw-r--r--source/ky/sfx2/messages.po56
-rw-r--r--source/ky/svtools/messages.po128
-rw-r--r--source/ky/svx/messages.po140
-rw-r--r--source/ky/sw/messages.po1964
-rw-r--r--source/ky/vcl/messages.po178
-rw-r--r--source/lb/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/lb/extensions/messages.po104
-rw-r--r--source/lb/fpicker/messages.po44
-rw-r--r--source/lb/officecfg/registry/data/org/openoffice/Office/UI.po40
-rw-r--r--source/lb/sc/messages.po136
-rw-r--r--source/lb/sd/messages.po143
-rw-r--r--source/lb/sfx2/messages.po56
-rw-r--r--source/lb/svtools/messages.po128
-rw-r--r--source/lb/svx/messages.po140
-rw-r--r--source/lb/sw/messages.po1964
-rw-r--r--source/lb/vcl/messages.po178
-rw-r--r--source/lo/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/lo/extensions/messages.po104
-rw-r--r--source/lo/fpicker/messages.po44
-rw-r--r--source/lo/helpcontent2/source/auxiliary.po11
-rw-r--r--source/lo/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/lo/helpcontent2/source/text/sbasic/python.po120
-rw-r--r--source/lo/helpcontent2/source/text/sbasic/shared.po738
-rw-r--r--source/lo/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/lo/helpcontent2/source/text/scalc.po6
-rw-r--r--source/lo/helpcontent2/source/text/scalc/01.po436
-rw-r--r--source/lo/helpcontent2/source/text/scalc/guide.po34
-rw-r--r--source/lo/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/lo/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/lo/helpcontent2/source/text/sdraw/00.po15
-rw-r--r--source/lo/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/lo/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/lo/helpcontent2/source/text/shared/01.po278
-rw-r--r--source/lo/helpcontent2/source/text/shared/explorer/database.po1485
-rw-r--r--source/lo/helpcontent2/source/text/shared/guide.po115
-rw-r--r--source/lo/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/lo/helpcontent2/source/text/simpress/00.po15
-rw-r--r--source/lo/helpcontent2/source/text/simpress/01.po183
-rw-r--r--source/lo/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/lo/helpcontent2/source/text/swriter.po14
-rw-r--r--source/lo/helpcontent2/source/text/swriter/00.po50
-rw-r--r--source/lo/helpcontent2/source/text/swriter/01.po163
-rw-r--r--source/lo/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/lo/helpcontent2/source/text/swriter/guide.po176
-rw-r--r--source/lo/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/lo/sc/messages.po136
-rw-r--r--source/lo/sd/messages.po145
-rw-r--r--source/lo/sfx2/messages.po56
-rw-r--r--source/lo/svtools/messages.po128
-rw-r--r--source/lo/svx/messages.po140
-rw-r--r--source/lo/sw/messages.po1964
-rw-r--r--source/lo/vcl/messages.po178
-rw-r--r--source/lt/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/lt/extensions/messages.po104
-rw-r--r--source/lt/fpicker/messages.po46
-rw-r--r--source/lt/helpcontent2/source/auxiliary.po11
-rw-r--r--source/lt/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/lt/helpcontent2/source/text/sbasic/python.po128
-rw-r--r--source/lt/helpcontent2/source/text/sbasic/shared.po774
-rw-r--r--source/lt/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/lt/helpcontent2/source/text/scalc.po8
-rw-r--r--source/lt/helpcontent2/source/text/scalc/01.po442
-rw-r--r--source/lt/helpcontent2/source/text/scalc/guide.po38
-rw-r--r--source/lt/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/lt/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/lt/helpcontent2/source/text/sdraw/00.po19
-rw-r--r--source/lt/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/lt/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/lt/helpcontent2/source/text/shared/01.po278
-rw-r--r--source/lt/helpcontent2/source/text/shared/explorer/database.po1493
-rw-r--r--source/lt/helpcontent2/source/text/shared/guide.po119
-rw-r--r--source/lt/helpcontent2/source/text/shared/optionen.po26
-rw-r--r--source/lt/helpcontent2/source/text/simpress/00.po17
-rw-r--r--source/lt/helpcontent2/source/text/simpress/01.po205
-rw-r--r--source/lt/helpcontent2/source/text/simpress/guide.po52
-rw-r--r--source/lt/helpcontent2/source/text/swriter.po20
-rw-r--r--source/lt/helpcontent2/source/text/swriter/00.po74
-rw-r--r--source/lt/helpcontent2/source/text/swriter/01.po167
-rw-r--r--source/lt/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/lt/helpcontent2/source/text/swriter/guide.po202
-rw-r--r--source/lt/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/lt/sc/messages.po136
-rw-r--r--source/lt/sd/messages.po138
-rw-r--r--source/lt/sfx2/messages.po56
-rw-r--r--source/lt/svtools/messages.po128
-rw-r--r--source/lt/svx/messages.po140
-rw-r--r--source/lt/sw/messages.po1964
-rw-r--r--source/lt/vcl/messages.po178
-rw-r--r--source/lv/accessibility/messages.po16
-rw-r--r--source/lv/avmedia/messages.po12
-rw-r--r--source/lv/basctl/messages.po12
-rw-r--r--source/lv/basic/messages.po12
-rw-r--r--source/lv/chart2/messages.po12
-rw-r--r--source/lv/connectivity/messages.po12
-rw-r--r--source/lv/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/lv/cui/messages.po10
-rw-r--r--source/lv/dbaccess/messages.po12
-rw-r--r--source/lv/desktop/messages.po10
-rw-r--r--source/lv/editeng/messages.po12
-rw-r--r--source/lv/extensions/messages.po114
-rw-r--r--source/lv/filter/messages.po12
-rw-r--r--source/lv/forms/messages.po12
-rw-r--r--source/lv/formula/messages.po12
-rw-r--r--source/lv/fpicker/messages.po54
-rw-r--r--source/lv/framework/messages.po12
-rw-r--r--source/lv/helpcontent2/source/auxiliary.po11
-rw-r--r--source/lv/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/lv/helpcontent2/source/text/sbasic/python.po126
-rw-r--r--source/lv/helpcontent2/source/text/sbasic/shared.po742
-rw-r--r--source/lv/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/lv/helpcontent2/source/text/scalc.po6
-rw-r--r--source/lv/helpcontent2/source/text/scalc/01.po436
-rw-r--r--source/lv/helpcontent2/source/text/scalc/guide.po34
-rw-r--r--source/lv/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/lv/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/lv/helpcontent2/source/text/sdraw/00.po15
-rw-r--r--source/lv/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/lv/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/lv/helpcontent2/source/text/shared/01.po278
-rw-r--r--source/lv/helpcontent2/source/text/shared/explorer/database.po1487
-rw-r--r--source/lv/helpcontent2/source/text/shared/guide.po115
-rw-r--r--source/lv/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/lv/helpcontent2/source/text/simpress/00.po15
-rw-r--r--source/lv/helpcontent2/source/text/simpress/01.po187
-rw-r--r--source/lv/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/lv/helpcontent2/source/text/swriter.po14
-rw-r--r--source/lv/helpcontent2/source/text/swriter/00.po72
-rw-r--r--source/lv/helpcontent2/source/text/swriter/01.po165
-rw-r--r--source/lv/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/lv/helpcontent2/source/text/swriter/guide.po182
-rw-r--r--source/lv/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/lv/oox/messages.po10
-rw-r--r--source/lv/reportdesign/messages.po12
-rw-r--r--source/lv/sc/messages.po146
-rw-r--r--source/lv/scaddins/messages.po12
-rw-r--r--source/lv/sccomp/messages.po12
-rw-r--r--source/lv/sd/messages.po150
-rw-r--r--source/lv/sfx2/messages.po66
-rw-r--r--source/lv/shell/messages.po12
-rw-r--r--source/lv/starmath/messages.po12
-rw-r--r--source/lv/svl/messages.po12
-rw-r--r--source/lv/svtools/messages.po138
-rw-r--r--source/lv/svx/messages.po150
-rw-r--r--source/lv/sw/messages.po1972
-rw-r--r--source/lv/uui/messages.po12
-rw-r--r--source/lv/vcl/messages.po190
-rw-r--r--source/lv/wizards/messages.po12
-rw-r--r--source/lv/writerperfect/messages.po12
-rw-r--r--source/lv/xmlsecurity/messages.po12
-rw-r--r--source/mai/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/mai/extensions/messages.po104
-rw-r--r--source/mai/fpicker/messages.po44
-rw-r--r--source/mai/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/mai/sc/messages.po136
-rw-r--r--source/mai/sd/messages.po145
-rw-r--r--source/mai/sfx2/messages.po56
-rw-r--r--source/mai/svtools/messages.po128
-rw-r--r--source/mai/svx/messages.po140
-rw-r--r--source/mai/sw/messages.po1964
-rw-r--r--source/mai/vcl/messages.po178
-rw-r--r--source/mk/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/mk/extensions/messages.po104
-rw-r--r--source/mk/fpicker/messages.po44
-rw-r--r--source/mk/helpcontent2/source/auxiliary.po11
-rw-r--r--source/mk/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/mk/helpcontent2/source/text/sbasic/python.po120
-rw-r--r--source/mk/helpcontent2/source/text/sbasic/shared.po746
-rw-r--r--source/mk/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/mk/helpcontent2/source/text/scalc.po8
-rw-r--r--source/mk/helpcontent2/source/text/scalc/01.po438
-rw-r--r--source/mk/helpcontent2/source/text/scalc/guide.po34
-rw-r--r--source/mk/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/mk/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/mk/helpcontent2/source/text/sdraw/00.po15
-rw-r--r--source/mk/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/mk/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/mk/helpcontent2/source/text/shared/01.po282
-rw-r--r--source/mk/helpcontent2/source/text/shared/explorer/database.po1487
-rw-r--r--source/mk/helpcontent2/source/text/shared/guide.po119
-rw-r--r--source/mk/helpcontent2/source/text/shared/optionen.po22
-rw-r--r--source/mk/helpcontent2/source/text/simpress/00.po15
-rw-r--r--source/mk/helpcontent2/source/text/simpress/01.po201
-rw-r--r--source/mk/helpcontent2/source/text/simpress/guide.po44
-rw-r--r--source/mk/helpcontent2/source/text/swriter.po20
-rw-r--r--source/mk/helpcontent2/source/text/swriter/00.po72
-rw-r--r--source/mk/helpcontent2/source/text/swriter/01.po165
-rw-r--r--source/mk/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/mk/helpcontent2/source/text/swriter/guide.po198
-rw-r--r--source/mk/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/mk/sc/messages.po136
-rw-r--r--source/mk/sd/messages.po145
-rw-r--r--source/mk/sfx2/messages.po56
-rw-r--r--source/mk/svtools/messages.po128
-rw-r--r--source/mk/svx/messages.po140
-rw-r--r--source/mk/sw/messages.po1964
-rw-r--r--source/mk/vcl/messages.po178
-rw-r--r--source/ml/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/ml/extensions/messages.po104
-rw-r--r--source/ml/fpicker/messages.po44
-rw-r--r--source/ml/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/ml/sc/messages.po136
-rw-r--r--source/ml/sd/messages.po145
-rw-r--r--source/ml/sfx2/messages.po56
-rw-r--r--source/ml/svtools/messages.po128
-rw-r--r--source/ml/svx/messages.po140
-rw-r--r--source/ml/sw/messages.po1964
-rw-r--r--source/ml/vcl/messages.po178
-rw-r--r--source/mn/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po10
-rw-r--r--source/mn/extensions/messages.po104
-rw-r--r--source/mn/fpicker/messages.po44
-rw-r--r--source/mn/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/mn/sc/messages.po136
-rw-r--r--source/mn/sd/messages.po145
-rw-r--r--source/mn/sfx2/messages.po56
-rw-r--r--source/mn/svtools/messages.po128
-rw-r--r--source/mn/svx/messages.po140
-rw-r--r--source/mn/sw/messages.po1964
-rw-r--r--source/mn/vcl/messages.po178
-rw-r--r--source/mni/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/mni/extensions/messages.po104
-rw-r--r--source/mni/fpicker/messages.po44
-rw-r--r--source/mni/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/mni/sc/messages.po136
-rw-r--r--source/mni/sd/messages.po144
-rw-r--r--source/mni/sfx2/messages.po56
-rw-r--r--source/mni/svtools/messages.po128
-rw-r--r--source/mni/svx/messages.po140
-rw-r--r--source/mni/sw/messages.po1964
-rw-r--r--source/mni/vcl/messages.po178
-rw-r--r--source/mr/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/mr/extensions/messages.po104
-rw-r--r--source/mr/fpicker/messages.po44
-rw-r--r--source/mr/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/mr/sc/messages.po136
-rw-r--r--source/mr/sd/messages.po142
-rw-r--r--source/mr/sfx2/messages.po56
-rw-r--r--source/mr/svtools/messages.po128
-rw-r--r--source/mr/svx/messages.po140
-rw-r--r--source/mr/sw/messages.po1964
-rw-r--r--source/mr/vcl/messages.po178
-rw-r--r--source/my/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/my/extensions/messages.po104
-rw-r--r--source/my/fpicker/messages.po44
-rw-r--r--source/my/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/my/sc/messages.po136
-rw-r--r--source/my/sd/messages.po145
-rw-r--r--source/my/sfx2/messages.po56
-rw-r--r--source/my/svtools/messages.po128
-rw-r--r--source/my/svx/messages.po140
-rw-r--r--source/my/sw/messages.po1964
-rw-r--r--source/my/vcl/messages.po178
-rw-r--r--source/nb/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po10
-rw-r--r--source/nb/cui/messages.po98
-rw-r--r--source/nb/dbaccess/messages.po54
-rw-r--r--source/nb/extensions/messages.po106
-rw-r--r--source/nb/fpicker/messages.po46
-rw-r--r--source/nb/helpcontent2/source/auxiliary.po13
-rw-r--r--source/nb/helpcontent2/source/text/sbasic/guide.po442
-rw-r--r--source/nb/helpcontent2/source/text/sbasic/python.po178
-rw-r--r--source/nb/helpcontent2/source/text/sbasic/shared.po752
-rw-r--r--source/nb/helpcontent2/source/text/sbasic/shared/01.po8
-rw-r--r--source/nb/helpcontent2/source/text/sbasic/shared/02.po72
-rw-r--r--source/nb/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/nb/helpcontent2/source/text/scalc.po40
-rw-r--r--source/nb/helpcontent2/source/text/scalc/00.po4
-rw-r--r--source/nb/helpcontent2/source/text/scalc/01.po540
-rw-r--r--source/nb/helpcontent2/source/text/scalc/02.po12
-rw-r--r--source/nb/helpcontent2/source/text/scalc/04.po42
-rw-r--r--source/nb/helpcontent2/source/text/scalc/06.po12
-rw-r--r--source/nb/helpcontent2/source/text/scalc/guide.po274
-rw-r--r--source/nb/helpcontent2/source/text/schart.po16
-rw-r--r--source/nb/helpcontent2/source/text/schart/00.po10
-rw-r--r--source/nb/helpcontent2/source/text/schart/01.po102
-rw-r--r--source/nb/helpcontent2/source/text/schart/02.po10
-rw-r--r--source/nb/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/nb/helpcontent2/source/text/sdraw.po29
-rw-r--r--source/nb/helpcontent2/source/text/sdraw/00.po19
-rw-r--r--source/nb/helpcontent2/source/text/sdraw/01.po10
-rw-r--r--source/nb/helpcontent2/source/text/sdraw/04.po10
-rw-r--r--source/nb/helpcontent2/source/text/sdraw/guide.po22
-rw-r--r--source/nb/helpcontent2/source/text/shared.po44
-rw-r--r--source/nb/helpcontent2/source/text/shared/00.po126
-rw-r--r--source/nb/helpcontent2/source/text/shared/01.po488
-rw-r--r--source/nb/helpcontent2/source/text/shared/02.po206
-rw-r--r--source/nb/helpcontent2/source/text/shared/04.po10
-rw-r--r--source/nb/helpcontent2/source/text/shared/05.po12
-rw-r--r--source/nb/helpcontent2/source/text/shared/autokorr.po84
-rw-r--r--source/nb/helpcontent2/source/text/shared/autopi.po24
-rw-r--r--source/nb/helpcontent2/source/text/shared/explorer/database.po1519
-rw-r--r--source/nb/helpcontent2/source/text/shared/guide.po325
-rw-r--r--source/nb/helpcontent2/source/text/shared/optionen.po136
-rw-r--r--source/nb/helpcontent2/source/text/simpress.po54
-rw-r--r--source/nb/helpcontent2/source/text/simpress/00.po39
-rw-r--r--source/nb/helpcontent2/source/text/simpress/01.po289
-rw-r--r--source/nb/helpcontent2/source/text/simpress/02.po172
-rw-r--r--source/nb/helpcontent2/source/text/simpress/04.po12
-rw-r--r--source/nb/helpcontent2/source/text/simpress/guide.po178
-rw-r--r--source/nb/helpcontent2/source/text/smath.po20
-rw-r--r--source/nb/helpcontent2/source/text/smath/00.po20
-rw-r--r--source/nb/helpcontent2/source/text/smath/01.po42
-rw-r--r--source/nb/helpcontent2/source/text/smath/guide.po14
-rw-r--r--source/nb/helpcontent2/source/text/swriter.po74
-rw-r--r--source/nb/helpcontent2/source/text/swriter/00.po124
-rw-r--r--source/nb/helpcontent2/source/text/swriter/01.po409
-rw-r--r--source/nb/helpcontent2/source/text/swriter/02.po10
-rw-r--r--source/nb/helpcontent2/source/text/swriter/04.po18
-rw-r--r--source/nb/helpcontent2/source/text/swriter/guide.po322
-rw-r--r--source/nb/helpcontent2/source/text/swriter/librelogo.po14
-rw-r--r--source/nb/officecfg/registry/data/org/openoffice/Office/UI.po50
-rw-r--r--source/nb/sc/messages.po320
-rw-r--r--source/nb/sd/messages.po142
-rw-r--r--source/nb/sfx2/messages.po58
-rw-r--r--source/nb/svtools/messages.po130
-rw-r--r--source/nb/svx/messages.po182
-rw-r--r--source/nb/sw/messages.po1976
-rw-r--r--source/nb/vcl/messages.po180
-rw-r--r--source/ne/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/ne/extensions/messages.po104
-rw-r--r--source/ne/fpicker/messages.po44
-rw-r--r--source/ne/helpcontent2/source/auxiliary.po11
-rw-r--r--source/ne/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/ne/helpcontent2/source/text/sbasic/python.po120
-rw-r--r--source/ne/helpcontent2/source/text/sbasic/shared.po746
-rw-r--r--source/ne/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/ne/helpcontent2/source/text/scalc.po8
-rw-r--r--source/ne/helpcontent2/source/text/scalc/01.po438
-rw-r--r--source/ne/helpcontent2/source/text/scalc/guide.po34
-rw-r--r--source/ne/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/ne/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/ne/helpcontent2/source/text/sdraw/00.po15
-rw-r--r--source/ne/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/ne/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/ne/helpcontent2/source/text/shared/01.po280
-rw-r--r--source/ne/helpcontent2/source/text/shared/explorer/database.po1487
-rw-r--r--source/ne/helpcontent2/source/text/shared/guide.po119
-rw-r--r--source/ne/helpcontent2/source/text/shared/optionen.po22
-rw-r--r--source/ne/helpcontent2/source/text/simpress/00.po15
-rw-r--r--source/ne/helpcontent2/source/text/simpress/01.po201
-rw-r--r--source/ne/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/ne/helpcontent2/source/text/swriter.po20
-rw-r--r--source/ne/helpcontent2/source/text/swriter/00.po72
-rw-r--r--source/ne/helpcontent2/source/text/swriter/01.po165
-rw-r--r--source/ne/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/ne/helpcontent2/source/text/swriter/guide.po196
-rw-r--r--source/ne/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/ne/sc/messages.po136
-rw-r--r--source/ne/sd/messages.po145
-rw-r--r--source/ne/sfx2/messages.po56
-rw-r--r--source/ne/svtools/messages.po128
-rw-r--r--source/ne/svx/messages.po140
-rw-r--r--source/ne/sw/messages.po1964
-rw-r--r--source/ne/vcl/messages.po178
-rw-r--r--source/nl/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po18
-rw-r--r--source/nl/cui/messages.po14
-rw-r--r--source/nl/dbaccess/messages.po54
-rw-r--r--source/nl/extensions/messages.po106
-rw-r--r--source/nl/fpicker/messages.po44
-rw-r--r--source/nl/helpcontent2/source/auxiliary.po13
-rw-r--r--source/nl/helpcontent2/source/text/sbasic/guide.po346
-rw-r--r--source/nl/helpcontent2/source/text/sbasic/python.po130
-rw-r--r--source/nl/helpcontent2/source/text/sbasic/shared.po768
-rw-r--r--source/nl/helpcontent2/source/text/sbasic/shared/02.po6
-rw-r--r--source/nl/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/nl/helpcontent2/source/text/scalc.po12
-rw-r--r--source/nl/helpcontent2/source/text/scalc/01.po500
-rw-r--r--source/nl/helpcontent2/source/text/scalc/guide.po70
-rw-r--r--source/nl/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/nl/helpcontent2/source/text/sdraw.po13
-rw-r--r--source/nl/helpcontent2/source/text/sdraw/00.po19
-rw-r--r--source/nl/helpcontent2/source/text/sdraw/01.po10
-rw-r--r--source/nl/helpcontent2/source/text/shared/00.po22
-rw-r--r--source/nl/helpcontent2/source/text/shared/01.po326
-rw-r--r--source/nl/helpcontent2/source/text/shared/explorer/database.po1497
-rw-r--r--source/nl/helpcontent2/source/text/shared/guide.po177
-rw-r--r--source/nl/helpcontent2/source/text/shared/optionen.po28
-rw-r--r--source/nl/helpcontent2/source/text/simpress/00.po19
-rw-r--r--source/nl/helpcontent2/source/text/simpress/01.po207
-rw-r--r--source/nl/helpcontent2/source/text/simpress/guide.po52
-rw-r--r--source/nl/helpcontent2/source/text/swriter.po22
-rw-r--r--source/nl/helpcontent2/source/text/swriter/00.po78
-rw-r--r--source/nl/helpcontent2/source/text/swriter/01.po169
-rw-r--r--source/nl/helpcontent2/source/text/swriter/02.po10
-rw-r--r--source/nl/helpcontent2/source/text/swriter/guide.po210
-rw-r--r--source/nl/officecfg/registry/data/org/openoffice/Office/UI.po56
-rw-r--r--source/nl/sc/messages.po140
-rw-r--r--source/nl/sd/messages.po146
-rw-r--r--source/nl/sfx2/messages.po62
-rw-r--r--source/nl/svtools/messages.po130
-rw-r--r--source/nl/svx/messages.po182
-rw-r--r--source/nl/sw/messages.po1984
-rw-r--r--source/nl/vcl/messages.po180
-rw-r--r--source/nn/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/nn/extensions/messages.po106
-rw-r--r--source/nn/fpicker/messages.po46
-rw-r--r--source/nn/helpcontent2/source/auxiliary.po13
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/python.po134
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/shared.po788
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/shared/03.po374
-rw-r--r--source/nn/helpcontent2/source/text/scalc.po8
-rw-r--r--source/nn/helpcontent2/source/text/scalc/01.po442
-rw-r--r--source/nn/helpcontent2/source/text/scalc/guide.po38
-rw-r--r--source/nn/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/nn/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/nn/helpcontent2/source/text/sdraw/00.po19
-rw-r--r--source/nn/helpcontent2/source/text/sdraw/01.po10
-rw-r--r--source/nn/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/nn/helpcontent2/source/text/shared/01.po284
-rw-r--r--source/nn/helpcontent2/source/text/shared/explorer/database.po1493
-rw-r--r--source/nn/helpcontent2/source/text/shared/guide.po133
-rw-r--r--source/nn/helpcontent2/source/text/shared/optionen.po26
-rw-r--r--source/nn/helpcontent2/source/text/simpress/00.po17
-rw-r--r--source/nn/helpcontent2/source/text/simpress/01.po207
-rw-r--r--source/nn/helpcontent2/source/text/simpress/guide.po52
-rw-r--r--source/nn/helpcontent2/source/text/swriter.po20
-rw-r--r--source/nn/helpcontent2/source/text/swriter/00.po74
-rw-r--r--source/nn/helpcontent2/source/text/swriter/01.po213
-rw-r--r--source/nn/helpcontent2/source/text/swriter/02.po10
-rw-r--r--source/nn/helpcontent2/source/text/swriter/guide.po208
-rw-r--r--source/nn/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/nn/sc/messages.po136
-rw-r--r--source/nn/sd/messages.po142
-rw-r--r--source/nn/sfx2/messages.po56
-rw-r--r--source/nn/svtools/messages.po128
-rw-r--r--source/nn/svx/messages.po176
-rw-r--r--source/nn/sw/messages.po1976
-rw-r--r--source/nn/vcl/messages.po180
-rw-r--r--source/nr/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/nr/extensions/messages.po104
-rw-r--r--source/nr/fpicker/messages.po44
-rw-r--r--source/nr/officecfg/registry/data/org/openoffice/Office/UI.po45
-rw-r--r--source/nr/sc/messages.po136
-rw-r--r--source/nr/sd/messages.po145
-rw-r--r--source/nr/sfx2/messages.po56
-rw-r--r--source/nr/svtools/messages.po128
-rw-r--r--source/nr/svx/messages.po140
-rw-r--r--source/nr/sw/messages.po1964
-rw-r--r--source/nr/vcl/messages.po178
-rw-r--r--source/nso/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/nso/extensions/messages.po104
-rw-r--r--source/nso/fpicker/messages.po44
-rw-r--r--source/nso/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/nso/sc/messages.po136
-rw-r--r--source/nso/sd/messages.po145
-rw-r--r--source/nso/sfx2/messages.po56
-rw-r--r--source/nso/svtools/messages.po128
-rw-r--r--source/nso/svx/messages.po140
-rw-r--r--source/nso/sw/messages.po1964
-rw-r--r--source/nso/vcl/messages.po178
-rw-r--r--source/oc/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/oc/extensions/messages.po104
-rw-r--r--source/oc/fpicker/messages.po46
-rw-r--r--source/oc/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/oc/sc/messages.po136
-rw-r--r--source/oc/sd/messages.po138
-rw-r--r--source/oc/sfx2/messages.po56
-rw-r--r--source/oc/svtools/messages.po128
-rw-r--r--source/oc/svx/messages.po140
-rw-r--r--source/oc/sw/messages.po1974
-rw-r--r--source/oc/vcl/messages.po178
-rw-r--r--source/om/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/om/extensions/messages.po104
-rw-r--r--source/om/fpicker/messages.po44
-rw-r--r--source/om/helpcontent2/source/auxiliary.po11
-rw-r--r--source/om/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/om/helpcontent2/source/text/sbasic/python.po120
-rw-r--r--source/om/helpcontent2/source/text/sbasic/shared.po746
-rw-r--r--source/om/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/om/helpcontent2/source/text/scalc.po8
-rw-r--r--source/om/helpcontent2/source/text/scalc/01.po438
-rw-r--r--source/om/helpcontent2/source/text/scalc/guide.po34
-rw-r--r--source/om/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/om/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/om/helpcontent2/source/text/sdraw/00.po15
-rw-r--r--source/om/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/om/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/om/helpcontent2/source/text/shared/01.po282
-rw-r--r--source/om/helpcontent2/source/text/shared/explorer/database.po1487
-rw-r--r--source/om/helpcontent2/source/text/shared/guide.po119
-rw-r--r--source/om/helpcontent2/source/text/shared/optionen.po22
-rw-r--r--source/om/helpcontent2/source/text/simpress/00.po15
-rw-r--r--source/om/helpcontent2/source/text/simpress/01.po201
-rw-r--r--source/om/helpcontent2/source/text/simpress/guide.po52
-rw-r--r--source/om/helpcontent2/source/text/swriter.po20
-rw-r--r--source/om/helpcontent2/source/text/swriter/00.po72
-rw-r--r--source/om/helpcontent2/source/text/swriter/01.po165
-rw-r--r--source/om/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/om/helpcontent2/source/text/swriter/guide.po198
-rw-r--r--source/om/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/om/sc/messages.po136
-rw-r--r--source/om/sd/messages.po145
-rw-r--r--source/om/sfx2/messages.po56
-rw-r--r--source/om/svtools/messages.po128
-rw-r--r--source/om/svx/messages.po140
-rw-r--r--source/om/sw/messages.po1964
-rw-r--r--source/om/vcl/messages.po178
-rw-r--r--source/or/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/or/extensions/messages.po104
-rw-r--r--source/or/fpicker/messages.po44
-rw-r--r--source/or/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/or/sc/messages.po136
-rw-r--r--source/or/sd/messages.po145
-rw-r--r--source/or/sfx2/messages.po56
-rw-r--r--source/or/svtools/messages.po128
-rw-r--r--source/or/svx/messages.po140
-rw-r--r--source/or/sw/messages.po1964
-rw-r--r--source/or/vcl/messages.po178
-rw-r--r--source/pa-IN/basctl/messages.po8
-rw-r--r--source/pa-IN/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/pa-IN/extensions/messages.po104
-rw-r--r--source/pa-IN/filter/messages.po286
-rw-r--r--source/pa-IN/fpicker/messages.po46
-rw-r--r--source/pa-IN/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/pa-IN/sc/messages.po136
-rw-r--r--source/pa-IN/sd/messages.po398
-rw-r--r--source/pa-IN/setup_native/source/mac.po6
-rw-r--r--source/pa-IN/sfx2/messages.po56
-rw-r--r--source/pa-IN/svtools/messages.po128
-rw-r--r--source/pa-IN/svx/messages.po140
-rw-r--r--source/pa-IN/sw/messages.po2591
-rw-r--r--source/pa-IN/uui/messages.po109
-rw-r--r--source/pa-IN/vcl/messages.po178
-rw-r--r--source/pl/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po16
-rw-r--r--source/pl/cui/messages.po6
-rw-r--r--source/pl/dbaccess/messages.po54
-rw-r--r--source/pl/extensions/messages.po106
-rw-r--r--source/pl/fpicker/messages.po44
-rw-r--r--source/pl/helpcontent2/source/auxiliary.po11
-rw-r--r--source/pl/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/pl/helpcontent2/source/text/sbasic/python.po120
-rw-r--r--source/pl/helpcontent2/source/text/sbasic/shared.po768
-rw-r--r--source/pl/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/pl/helpcontent2/source/text/scalc.po8
-rw-r--r--source/pl/helpcontent2/source/text/scalc/01.po438
-rw-r--r--source/pl/helpcontent2/source/text/scalc/guide.po36
-rw-r--r--source/pl/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/pl/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/pl/helpcontent2/source/text/sdraw/00.po15
-rw-r--r--source/pl/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/pl/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/pl/helpcontent2/source/text/shared/01.po282
-rw-r--r--source/pl/helpcontent2/source/text/shared/explorer/database.po1487
-rw-r--r--source/pl/helpcontent2/source/text/shared/guide.po131
-rw-r--r--source/pl/helpcontent2/source/text/shared/optionen.po22
-rw-r--r--source/pl/helpcontent2/source/text/simpress/00.po15
-rw-r--r--source/pl/helpcontent2/source/text/simpress/01.po201
-rw-r--r--source/pl/helpcontent2/source/text/simpress/guide.po52
-rw-r--r--source/pl/helpcontent2/source/text/swriter.po20
-rw-r--r--source/pl/helpcontent2/source/text/swriter/00.po72
-rw-r--r--source/pl/helpcontent2/source/text/swriter/01.po165
-rw-r--r--source/pl/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/pl/helpcontent2/source/text/swriter/guide.po198
-rw-r--r--source/pl/officecfg/registry/data/org/openoffice/Office/UI.po52
-rw-r--r--source/pl/sc/messages.po140
-rw-r--r--source/pl/sd/messages.po142
-rw-r--r--source/pl/sfx2/messages.po58
-rw-r--r--source/pl/svtools/messages.po130
-rw-r--r--source/pl/svx/messages.po182
-rw-r--r--source/pl/sw/messages.po1978
-rw-r--r--source/pl/vcl/messages.po180
-rw-r--r--source/pt-BR/basic/messages.po6
-rw-r--r--source/pt-BR/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po20
-rw-r--r--source/pt-BR/cui/messages.po24
-rw-r--r--source/pt-BR/dbaccess/messages.po54
-rw-r--r--source/pt-BR/extensions/messages.po106
-rw-r--r--source/pt-BR/fpicker/messages.po44
-rw-r--r--source/pt-BR/helpcontent2/source/auxiliary.po13
-rw-r--r--source/pt-BR/helpcontent2/source/text/sbasic/guide.po346
-rw-r--r--source/pt-BR/helpcontent2/source/text/sbasic/python.po134
-rw-r--r--source/pt-BR/helpcontent2/source/text/sbasic/shared.po824
-rw-r--r--source/pt-BR/helpcontent2/source/text/sbasic/shared/02.po8
-rw-r--r--source/pt-BR/helpcontent2/source/text/sbasic/shared/03.po62
-rw-r--r--source/pt-BR/helpcontent2/source/text/scalc.po12
-rw-r--r--source/pt-BR/helpcontent2/source/text/scalc/01.po640
-rw-r--r--source/pt-BR/helpcontent2/source/text/scalc/02.po8
-rw-r--r--source/pt-BR/helpcontent2/source/text/scalc/04.po6
-rw-r--r--source/pt-BR/helpcontent2/source/text/scalc/guide.po76
-rw-r--r--source/pt-BR/helpcontent2/source/text/schart/01.po6
-rw-r--r--source/pt-BR/helpcontent2/source/text/sdatabase.po1651
-rw-r--r--source/pt-BR/helpcontent2/source/text/sdraw.po21
-rw-r--r--source/pt-BR/helpcontent2/source/text/sdraw/00.po25
-rw-r--r--source/pt-BR/helpcontent2/source/text/sdraw/01.po16
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/00.po28
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/01.po382
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/autopi.po16
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/explorer/database.po1499
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/guide.po195
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/menu.po6
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/optionen.po50
-rw-r--r--source/pt-BR/helpcontent2/source/text/simpress/00.po19
-rw-r--r--source/pt-BR/helpcontent2/source/text/simpress/01.po209
-rw-r--r--source/pt-BR/helpcontent2/source/text/simpress/02.po6
-rw-r--r--source/pt-BR/helpcontent2/source/text/simpress/guide.po60
-rw-r--r--source/pt-BR/helpcontent2/source/text/smath/01.po10
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter.po28
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/00.po86
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/01.po199
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/02.po18
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/guide.po222
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/librelogo.po8
-rw-r--r--source/pt-BR/instsetoo_native/inc_openoffice/windows/msi_languages.po10
-rw-r--r--source/pt-BR/officecfg/registry/data/org/openoffice/Office/UI.po52
-rw-r--r--source/pt-BR/sc/messages.po140
-rw-r--r--source/pt-BR/scp2/source/draw.po14
-rw-r--r--source/pt-BR/sd/messages.po142
-rw-r--r--source/pt-BR/sfx2/messages.po66
-rw-r--r--source/pt-BR/svtools/messages.po130
-rw-r--r--source/pt-BR/svx/messages.po162
-rw-r--r--source/pt-BR/sw/messages.po1994
-rw-r--r--source/pt-BR/swext/mediawiki/help.po4
-rw-r--r--source/pt-BR/vcl/messages.po180
-rw-r--r--source/pt/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po14
-rw-r--r--source/pt/cui/messages.po24
-rw-r--r--source/pt/dbaccess/messages.po24
-rw-r--r--source/pt/dictionaries/be_BY.po8
-rw-r--r--source/pt/dictionaries/pt_BR/dialog.po30
-rw-r--r--source/pt/extensions/messages.po106
-rw-r--r--source/pt/filter/messages.po14
-rw-r--r--source/pt/fpicker/messages.po44
-rw-r--r--source/pt/helpcontent2/source/auxiliary.po11
-rw-r--r--source/pt/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/pt/helpcontent2/source/text/sbasic/python.po128
-rw-r--r--source/pt/helpcontent2/source/text/sbasic/shared.po760
-rw-r--r--source/pt/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/pt/helpcontent2/source/text/scalc.po8
-rw-r--r--source/pt/helpcontent2/source/text/scalc/01.po442
-rw-r--r--source/pt/helpcontent2/source/text/scalc/guide.po38
-rw-r--r--source/pt/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/pt/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/pt/helpcontent2/source/text/sdraw/00.po19
-rw-r--r--source/pt/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/pt/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/pt/helpcontent2/source/text/shared/01.po282
-rw-r--r--source/pt/helpcontent2/source/text/shared/explorer/database.po1493
-rw-r--r--source/pt/helpcontent2/source/text/shared/guide.po131
-rw-r--r--source/pt/helpcontent2/source/text/shared/optionen.po22
-rw-r--r--source/pt/helpcontent2/source/text/simpress/00.po17
-rw-r--r--source/pt/helpcontent2/source/text/simpress/01.po205
-rw-r--r--source/pt/helpcontent2/source/text/simpress/guide.po52
-rw-r--r--source/pt/helpcontent2/source/text/swriter.po20
-rw-r--r--source/pt/helpcontent2/source/text/swriter/00.po74
-rw-r--r--source/pt/helpcontent2/source/text/swriter/01.po165
-rw-r--r--source/pt/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/pt/helpcontent2/source/text/swriter/guide.po202
-rw-r--r--source/pt/officecfg/registry/data/org/openoffice/Office/UI.po80
-rw-r--r--source/pt/sc/messages.po140
-rw-r--r--source/pt/sd/messages.po142
-rw-r--r--source/pt/sfx2/messages.po60
-rw-r--r--source/pt/svtools/messages.po130
-rw-r--r--source/pt/svx/messages.po190
-rw-r--r--source/pt/sw/messages.po1978
-rw-r--r--source/pt/vcl/messages.po180
-rw-r--r--source/ro/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/ro/extensions/messages.po104
-rw-r--r--source/ro/fpicker/messages.po44
-rw-r--r--source/ro/helpcontent2/source/auxiliary.po11
-rw-r--r--source/ro/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/ro/helpcontent2/source/text/sbasic/python.po120
-rw-r--r--source/ro/helpcontent2/source/text/sbasic/shared.po738
-rw-r--r--source/ro/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/ro/helpcontent2/source/text/scalc.po6
-rw-r--r--source/ro/helpcontent2/source/text/scalc/01.po436
-rw-r--r--source/ro/helpcontent2/source/text/scalc/guide.po34
-rw-r--r--source/ro/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/ro/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/ro/helpcontent2/source/text/sdraw/00.po15
-rw-r--r--source/ro/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/ro/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/ro/helpcontent2/source/text/shared/01.po278
-rw-r--r--source/ro/helpcontent2/source/text/shared/explorer/database.po1485
-rw-r--r--source/ro/helpcontent2/source/text/shared/guide.po115
-rw-r--r--source/ro/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/ro/helpcontent2/source/text/simpress/00.po15
-rw-r--r--source/ro/helpcontent2/source/text/simpress/01.po183
-rw-r--r--source/ro/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/ro/helpcontent2/source/text/swriter.po14
-rw-r--r--source/ro/helpcontent2/source/text/swriter/00.po50
-rw-r--r--source/ro/helpcontent2/source/text/swriter/01.po163
-rw-r--r--source/ro/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/ro/helpcontent2/source/text/swriter/guide.po176
-rw-r--r--source/ro/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/ro/sc/messages.po136
-rw-r--r--source/ro/sd/messages.po138
-rw-r--r--source/ro/sfx2/messages.po56
-rw-r--r--source/ro/svtools/messages.po128
-rw-r--r--source/ro/svx/messages.po140
-rw-r--r--source/ro/sw/messages.po1964
-rw-r--r--source/ro/vcl/messages.po178
-rw-r--r--source/ru/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/ru/extensions/messages.po104
-rw-r--r--source/ru/fpicker/messages.po46
-rw-r--r--source/ru/helpcontent2/source/auxiliary.po11
-rw-r--r--source/ru/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/ru/helpcontent2/source/text/sbasic/python.po122
-rw-r--r--source/ru/helpcontent2/source/text/sbasic/shared.po746
-rw-r--r--source/ru/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/ru/helpcontent2/source/text/scalc.po8
-rw-r--r--source/ru/helpcontent2/source/text/scalc/01.po438
-rw-r--r--source/ru/helpcontent2/source/text/scalc/guide.po36
-rw-r--r--source/ru/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/ru/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/ru/helpcontent2/source/text/sdraw/00.po17
-rw-r--r--source/ru/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/ru/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/ru/helpcontent2/source/text/shared/01.po282
-rw-r--r--source/ru/helpcontent2/source/text/shared/explorer/database.po1487
-rw-r--r--source/ru/helpcontent2/source/text/shared/guide.po119
-rw-r--r--source/ru/helpcontent2/source/text/shared/optionen.po22
-rw-r--r--source/ru/helpcontent2/source/text/simpress/00.po15
-rw-r--r--source/ru/helpcontent2/source/text/simpress/01.po201
-rw-r--r--source/ru/helpcontent2/source/text/simpress/guide.po52
-rw-r--r--source/ru/helpcontent2/source/text/swriter.po20
-rw-r--r--source/ru/helpcontent2/source/text/swriter/00.po72
-rw-r--r--source/ru/helpcontent2/source/text/swriter/01.po165
-rw-r--r--source/ru/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/ru/helpcontent2/source/text/swriter/guide.po198
-rw-r--r--source/ru/officecfg/registry/data/org/openoffice/Office/UI.po50
-rw-r--r--source/ru/sc/messages.po136
-rw-r--r--source/ru/sd/messages.po142
-rw-r--r--source/ru/sfx2/messages.po56
-rw-r--r--source/ru/svtools/messages.po128
-rw-r--r--source/ru/svx/messages.po140
-rw-r--r--source/ru/sw/messages.po1966
-rw-r--r--source/ru/vcl/messages.po178
-rw-r--r--source/rw/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/rw/extensions/messages.po104
-rw-r--r--source/rw/fpicker/messages.po44
-rw-r--r--source/rw/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/rw/sc/messages.po136
-rw-r--r--source/rw/sd/messages.po145
-rw-r--r--source/rw/sfx2/messages.po56
-rw-r--r--source/rw/svtools/messages.po128
-rw-r--r--source/rw/svx/messages.po140
-rw-r--r--source/rw/sw/messages.po1964
-rw-r--r--source/rw/vcl/messages.po178
-rw-r--r--source/sa-IN/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/sa-IN/extensions/messages.po104
-rw-r--r--source/sa-IN/fpicker/messages.po44
-rw-r--r--source/sa-IN/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/sa-IN/sc/messages.po136
-rw-r--r--source/sa-IN/sd/messages.po144
-rw-r--r--source/sa-IN/sfx2/messages.po56
-rw-r--r--source/sa-IN/svtools/messages.po128
-rw-r--r--source/sa-IN/svx/messages.po140
-rw-r--r--source/sa-IN/sw/messages.po1964
-rw-r--r--source/sa-IN/vcl/messages.po178
-rw-r--r--source/sah/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/sah/extensions/messages.po104
-rw-r--r--source/sah/fpicker/messages.po44
-rw-r--r--source/sah/officecfg/registry/data/org/openoffice/Office/UI.po40
-rw-r--r--source/sah/sc/messages.po136
-rw-r--r--source/sah/sd/messages.po138
-rw-r--r--source/sah/sfx2/messages.po56
-rw-r--r--source/sah/svtools/messages.po128
-rw-r--r--source/sah/svx/messages.po140
-rw-r--r--source/sah/sw/messages.po1964
-rw-r--r--source/sah/vcl/messages.po178
-rw-r--r--source/sat/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/sat/extensions/messages.po104
-rw-r--r--source/sat/fpicker/messages.po44
-rw-r--r--source/sat/officecfg/registry/data/org/openoffice/Office/UI.po46
-rw-r--r--source/sat/sc/messages.po136
-rw-r--r--source/sat/sd/messages.po144
-rw-r--r--source/sat/sfx2/messages.po56
-rw-r--r--source/sat/svtools/messages.po128
-rw-r--r--source/sat/svx/messages.po140
-rw-r--r--source/sat/sw/messages.po1964
-rw-r--r--source/sat/vcl/messages.po178
-rw-r--r--source/sd/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/sd/extensions/messages.po104
-rw-r--r--source/sd/fpicker/messages.po44
-rw-r--r--source/sd/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/sd/sc/messages.po136
-rw-r--r--source/sd/sd/messages.po144
-rw-r--r--source/sd/sfx2/messages.po56
-rw-r--r--source/sd/svtools/messages.po128
-rw-r--r--source/sd/svx/messages.po140
-rw-r--r--source/sd/sw/messages.po1964
-rw-r--r--source/sd/vcl/messages.po178
-rw-r--r--source/si/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/si/extensions/messages.po104
-rw-r--r--source/si/fpicker/messages.po46
-rw-r--r--source/si/helpcontent2/source/auxiliary.po11
-rw-r--r--source/si/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/si/helpcontent2/source/text/sbasic/python.po120
-rw-r--r--source/si/helpcontent2/source/text/sbasic/shared.po742
-rw-r--r--source/si/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/si/helpcontent2/source/text/scalc.po8
-rw-r--r--source/si/helpcontent2/source/text/scalc/01.po436
-rw-r--r--source/si/helpcontent2/source/text/scalc/guide.po34
-rw-r--r--source/si/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/si/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/si/helpcontent2/source/text/sdraw/00.po15
-rw-r--r--source/si/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/si/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/si/helpcontent2/source/text/shared/01.po278
-rw-r--r--source/si/helpcontent2/source/text/shared/explorer/database.po1487
-rw-r--r--source/si/helpcontent2/source/text/shared/guide.po115
-rw-r--r--source/si/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/si/helpcontent2/source/text/simpress/00.po15
-rw-r--r--source/si/helpcontent2/source/text/simpress/01.po185
-rw-r--r--source/si/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/si/helpcontent2/source/text/swriter.po18
-rw-r--r--source/si/helpcontent2/source/text/swriter/00.po72
-rw-r--r--source/si/helpcontent2/source/text/swriter/01.po163
-rw-r--r--source/si/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/si/helpcontent2/source/text/swriter/guide.po182
-rw-r--r--source/si/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/si/sc/messages.po136
-rw-r--r--source/si/sd/messages.po145
-rw-r--r--source/si/sfx2/messages.po56
-rw-r--r--source/si/svtools/messages.po128
-rw-r--r--source/si/svx/messages.po140
-rw-r--r--source/si/sw/messages.po1964
-rw-r--r--source/si/vcl/messages.po178
-rw-r--r--source/sid/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/sid/extensions/messages.po104
-rw-r--r--source/sid/fpicker/messages.po44
-rw-r--r--source/sid/helpcontent2/source/auxiliary.po11
-rw-r--r--source/sid/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/sid/helpcontent2/source/text/sbasic/python.po120
-rw-r--r--source/sid/helpcontent2/source/text/sbasic/shared.po746
-rw-r--r--source/sid/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/sid/helpcontent2/source/text/scalc.po8
-rw-r--r--source/sid/helpcontent2/source/text/scalc/01.po438
-rw-r--r--source/sid/helpcontent2/source/text/scalc/guide.po36
-rw-r--r--source/sid/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/sid/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/sid/helpcontent2/source/text/sdraw/00.po15
-rw-r--r--source/sid/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/sid/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/sid/helpcontent2/source/text/shared/01.po280
-rw-r--r--source/sid/helpcontent2/source/text/shared/explorer/database.po1487
-rw-r--r--source/sid/helpcontent2/source/text/shared/guide.po119
-rw-r--r--source/sid/helpcontent2/source/text/shared/optionen.po22
-rw-r--r--source/sid/helpcontent2/source/text/simpress/00.po15
-rw-r--r--source/sid/helpcontent2/source/text/simpress/01.po183
-rw-r--r--source/sid/helpcontent2/source/text/simpress/guide.po52
-rw-r--r--source/sid/helpcontent2/source/text/swriter.po20
-rw-r--r--source/sid/helpcontent2/source/text/swriter/00.po72
-rw-r--r--source/sid/helpcontent2/source/text/swriter/01.po165
-rw-r--r--source/sid/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/sid/helpcontent2/source/text/swriter/guide.po194
-rw-r--r--source/sid/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/sid/sc/messages.po136
-rw-r--r--source/sid/sd/messages.po145
-rw-r--r--source/sid/sfx2/messages.po56
-rw-r--r--source/sid/svtools/messages.po128
-rw-r--r--source/sid/svx/messages.po140
-rw-r--r--source/sid/sw/messages.po1964
-rw-r--r--source/sid/vcl/messages.po178
-rw-r--r--source/sk/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/sk/extensions/messages.po104
-rw-r--r--source/sk/fpicker/messages.po44
-rw-r--r--source/sk/helpcontent2/source/auxiliary.po11
-rw-r--r--source/sk/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/sk/helpcontent2/source/text/sbasic/python.po120
-rw-r--r--source/sk/helpcontent2/source/text/sbasic/shared.po746
-rw-r--r--source/sk/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/sk/helpcontent2/source/text/scalc.po8
-rw-r--r--source/sk/helpcontent2/source/text/scalc/01.po438
-rw-r--r--source/sk/helpcontent2/source/text/scalc/guide.po34
-rw-r--r--source/sk/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/sk/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/sk/helpcontent2/source/text/sdraw/00.po15
-rw-r--r--source/sk/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/sk/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/sk/helpcontent2/source/text/shared/01.po278
-rw-r--r--source/sk/helpcontent2/source/text/shared/explorer/database.po1487
-rw-r--r--source/sk/helpcontent2/source/text/shared/guide.po119
-rw-r--r--source/sk/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/sk/helpcontent2/source/text/simpress/00.po15
-rw-r--r--source/sk/helpcontent2/source/text/simpress/01.po199
-rw-r--r--source/sk/helpcontent2/source/text/simpress/guide.po52
-rw-r--r--source/sk/helpcontent2/source/text/swriter.po20
-rw-r--r--source/sk/helpcontent2/source/text/swriter/00.po72
-rw-r--r--source/sk/helpcontent2/source/text/swriter/01.po165
-rw-r--r--source/sk/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/sk/helpcontent2/source/text/swriter/guide.po188
-rw-r--r--source/sk/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/sk/sc/messages.po136
-rw-r--r--source/sk/sd/messages.po140
-rw-r--r--source/sk/sfx2/messages.po56
-rw-r--r--source/sk/svtools/messages.po128
-rw-r--r--source/sk/svx/messages.po174
-rw-r--r--source/sk/sw/messages.po1966
-rw-r--r--source/sk/vcl/messages.po178
-rw-r--r--source/sq/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/sq/extensions/messages.po104
-rw-r--r--source/sq/fpicker/messages.po44
-rw-r--r--source/sq/helpcontent2/source/auxiliary.po11
-rw-r--r--source/sq/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/sq/helpcontent2/source/text/sbasic/python.po120
-rw-r--r--source/sq/helpcontent2/source/text/sbasic/shared.po742
-rw-r--r--source/sq/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/sq/helpcontent2/source/text/scalc.po6
-rw-r--r--source/sq/helpcontent2/source/text/scalc/01.po436
-rw-r--r--source/sq/helpcontent2/source/text/scalc/guide.po34
-rw-r--r--source/sq/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/sq/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/sq/helpcontent2/source/text/sdraw/00.po15
-rw-r--r--source/sq/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/sq/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/sq/helpcontent2/source/text/shared/01.po278
-rw-r--r--source/sq/helpcontent2/source/text/shared/explorer/database.po1485
-rw-r--r--source/sq/helpcontent2/source/text/shared/guide.po115
-rw-r--r--source/sq/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/sq/helpcontent2/source/text/simpress/00.po15
-rw-r--r--source/sq/helpcontent2/source/text/simpress/01.po189
-rw-r--r--source/sq/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/sq/helpcontent2/source/text/swriter.po14
-rw-r--r--source/sq/helpcontent2/source/text/swriter/00.po72
-rw-r--r--source/sq/helpcontent2/source/text/swriter/01.po165
-rw-r--r--source/sq/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/sq/helpcontent2/source/text/swriter/guide.po176
-rw-r--r--source/sq/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/sq/sc/messages.po136
-rw-r--r--source/sq/sd/messages.po142
-rw-r--r--source/sq/sfx2/messages.po56
-rw-r--r--source/sq/svtools/messages.po128
-rw-r--r--source/sq/svx/messages.po140
-rw-r--r--source/sq/sw/messages.po1964
-rw-r--r--source/sq/vcl/messages.po178
-rw-r--r--source/sr-Latn/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/sr-Latn/extensions/messages.po104
-rw-r--r--source/sr-Latn/fpicker/messages.po44
-rw-r--r--source/sr-Latn/officecfg/registry/data/org/openoffice/Office/UI.po45
-rw-r--r--source/sr-Latn/sc/messages.po136
-rw-r--r--source/sr-Latn/sd/messages.po145
-rw-r--r--source/sr-Latn/sfx2/messages.po56
-rw-r--r--source/sr-Latn/svtools/messages.po128
-rw-r--r--source/sr-Latn/svx/messages.po140
-rw-r--r--source/sr-Latn/sw/messages.po1964
-rw-r--r--source/sr-Latn/vcl/messages.po178
-rw-r--r--source/sr/basic/messages.po8
-rw-r--r--source/sr/chart2/messages.po204
-rw-r--r--source/sr/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po16
-rw-r--r--source/sr/cui/messages.po16
-rw-r--r--source/sr/dbaccess/messages.po5
-rw-r--r--source/sr/dictionaries/be_BY.po6
-rw-r--r--source/sr/extensions/messages.po104
-rw-r--r--source/sr/extras/source/autocorr/emoji.po539
-rw-r--r--source/sr/extras/source/gallery/share.po6
-rw-r--r--source/sr/filter/source/config/fragments/filters.po19
-rw-r--r--source/sr/filter/source/config/fragments/types.po61
-rw-r--r--source/sr/fpicker/messages.po161
-rw-r--r--source/sr/framework/messages.po10
-rw-r--r--source/sr/nlpsolver/src/locale.po6
-rw-r--r--source/sr/officecfg/registry/data/org/openoffice/Office.po8
-rw-r--r--source/sr/officecfg/registry/data/org/openoffice/Office/UI.po198
-rw-r--r--source/sr/reportbuilder/java/org/libreoffice/report/function/metadata.po22
-rw-r--r--source/sr/sc/messages.po2664
-rw-r--r--source/sr/scaddins/messages.po22
-rw-r--r--source/sr/scp2/source/calc.po16
-rw-r--r--source/sr/scp2/source/winexplorerext.po11
-rw-r--r--source/sr/scp2/source/writer.po8
-rw-r--r--source/sr/sd/messages.po295
-rw-r--r--source/sr/sfx2/classification.po36
-rw-r--r--source/sr/sfx2/messages.po71
-rw-r--r--source/sr/shell/messages.po19
-rw-r--r--source/sr/svtools/messages.po138
-rw-r--r--source/sr/svx/messages.po151
-rw-r--r--source/sr/sw/messages.po1980
-rw-r--r--source/sr/sysui/desktop/share.po8
-rw-r--r--source/sr/vcl/messages.po178
-rw-r--r--source/ss/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/ss/extensions/messages.po104
-rw-r--r--source/ss/fpicker/messages.po44
-rw-r--r--source/ss/officecfg/registry/data/org/openoffice/Office/UI.po45
-rw-r--r--source/ss/sc/messages.po136
-rw-r--r--source/ss/sd/messages.po145
-rw-r--r--source/ss/sfx2/messages.po56
-rw-r--r--source/ss/svtools/messages.po128
-rw-r--r--source/ss/svx/messages.po140
-rw-r--r--source/ss/sw/messages.po1964
-rw-r--r--source/ss/vcl/messages.po178
-rw-r--r--source/st/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/st/extensions/messages.po104
-rw-r--r--source/st/fpicker/messages.po44
-rw-r--r--source/st/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/st/sc/messages.po136
-rw-r--r--source/st/sd/messages.po145
-rw-r--r--source/st/sfx2/messages.po56
-rw-r--r--source/st/svtools/messages.po128
-rw-r--r--source/st/svx/messages.po140
-rw-r--r--source/st/sw/messages.po1964
-rw-r--r--source/st/vcl/messages.po178
-rw-r--r--source/sv/basic/messages.po6
-rw-r--r--source/sv/chart2/messages.po10
-rw-r--r--source/sv/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/sv/cui/messages.po18
-rw-r--r--source/sv/dictionaries/be_BY.po8
-rw-r--r--source/sv/dictionaries/pt_BR/dialog.po30
-rw-r--r--source/sv/extensions/messages.po104
-rw-r--r--source/sv/filter/source/config/fragments/filters.po8
-rw-r--r--source/sv/fpicker/messages.po44
-rw-r--r--source/sv/helpcontent2/source/auxiliary.po11
-rw-r--r--source/sv/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/sv/helpcontent2/source/text/sbasic/python.po122
-rw-r--r--source/sv/helpcontent2/source/text/sbasic/shared.po746
-rw-r--r--source/sv/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/sv/helpcontent2/source/text/scalc.po8
-rw-r--r--source/sv/helpcontent2/source/text/scalc/01.po438
-rw-r--r--source/sv/helpcontent2/source/text/scalc/guide.po36
-rw-r--r--source/sv/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/sv/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/sv/helpcontent2/source/text/sdraw/00.po15
-rw-r--r--source/sv/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/sv/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/sv/helpcontent2/source/text/shared/01.po282
-rw-r--r--source/sv/helpcontent2/source/text/shared/explorer/database.po1487
-rw-r--r--source/sv/helpcontent2/source/text/shared/guide.po119
-rw-r--r--source/sv/helpcontent2/source/text/shared/optionen.po22
-rw-r--r--source/sv/helpcontent2/source/text/simpress/00.po15
-rw-r--r--source/sv/helpcontent2/source/text/simpress/01.po201
-rw-r--r--source/sv/helpcontent2/source/text/simpress/guide.po52
-rw-r--r--source/sv/helpcontent2/source/text/swriter.po20
-rw-r--r--source/sv/helpcontent2/source/text/swriter/00.po72
-rw-r--r--source/sv/helpcontent2/source/text/swriter/01.po165
-rw-r--r--source/sv/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/sv/helpcontent2/source/text/swriter/guide.po198
-rw-r--r--source/sv/nlpsolver/src/locale.po8
-rw-r--r--source/sv/officecfg/registry/data/org/openoffice/Office/UI.po192
-rw-r--r--source/sv/readlicense_oo/docs.po8
-rw-r--r--source/sv/sc/messages.po270
-rw-r--r--source/sv/scp2/source/ooo.po66
-rw-r--r--source/sv/sd/messages.po140
-rw-r--r--source/sv/sfx2/classification.po8
-rw-r--r--source/sv/sfx2/messages.po104
-rw-r--r--source/sv/svtools/messages.po142
-rw-r--r--source/sv/svx/messages.po174
-rw-r--r--source/sv/sw/messages.po1970
-rw-r--r--source/sv/vcl/messages.po190
-rw-r--r--source/sw-TZ/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/sw-TZ/extensions/messages.po104
-rw-r--r--source/sw-TZ/fpicker/messages.po44
-rw-r--r--source/sw-TZ/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/sw-TZ/sc/messages.po136
-rw-r--r--source/sw-TZ/sd/messages.po145
-rw-r--r--source/sw-TZ/sfx2/messages.po56
-rw-r--r--source/sw-TZ/svtools/messages.po128
-rw-r--r--source/sw-TZ/svx/messages.po140
-rw-r--r--source/sw-TZ/sw/messages.po1964
-rw-r--r--source/sw-TZ/vcl/messages.po178
-rw-r--r--source/szl/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/szl/extensions/messages.po104
-rw-r--r--source/szl/fpicker/messages.po44
-rw-r--r--source/szl/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/szl/sc/messages.po136
-rw-r--r--source/szl/sd/messages.po138
-rw-r--r--source/szl/sfx2/messages.po56
-rw-r--r--source/szl/svtools/messages.po128
-rw-r--r--source/szl/svx/messages.po140
-rw-r--r--source/szl/sw/messages.po1966
-rw-r--r--source/szl/vcl/messages.po178
-rw-r--r--source/ta/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/ta/extensions/messages.po104
-rw-r--r--source/ta/fpicker/messages.po44
-rw-r--r--source/ta/helpcontent2/source/auxiliary.po11
-rw-r--r--source/ta/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/ta/helpcontent2/source/text/sbasic/python.po120
-rw-r--r--source/ta/helpcontent2/source/text/sbasic/shared.po738
-rw-r--r--source/ta/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/ta/helpcontent2/source/text/scalc.po8
-rw-r--r--source/ta/helpcontent2/source/text/scalc/01.po436
-rw-r--r--source/ta/helpcontent2/source/text/scalc/guide.po36
-rw-r--r--source/ta/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/ta/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/ta/helpcontent2/source/text/sdraw/00.po15
-rw-r--r--source/ta/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/ta/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/ta/helpcontent2/source/text/shared/01.po278
-rw-r--r--source/ta/helpcontent2/source/text/shared/explorer/database.po1487
-rw-r--r--source/ta/helpcontent2/source/text/shared/guide.po115
-rw-r--r--source/ta/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/ta/helpcontent2/source/text/simpress/00.po15
-rw-r--r--source/ta/helpcontent2/source/text/simpress/01.po193
-rw-r--r--source/ta/helpcontent2/source/text/simpress/guide.po48
-rw-r--r--source/ta/helpcontent2/source/text/swriter.po20
-rw-r--r--source/ta/helpcontent2/source/text/swriter/00.po72
-rw-r--r--source/ta/helpcontent2/source/text/swriter/01.po165
-rw-r--r--source/ta/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/ta/helpcontent2/source/text/swriter/guide.po192
-rw-r--r--source/ta/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/ta/sc/messages.po136
-rw-r--r--source/ta/sd/messages.po142
-rw-r--r--source/ta/sfx2/messages.po56
-rw-r--r--source/ta/svtools/messages.po128
-rw-r--r--source/ta/svx/messages.po140
-rw-r--r--source/ta/sw/messages.po1964
-rw-r--r--source/ta/vcl/messages.po178
-rw-r--r--source/te/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/te/extensions/messages.po104
-rw-r--r--source/te/fpicker/messages.po44
-rw-r--r--source/te/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/te/sc/messages.po136
-rw-r--r--source/te/sd/messages.po145
-rw-r--r--source/te/sfx2/messages.po56
-rw-r--r--source/te/svtools/messages.po128
-rw-r--r--source/te/svx/messages.po140
-rw-r--r--source/te/sw/messages.po1964
-rw-r--r--source/te/vcl/messages.po178
-rw-r--r--source/tg/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/tg/extensions/messages.po104
-rw-r--r--source/tg/fpicker/messages.po44
-rw-r--r--source/tg/helpcontent2/source/auxiliary.po11
-rw-r--r--source/tg/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/tg/helpcontent2/source/text/sbasic/python.po120
-rw-r--r--source/tg/helpcontent2/source/text/sbasic/shared.po740
-rw-r--r--source/tg/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/tg/helpcontent2/source/text/scalc.po8
-rw-r--r--source/tg/helpcontent2/source/text/scalc/01.po438
-rw-r--r--source/tg/helpcontent2/source/text/scalc/guide.po34
-rw-r--r--source/tg/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/tg/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/tg/helpcontent2/source/text/sdraw/00.po15
-rw-r--r--source/tg/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/tg/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/tg/helpcontent2/source/text/shared/01.po278
-rw-r--r--source/tg/helpcontent2/source/text/shared/explorer/database.po1485
-rw-r--r--source/tg/helpcontent2/source/text/shared/guide.po115
-rw-r--r--source/tg/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/tg/helpcontent2/source/text/simpress/00.po15
-rw-r--r--source/tg/helpcontent2/source/text/simpress/01.po187
-rw-r--r--source/tg/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/tg/helpcontent2/source/text/swriter.po20
-rw-r--r--source/tg/helpcontent2/source/text/swriter/00.po72
-rw-r--r--source/tg/helpcontent2/source/text/swriter/01.po165
-rw-r--r--source/tg/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/tg/helpcontent2/source/text/swriter/guide.po176
-rw-r--r--source/tg/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/tg/sc/messages.po136
-rw-r--r--source/tg/sd/messages.po145
-rw-r--r--source/tg/sfx2/messages.po56
-rw-r--r--source/tg/svtools/messages.po128
-rw-r--r--source/tg/svx/messages.po140
-rw-r--r--source/tg/sw/messages.po1964
-rw-r--r--source/tg/vcl/messages.po178
-rw-r--r--source/th/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/th/extensions/messages.po104
-rw-r--r--source/th/fpicker/messages.po44
-rw-r--r--source/th/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/th/sc/messages.po136
-rw-r--r--source/th/sd/messages.po142
-rw-r--r--source/th/sfx2/messages.po56
-rw-r--r--source/th/svtools/messages.po128
-rw-r--r--source/th/svx/messages.po140
-rw-r--r--source/th/sw/messages.po1964
-rw-r--r--source/th/vcl/messages.po178
-rw-r--r--source/ti/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/ti/extensions/messages.po104
-rw-r--r--source/ti/fpicker/messages.po44
-rw-r--r--source/ti/officecfg/registry/data/org/openoffice/Office/UI.po40
-rw-r--r--source/ti/sc/messages.po136
-rw-r--r--source/ti/sd/messages.po138
-rw-r--r--source/ti/sfx2/messages.po56
-rw-r--r--source/ti/svtools/messages.po128
-rw-r--r--source/ti/svx/messages.po140
-rw-r--r--source/ti/sw/messages.po1964
-rw-r--r--source/ti/vcl/messages.po178
-rw-r--r--source/tn/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/tn/extensions/messages.po104
-rw-r--r--source/tn/fpicker/messages.po44
-rw-r--r--source/tn/officecfg/registry/data/org/openoffice/Office/UI.po42
-rw-r--r--source/tn/sc/messages.po136
-rw-r--r--source/tn/sd/messages.po145
-rw-r--r--source/tn/sfx2/messages.po56
-rw-r--r--source/tn/svtools/messages.po128
-rw-r--r--source/tn/svx/messages.po140
-rw-r--r--source/tn/sw/messages.po1964
-rw-r--r--source/tn/vcl/messages.po178
-rw-r--r--source/tr/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/tr/cui/messages.po16
-rw-r--r--source/tr/dictionaries/be_BY.po8
-rw-r--r--source/tr/dictionaries/pt_BR/dialog.po16
-rw-r--r--source/tr/extensions/messages.po106
-rw-r--r--source/tr/filter/messages.po32
-rw-r--r--source/tr/fpicker/messages.po46
-rw-r--r--source/tr/helpcontent2/source/auxiliary.po11
-rw-r--r--source/tr/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/tr/helpcontent2/source/text/sbasic/python.po120
-rw-r--r--source/tr/helpcontent2/source/text/sbasic/shared.po768
-rw-r--r--source/tr/helpcontent2/source/text/sbasic/shared/03.po28
-rw-r--r--source/tr/helpcontent2/source/text/scalc.po8
-rw-r--r--source/tr/helpcontent2/source/text/scalc/01.po438
-rw-r--r--source/tr/helpcontent2/source/text/scalc/guide.po36
-rw-r--r--source/tr/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/tr/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/tr/helpcontent2/source/text/sdraw/00.po25
-rw-r--r--source/tr/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/tr/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/tr/helpcontent2/source/text/shared/01.po282
-rw-r--r--source/tr/helpcontent2/source/text/shared/06.po8
-rw-r--r--source/tr/helpcontent2/source/text/shared/explorer/database.po1489
-rw-r--r--source/tr/helpcontent2/source/text/shared/guide.po131
-rw-r--r--source/tr/helpcontent2/source/text/shared/optionen.po22
-rw-r--r--source/tr/helpcontent2/source/text/simpress/00.po15
-rw-r--r--source/tr/helpcontent2/source/text/simpress/01.po209
-rw-r--r--source/tr/helpcontent2/source/text/simpress/guide.po52
-rw-r--r--source/tr/helpcontent2/source/text/swriter.po20
-rw-r--r--source/tr/helpcontent2/source/text/swriter/00.po72
-rw-r--r--source/tr/helpcontent2/source/text/swriter/01.po165
-rw-r--r--source/tr/helpcontent2/source/text/swriter/02.po16
-rw-r--r--source/tr/helpcontent2/source/text/swriter/guide.po202
-rw-r--r--source/tr/officecfg/registry/data/org/openoffice/Office/UI.po62
-rw-r--r--source/tr/sc/messages.po136
-rw-r--r--source/tr/sd/messages.po140
-rw-r--r--source/tr/sfx2/messages.po56
-rw-r--r--source/tr/svtools/messages.po128
-rw-r--r--source/tr/svx/messages.po174
-rw-r--r--source/tr/sw/messages.po1966
-rw-r--r--source/tr/vcl/messages.po180
-rw-r--r--source/ts/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/ts/extensions/messages.po104
-rw-r--r--source/ts/fpicker/messages.po44
-rw-r--r--source/ts/officecfg/registry/data/org/openoffice/Office/UI.po45
-rw-r--r--source/ts/sc/messages.po136
-rw-r--r--source/ts/sd/messages.po145
-rw-r--r--source/ts/sfx2/messages.po56
-rw-r--r--source/ts/svtools/messages.po128
-rw-r--r--source/ts/svx/messages.po140
-rw-r--r--source/ts/sw/messages.po1964
-rw-r--r--source/ts/vcl/messages.po178
-rw-r--r--source/tt/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/tt/extensions/messages.po104
-rw-r--r--source/tt/fpicker/messages.po44
-rw-r--r--source/tt/officecfg/registry/data/org/openoffice/Office/UI.po40
-rw-r--r--source/tt/sc/messages.po136
-rw-r--r--source/tt/sd/messages.po145
-rw-r--r--source/tt/sfx2/messages.po56
-rw-r--r--source/tt/svtools/messages.po128
-rw-r--r--source/tt/svx/messages.po140
-rw-r--r--source/tt/sw/messages.po1964
-rw-r--r--source/tt/vcl/messages.po178
-rw-r--r--source/ug/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/ug/extensions/messages.po104
-rw-r--r--source/ug/fpicker/messages.po44
-rw-r--r--source/ug/helpcontent2/source/auxiliary.po11
-rw-r--r--source/ug/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/ug/helpcontent2/source/text/sbasic/python.po120
-rw-r--r--source/ug/helpcontent2/source/text/sbasic/shared.po740
-rw-r--r--source/ug/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/ug/helpcontent2/source/text/scalc.po8
-rw-r--r--source/ug/helpcontent2/source/text/scalc/01.po436
-rw-r--r--source/ug/helpcontent2/source/text/scalc/guide.po34
-rw-r--r--source/ug/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/ug/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/ug/helpcontent2/source/text/sdraw/00.po15
-rw-r--r--source/ug/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/ug/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/ug/helpcontent2/source/text/shared/01.po278
-rw-r--r--source/ug/helpcontent2/source/text/shared/explorer/database.po1487
-rw-r--r--source/ug/helpcontent2/source/text/shared/guide.po115
-rw-r--r--source/ug/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/ug/helpcontent2/source/text/simpress/00.po15
-rw-r--r--source/ug/helpcontent2/source/text/simpress/01.po187
-rw-r--r--source/ug/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/ug/helpcontent2/source/text/swriter.po20
-rw-r--r--source/ug/helpcontent2/source/text/swriter/00.po72
-rw-r--r--source/ug/helpcontent2/source/text/swriter/01.po165
-rw-r--r--source/ug/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/ug/helpcontent2/source/text/swriter/guide.po178
-rw-r--r--source/ug/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/ug/sc/messages.po136
-rw-r--r--source/ug/sd/messages.po145
-rw-r--r--source/ug/sfx2/messages.po56
-rw-r--r--source/ug/svtools/messages.po128
-rw-r--r--source/ug/svx/messages.po140
-rw-r--r--source/ug/sw/messages.po1964
-rw-r--r--source/ug/vcl/messages.po178
-rw-r--r--source/uk/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po18
-rw-r--r--source/uk/cui/messages.po66
-rw-r--r--source/uk/dbaccess/messages.po8
-rw-r--r--source/uk/dictionaries/pt_BR/dialog.po72
-rw-r--r--source/uk/extensions/messages.po106
-rw-r--r--source/uk/filter/messages.po14
-rw-r--r--source/uk/fpicker/messages.po44
-rw-r--r--source/uk/helpcontent2/source/auxiliary.po19
-rw-r--r--source/uk/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/uk/helpcontent2/source/text/sbasic/python.po120
-rw-r--r--source/uk/helpcontent2/source/text/sbasic/shared.po804
-rw-r--r--source/uk/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/uk/helpcontent2/source/text/scalc.po12
-rw-r--r--source/uk/helpcontent2/source/text/scalc/00.po30
-rw-r--r--source/uk/helpcontent2/source/text/scalc/01.po464
-rw-r--r--source/uk/helpcontent2/source/text/scalc/guide.po36
-rw-r--r--source/uk/helpcontent2/source/text/sdatabase.po1653
-rw-r--r--source/uk/helpcontent2/source/text/sdraw.po13
-rw-r--r--source/uk/helpcontent2/source/text/sdraw/00.po23
-rw-r--r--source/uk/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/uk/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/uk/helpcontent2/source/text/shared/01.po282
-rw-r--r--source/uk/helpcontent2/source/text/shared/04.po18
-rw-r--r--source/uk/helpcontent2/source/text/shared/05.po10
-rw-r--r--source/uk/helpcontent2/source/text/shared/explorer/database.po1505
-rw-r--r--source/uk/helpcontent2/source/text/shared/guide.po115
-rw-r--r--source/uk/helpcontent2/source/text/shared/optionen.po24
-rw-r--r--source/uk/helpcontent2/source/text/simpress/00.po29
-rw-r--r--source/uk/helpcontent2/source/text/simpress/01.po201
-rw-r--r--source/uk/helpcontent2/source/text/simpress/04.po18
-rw-r--r--source/uk/helpcontent2/source/text/simpress/guide.po52
-rw-r--r--source/uk/helpcontent2/source/text/swriter.po20
-rw-r--r--source/uk/helpcontent2/source/text/swriter/00.po72
-rw-r--r--source/uk/helpcontent2/source/text/swriter/01.po167
-rw-r--r--source/uk/helpcontent2/source/text/swriter/02.po8
-rw-r--r--source/uk/helpcontent2/source/text/swriter/04.po6
-rw-r--r--source/uk/helpcontent2/source/text/swriter/guide.po204
-rw-r--r--source/uk/officecfg/registry/data/org/openoffice/Office/UI.po114
-rw-r--r--source/uk/sc/messages.po172
-rw-r--r--source/uk/sd/messages.po178
-rw-r--r--source/uk/sfx2/messages.po62
-rw-r--r--source/uk/svtools/messages.po130
-rw-r--r--source/uk/svx/messages.po174
-rw-r--r--source/uk/sw/messages.po1984
-rw-r--r--source/uk/vcl/messages.po180
-rw-r--r--source/ur/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po10
-rw-r--r--source/ur/extensions/messages.po104
-rw-r--r--source/ur/fpicker/messages.po46
-rw-r--r--source/ur/officecfg/registry/data/org/openoffice/Office/UI.po40
-rw-r--r--source/ur/sc/messages.po136
-rw-r--r--source/ur/sd/messages.po138
-rw-r--r--source/ur/sfx2/messages.po56
-rw-r--r--source/ur/svtools/messages.po128
-rw-r--r--source/ur/svx/messages.po140
-rw-r--r--source/ur/sw/messages.po1964
-rw-r--r--source/ur/vcl/messages.po178
-rw-r--r--source/uz/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/uz/extensions/messages.po104
-rw-r--r--source/uz/fpicker/messages.po44
-rw-r--r--source/uz/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/uz/sc/messages.po136
-rw-r--r--source/uz/sd/messages.po145
-rw-r--r--source/uz/sfx2/messages.po56
-rw-r--r--source/uz/svtools/messages.po128
-rw-r--r--source/uz/svx/messages.po140
-rw-r--r--source/uz/sw/messages.po1964
-rw-r--r--source/uz/vcl/messages.po178
-rw-r--r--source/ve/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/ve/extensions/messages.po104
-rw-r--r--source/ve/fpicker/messages.po44
-rw-r--r--source/ve/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/ve/sc/messages.po136
-rw-r--r--source/ve/sd/messages.po145
-rw-r--r--source/ve/sfx2/messages.po56
-rw-r--r--source/ve/svtools/messages.po128
-rw-r--r--source/ve/svx/messages.po140
-rw-r--r--source/ve/sw/messages.po1964
-rw-r--r--source/ve/vcl/messages.po178
-rw-r--r--source/vec/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/vec/extensions/messages.po104
-rw-r--r--source/vec/fpicker/messages.po46
-rw-r--r--source/vec/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/vec/sc/messages.po136
-rw-r--r--source/vec/sd/messages.po140
-rw-r--r--source/vec/sfx2/messages.po56
-rw-r--r--source/vec/svtools/messages.po128
-rw-r--r--source/vec/svx/messages.po140
-rw-r--r--source/vec/sw/messages.po1966
-rw-r--r--source/vec/vcl/messages.po178
-rw-r--r--source/vi/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/vi/extensions/messages.po104
-rw-r--r--source/vi/fpicker/messages.po44
-rw-r--r--source/vi/helpcontent2/source/auxiliary.po11
-rw-r--r--source/vi/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/vi/helpcontent2/source/text/sbasic/python.po120
-rw-r--r--source/vi/helpcontent2/source/text/sbasic/shared.po746
-rw-r--r--source/vi/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/vi/helpcontent2/source/text/scalc.po8
-rw-r--r--source/vi/helpcontent2/source/text/scalc/01.po438
-rw-r--r--source/vi/helpcontent2/source/text/scalc/guide.po34
-rw-r--r--source/vi/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/vi/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/vi/helpcontent2/source/text/sdraw/00.po15
-rw-r--r--source/vi/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/vi/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/vi/helpcontent2/source/text/shared/01.po282
-rw-r--r--source/vi/helpcontent2/source/text/shared/explorer/database.po1487
-rw-r--r--source/vi/helpcontent2/source/text/shared/guide.po115
-rw-r--r--source/vi/helpcontent2/source/text/shared/optionen.po22
-rw-r--r--source/vi/helpcontent2/source/text/simpress/00.po15
-rw-r--r--source/vi/helpcontent2/source/text/simpress/01.po201
-rw-r--r--source/vi/helpcontent2/source/text/simpress/guide.po52
-rw-r--r--source/vi/helpcontent2/source/text/swriter.po20
-rw-r--r--source/vi/helpcontent2/source/text/swriter/00.po72
-rw-r--r--source/vi/helpcontent2/source/text/swriter/01.po165
-rw-r--r--source/vi/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/vi/helpcontent2/source/text/swriter/guide.po198
-rw-r--r--source/vi/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/vi/sc/messages.po136
-rw-r--r--source/vi/sd/messages.po145
-rw-r--r--source/vi/sfx2/messages.po56
-rw-r--r--source/vi/svtools/messages.po128
-rw-r--r--source/vi/svx/messages.po140
-rw-r--r--source/vi/sw/messages.po1964
-rw-r--r--source/vi/vcl/messages.po178
-rw-r--r--source/xh/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/xh/extensions/messages.po104
-rw-r--r--source/xh/fpicker/messages.po44
-rw-r--r--source/xh/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/xh/sc/messages.po136
-rw-r--r--source/xh/sd/messages.po145
-rw-r--r--source/xh/sfx2/messages.po56
-rw-r--r--source/xh/svtools/messages.po128
-rw-r--r--source/xh/svx/messages.po140
-rw-r--r--source/xh/sw/messages.po1964
-rw-r--r--source/xh/vcl/messages.po178
-rw-r--r--source/zh-CN/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po18
-rw-r--r--source/zh-CN/cui/messages.po116
-rw-r--r--source/zh-CN/dbaccess/messages.po22
-rw-r--r--source/zh-CN/extensions/messages.po106
-rw-r--r--source/zh-CN/fpicker/messages.po44
-rw-r--r--source/zh-CN/helpcontent2/source/auxiliary.po11
-rw-r--r--source/zh-CN/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/zh-CN/helpcontent2/source/text/sbasic/python.po130
-rw-r--r--source/zh-CN/helpcontent2/source/text/sbasic/shared.po770
-rw-r--r--source/zh-CN/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc.po8
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc/01.po442
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc/guide.po36
-rw-r--r--source/zh-CN/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/zh-CN/helpcontent2/source/text/sdraw.po13
-rw-r--r--source/zh-CN/helpcontent2/source/text/sdraw/00.po19
-rw-r--r--source/zh-CN/helpcontent2/source/text/sdraw/01.po8
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/01.po282
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/explorer/database.po1493
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/guide.po133
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/optionen.po24
-rw-r--r--source/zh-CN/helpcontent2/source/text/simpress/00.po17
-rw-r--r--source/zh-CN/helpcontent2/source/text/simpress/01.po201
-rw-r--r--source/zh-CN/helpcontent2/source/text/simpress/guide.po52
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter.po20
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/00.po72
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/01.po165
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/guide.po202
-rw-r--r--source/zh-CN/nlpsolver/src/locale.po8
-rw-r--r--source/zh-CN/officecfg/registry/data/org/openoffice/Office/UI.po82
-rw-r--r--source/zh-CN/readlicense_oo/docs.po10
-rw-r--r--source/zh-CN/sc/messages.po138
-rw-r--r--source/zh-CN/sd/messages.po146
-rw-r--r--source/zh-CN/sfx2/messages.po58
-rw-r--r--source/zh-CN/starmath/messages.po28
-rw-r--r--source/zh-CN/svtools/messages.po130
-rw-r--r--source/zh-CN/svx/messages.po204
-rw-r--r--source/zh-CN/sw/messages.po1986
-rw-r--r--source/zh-CN/vcl/messages.po190
-rw-r--r--source/zh-TW/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/zh-TW/extensions/messages.po106
-rw-r--r--source/zh-TW/fpicker/messages.po44
-rw-r--r--source/zh-TW/helpcontent2/source/auxiliary.po11
-rw-r--r--source/zh-TW/helpcontent2/source/text/sbasic/guide.po344
-rw-r--r--source/zh-TW/helpcontent2/source/text/sbasic/python.po120
-rw-r--r--source/zh-TW/helpcontent2/source/text/sbasic/shared.po746
-rw-r--r--source/zh-TW/helpcontent2/source/text/sbasic/shared/03.po26
-rw-r--r--source/zh-TW/helpcontent2/source/text/scalc.po8
-rw-r--r--source/zh-TW/helpcontent2/source/text/scalc/01.po438
-rw-r--r--source/zh-TW/helpcontent2/source/text/scalc/guide.po36
-rw-r--r--source/zh-TW/helpcontent2/source/text/sdatabase.po1533
-rw-r--r--source/zh-TW/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/zh-TW/helpcontent2/source/text/sdraw/00.po15
-rw-r--r--source/zh-TW/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/01.po282
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/explorer/database.po1485
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/guide.po119
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/optionen.po22
-rw-r--r--source/zh-TW/helpcontent2/source/text/simpress/00.po15
-rw-r--r--source/zh-TW/helpcontent2/source/text/simpress/01.po201
-rw-r--r--source/zh-TW/helpcontent2/source/text/simpress/guide.po52
-rw-r--r--source/zh-TW/helpcontent2/source/text/swriter.po20
-rw-r--r--source/zh-TW/helpcontent2/source/text/swriter/00.po72
-rw-r--r--source/zh-TW/helpcontent2/source/text/swriter/01.po165
-rw-r--r--source/zh-TW/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/zh-TW/helpcontent2/source/text/swriter/guide.po198
-rw-r--r--source/zh-TW/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/zh-TW/sc/messages.po136
-rw-r--r--source/zh-TW/sd/messages.po140
-rw-r--r--source/zh-TW/sfx2/messages.po56
-rw-r--r--source/zh-TW/svtools/messages.po130
-rw-r--r--source/zh-TW/svx/messages.po142
-rw-r--r--source/zh-TW/sw/messages.po1966
-rw-r--r--source/zh-TW/vcl/messages.po180
-rw-r--r--source/zu/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/zu/extensions/messages.po104
-rw-r--r--source/zu/fpicker/messages.po44
-rw-r--r--source/zu/officecfg/registry/data/org/openoffice/Office/UI.po45
-rw-r--r--source/zu/sc/messages.po136
-rw-r--r--source/zu/sd/messages.po145
-rw-r--r--source/zu/sfx2/messages.po56
-rw-r--r--source/zu/svtools/messages.po128
-rw-r--r--source/zu/svx/messages.po140
-rw-r--r--source/zu/sw/messages.po1964
-rw-r--r--source/zu/vcl/messages.po178
3299 files changed, 451405 insertions, 327170 deletions
diff --git a/source/ab/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po b/source/ab/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po
index 4ac308143c6..4c1c537d658 100644
--- a/source/ab/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po
+++ b/source/ab/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-11 18:38+0200\n"
+"POT-Creation-Date: 2021-10-20 13:07+0200\n"
"PO-Revision-Date: 2017-07-14 22:09+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25,12 +25,12 @@ msgctxt ""
msgid "Firebird Embedded"
msgstr "Иагәылоу Firebird"
-#. 3davX
+#. ZVyum
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
".Drivers.Installed.sdbc:firebird:*\n"
"DriverTypeDisplayName\n"
"value.text"
-msgid "Firebird File"
-msgstr "Firebird Афаил"
+msgid "Firebird External"
+msgstr ""
diff --git a/source/ab/extensions/messages.po b/source/ab/extensions/messages.po
index cfd0a4c59ef..c4a7deb29fb 100644
--- a/source/ab/extensions/messages.po
+++ b/source/ab/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-10 23:11+0200\n"
+"POT-Creation-Date: 2021-10-20 13:07+0200\n"
"PO-Revision-Date: 2018-11-12 11:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4140,91 +4140,163 @@ msgid "Scanner"
msgstr ""
#. 8aFBr
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:66
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:78
msgctxt "sanedialog|deviceInfoButton"
msgid "About Dev_ice"
msgstr ""
+#. 3aG8b
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:85
+msgctxt "sanedialog|extended_tip|deviceInfoButton"
+msgid "Displays a popup window with information obtained from the scanner driver."
+msgstr ""
+
#. 3EeXn
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:80
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:97
msgctxt "sanedialog|previewButton"
msgid "Create Previe_w"
msgstr ""
+#. FPGEB
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:104
+msgctxt "sanedialog|extended_tip|previewButton"
+msgid "Scans and displays the document in the preview area."
+msgstr ""
+
#. ihLsf
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:94
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:116
msgctxt "sanedialog|scanButton"
msgid "_Scan"
msgstr ""
+#. a4hC3
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:123
+msgctxt "sanedialog|extended_tip|ok"
+msgid "Scans an image, and then inserts the result into the document and closes the dialog."
+msgstr ""
+
#. gFREe
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:160
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:187
msgctxt "sanedialog|label3"
msgid "_Left:"
msgstr "Арымарахь:"
#. ErDB4
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:174
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:201
msgctxt "sanedialog|label4"
msgid "To_p:"
msgstr ""
#. bSfBR
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:188
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:215
msgctxt "sanedialog|label5"
msgid "_Right:"
msgstr "Арыӷьарахь:"
#. NGDq3
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:202
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:229
msgctxt "sanedialog|label6"
msgid "_Bottom:"
msgstr "Ҵаҟала: "
+#. nu6SM
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:249
+msgctxt "sanedialog|extended_tip|topSpinbutton"
+msgid "Set the top margin of the scan area."
+msgstr ""
+
+#. oDppB
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:268
+msgctxt "sanedialog|extended_tip|rightSpinbutton"
+msgid "Set the right margin of the scan area."
+msgstr ""
+
+#. EdgNn
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:287
+msgctxt "sanedialog|extended_tip|bottomSpinbutton"
+msgid "Set the bottom margin of the scan area."
+msgstr ""
+
+#. L7tZS
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:306
+msgctxt "sanedialog|extended_tip|leftSpinbutton"
+msgid "Set the left margin of the scan area."
+msgstr ""
+
#. YfU4m
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:274
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:321
msgctxt "sanedialog|label1"
msgid "Scan Area"
msgstr ""
+#. wECiq
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:366
+msgctxt "sanedialog|extended_tip|preview"
+msgid "Displays a preview of the scanned image. The preview area contains eight handles. Drag the handles to adjust the scan area or enter a value in the corresponding margin spin box."
+msgstr ""
+
#. FZ7Vw
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:327
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:379
msgctxt "sanedialog|label2"
msgid "Preview"
msgstr "Ахәаҧшра"
#. EiiLN
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:361
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:413
msgctxt "sanedialog|label7"
msgid "Device _used"
msgstr ""
#. W6hNP
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:375
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:427
msgctxt "sanedialog|label8"
msgid "Resolution [_DPI]"
msgstr ""
+#. diRy3
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:444
+msgctxt "sanedialog|extended_tip|deviceCombobox"
+msgid "Displays a list of available scanners detected in your system."
+msgstr ""
+
+#. nBuc6
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:466
+msgctxt "sanedialog|extended_tip|reslCombobox"
+msgid "Select the resolution in dots per inch for the scan job."
+msgstr ""
+
#. t3Tuq
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:430
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:492
msgctxt "sanedialog|advancedCheckbutton"
msgid "Show advanced options"
msgstr ""
+#. yXnEA
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:500
+msgctxt "sanedialog|extended_tip|advancedcheckbutton"
+msgid "Mark this checkbox to display more configuration options for the scanner device."
+msgstr ""
+
#. gneMZ
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:460
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:527
msgctxt "sanedialog|label10"
msgid "Options:"
msgstr "Апараметрқәа:"
+#. 4FHyM
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:569
+msgctxt "sanedialog\\extended_tip|optionSvTreeListBox"
+msgid "Displays the list of available scanner driver advanced options. Double click an option to display its contents just below."
+msgstr ""
+
#. VDQay
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:536
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:607
msgctxt "sanedialog|optionsButton"
msgid "Se_t"
msgstr ""
#. bNTfS
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:609
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:680
msgctxt "sanedialog|vectorLabel"
msgid "Vector element"
msgstr ""
diff --git a/source/ab/filter/source/config/fragments/filters.po b/source/ab/filter/source/config/fragments/filters.po
index a2598ac97b1..e0ceb41bb98 100644
--- a/source/ab/filter/source/config/fragments/filters.po
+++ b/source/ab/filter/source/config/fragments/filters.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-09-10 23:11+0200\n"
-"PO-Revision-Date: 2021-08-25 05:04+0000\n"
+"PO-Revision-Date: 2021-10-10 10:10+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/filtersourceconfigfragmentsfilters/ab/>\n"
"Language: ab\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.8.1\n"
"X-POOTLE-MTIME: 1532251331.000000\n"
#. FR4Ff
@@ -294,7 +294,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "HTML Document (Calc)"
-msgstr "HTML адокумент (Calc) "
+msgstr "HTML адокумент (Calc)"
#. oExEE
#: HTML__StarWriter_.xcu
@@ -1824,7 +1824,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "OpenOffice.org 1.0 Drawing (Impress)"
-msgstr "OpenOffice.org 1.0 асахьа (Impress) "
+msgstr "OpenOffice.org 1.0 асахьа (Impress)"
#. oviUa
#: impress_StarOffice_XML_Impress_Template.xcu
@@ -2074,7 +2074,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Writer Layout XML"
-msgstr ""
+msgstr "Writer аҟны XML адырганҵа"
#. wADhK
#: writer_pdf_Export.xcu
@@ -2194,7 +2194,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "ODF Master Document Template"
-msgstr ""
+msgstr "Еилоу ODF адокумент ашаблон"
#. RbTUd
#: writerglobal8_writer.xcu
diff --git a/source/ab/fpicker/messages.po b/source/ab/fpicker/messages.po
index 058b5e8e1a9..96c85e6c290 100644
--- a/source/ab/fpicker/messages.po
+++ b/source/ab/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
"PO-Revision-Date: 2018-10-02 16:06+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -217,49 +217,49 @@ msgid "_Open"
msgstr ""
#. JnE2t
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:548
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:551
msgctxt "explorerfiledialog|play"
msgid "_Play"
msgstr ""
#. dWNqZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:586
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:589
msgctxt "explorerfiledialog|file_name_label"
msgid "File _name:"
msgstr "Афаил ахьӡ:"
#. 9cjFB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:612
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:615
msgctxt "explorerfiledialog|file_type_label"
msgid "File _type:"
msgstr "Афаил атип:"
#. quCXH
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:676
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:679
msgctxt "explorerfiledialog|readonly"
msgid "_Read-only"
msgstr "Аҧхьара мацараз"
#. hm2xy
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:699
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:702
msgctxt "explorerfiledialog|password"
msgid "Save with password"
msgstr "Иеиқәырхатәуп ажәамаӡа шацу"
#. 8EYcB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:712
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:715
msgctxt "explorerfiledialog|extension"
msgid "_Automatic file name extension"
msgstr ""
#. 2CgAZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:725
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:728
msgctxt "explorerfiledialog|options"
msgid "Edit _filter settings"
msgstr "Иҧсахтәуп афильтр архиарақәа"
#. 6XqLj
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:752
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:755
msgctxt "explorerfiledialog|gpgencrypt"
msgid "Encrypt with GPG key"
msgstr ""
@@ -318,68 +318,62 @@ msgctxt "remotefilesdialog|open"
msgid "_Open"
msgstr ""
-#. kKETY
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:157
-msgctxt "remotefilesdialog|save"
-msgid "_Save"
-msgstr ""
-
#. uGwr4
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:186
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:175
msgctxt "remotefilesdialog|label1"
msgid "Service:"
msgstr "Амаҵзура:"
#. cwNkT
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:214
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:203
msgctxt "remotefilesdialog|add_service_btn"
msgid "_Manage services"
msgstr ""
#. Jnndg
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:264
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:253
msgctxt "remotefilesdialog|list_view|tooltip_text"
msgid "List view"
msgstr "Ахьӡынҵа"
#. xxBtB
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:279
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:268
msgctxt "remotefilesdialog|icon_view|tooltip_text"
msgid "Icon view"
msgstr ""
#. 6CiqC
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:295
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:284
msgctxt "remotefilesdialog|new_folder|tooltip_text"
msgid "Create New Folder"
msgstr "Иаҧҵатәуп аҭаӡ"
#. aXDaC
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:400
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:389
msgctxt "remotefilesdialog|name"
msgid "Name"
msgstr ""
#. qRHnF
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:420
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:409
msgctxt "remotefilesdialog|size"
msgid "Size"
msgstr ""
#. qeF3r
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:434
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:423
msgctxt "remotefilesdialog|date"
msgid "Date modified"
msgstr ""
#. cGNWD
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:508
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:499
msgctxt "remotefilesdialog|filterLabel"
msgid "Filter"
msgstr "Афаилқәа ртип"
#. rCVer
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:522
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:513
msgctxt "remotefilesdialog|nameLabel"
msgid "File name"
msgstr "Афаил ахьӡ"
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 1fce992d91c..bb147ff61c9 100644
--- a/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-04 19:52+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
"PO-Revision-Date: 2021-03-05 18:22+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/ab/>\n"
@@ -1146,6 +1146,16 @@ msgctxt ""
msgid "~Insert or Edit..."
msgstr ""
+#. dHdzP
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Commands..uno:InsertPivotTableNBLabel\n"
+"Label\n"
+"value.text"
+msgid "~Insert or Edit Pivot Table..."
+msgstr ""
+
#. vqC2u
#: CalcCommands.xcu
msgctxt ""
@@ -3156,15 +3166,15 @@ msgctxt ""
msgid "Merge Cells"
msgstr "Еидҵатәуп абларҭақәа"
-#. GGRNG
+#. APBqu
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:SplitCell\n"
"Label\n"
"value.text"
-msgid "Split Cells"
-msgstr "Еиҟәшатәуп абларҭақәа"
+msgid "Unmerge Cells"
+msgstr ""
#. qJGdH
#: CalcCommands.xcu
@@ -3176,6 +3186,16 @@ msgctxt ""
msgid "M~erge and Center Cells"
msgstr ""
+#. ET4vB
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Commands..uno:ToggleMergeCells\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Merge and center or unmerge cells depending on the current toggle state"
+msgstr ""
+
#. VZsps
#: CalcCommands.xcu
msgctxt ""
@@ -4357,15 +4377,15 @@ msgctxt ""
msgid "Cell ~Comments"
msgstr "Абларҭазы акомментари"
-#. 3xhAF
+#. yqd4v
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:MergeCellsMenu\n"
"Label\n"
"value.text"
-msgid "M~erge Cells"
-msgstr "Еидҵатәуп абларҭақәа"
+msgid "M~erge and Unmerge Cells"
+msgstr ""
#. G3E3Q
#: CalcCommands.xcu
@@ -18596,6 +18616,16 @@ msgctxt ""
msgid "Line Spacing: 1"
msgstr ""
+#. jmAwA
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:SpacePara115\n"
+"Label\n"
+"value.text"
+msgid "Line Spacing: 1.15"
+msgstr ""
+
#. q8wJt
#: GenericCommands.xcu
msgctxt ""
diff --git a/source/ab/sc/messages.po b/source/ab/sc/messages.po
index 4e33dd0487b..59fe7deaae5 100644
--- a/source/ab/sc/messages.po
+++ b/source/ab/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-27 19:09+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
"PO-Revision-Date: 2021-02-09 16:36+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/ab/>\n"
@@ -27063,314 +27063,344 @@ msgctxt "pastespecial|paste_values_only|tooltip_text"
msgid "Values Only"
msgstr ""
+#. tDknw
+#: sc/uiconfig/scalc/ui/pastespecial.ui:141
+msgctxt "pastespecial|extended_tip|paste_values_only"
+msgid "Pastes numbers, text, dates and the results of formulas."
+msgstr ""
+
#. CTEKF
-#: sc/uiconfig/scalc/ui/pastespecial.ui:148
+#: sc/uiconfig/scalc/ui/pastespecial.ui:153
msgctxt "pastespecial|paste_values_formats|label"
msgid "Values & _Formats"
msgstr ""
#. 7GuDi
-#: sc/uiconfig/scalc/ui/pastespecial.ui:152
+#: sc/uiconfig/scalc/ui/pastespecial.ui:157
msgctxt "pastespecial|paste_values_formats|tooltip_text"
msgid "Values & Formats"
msgstr "Аҵакқәеи аформатқәеи"
+#. FjJPU
+#: sc/uiconfig/scalc/ui/pastespecial.ui:164
+msgctxt "pastespecial|extended_tip|paste_values_formats"
+msgid "Pastes cell values, formula results and formats applied to cells."
+msgstr ""
+
#. Rb8KR
-#: sc/uiconfig/scalc/ui/pastespecial.ui:166
+#: sc/uiconfig/scalc/ui/pastespecial.ui:176
msgctxt "pastespecial|paste_format|label"
msgid "Formats Onl_y"
msgstr ""
#. Cvyjn
-#: sc/uiconfig/scalc/ui/pastespecial.ui:170
+#: sc/uiconfig/scalc/ui/pastespecial.ui:180
msgctxt "pastespecial|paste_format|tooltip_text"
msgid "Formats Only"
msgstr ""
+#. Jhc4o
+#: sc/uiconfig/scalc/ui/pastespecial.ui:187
+msgctxt "pastespecial|extended_tip|paste_formats"
+msgid "Pastes only the formats from the source range without changing the values in the destination range."
+msgstr ""
+
#. YGdhH
-#: sc/uiconfig/scalc/ui/pastespecial.ui:184
+#: sc/uiconfig/scalc/ui/pastespecial.ui:199
msgctxt "pastespecial|paste_transpose|label"
msgid "_Transpose All"
msgstr ""
#. sbLGi
-#: sc/uiconfig/scalc/ui/pastespecial.ui:188
+#: sc/uiconfig/scalc/ui/pastespecial.ui:203
msgctxt "pastespecial|paste_transpose|tooltip_text"
msgid "Transpose All"
msgstr ""
+#. 3BC6U
+#: sc/uiconfig/scalc/ui/pastespecial.ui:210
+msgctxt "pastespecial|extended_tip|paste_transpose"
+msgid "Pastes cell contents transposed, hence columns are converted to rows."
+msgstr ""
+
#. 4ETCT
-#: sc/uiconfig/scalc/ui/pastespecial.ui:209
+#: sc/uiconfig/scalc/ui/pastespecial.ui:229
msgctxt "pastespecial|cbImmediately"
msgid "_Run immediately"
msgstr ""
+#. 7a9JE
+#: sc/uiconfig/scalc/ui/pastespecial.ui:238
+msgctxt "pastespecial|extended_tip|cbImmediately"
+msgid "Check this option to run the preset immediately. Uncheck it to manipulate the options before clicking OK."
+msgstr ""
+
#. YD43i
-#: sc/uiconfig/scalc/ui/pastespecial.ui:229
+#: sc/uiconfig/scalc/ui/pastespecial.ui:254
msgctxt "pastespecial|frPresets"
msgid "Presets"
msgstr ""
#. g6DfA
-#: sc/uiconfig/scalc/ui/pastespecial.ui:265
+#: sc/uiconfig/scalc/ui/pastespecial.ui:290
msgctxt "pastespecial|paste_all"
msgid "_All"
msgstr ""
#. Labin
-#: sc/uiconfig/scalc/ui/pastespecial.ui:273
+#: sc/uiconfig/scalc/ui/pastespecial.ui:298
msgctxt "pastespecial|extended_tip|paste_all"
msgid "Pastes all cell contents, comments, formats, and objects into the current document."
msgstr ""
#. qzFbg
-#: sc/uiconfig/scalc/ui/pastespecial.ui:284
+#: sc/uiconfig/scalc/ui/pastespecial.ui:309
msgctxt "pastespecial|numbers"
msgid "_Numbers"
msgstr "Ахыҧхьаӡарақәа"
#. SCVEu
-#: sc/uiconfig/scalc/ui/pastespecial.ui:292
+#: sc/uiconfig/scalc/ui/pastespecial.ui:317
msgctxt "pastespecial|extended_tip|numbers"
msgid "Inserts cells containing numbers."
msgstr ""
#. BSEWE
-#: sc/uiconfig/scalc/ui/pastespecial.ui:303
+#: sc/uiconfig/scalc/ui/pastespecial.ui:328
msgctxt "pastespecial|text"
msgid "Te_xt"
msgstr "Атеқст"
#. JWDk5
-#: sc/uiconfig/scalc/ui/pastespecial.ui:311
+#: sc/uiconfig/scalc/ui/pastespecial.ui:336
msgctxt "pastespecial|extended_tip|text"
msgid "Inserts cells containing text."
msgstr ""
#. DBaJD
-#: sc/uiconfig/scalc/ui/pastespecial.ui:322
+#: sc/uiconfig/scalc/ui/pastespecial.ui:347
msgctxt "pastespecial|datetime"
msgid "_Date & time"
msgstr "Арыцхәи аамҭеи"
#. jq6Md
-#: sc/uiconfig/scalc/ui/pastespecial.ui:330
+#: sc/uiconfig/scalc/ui/pastespecial.ui:355
msgctxt "pastespecial|extended_tip|datetime"
msgid "Inserts cells containing date and time values."
msgstr ""
#. aHXF8
-#: sc/uiconfig/scalc/ui/pastespecial.ui:341
+#: sc/uiconfig/scalc/ui/pastespecial.ui:366
msgctxt "pastespecial|formats"
msgid "For_mats"
msgstr "Аформатқәа"
#. ehyEf
-#: sc/uiconfig/scalc/ui/pastespecial.ui:349
+#: sc/uiconfig/scalc/ui/pastespecial.ui:374
msgctxt "pastespecial|extended_tip|formats"
msgid "Inserts cell format attributes."
msgstr ""
#. NT4Am
-#: sc/uiconfig/scalc/ui/pastespecial.ui:360
+#: sc/uiconfig/scalc/ui/pastespecial.ui:385
msgctxt "pastespecial|comments"
msgid "_Comments"
msgstr "Акомментариқәа"
#. 3uP7i
-#: sc/uiconfig/scalc/ui/pastespecial.ui:368
+#: sc/uiconfig/scalc/ui/pastespecial.ui:393
msgctxt "pastespecial|extended_tip|comments"
msgid "Inserts comments that are attached to cells. If you want to add the comments to the existing cell content, select the \"Add\" operation."
msgstr ""
#. YZQBh
-#: sc/uiconfig/scalc/ui/pastespecial.ui:379
+#: sc/uiconfig/scalc/ui/pastespecial.ui:404
msgctxt "pastespecial|objects"
msgid "Ob_jects"
msgstr ""
#. DZsnr
-#: sc/uiconfig/scalc/ui/pastespecial.ui:387
+#: sc/uiconfig/scalc/ui/pastespecial.ui:412
msgctxt "pastespecial|extended_tip|objects"
msgid "Inserts objects contained within the selected cell range. These can be OLE objects, chart objects, or drawing objects."
msgstr ""
#. jrjYA
-#: sc/uiconfig/scalc/ui/pastespecial.ui:398
+#: sc/uiconfig/scalc/ui/pastespecial.ui:423
msgctxt "pastespecial|formulas"
msgid "F_ormulas"
msgstr ""
#. Na5Ba
-#: sc/uiconfig/scalc/ui/pastespecial.ui:406
+#: sc/uiconfig/scalc/ui/pastespecial.ui:431
msgctxt "pastespecial|extended_tip|formulas"
msgid "Inserts cells containing formulae."
msgstr ""
#. UtpWA
-#: sc/uiconfig/scalc/ui/pastespecial.ui:421
+#: sc/uiconfig/scalc/ui/pastespecial.ui:446
msgctxt "pastespecial|label1"
msgid "Paste"
msgstr ""
#. fonBJ
-#: sc/uiconfig/scalc/ui/pastespecial.ui:452
+#: sc/uiconfig/scalc/ui/pastespecial.ui:477
msgctxt "pastespecial|no_shift"
msgid "Don't sh_ift"
msgstr ""
#. q3Xv3
-#: sc/uiconfig/scalc/ui/pastespecial.ui:461
+#: sc/uiconfig/scalc/ui/pastespecial.ui:486
msgctxt "pastespecial|extended_tip|no_shift"
msgid "Inserted cells replace the target cells."
msgstr ""
#. RuiU6
-#: sc/uiconfig/scalc/ui/pastespecial.ui:473
+#: sc/uiconfig/scalc/ui/pastespecial.ui:498
msgctxt "pastespecial|move_down"
msgid "_Down"
msgstr ""
#. BNALN
-#: sc/uiconfig/scalc/ui/pastespecial.ui:482
+#: sc/uiconfig/scalc/ui/pastespecial.ui:507
msgctxt "pastespecial|extended_tip|move_down"
msgid "Target cells are shifted downward when you insert cells from the clipboard."
msgstr ""
#. obSAt
-#: sc/uiconfig/scalc/ui/pastespecial.ui:494
+#: sc/uiconfig/scalc/ui/pastespecial.ui:519
msgctxt "pastespecial|move_right"
msgid "_Right"
msgstr "Арыӷьарахь"
#. GEFe7
-#: sc/uiconfig/scalc/ui/pastespecial.ui:503
+#: sc/uiconfig/scalc/ui/pastespecial.ui:528
msgctxt "pastespecial|extended_tip|move_right"
msgid "Target cells are shifted to the right when you insert cells from the clipboard."
msgstr ""
#. fzYTm
-#: sc/uiconfig/scalc/ui/pastespecial.ui:519
+#: sc/uiconfig/scalc/ui/pastespecial.ui:544
msgctxt "pastespecial|label4"
msgid "Shift Cells"
msgstr ""
#. nuJd9
-#: sc/uiconfig/scalc/ui/pastespecial.ui:563
+#: sc/uiconfig/scalc/ui/pastespecial.ui:588
msgctxt "pastespecial|link"
msgid "As _Link"
msgstr ""
#. Bg9dc
-#: sc/uiconfig/scalc/ui/pastespecial.ui:571
+#: sc/uiconfig/scalc/ui/pastespecial.ui:596
msgctxt "pastespecial|extended_tip|link"
msgid "Inserts the cell range as a link, so that changes made to the cells in the source file are updated in the target file. To ensure that changes made to empty cells in the source file are updated in the target file, ensure that the \"Paste All\" option is also selected."
msgstr ""
#. qt6LA
-#: sc/uiconfig/scalc/ui/pastespecial.ui:582
+#: sc/uiconfig/scalc/ui/pastespecial.ui:607
msgctxt "pastespecial|transpose"
msgid "Trans_pose"
msgstr ""
#. P3eE4
-#: sc/uiconfig/scalc/ui/pastespecial.ui:590
+#: sc/uiconfig/scalc/ui/pastespecial.ui:615
msgctxt "pastespecial|extended_tip|transpose"
msgid "The rows of the range in the clipboard are pasted to become columns of the output range. The columns of the range in the clipboard are pasted to become rows."
msgstr ""
#. eG52z
-#: sc/uiconfig/scalc/ui/pastespecial.ui:601
+#: sc/uiconfig/scalc/ui/pastespecial.ui:626
msgctxt "pastespecial|skip_empty"
msgid "_Skip empty cells"
msgstr ""
#. BodqB
-#: sc/uiconfig/scalc/ui/pastespecial.ui:605
+#: sc/uiconfig/scalc/ui/pastespecial.ui:630
msgctxt "pastespecial|skip_empty"
msgid "If enabled, blank cells in source will not override the target."
msgstr ""
#. u2Cms
-#: sc/uiconfig/scalc/ui/pastespecial.ui:610
+#: sc/uiconfig/scalc/ui/pastespecial.ui:635
msgctxt "pastespecial|extended_tip|skip_empty"
msgid "Empty cells from the clipboard do not replace target cells. If you use this option in conjunction with the \"Multiply\" or the \"Divide\" operation, the operation is not applied to the target cell of an empty cell in the clipboard."
msgstr ""
#. jTFAJ
-#: sc/uiconfig/scalc/ui/pastespecial.ui:625
+#: sc/uiconfig/scalc/ui/pastespecial.ui:650
msgctxt "pastespecial|OptionsFrame"
msgid "Options"
msgstr ""
#. nJiy4
-#: sc/uiconfig/scalc/ui/pastespecial.ui:656
+#: sc/uiconfig/scalc/ui/pastespecial.ui:681
msgctxt "pastespecial|none"
msgid "Non_e"
msgstr "Мап"
#. 7GKDG
-#: sc/uiconfig/scalc/ui/pastespecial.ui:665
+#: sc/uiconfig/scalc/ui/pastespecial.ui:690
msgctxt "pastespecial|extended_tip|none"
msgid "Does not apply an operation when you insert the cell range from the clipboard. The contents of the clipboard will replace existing cell contents."
msgstr ""
#. CEsbt
-#: sc/uiconfig/scalc/ui/pastespecial.ui:677
+#: sc/uiconfig/scalc/ui/pastespecial.ui:702
msgctxt "pastespecial|add"
msgid "_Add"
msgstr "Иацҵатәуп"
#. bNyh2
-#: sc/uiconfig/scalc/ui/pastespecial.ui:686
+#: sc/uiconfig/scalc/ui/pastespecial.ui:711
msgctxt "pastespecial|extended_tip|add"
msgid "Adds the values in the clipboard cells to the values in the target cells. Also, if the clipboard only contains comments, adds the comments to the target cells."
msgstr ""
#. iFTvh
-#: sc/uiconfig/scalc/ui/pastespecial.ui:698
+#: sc/uiconfig/scalc/ui/pastespecial.ui:723
msgctxt "pastespecial|subtract"
msgid "_Subtract"
msgstr ""
#. 2SKbT
-#: sc/uiconfig/scalc/ui/pastespecial.ui:707
+#: sc/uiconfig/scalc/ui/pastespecial.ui:732
msgctxt "pastespecial|extended_tip|subtract"
msgid "Subtracts the values in the clipboard cells from the values in the target cells."
msgstr ""
#. zdDUB
-#: sc/uiconfig/scalc/ui/pastespecial.ui:719
+#: sc/uiconfig/scalc/ui/pastespecial.ui:744
msgctxt "pastespecial|multiply"
msgid "_Multiply"
msgstr ""
#. jkRDm
-#: sc/uiconfig/scalc/ui/pastespecial.ui:728
+#: sc/uiconfig/scalc/ui/pastespecial.ui:753
msgctxt "pastespecial|extended_tip|multiply"
msgid "Multiplies the values in the clipboard cells with the values in the target cells."
msgstr ""
#. 7Nd8u
-#: sc/uiconfig/scalc/ui/pastespecial.ui:740
+#: sc/uiconfig/scalc/ui/pastespecial.ui:765
msgctxt "pastespecial|divide"
msgid "_Divide"
msgstr ""
#. 9VKdS
-#: sc/uiconfig/scalc/ui/pastespecial.ui:749
+#: sc/uiconfig/scalc/ui/pastespecial.ui:774
msgctxt "pastespecial|extended_tip|divide"
msgid "Divides the values in the target cells by the values in the clipboard cells."
msgstr ""
#. 9otLM
-#: sc/uiconfig/scalc/ui/pastespecial.ui:765
+#: sc/uiconfig/scalc/ui/pastespecial.ui:790
msgctxt "pastespecial|label2"
msgid "Operations"
msgstr "Аоперациақәа"
#. ypkML
-#: sc/uiconfig/scalc/ui/pastespecial.ui:800
+#: sc/uiconfig/scalc/ui/pastespecial.ui:825
msgctxt "pastespecial|extended_tip|PasteSpecial"
msgid "Inserts the contents of the clipboard into the current file in a format that you can specify."
msgstr ""
diff --git a/source/ab/sd/messages.po b/source/ab/sd/messages.po
index ad13e126410..dc11d00d06c 100644
--- a/source/ab/sd/messages.po
+++ b/source/ab/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-14 12:01+0200\n"
+"POT-Creation-Date: 2021-10-20 13:09+0200\n"
"PO-Revision-Date: 2021-02-08 11:26+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/ab/>\n"
@@ -4964,241 +4964,253 @@ msgid "Text Animation"
msgstr "Атеқст анимациа"
#. FcztB
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:132
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:140
msgctxt "customanimationspanel|extended_tip|custom_animation_list"
msgid "The animation list displays all animations for the current slide."
msgstr ""
-#. KFRTW
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:163
+#. VBxbo
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:171
msgctxt "customanimationspanel|STR_CUSTOMANIMATION_LIST_HELPTEXT"
-msgid "First select the slide element and then click 'Add...' to add an animation effect."
+msgid "First select the slide element and then click 'Add' to add an animation effect."
+msgstr ""
+
+#. wWeBD
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:215
+msgctxt "customanimationspanel|lbEffect"
+msgid "Effects"
+msgstr ""
+
+#. WGWNA
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:236
+msgctxt "customanimationspanel|add"
+msgid "_Add"
msgstr ""
#. nRqGR
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:195
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:240
msgctxt "customanimationspanel|add_effect|tooltip_text"
msgid "Add Effect"
msgstr ""
#. CskWF
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:199
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:245
msgctxt "customanimationspanel|extended_tip|add_effect"
msgid "Adds another animation effect for the selected object on the slide."
msgstr ""
#. vitMM
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:214
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:260
msgctxt "customanimationspanel|remove_effect|tooltip_text"
msgid "Remove Effect"
msgstr ""
#. pvCFG
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:218
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:264
msgctxt "customanimationspanel|extended_tip|remove_effect"
msgid "Removes the selected animation effects from the animation list."
msgstr ""
#. 3wHRp
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:233
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:279
msgctxt "customanimationspanel|move_up|tooltip_text"
msgid "Move Up"
msgstr "Ишьҭыхтәуп"
#. buR2G
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:237
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:283
msgctxt "customanimationspanel|extended_tip|move_up"
msgid "Click one of the buttons to move the selected animation effect up or down in the list."
msgstr ""
#. jEksa
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:252
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:298
msgctxt "customanimationspanel|move_down|tooltip_text"
msgid "Move Down"
msgstr "Илашьҭтәуп"
#. x82hp
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:256
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:302
msgctxt "customanimationspanel|extended_tip|move_down"
msgid "Click one of the buttons to move the selected animation effect up or down in the list."
msgstr ""
#. wCc89
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:285
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:324
msgctxt "customanimationspanel|categorylabel"
msgid "Category:"
msgstr "Акатегориа:"
-#. EHRAp
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:299
-msgctxt "customanimationspanel|effectlabel"
-msgid "Effect:"
-msgstr ""
-
#. jQcZZ
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:314
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:338
msgctxt "customanimationspanel|categorylb"
msgid "Entrance"
msgstr ""
#. 2qTvP
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:315
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:339
msgctxt "customanimationspanel|categorylb"
msgid "Emphasis"
msgstr ""
#. TZeh8
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:316
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:340
msgctxt "customanimationspanel|categorylb"
msgid "Exit"
msgstr "Аҭыҵра"
#. N8Xvu
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:317
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:341
msgctxt "customanimationspanel|categorylb"
msgid "Motion Paths"
msgstr ""
#. qDYCQ
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:318
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:342
msgctxt "customanimationspanel|categorylb"
msgid "Misc Effects"
msgstr ""
#. ozsMp
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:322
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:346
msgctxt "customanimationspanel|extended_tip|categorylb"
msgid "Select an animation effect category."
msgstr ""
+#. EHRAp
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:363
+msgctxt "customanimationspanel|effectlabel"
+msgid "Effect:"
+msgstr ""
+
#. MEJrn
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:366
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:412
msgctxt "customanimationspanel|extended_tip|effect_list"
msgid "Select an animation effect."
msgstr ""
+#. LGuGy
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:428
+msgctxt "customanimationspanel|effect_label"
+msgid "Options"
+msgstr ""
+
#. GDYfC
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:403
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:445
msgctxt "customanimationspanel|start_effect"
msgid "_Start:"
msgstr ""
-#. 8AUq9
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:417
-msgctxt "customanimationspanel|effect_property"
-msgid "_Direction:"
-msgstr ""
-
-#. QWndb
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:431
-msgctxt "customanimationspanel|effect_duration"
-msgid "D_uration:"
-msgstr ""
-
#. DhPiJ
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:446
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:459
msgctxt "customanimationspanel|start_effect_list"
msgid "On click"
msgstr ""
#. FNFGr
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:447
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:460
msgctxt "customanimationspanel|start_effect_list"
msgid "With previous"
msgstr ""
#. dCfj4
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:448
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:461
msgctxt "customanimationspanel|start_effect_list"
msgid "After previous"
msgstr ""
#. iboET
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:452
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:465
msgctxt "customanimationspanel|extended_tip|start_effect_list"
msgid "Displays when the selected animation effect should be started."
msgstr ""
+#. 8AUq9
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:479
+msgctxt "customanimationspanel|effect_property"
+msgid "_Direction:"
+msgstr ""
+
#. mMYic
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:481
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:492
msgctxt "customanimationspanel|more_properties|tooltip_text"
msgid "Options"
msgstr "Апараметрқәа"
#. PE6vL
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:486
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:497
msgctxt "customanimationspanel|extended_tip|more_properties"
msgid "Specifies additional properties for the selected element in the Custom Animations pane."
msgstr ""
+#. QWndb
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:511
+msgctxt "customanimationspanel|effect_duration"
+msgid "D_uration:"
+msgstr ""
+
#. Ewipq
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:505
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:529
msgctxt "customanimationspanel|extended_tip|anim_duration"
msgid "Specifies the duration of the selected animation effect."
msgstr ""
#. 2cGAb
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:519
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:543
msgctxt "customanimationspanel|delay_label"
msgid "_Delay:"
msgstr "Аанкылара:"
#. g6bR3
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:538
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:561
msgctxt "customanimationspanel|extended_tip|delay_value"
msgid "The animation starts delayed by this amount of time."
msgstr ""
-#. FgkKZ
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:562
-msgctxt "customanimationspanel|effect_label"
-msgid "Effect"
-msgstr ""
-
#. J2bC5
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:600
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:583
msgctxt "customanimationspanel|auto_preview"
msgid "Automatic Preview"
msgstr ""
#. GufhE
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:608
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:591
msgctxt "customanimationspanel|extended_tip|auto_preview"
msgid "Select to preview new or edited effects on the slide while you assign them."
msgstr ""
#. KP8UC
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:620
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:603
msgctxt "customanimationspanel|play"
msgid "Play"
msgstr "Идәықәҵатәуп"
#. Bn67v
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:624
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:607
msgctxt "customanimationspanel|play|tooltip_text"
msgid "Preview Effect"
msgstr ""
#. sUTTG
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:631
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:614
msgctxt "customanimationspanel|extended_tip|play"
msgid "Plays the selected animation effect in the preview."
msgstr ""
#. LBEzG
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:658
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:626
msgctxt "customanimationspanel|box1_label"
msgid "Animation Deck"
msgstr ""
#. bUvjt
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:671
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:638
msgctxt "customanimationspanel|custom_animation_list_label"
msgid "Animation List"
msgstr ""
#. F7AZL
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:690
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:694
msgctxt "customanimationspanel|extended_tip|CustomAnimationsPanel"
msgid "Assigns effects to selected objects."
msgstr ""
diff --git a/source/ab/sfx2/messages.po b/source/ab/sfx2/messages.po
index 96edc9f3625..a8e29822ff9 100644
--- a/source/ab/sfx2/messages.po
+++ b/source/ab/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-27 19:09+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
"PO-Revision-Date: 2018-10-21 19:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2985,147 +2985,147 @@ msgid "Contains descriptive information about the document."
msgstr ""
#. tC2rt
-#: sfx2/uiconfig/ui/developmenttool.ui:96
+#: sfx2/uiconfig/ui/developmenttool.ui:117
msgctxt "developmenttool|dom_current_selection_toggle-tooltip"
msgid "Current Selection In Document"
msgstr ""
#. Po2S3
-#: sfx2/uiconfig/ui/developmenttool.ui:97
+#: sfx2/uiconfig/ui/developmenttool.ui:118
msgctxt "developmenttool|dom_current_selection_toggle"
msgid "Current Selection"
msgstr ""
#. eB6NR
-#: sfx2/uiconfig/ui/developmenttool.ui:109
+#: sfx2/uiconfig/ui/developmenttool.ui:130
msgctxt "developmenttool|dom_refresh_button-tooltip"
msgid "Refresh Document Model Tree View"
msgstr ""
#. FD2yt
-#: sfx2/uiconfig/ui/developmenttool.ui:110
+#: sfx2/uiconfig/ui/developmenttool.ui:131
msgctxt "developmenttool|dom_refresh_button"
msgid "Refresh"
msgstr ""
#. qVgcX
-#: sfx2/uiconfig/ui/developmenttool.ui:155
+#: sfx2/uiconfig/ui/developmenttool.ui:177
msgctxt "developmenttool|object"
msgid "Object"
msgstr ""
#. x6GLB
-#: sfx2/uiconfig/ui/developmenttool.ui:203
+#: sfx2/uiconfig/ui/developmenttool.ui:226
msgctxt "developmenttool|tooltip-back"
msgid "Back"
msgstr ""
#. SinPk
-#: sfx2/uiconfig/ui/developmenttool.ui:204
+#: sfx2/uiconfig/ui/developmenttool.ui:227
msgctxt "developmenttool|back"
msgid "Back"
msgstr ""
#. 4CBb3
-#: sfx2/uiconfig/ui/developmenttool.ui:217
+#: sfx2/uiconfig/ui/developmenttool.ui:240
msgctxt "developmenttool|tooltip-inspect"
msgid "Inspect"
msgstr ""
#. vCciB
-#: sfx2/uiconfig/ui/developmenttool.ui:218
+#: sfx2/uiconfig/ui/developmenttool.ui:241
msgctxt "developmenttool|inspect"
msgid "Inspect"
msgstr ""
#. nFMXe
-#: sfx2/uiconfig/ui/developmenttool.ui:231
+#: sfx2/uiconfig/ui/developmenttool.ui:254
msgctxt "developmenttool|tooltip-refresh"
msgid "Refresh"
msgstr ""
#. CFuvW
-#: sfx2/uiconfig/ui/developmenttool.ui:232
+#: sfx2/uiconfig/ui/developmenttool.ui:255
msgctxt "developmenttool|refresh"
msgid "Refresh"
msgstr ""
#. 6gFmn
-#: sfx2/uiconfig/ui/developmenttool.ui:256
+#: sfx2/uiconfig/ui/developmenttool.ui:278
msgctxt "developmenttool|classname"
msgid "Class name:"
msgstr ""
#. a9j7f
-#: sfx2/uiconfig/ui/developmenttool.ui:319
-#: sfx2/uiconfig/ui/developmenttool.ui:364
-#: sfx2/uiconfig/ui/developmenttool.ui:418
+#: sfx2/uiconfig/ui/developmenttool.ui:343
+#: sfx2/uiconfig/ui/developmenttool.ui:392
+#: sfx2/uiconfig/ui/developmenttool.ui:450
msgctxt "developmenttool|name"
msgid "Name"
msgstr ""
#. VFqAa
-#: sfx2/uiconfig/ui/developmenttool.ui:338
+#: sfx2/uiconfig/ui/developmenttool.ui:363
msgctxt "developmenttool|interfaces"
msgid "Interfaces"
msgstr ""
#. iCdWe
-#: sfx2/uiconfig/ui/developmenttool.ui:386
+#: sfx2/uiconfig/ui/developmenttool.ui:415
msgctxt "developmenttool|services"
msgid "Services"
msgstr ""
#. H7pYE
-#: sfx2/uiconfig/ui/developmenttool.ui:432
+#: sfx2/uiconfig/ui/developmenttool.ui:465
msgctxt "developmenttool|value"
msgid "Value"
msgstr ""
#. Jjkqh
-#: sfx2/uiconfig/ui/developmenttool.ui:446
+#: sfx2/uiconfig/ui/developmenttool.ui:479
msgctxt "developmenttool|type"
msgid "Type"
msgstr ""
#. zpXuY
-#: sfx2/uiconfig/ui/developmenttool.ui:460
+#: sfx2/uiconfig/ui/developmenttool.ui:493
msgctxt "developmenttool|info"
msgid "Info"
msgstr ""
#. AUktw
-#: sfx2/uiconfig/ui/developmenttool.ui:511
+#: sfx2/uiconfig/ui/developmenttool.ui:544
msgctxt "developmenttool|properties"
msgid "Properties"
msgstr ""
#. wGJtn
-#: sfx2/uiconfig/ui/developmenttool.ui:538
+#: sfx2/uiconfig/ui/developmenttool.ui:574
msgctxt "developmenttool|method"
msgid "Method"
msgstr ""
#. EnGfg
-#: sfx2/uiconfig/ui/developmenttool.ui:552
+#: sfx2/uiconfig/ui/developmenttool.ui:589
msgctxt "developmenttool|returntype"
msgid "Return Type"
msgstr ""
#. AKnSa
-#: sfx2/uiconfig/ui/developmenttool.ui:566
+#: sfx2/uiconfig/ui/developmenttool.ui:603
msgctxt "developmenttool|parameters"
msgid "Parameters"
msgstr ""
#. tmttq
-#: sfx2/uiconfig/ui/developmenttool.ui:580
+#: sfx2/uiconfig/ui/developmenttool.ui:617
msgctxt "developmenttool|implementation_class"
msgid "Implementation Class"
msgstr ""
#. Q2CBK
-#: sfx2/uiconfig/ui/developmenttool.ui:602
+#: sfx2/uiconfig/ui/developmenttool.ui:639
msgctxt "developmenttool|methods"
msgid "Methods"
msgstr ""
@@ -4407,7 +4407,7 @@ msgid "Do_n’t Save"
msgstr ""
#. dzVqL
-#: sfx2/uiconfig/ui/querysavedialog.ui:53
+#: sfx2/uiconfig/ui/querysavedialog.ui:56
msgctxt "querysavedialog|save"
msgid "_Save"
msgstr ""
diff --git a/source/ab/svtools/messages.po b/source/ab/svtools/messages.po
index 57affd150fd..0fea899676b 100644
--- a/source/ab/svtools/messages.po
+++ b/source/ab/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-20 13:03+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
"PO-Revision-Date: 2021-02-07 23:36+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/ab/>\n"
@@ -4980,6 +4980,12 @@ msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Klingon"
msgstr ""
+#. xFYhC
+#: svtools/inc/langtab.hrc:437
+msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
+msgid "English (Israel)"
+msgstr ""
+
#. fXSja
#: svtools/uiconfig/ui/addresstemplatedialog.ui:8
msgctxt "addresstemplatedialog|AddressTemplateDialog"
@@ -5083,355 +5089,355 @@ msgid "Modify dimensions"
msgstr ""
#. pyd6J
-#: svtools/uiconfig/ui/graphicexport.ui:146
+#: svtools/uiconfig/ui/graphicexport.ui:145
msgctxt "graphicexport|label5"
msgid "Width:"
msgstr "Аҭбаара:"
#. drQDY
-#: svtools/uiconfig/ui/graphicexport.ui:160
+#: svtools/uiconfig/ui/graphicexport.ui:159
msgctxt "graphicexport|label6"
msgid "Height:"
msgstr "Аҳаракыра:"
#. exCyd
-#: svtools/uiconfig/ui/graphicexport.ui:171
+#: svtools/uiconfig/ui/graphicexport.ui:170
msgctxt "graphicexport|modifyresolutioncb"
msgid "Modify resolution"
msgstr ""
#. ZWxGB
-#: svtools/uiconfig/ui/graphicexport.ui:189
+#: svtools/uiconfig/ui/graphicexport.ui:188
msgctxt "graphicexport|resolutionft"
msgid "Resolution:"
msgstr ""
#. 2rwEJ
-#: svtools/uiconfig/ui/graphicexport.ui:209
+#: svtools/uiconfig/ui/graphicexport.ui:208
msgctxt "graphicexport|extended_tip|widthmf"
msgid "Specifies the measurement units."
msgstr ""
#. BPaB3
-#: svtools/uiconfig/ui/graphicexport.ui:229
+#: svtools/uiconfig/ui/graphicexport.ui:228
msgctxt "graphicexport|extended_tip|heightmf"
msgid "Specifies the height."
msgstr ""
#. Da3fv
-#: svtools/uiconfig/ui/graphicexport.ui:249
+#: svtools/uiconfig/ui/graphicexport.ui:248
msgctxt "graphicexport|extended_tip|resolutionmf"
msgid "Enter the image resolution. Select the measurement units from the list box."
msgstr ""
#. S9aHs
-#: svtools/uiconfig/ui/graphicexport.ui:263
+#: svtools/uiconfig/ui/graphicexport.ui:262
msgctxt "graphicexport|liststore2"
msgid "inches"
msgstr ""
#. dCstP
-#: svtools/uiconfig/ui/graphicexport.ui:264
+#: svtools/uiconfig/ui/graphicexport.ui:263
msgctxt "graphicexport|liststore2"
msgid "cm"
msgstr "см"
#. X5dLV
-#: svtools/uiconfig/ui/graphicexport.ui:265
+#: svtools/uiconfig/ui/graphicexport.ui:264
msgctxt "graphicexport|liststore2"
msgid "mm"
msgstr "мм"
#. 6vWVJ
-#: svtools/uiconfig/ui/graphicexport.ui:266
+#: svtools/uiconfig/ui/graphicexport.ui:265
msgctxt "graphicexport|liststore2"
msgid "points"
msgstr "акәаҧқәа"
#. ZqyAj
-#: svtools/uiconfig/ui/graphicexport.ui:267
+#: svtools/uiconfig/ui/graphicexport.ui:266
msgctxt "graphicexport|liststore2"
msgid "pixels"
msgstr "пикс."
#. QL8mE
-#: svtools/uiconfig/ui/graphicexport.ui:271
+#: svtools/uiconfig/ui/graphicexport.ui:270
msgctxt "graphicexport|extended_tip|widthlb"
msgid "Specifies the width."
msgstr ""
#. kYLvv
-#: svtools/uiconfig/ui/graphicexport.ui:285
+#: svtools/uiconfig/ui/graphicexport.ui:284
msgctxt "graphicexport|liststore1"
msgid "pixels/cm"
msgstr ""
#. zjmFd
-#: svtools/uiconfig/ui/graphicexport.ui:286
+#: svtools/uiconfig/ui/graphicexport.ui:285
msgctxt "graphicexport|liststore1"
msgid "pixels/inch"
msgstr ""
#. iMZW3
-#: svtools/uiconfig/ui/graphicexport.ui:287
+#: svtools/uiconfig/ui/graphicexport.ui:286
msgctxt "graphicexport|liststore1"
msgid "pixels/meter"
msgstr ""
#. ND5ki
-#: svtools/uiconfig/ui/graphicexport.ui:291
+#: svtools/uiconfig/ui/graphicexport.ui:290
msgctxt "graphicexport|extended_tip|resolutionlb"
msgid "Enter the image resolution. Select the measurement units from the list box."
msgstr ""
#. ENaqm
-#: svtools/uiconfig/ui/graphicexport.ui:309
+#: svtools/uiconfig/ui/graphicexport.ui:308
msgctxt "graphicexport|label1"
msgid "Size"
msgstr "Ашәагаа"
#. Dc5fy
-#: svtools/uiconfig/ui/graphicexport.ui:335
+#: svtools/uiconfig/ui/graphicexport.ui:334
msgctxt "graphicexport|extended_tip|colordepthlb"
msgid "Select the color depth from 8 bit grayscale or 24 bit true color."
msgstr ""
#. hFaPC
-#: svtools/uiconfig/ui/graphicexport.ui:344
+#: svtools/uiconfig/ui/graphicexport.ui:343
msgctxt "graphicexport|label2"
msgid "Color Depth"
msgstr ""
#. 5v8Jn
-#: svtools/uiconfig/ui/graphicexport.ui:380
+#: svtools/uiconfig/ui/graphicexport.ui:379
msgctxt "graphicexport|extended_tip|compressionjpgnf"
msgid "Sets the quality for the export. Choose from a low quality with minimal file size, up to a high quality and big file size."
msgstr ""
#. Tk5y2
-#: svtools/uiconfig/ui/graphicexport.ui:409
+#: svtools/uiconfig/ui/graphicexport.ui:408
msgctxt "graphicexport|label9"
msgid "Quality"
msgstr ""
#. AHkNV
-#: svtools/uiconfig/ui/graphicexport.ui:445
+#: svtools/uiconfig/ui/graphicexport.ui:444
msgctxt "graphicexport|extended_tip|compressionpngnf"
msgid "Sets the compression for the export. A high compression means a smaller, but slower to load image."
msgstr ""
#. f4LYz
-#: svtools/uiconfig/ui/graphicexport.ui:474
+#: svtools/uiconfig/ui/graphicexport.ui:473
msgctxt "graphicexport|label"
msgid "Compression"
msgstr ""
#. hQadL
-#: svtools/uiconfig/ui/graphicexport.ui:494
+#: svtools/uiconfig/ui/graphicexport.ui:493
msgctxt "graphicexport|rlecb"
msgid "RLE encoding"
msgstr ""
#. DqpKW
-#: svtools/uiconfig/ui/graphicexport.ui:505
+#: svtools/uiconfig/ui/graphicexport.ui:504
msgctxt "graphicexport|extended_tip|rlecb"
msgid "Applies RLE (Run Length Encoding) to the BMP graphics."
msgstr ""
#. EA7BF
-#: svtools/uiconfig/ui/graphicexport.ui:514
+#: svtools/uiconfig/ui/graphicexport.ui:513
msgctxt "graphicexport|label3"
msgid "Compression"
msgstr ""
#. qiLZK
-#: svtools/uiconfig/ui/graphicexport.ui:534
+#: svtools/uiconfig/ui/graphicexport.ui:533
msgctxt "graphicexport|interlacedcb"
msgid "Interlaced"
msgstr ""
#. cLvu6
-#: svtools/uiconfig/ui/graphicexport.ui:545
+#: svtools/uiconfig/ui/graphicexport.ui:544
msgctxt "graphicexport|extended_tip|interlacedcb"
msgid "Specifies whether the graphic is to be saved in interlaced mode."
msgstr ""
#. BkbD3
-#: svtools/uiconfig/ui/graphicexport.ui:554
+#: svtools/uiconfig/ui/graphicexport.ui:553
msgctxt "graphicexport|label12"
msgid "Mode"
msgstr "Арежим"
#. Nhj88
-#: svtools/uiconfig/ui/graphicexport.ui:574
+#: svtools/uiconfig/ui/graphicexport.ui:573
msgctxt "graphicexport|savetransparencycb"
msgid "Save transparency"
msgstr ""
#. kZ3uW
-#: svtools/uiconfig/ui/graphicexport.ui:585
+#: svtools/uiconfig/ui/graphicexport.ui:584
msgctxt "graphicexport|extended_tip|savetransparencycb"
msgid "Specifies whether to save the background of the picture as transparent. Only objects will be visible in the GIF image. Use the Color Replacer to set the transparent color in the picture."
msgstr ""
#. ZPmXf
-#: svtools/uiconfig/ui/graphicexport.ui:594
+#: svtools/uiconfig/ui/graphicexport.ui:593
msgctxt "graphicexport|labe"
msgid "Drawing Objects"
msgstr "Асахьақәа"
#. KMCxb
-#: svtools/uiconfig/ui/graphicexport.ui:621
+#: svtools/uiconfig/ui/graphicexport.ui:620
msgctxt "graphicexport|binarycb"
msgid "Binary"
msgstr ""
#. qFTuj
-#: svtools/uiconfig/ui/graphicexport.ui:630
+#: svtools/uiconfig/ui/graphicexport.ui:629
msgctxt "graphicexport|extended_tip|binarycb"
msgid "Exports the file in binary format. The resulting file is smaller than a text file."
msgstr ""
#. 8cZsH
-#: svtools/uiconfig/ui/graphicexport.ui:641
+#: svtools/uiconfig/ui/graphicexport.ui:640
msgctxt "graphicexport|textcb"
msgid "Text"
msgstr "Атеқст"
#. GFbg2
-#: svtools/uiconfig/ui/graphicexport.ui:650
+#: svtools/uiconfig/ui/graphicexport.ui:649
msgctxt "graphicexport|extended_tip|textcb"
msgid "Exports the file in ASCII text format. The resulting file is larger than a binary file."
msgstr ""
#. ECUb9
-#: svtools/uiconfig/ui/graphicexport.ui:665
+#: svtools/uiconfig/ui/graphicexport.ui:664
msgctxt "graphicexport|label16"
msgid "Encoding"
msgstr ""
#. aeV52
-#: svtools/uiconfig/ui/graphicexport.ui:697
+#: svtools/uiconfig/ui/graphicexport.ui:696
msgctxt "graphicexport|tiffpreviewcb"
msgid "Image preview (TIFF)"
msgstr ""
#. H8vtD
-#: svtools/uiconfig/ui/graphicexport.ui:706
+#: svtools/uiconfig/ui/graphicexport.ui:705
msgctxt "graphicexport|extended_tip|tiffpreviewcb"
msgid "Specifies whether a preview image is exported in the TIFF format together with the actual PostScript file."
msgstr ""
#. AeEJu
-#: svtools/uiconfig/ui/graphicexport.ui:717
+#: svtools/uiconfig/ui/graphicexport.ui:716
msgctxt "graphicexport|epsipreviewcb"
msgid "Interchange (EPSI)"
msgstr ""
#. gLbUQ
-#: svtools/uiconfig/ui/graphicexport.ui:725
+#: svtools/uiconfig/ui/graphicexport.ui:724
msgctxt "graphicexport|extended_tip|epsipreviewcb"
msgid "Specifies whether a monochrome preview graphic in EPSI format is exported together with the PostScript file. This format only contains printable characters from the 7-bit ASCII code."
msgstr ""
#. sRbZb
-#: svtools/uiconfig/ui/graphicexport.ui:740
+#: svtools/uiconfig/ui/graphicexport.ui:739
msgctxt "graphicexport|label17"
msgid "Preview"
msgstr "Ахәаҧшра"
#. Jfbgx
-#: svtools/uiconfig/ui/graphicexport.ui:767
+#: svtools/uiconfig/ui/graphicexport.ui:766
msgctxt "graphicexport|color1rb"
msgid "Color"
msgstr "Аҧштәы"
#. LNHEi
-#: svtools/uiconfig/ui/graphicexport.ui:776
+#: svtools/uiconfig/ui/graphicexport.ui:775
msgctxt "graphicexport|extended_tip|color1rb"
msgid "Exports the file in color."
msgstr ""
#. VeZFK
-#: svtools/uiconfig/ui/graphicexport.ui:787
+#: svtools/uiconfig/ui/graphicexport.ui:786
msgctxt "graphicexport|color2rb"
msgid "Grayscale"
msgstr ""
#. TWEx8
-#: svtools/uiconfig/ui/graphicexport.ui:796
+#: svtools/uiconfig/ui/graphicexport.ui:795
msgctxt "graphicexport|extended_tip|color2rb"
msgid "Exports the file in grayscale tones."
msgstr ""
#. BbSGF
-#: svtools/uiconfig/ui/graphicexport.ui:811
+#: svtools/uiconfig/ui/graphicexport.ui:810
msgctxt "graphicexport|label18"
msgid "Color Format"
msgstr "Аҧштәы аформат"
#. b6J7X
-#: svtools/uiconfig/ui/graphicexport.ui:838
+#: svtools/uiconfig/ui/graphicexport.ui:837
msgctxt "graphicexport|level1rb"
msgid "Level 1"
msgstr ""
#. pEcBC
-#: svtools/uiconfig/ui/graphicexport.ui:847
+#: svtools/uiconfig/ui/graphicexport.ui:846
msgctxt "graphicexport|extended_tip|level1rb"
msgid "Compression is not available at this level. Select the Level 1 option if your PostScript printer does not offer the capabilities of Level 2."
msgstr ""
#. kuCNX
-#: svtools/uiconfig/ui/graphicexport.ui:858
+#: svtools/uiconfig/ui/graphicexport.ui:857
msgctxt "graphicexport|level2rb"
msgid "Level 2"
msgstr ""
#. wiWrE
-#: svtools/uiconfig/ui/graphicexport.ui:867
+#: svtools/uiconfig/ui/graphicexport.ui:866
msgctxt "graphicexport|extended_tip|level2rb"
msgid "Select the Level 2 option if your output device supports colored bitmaps, palette graphics and compressed graphics."
msgstr ""
#. JUuBZ
-#: svtools/uiconfig/ui/graphicexport.ui:882
+#: svtools/uiconfig/ui/graphicexport.ui:881
msgctxt "graphicexport|label19"
msgid "Version"
msgstr "Аверсиа"
#. FjkbL
-#: svtools/uiconfig/ui/graphicexport.ui:909
+#: svtools/uiconfig/ui/graphicexport.ui:908
msgctxt "graphicexport|compresslzw"
msgid "LZW encoding"
msgstr ""
#. 5cYFM
-#: svtools/uiconfig/ui/graphicexport.ui:918
+#: svtools/uiconfig/ui/graphicexport.ui:917
msgctxt "graphicexport|extended_tip|compresslzw"
msgid "LZW compression is the compression of a file into a smaller file using a table-based lookup algorithm."
msgstr ""
#. vXGXe
-#: svtools/uiconfig/ui/graphicexport.ui:929
+#: svtools/uiconfig/ui/graphicexport.ui:928
msgctxt "graphicexport|compressnone"
msgid "None"
msgstr "Мап"
#. kW3QD
-#: svtools/uiconfig/ui/graphicexport.ui:938
+#: svtools/uiconfig/ui/graphicexport.ui:937
msgctxt "graphicexport|extended_tip|compressnone"
msgid "Specifies that you do not wish to use compression."
msgstr ""
#. ghAqZ
-#: svtools/uiconfig/ui/graphicexport.ui:953
+#: svtools/uiconfig/ui/graphicexport.ui:952
msgctxt "graphicexport|label20"
msgid "Compression"
msgstr ""
#. LmAeC
-#: svtools/uiconfig/ui/graphicexport.ui:992
+#: svtools/uiconfig/ui/graphicexport.ui:991
msgctxt "graphicexport|label4"
msgid "Information"
msgstr "Аинформациа"
@@ -5779,7 +5785,7 @@ msgid "For the Skia changes to take effect, %PRODUCTNAME must be restarted."
msgstr ""
#. v9FjK
-#: svtools/uiconfig/ui/thineditcontrol.ui:69
+#: svtools/uiconfig/ui/thineditcontrol.ui:72
msgctxt "thineditcontrol|button"
msgid "Pick Date"
msgstr ""
diff --git a/source/ab/svx/messages.po b/source/ab/svx/messages.po
index e722ee3e3c6..29a63dba729 100644
--- a/source/ab/svx/messages.po
+++ b/source/ab/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-20 13:03+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
"PO-Revision-Date: 2021-02-04 19:36+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/ab/>\n"
@@ -9933,125 +9933,125 @@ msgctxt "RID_SVXSTR_TRANSPARENCY"
msgid "Transparency:"
msgstr ""
-#. zvqUJ
+#. PGuXa
#. strings related to borders
#: include/svx/strings.hrc:1777
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
-msgid "Set No Borders"
+msgid "No Borders"
msgstr ""
-#. ABKEK
+#. LzhYZ
#: include/svx/strings.hrc:1778
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
-msgid "Set Outer Border Only"
+msgid "Outer Border Only"
msgstr ""
-#. ygU8P
+#. EniNF
#: include/svx/strings.hrc:1779
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
-msgid "Set Outer Border and Horizontal Lines"
+msgid "Outer Border and Horizontal Lines"
msgstr ""
-#. q5KJ8
+#. BuDWX
#: include/svx/strings.hrc:1780
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
-msgid "Set Outer Border and All Inner Lines"
+msgid "Outer Border and All Inner Lines"
msgstr ""
-#. TFuZb
+#. ckL2Z
#: include/svx/strings.hrc:1781
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
-msgid "Set Outer Border and Vertical Lines"
+msgid "Outer Border and Vertical Lines"
msgstr ""
-#. H5s9X
+#. Q9hj4
#: include/svx/strings.hrc:1782
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
-msgid "Set Outer Border Without Changing Inner Lines"
+msgid "Outer Border Without Changing Inner Lines"
msgstr ""
-#. T5crG
+#. b7wCr
#: include/svx/strings.hrc:1783
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
-msgid "Set Diagonal Lines Only"
+msgid "Diagonal Lines Only"
msgstr ""
-#. oodJY
+#. 8r98a
#: include/svx/strings.hrc:1784
-msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALLEFT"
-msgid "Set Diagonal Left Border"
+msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
+msgid "Diagonal Down Border"
msgstr ""
-#. gFFgD
+#. P4FGE
#: include/svx/strings.hrc:1785
-msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALRIGHT"
-msgid "Set Diagonal Right Border"
+msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
+msgid "Diagonal Up Border"
msgstr ""
-#. D6FCE
+#. VxBrT
#: include/svx/strings.hrc:1786
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
-msgid "Set Criss-Cross Border"
+msgid "Criss-Cross Border"
msgstr ""
-#. S6AAA
+#. hTi3j
#: include/svx/strings.hrc:1787
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
-msgid "Set All Four Borders"
+msgid "All Four Borders"
msgstr ""
-#. tknFJ
+#. o8fB8
#: include/svx/strings.hrc:1788
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
-msgid "Set Left and Right Borders Only"
+msgid "Left and Right Borders Only"
msgstr ""
-#. hSmnW
+#. 6NnM2
#: include/svx/strings.hrc:1789
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
-msgid "Set Top and Bottom Borders Only"
+msgid "Top and Bottom Borders Only"
msgstr ""
-#. DsEAB
+#. KTYVW
#: include/svx/strings.hrc:1790
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
-msgid "Set Top and Bottom Borders, and All Horizontal Lines"
+msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. Dy2UG
+#. fRcEu
#: include/svx/strings.hrc:1791
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Set Left Border Only"
+msgid "Left Border Only"
msgstr ""
-#. yF8RP
+#. uqzE7
#: include/svx/strings.hrc:1792
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Set Right Border Only"
+msgid "Right Border Only"
msgstr ""
-#. E2jZj
+#. 6ecLB
#: include/svx/strings.hrc:1793
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Set Top Border Only"
+msgid "Top Border Only"
msgstr ""
-#. 7ixEC
+#. B6KZc
#: include/svx/strings.hrc:1794
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Set Bottom Border Only"
+msgid "Bottom Border Only"
msgstr ""
-#. nCjXG
+#. aCMGz
#: include/svx/strings.hrc:1795
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
-msgid "Set Top and Bottom Borders, and All Inner Lines"
+msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
-#. 46Fq7
+#. t38dT
#: include/svx/strings.hrc:1796
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
-msgid "Set Left and Right Borders, and All Inner Lines"
+msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
#. wH3TZ
@@ -14367,13 +14367,13 @@ msgid "Delete footer?"
msgstr "Ианыхтәума ҵаҟатәи аколонтитул?"
#. GE3hT
-#: svx/uiconfig/ui/deletefooterdialog.ui:14
+#: svx/uiconfig/ui/deletefooterdialog.ui:13
msgctxt "deletefooterdialog|DeleteFooterDialog"
msgid "Are you sure you want to delete the footer?"
msgstr "Ианыхтәума ҵаҟатәи аколонтитул?"
#. EthWp
-#: svx/uiconfig/ui/deletefooterdialog.ui:15
+#: svx/uiconfig/ui/deletefooterdialog.ui:14
msgctxt "deletefooterdialog|DeleteFooterDialog"
msgid "All contents of the footer will be deleted and can not be restored."
msgstr ""
@@ -14385,13 +14385,13 @@ msgid "Delete header?"
msgstr "Ианыхтәума хыхьтәи аколонтитул?"
#. YfZTx
-#: svx/uiconfig/ui/deleteheaderdialog.ui:14
+#: svx/uiconfig/ui/deleteheaderdialog.ui:13
msgctxt "deleteheaderdialog|DeleteHeaderDialog"
msgid "Are you sure you want to delete the header?"
msgstr "Ианыхтәума хыхьтәи аколонтитул?"
#. 86Aks
-#: svx/uiconfig/ui/deleteheaderdialog.ui:15
+#: svx/uiconfig/ui/deleteheaderdialog.ui:14
msgctxt "deleteheaderdialog|DeleteHeaderDialog"
msgid "All contents of the header will be deleted and can not be restored."
msgstr ""
@@ -18863,19 +18863,19 @@ msgid "Standard selection"
msgstr ""
#. DGKv2
-#: svx/uiconfig/ui/selectionmenu.ui:20
+#: svx/uiconfig/ui/selectionmenu.ui:21
msgctxt "selectionmenu|extending"
msgid "Extending selection"
msgstr ""
#. fqC9L
-#: svx/uiconfig/ui/selectionmenu.ui:28
+#: svx/uiconfig/ui/selectionmenu.ui:30
msgctxt "selectionmenu|adding"
msgid "Adding selection"
msgstr ""
#. DbjFT
-#: svx/uiconfig/ui/selectionmenu.ui:36
+#: svx/uiconfig/ui/selectionmenu.ui:39
msgctxt "selectionmenu|block"
msgid "Block selection"
msgstr "Блокла алкаара"
@@ -19782,50 +19782,50 @@ msgid "More Options"
msgstr ""
#. DJ6vY
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:18
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:60
msgctxt "textcharacterspacingcontrol|very_tight"
msgid "Very Tight"
msgstr ""
#. GYD7d
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:34
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:77
#, fuzzy
msgctxt "textcharacterspacingcontrol|tight"
msgid "Tight"
msgstr "Аҵх"
#. 8EcPH
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:50
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:94
msgctxt "textcharacterspacingcontrol|normal"
msgid "Normal"
msgstr "Инормалтәу"
#. hEuRj
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:66
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:111
msgctxt "textcharacterspacingcontrol|loose"
msgid "Loose"
msgstr ""
#. 4kdQx
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:82
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:128
msgctxt "textcharacterspacingcontrol|very_loose"
msgid "Very Loose"
msgstr ""
#. hsu3c
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:98
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:145
msgctxt "textcharacterspacingcontrol|last_custom"
msgid "Last Custom Value"
msgstr "Аҵыхәтәантәи аҵакы"
#. pZZ9u
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:127
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:177
msgctxt "textcharacterspacingcontrol|kerning"
msgid "0.0"
msgstr ""
#. 6kNQD
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:139
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:187
msgctxt "textcharacterspacingcontrol|label2"
msgid "Custom Value"
msgstr ""
@@ -19885,73 +19885,73 @@ msgid "Tabs"
msgstr "Атабулиациа"
#. hHwzA
-#: svx/uiconfig/ui/textunderlinecontrol.ui:19
+#: svx/uiconfig/ui/textunderlinecontrol.ui:74
msgctxt "textunderlinecontrol|none"
msgid "(Without)"
msgstr ""
#. 9VDo4
-#: svx/uiconfig/ui/textunderlinecontrol.ui:37
+#: svx/uiconfig/ui/textunderlinecontrol.ui:93
msgctxt "textunderlinecontrol|single|tooltip_text"
msgid "Single"
msgstr ""
#. czS3W
-#: svx/uiconfig/ui/textunderlinecontrol.ui:54
+#: svx/uiconfig/ui/textunderlinecontrol.ui:110
msgctxt "textunderlinecontrol|double|tooltip_text"
msgid "Double"
msgstr ""
#. DBg8Y
-#: svx/uiconfig/ui/textunderlinecontrol.ui:71
+#: svx/uiconfig/ui/textunderlinecontrol.ui:127
msgctxt "textunderlinecontrol|bold|tooltip_text"
msgid "Bold"
msgstr "Ажәпа"
#. fNrBz
-#: svx/uiconfig/ui/textunderlinecontrol.ui:88
+#: svx/uiconfig/ui/textunderlinecontrol.ui:144
msgctxt "textunderlinecontrol|dot|tooltip_text"
msgid "Dotted"
msgstr ""
#. JEgvk
-#: svx/uiconfig/ui/textunderlinecontrol.ui:105
+#: svx/uiconfig/ui/textunderlinecontrol.ui:161
msgctxt "textunderlinecontrol|dotbold|tooltip_text"
msgid "Dotted (Bold)"
msgstr ""
#. 46nci
-#: svx/uiconfig/ui/textunderlinecontrol.ui:122
+#: svx/uiconfig/ui/textunderlinecontrol.ui:178
msgctxt "textunderlinecontrol|dash|tooltip_text"
msgid "Dash"
msgstr ""
#. D8gB4
-#: svx/uiconfig/ui/textunderlinecontrol.ui:139
+#: svx/uiconfig/ui/textunderlinecontrol.ui:195
msgctxt "textunderlinecontrol|dashlong|tooltip_text"
msgid "Long Dash"
msgstr ""
#. gkUzu
-#: svx/uiconfig/ui/textunderlinecontrol.ui:156
+#: svx/uiconfig/ui/textunderlinecontrol.ui:212
msgctxt "textunderlinecontrol|dashdot|tooltip_text"
msgid "Dot Dash"
msgstr ""
#. qMLxK
-#: svx/uiconfig/ui/textunderlinecontrol.ui:173
+#: svx/uiconfig/ui/textunderlinecontrol.ui:229
msgctxt "textunderlinecontrol|dashdotdot|tooltip_text"
msgid "Dot Dot Dash"
msgstr ""
#. dusMw
-#: svx/uiconfig/ui/textunderlinecontrol.ui:190
+#: svx/uiconfig/ui/textunderlinecontrol.ui:246
msgctxt "textunderlinecontrol|wave|tooltip_text"
msgid "Wave"
msgstr "Ицәқәырԥатәу"
#. xJTZe
-#: svx/uiconfig/ui/textunderlinecontrol.ui:204
+#: svx/uiconfig/ui/textunderlinecontrol.ui:260
msgctxt "textunderlinecontrol|moreoptions"
msgid "_More Options..."
msgstr "Иҵегь..."
diff --git a/source/ab/sw/messages.po b/source/ab/sw/messages.po
index 1e6b5c7f180..33be281b85b 100644
--- a/source/ab/sw/messages.po
+++ b/source/ab/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-04 19:52+0200\n"
+"POT-Creation-Date: 2021-10-25 12:50+0200\n"
"PO-Revision-Date: 2020-10-31 11:36+0000\n"
"Last-Translator: Christian Lohmaier <cloph@documentfoundation.org>\n"
"Language-Team: Abkhazian <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/ab/>\n"
@@ -4440,20 +4440,26 @@ msgctxt "STR_CONTENT_ENDNOTE"
msgid "Endnote"
msgstr ""
-#. jThGW
+#. sEQCK
#: sw/inc/strings.hrc:407
+msgctxt "STR_FOOTNOTE_ENDNOTE_SEPARATOR_TIP"
+msgid "Footnotes are listed above this line and Endnotes are listed below"
+msgstr ""
+
+#. jThGW
+#: sw/inc/strings.hrc:408
msgctxt "STR_DEFINE_NUMBERFORMAT"
msgid "Additional formats..."
msgstr "Егьырҭ аформатқәа..."
#. Cfiyt
-#: sw/inc/strings.hrc:408
+#: sw/inc/strings.hrc:409
msgctxt "RID_STR_SYSTEM"
msgid "[System]"
msgstr "[Асистема]"
#. iD3WQ
-#: sw/inc/strings.hrc:409
+#: sw/inc/strings.hrc:410
msgctxt "STR_MULT_INTERACT_HYPH_WARN"
msgid ""
"The interactive hyphenation is already active\n"
@@ -4463,661 +4469,661 @@ msgstr ""
"аҿакуп егьи адокумент аҟны"
#. 68AYK
-#: sw/inc/strings.hrc:410
+#: sw/inc/strings.hrc:411
msgctxt "STR_HYPH_TITLE"
msgid "Hyphenation"
msgstr "Аиагагақәа рыргылара"
#. EDxsk
-#: sw/inc/strings.hrc:411
+#: sw/inc/strings.hrc:412
msgctxt "STR_HYPH_MISSING"
msgid "Missing hyphenation data"
msgstr ""
#. TEP66
-#: sw/inc/strings.hrc:412
+#: sw/inc/strings.hrc:413
msgctxt "STR_HYPH_MISSING"
msgid "Please install the hyphenation package for locale “%1”."
msgstr ""
#. bJFYS
-#: sw/inc/strings.hrc:413
+#: sw/inc/strings.hrc:414
msgctxt "STR_HIDDEN_CHANGES"
msgid "Track Changes"
msgstr ""
#. DcXvE
-#: sw/inc/strings.hrc:414
+#: sw/inc/strings.hrc:415
msgctxt "STR_HIDDEN_CHANGES_DETAIL"
msgid "Document contains tracked changes and recording is enabled."
msgstr ""
#. zxuEu
-#: sw/inc/strings.hrc:415
+#: sw/inc/strings.hrc:416
msgctxt "STR_HIDDEN_CHANGES_DETAIL2"
msgid "Recording of changes is enabled."
msgstr ""
#. BH7Ud
-#: sw/inc/strings.hrc:416
+#: sw/inc/strings.hrc:417
msgctxt "STR_HIDDEN_CHANGES_DETAIL3"
msgid "Document contains tracked changes."
msgstr ""
#. MEN2d
#. Undo
-#: sw/inc/strings.hrc:419
+#: sw/inc/strings.hrc:420
msgctxt "STR_CANT_UNDO"
msgid "not possible"
msgstr "иауам"
#. 5GdxN
-#: sw/inc/strings.hrc:420
+#: sw/inc/strings.hrc:421
msgctxt "STR_DELETE_UNDO"
msgid "Delete $1"
msgstr "Ианыхтәуп $1"
#. i6vB4
-#: sw/inc/strings.hrc:421
+#: sw/inc/strings.hrc:422
msgctxt "STR_INSERT_UNDO"
msgid "Insert $1"
msgstr "Ибжьаргылатәуп $1"
#. JESFv
-#: sw/inc/strings.hrc:422
+#: sw/inc/strings.hrc:423
msgctxt "STR_OVR_UNDO"
msgid "Overwrite: $1"
msgstr "Ихҩылаатәуп: $1"
#. FVqpL
-#: sw/inc/strings.hrc:423
+#: sw/inc/strings.hrc:424
msgctxt "STR_SPLITNODE_UNDO"
msgid "New Paragraph"
msgstr "Абзац ҿыц"
#. r3iVE
-#: sw/inc/strings.hrc:424
+#: sw/inc/strings.hrc:425
msgctxt "STR_MOVE_UNDO"
msgid "Move"
msgstr "Ииагатәуп"
#. Z2Ft8
-#: sw/inc/strings.hrc:425
+#: sw/inc/strings.hrc:426
msgctxt "STR_INSATTR_UNDO"
msgid "Apply attributes"
msgstr "Ихархәатәуп атрибутқәа"
#. hetuZ
-#: sw/inc/strings.hrc:426
+#: sw/inc/strings.hrc:427
msgctxt "STR_SETFMTCOLL_UNDO"
msgid "Apply Styles: $1"
msgstr "Ихархәатәуп астиль: $1"
#. GokWu
-#: sw/inc/strings.hrc:427
+#: sw/inc/strings.hrc:428
msgctxt "STR_RESET_ATTR_UNDO"
msgid "Reset attributes"
msgstr "Атрибутқәа еиҭашьақәыргылатәуп"
#. mDgEJ
-#: sw/inc/strings.hrc:428
+#: sw/inc/strings.hrc:429
msgctxt "STR_INSFMT_ATTR_UNDO"
msgid "Change style: $1"
msgstr "Иҧсахтәуп астиль: $1"
#. onBFE
-#: sw/inc/strings.hrc:429
+#: sw/inc/strings.hrc:430
msgctxt "STR_INSERT_DOC_UNDO"
msgid "Insert file"
msgstr "Ибжьаргылатәуп афаил"
#. WCCkF
-#: sw/inc/strings.hrc:430
+#: sw/inc/strings.hrc:431
msgctxt "STR_INSERT_GLOSSARY"
msgid "Insert AutoText"
msgstr "Ибжьаргылатәуп автотеқст"
#. CyNXC
-#: sw/inc/strings.hrc:431
+#: sw/inc/strings.hrc:432
msgctxt "STR_DELBOOKMARK"
msgid "Delete bookmark: $1"
msgstr "Ианыхтәуп агәылаҵа: $1"
#. 54y8f
-#: sw/inc/strings.hrc:432
+#: sw/inc/strings.hrc:433
msgctxt "STR_INSBOOKMARK"
msgid "Insert bookmark: $1"
msgstr "Ибжьаргылатәуп агәылаҵа: $1"
#. XHkEY
-#: sw/inc/strings.hrc:433
+#: sw/inc/strings.hrc:434
msgctxt "STR_SORT_TBL"
msgid "Sort table"
msgstr "Атаблица асортра"
#. gui6q
-#: sw/inc/strings.hrc:434
+#: sw/inc/strings.hrc:435
msgctxt "STR_SORT_TXT"
msgid "Sort text"
msgstr "Атеқст асортра"
#. APAMG
-#: sw/inc/strings.hrc:435
+#: sw/inc/strings.hrc:436
msgctxt "STR_INSTABLE_UNDO"
msgid "Insert table: $1$2$3"
msgstr "Ибжьаргылатәуп атаблица: $1$2$3"
#. 4pGhz
-#: sw/inc/strings.hrc:436
+#: sw/inc/strings.hrc:437
msgctxt "STR_TEXTTOTABLE_UNDO"
msgid "Convert text -> table"
msgstr "Ииагатәуп атеқст атаблицахь"
#. h3EH7
-#: sw/inc/strings.hrc:437
+#: sw/inc/strings.hrc:438
msgctxt "STR_TABLETOTEXT_UNDO"
msgid "Convert table -> text"
msgstr "Ииагатәуп атаблица атеқст ахь"
#. uKreq
-#: sw/inc/strings.hrc:438
+#: sw/inc/strings.hrc:439
msgctxt "STR_COPY_UNDO"
msgid "Copy: $1"
msgstr "Акопиа ахыхтәуп: $1"
#. BfGaZ
-#: sw/inc/strings.hrc:439
+#: sw/inc/strings.hrc:440
msgctxt "STR_REPLACE_UNDO"
msgid "Replace $1 $2 $3"
msgstr "Иҧсахтәуп $1 $2 $3"
#. GEC4C
-#: sw/inc/strings.hrc:440
+#: sw/inc/strings.hrc:441
msgctxt "STR_INSERT_PAGE_BREAK_UNDO"
msgid "Insert page break"
msgstr "Иҭаргылатәуп адаҟьа аимҟьара"
#. mrWg2
-#: sw/inc/strings.hrc:441
+#: sw/inc/strings.hrc:442
msgctxt "STR_INSERT_COLUMN_BREAK_UNDO"
msgid "Insert column break"
msgstr "Иҭаргылатәуп аиҵаҩ аимҟьара"
#. MGqRt
-#: sw/inc/strings.hrc:442
+#: sw/inc/strings.hrc:443
msgctxt "STR_INSERT_ENV_UNDO"
msgid "Insert Envelope"
msgstr "Иҭаргылатәуп аконверт"
#. g8ALR
-#: sw/inc/strings.hrc:443
+#: sw/inc/strings.hrc:444
msgctxt "STR_DRAG_AND_COPY"
msgid "Copy: $1"
msgstr "Акопиа ахыхтәуп: $1"
#. qHdLG
-#: sw/inc/strings.hrc:444
+#: sw/inc/strings.hrc:445
msgctxt "STR_DRAG_AND_MOVE"
msgid "Move: $1"
msgstr "Ииагатәуп: $1"
#. xqxPn
-#: sw/inc/strings.hrc:445
+#: sw/inc/strings.hrc:446
msgctxt "STR_INSERT_CHART"
msgid "Insert %PRODUCTNAME Chart"
msgstr "Ибжьаргылатәуп адиаграмма %PRODUCTNAME"
#. qWEVG
-#: sw/inc/strings.hrc:446
+#: sw/inc/strings.hrc:447
#, fuzzy
msgctxt "STR_INSERTFLY"
msgid "Insert frame"
msgstr "Ибжьаргылатәуп атаблица"
#. GmqXE
-#: sw/inc/strings.hrc:447
+#: sw/inc/strings.hrc:448
#, fuzzy
msgctxt "STR_DELETEFLY"
msgid "Delete frame"
msgstr "Ианыхтәуп адаҟьа"
#. z9Eai
-#: sw/inc/strings.hrc:448
+#: sw/inc/strings.hrc:449
msgctxt "STR_AUTOFORMAT"
msgid "AutoFormat"
msgstr "Автоформат"
#. E6uaH
-#: sw/inc/strings.hrc:449
+#: sw/inc/strings.hrc:450
msgctxt "STR_TABLEHEADLINE"
msgid "Table heading"
msgstr "Атаблица ахы"
#. gnndv
-#: sw/inc/strings.hrc:450
+#: sw/inc/strings.hrc:451
msgctxt "STR_REPLACE"
msgid "Replace: $1 $2 $3"
msgstr "Аҧсахра $1 $2 $3"
#. WwuFC
-#: sw/inc/strings.hrc:451
+#: sw/inc/strings.hrc:452
msgctxt "STR_INSERTSECTION"
msgid "Insert section"
msgstr "Иҭаргылатәуп аҟәша"
#. 7pzWX
-#: sw/inc/strings.hrc:452
+#: sw/inc/strings.hrc:453
msgctxt "STR_DELETESECTION"
msgid "Delete section"
msgstr "Ианыхтәуп аҟәша"
#. AFkoM
-#: sw/inc/strings.hrc:453
+#: sw/inc/strings.hrc:454
msgctxt "STR_CHANGESECTION"
msgid "Modify section"
msgstr "Иԥсахтәуп аҟәша"
#. BY9gB
-#: sw/inc/strings.hrc:454
+#: sw/inc/strings.hrc:455
msgctxt "STR_CHANGEDEFATTR"
msgid "Modify default values"
msgstr "Иԥсахтәуп астандарттә ҵакқәа"
#. X7eMx
-#: sw/inc/strings.hrc:455
+#: sw/inc/strings.hrc:456
msgctxt "STR_REPLACE_STYLE"
msgid "Replace style: $1 $2 $3"
msgstr "Иҧсахтәуп астиль; $1 $2 $3"
#. EXFvJ
-#: sw/inc/strings.hrc:456
+#: sw/inc/strings.hrc:457
msgctxt "STR_DELETE_PAGE_BREAK"
msgid "Delete page break"
msgstr "Ианыхтәуп адаҟьа аимҟьара"
#. kHVr9
-#: sw/inc/strings.hrc:457
+#: sw/inc/strings.hrc:458
msgctxt "STR_TEXT_CORRECTION"
msgid "Text Correction"
msgstr "Атеқст ариашара"
#. ZPCQf
-#: sw/inc/strings.hrc:458
+#: sw/inc/strings.hrc:459
msgctxt "STR_OUTLINE_LR"
msgid "Promote/demote outline"
msgstr "Албаагақәа рструктура"
#. WQJz2
-#: sw/inc/strings.hrc:459
+#: sw/inc/strings.hrc:460
msgctxt "STR_OUTLINE_UD"
msgid "Move outline"
msgstr "Ииагатәуп аструктура"
#. 3UGKP
-#: sw/inc/strings.hrc:460
+#: sw/inc/strings.hrc:461
msgctxt "STR_OUTLINE_EDIT"
msgid "Modify outline"
msgstr ""
#. RjcRH
-#: sw/inc/strings.hrc:461
+#: sw/inc/strings.hrc:462
msgctxt "STR_INSNUM"
msgid "Insert numbering"
msgstr "Иҭаргылатәуп аномерркра"
#. hbCQa
-#: sw/inc/strings.hrc:462
+#: sw/inc/strings.hrc:463
msgctxt "STR_NUMUP"
msgid "Promote level"
msgstr "Ахьаҵ аҩаӡара"
#. 63Ec4
-#: sw/inc/strings.hrc:463
+#: sw/inc/strings.hrc:464
msgctxt "STR_NUMDOWN"
msgid "Demote level"
msgstr "Иларҟәтәуп аҩаӡара"
#. FGciC
-#: sw/inc/strings.hrc:464
+#: sw/inc/strings.hrc:465
msgctxt "STR_MOVENUM"
msgid "Move paragraphs"
msgstr "Ииагатәуп абзацқәа"
#. WdMCK
-#: sw/inc/strings.hrc:465
+#: sw/inc/strings.hrc:466
msgctxt "STR_INSERTDRAW"
msgid "Insert drawing object: $1"
msgstr "Иҭаргылатәуп аграфикатә обиект: $1"
#. ErB3W
-#: sw/inc/strings.hrc:466
+#: sw/inc/strings.hrc:467
msgctxt "STR_NUMORNONUM"
msgid "Number On/Off"
msgstr "Аномер Аҿак/Аҿых"
#. rEZvN
-#: sw/inc/strings.hrc:467
+#: sw/inc/strings.hrc:468
msgctxt "STR_INC_LEFTMARGIN"
msgid "Increase Indent"
msgstr "Иазырҳатәуп ахьаҵ"
#. aJxcG
-#: sw/inc/strings.hrc:468
+#: sw/inc/strings.hrc:469
msgctxt "STR_DEC_LEFTMARGIN"
msgid "Decrease indent"
msgstr "Иазырҵатәуп ахьаҵ"
#. 4GP7c
-#: sw/inc/strings.hrc:469
+#: sw/inc/strings.hrc:470
msgctxt "STR_INSERTLABEL"
msgid "Insert caption: $1"
msgstr "Иҭаргылатәуп ахы: $1"
#. GGFM8
-#: sw/inc/strings.hrc:470
+#: sw/inc/strings.hrc:471
msgctxt "STR_SETNUMRULESTART"
msgid "Restart numbering"
msgstr "Иалагатәуп аномерркра ҿыцны"
#. pHfp7
-#: sw/inc/strings.hrc:471
+#: sw/inc/strings.hrc:472
msgctxt "STR_CHANGEFTN"
msgid "Modify footnote"
msgstr "Иԥсахтәуп албаага"
#. Knr9y
-#: sw/inc/strings.hrc:472
+#: sw/inc/strings.hrc:473
msgctxt "STR_ACCEPT_REDLINE"
msgid "Accept change: $1"
msgstr "Ихадкылатәуп аԥсахра: $1"
#. jAvjr
-#: sw/inc/strings.hrc:473
+#: sw/inc/strings.hrc:474
msgctxt "STR_REJECT_REDLINE"
msgid "Reject change: $1"
msgstr "Мап ацәктәуп аԥсахра: $1"
#. uCGqy
-#: sw/inc/strings.hrc:474
+#: sw/inc/strings.hrc:475
#, fuzzy
msgctxt "STR_SPLIT_TABLE"
msgid "Split Table"
msgstr "Иалкаатәуп атаблица"
#. TJCZ8
-#: sw/inc/strings.hrc:475
+#: sw/inc/strings.hrc:476
msgctxt "STR_DONTEXPAND"
msgid "Stop attribute"
msgstr "Иаанкылатәуп атрибут"
#. qyCiy
-#: sw/inc/strings.hrc:476
+#: sw/inc/strings.hrc:477
msgctxt "STR_AUTOCORRECT"
msgid "AutoCorrect"
msgstr "Автоҧсахра"
#. f4Jfr
-#: sw/inc/strings.hrc:477
+#: sw/inc/strings.hrc:478
msgctxt "STR_MERGE_TABLE"
msgid "Merge table"
msgstr "Еидҵатәуп атаблица"
#. BLcCC
-#: sw/inc/strings.hrc:478
+#: sw/inc/strings.hrc:479
msgctxt "STR_TRANSLITERATE"
msgid "Change Case"
msgstr "Арегистр"
#. BTGyD
-#: sw/inc/strings.hrc:479
+#: sw/inc/strings.hrc:480
msgctxt "STR_DELNUM"
msgid "Delete numbering"
msgstr "Ианыхтәуп аномерркра"
#. TMvTD
-#: sw/inc/strings.hrc:480
+#: sw/inc/strings.hrc:481
msgctxt "STR_DRAWUNDO"
msgid "Drawing objects: $1"
msgstr "Асахьақәа: $1 "
#. FG7rN
-#: sw/inc/strings.hrc:481
+#: sw/inc/strings.hrc:482
msgctxt "STR_DRAWGROUP"
msgid "Group draw objects"
msgstr "Иргәыԥтәуп аграфикатә обиектқәа"
#. xZqoJ
-#: sw/inc/strings.hrc:482
+#: sw/inc/strings.hrc:483
msgctxt "STR_DRAWUNGROUP"
msgid "Ungroup drawing objects"
msgstr "Асахьақәа рыргәыԥра ықәгатәуп"
#. FA3Vo
-#: sw/inc/strings.hrc:483
+#: sw/inc/strings.hrc:484
msgctxt "STR_DRAWDELETE"
msgid "Delete drawing objects"
msgstr "Ианыхтәуп асахьақәа"
#. MbJSs
-#: sw/inc/strings.hrc:484
+#: sw/inc/strings.hrc:485
msgctxt "STR_REREAD"
msgid "Replace Image"
msgstr "Иалаԥсахтәуп асахьа"
#. 6GmVr
-#: sw/inc/strings.hrc:485
+#: sw/inc/strings.hrc:486
msgctxt "STR_DELGRF"
msgid "Delete Image"
msgstr "Ианыхтәуп асахьа"
#. PAmBF
-#: sw/inc/strings.hrc:486
+#: sw/inc/strings.hrc:487
msgctxt "STR_TABLE_ATTR"
msgid "Apply table attributes"
msgstr "Ихархәуатәуп атаблица атрибутқәа"
#. GA8gF
-#: sw/inc/strings.hrc:487
+#: sw/inc/strings.hrc:488
msgctxt "STR_UNDO_TABLE_AUTOFMT"
msgid "AutoFormat Table"
msgstr "Атаблица автоформат"
#. AAPTL
-#: sw/inc/strings.hrc:488
+#: sw/inc/strings.hrc:489
#, fuzzy
msgctxt "STR_UNDO_TABLE_INSCOL"
msgid "Insert Column"
msgstr "Ибжьаргылатәуп аиҵагыла"
#. tA7ss
-#: sw/inc/strings.hrc:489
+#: sw/inc/strings.hrc:490
msgctxt "STR_UNDO_TABLE_INSROW"
msgid "Insert Row"
msgstr "Ибжьаргылатәуп ацәаҳәа"
#. LAzxr
-#: sw/inc/strings.hrc:490
+#: sw/inc/strings.hrc:491
msgctxt "STR_UNDO_TABLE_DELBOX"
msgid "Delete row/column"
msgstr "Ианыхтәуп ацәаҳәа/аиҵагыла"
#. yFDYp
-#: sw/inc/strings.hrc:491
+#: sw/inc/strings.hrc:492
msgctxt "STR_UNDO_COL_DELETE"
msgid "Delete column"
msgstr "Ианыхтәуп аиҵагыла"
#. 9SF9L
-#: sw/inc/strings.hrc:492
+#: sw/inc/strings.hrc:493
msgctxt "STR_UNDO_ROW_DELETE"
msgid "Delete row"
msgstr "Ианыхтәуп ацәаҳәа"
#. FnLC7
-#: sw/inc/strings.hrc:493
+#: sw/inc/strings.hrc:494
msgctxt "STR_UNDO_TABLE_SPLIT"
msgid "Split Cells"
msgstr "Еиҟәшатәуп абларҭақәа"
#. 3Em7B
-#: sw/inc/strings.hrc:494
+#: sw/inc/strings.hrc:495
msgctxt "STR_UNDO_TABLE_MERGE"
msgid "Merge Cells"
msgstr "Еидҵатәуп абларҭақәа"
#. 3VVmF
-#: sw/inc/strings.hrc:495
+#: sw/inc/strings.hrc:496
msgctxt "STR_TABLE_NUMFORMAT"
msgid "Format cell"
msgstr "Абларҭақәа рформат"
#. UbSKw
-#: sw/inc/strings.hrc:496
+#: sw/inc/strings.hrc:497
msgctxt "STR_INSERT_TOX"
msgid "Insert index/table"
msgstr ""
#. szpbj
-#: sw/inc/strings.hrc:497
+#: sw/inc/strings.hrc:498
msgctxt "STR_CLEAR_TOX_RANGE"
msgid "Remove index/table"
msgstr "Иныхтәуп ахқәа/аҭыԥрбага"
#. cN5DN
-#: sw/inc/strings.hrc:498
+#: sw/inc/strings.hrc:499
msgctxt "STR_TABLE_TBLCPYTBL"
msgid "Copy table"
msgstr "Атаблица акопиа ахыхтәуп"
#. eUFgx
-#: sw/inc/strings.hrc:499
+#: sw/inc/strings.hrc:500
msgctxt "STR_TABLE_CPYTBL"
msgid "Copy table"
msgstr "Атаблица акопиа ахыхтәуп"
#. TC6mz
-#: sw/inc/strings.hrc:500
+#: sw/inc/strings.hrc:501
msgctxt "STR_INS_FROM_SHADOWCRSR"
msgid "Set cursor"
msgstr "Иқәыргылатәуп акурсор"
#. 4GStA
-#: sw/inc/strings.hrc:501
+#: sw/inc/strings.hrc:502
msgctxt "STR_UNDO_CHAIN"
msgid "Link frames"
msgstr ""
#. XV4Ap
-#: sw/inc/strings.hrc:502
+#: sw/inc/strings.hrc:503
msgctxt "STR_UNDO_UNCHAIN"
msgid "Unlink frames"
msgstr ""
#. vUJG9
-#: sw/inc/strings.hrc:503
+#: sw/inc/strings.hrc:504
msgctxt "STR_UNDO_FTNINFO"
msgid "Modify footnote options"
msgstr "Иԥсахтәуп албаагақәа рырхиарақәа"
#. AgREs
-#: sw/inc/strings.hrc:504
+#: sw/inc/strings.hrc:505
msgctxt "STR_UNDO_COMPAREDOC"
msgid "Compare Document"
msgstr "Еиҿырҧштәуп адокумент аверсиақәа"
#. kZATW
-#: sw/inc/strings.hrc:505
+#: sw/inc/strings.hrc:506
msgctxt "STR_UNDO_SETFLYFRMFMT"
msgid "Apply frame style: $1"
msgstr "Ианыхтәуп афреим астиль: $1"
#. 4Ae2X
-#: sw/inc/strings.hrc:506
+#: sw/inc/strings.hrc:507
msgctxt "STR_UNDO_SETRUBYATTR"
msgid "Ruby Setting"
msgstr ""
#. J4AUR
-#: sw/inc/strings.hrc:507
+#: sw/inc/strings.hrc:508
msgctxt "STR_INSERT_FOOTNOTE"
msgid "Insert footnote"
msgstr "Иҭаргылатәуп албаага"
#. RMgFD
-#: sw/inc/strings.hrc:508
+#: sw/inc/strings.hrc:509
msgctxt "STR_INSERT_URLBTN"
msgid "insert URL button"
msgstr "Иҭаргылатәуп URL акнопка"
#. UKN7k
-#: sw/inc/strings.hrc:509
+#: sw/inc/strings.hrc:510
#, fuzzy
msgctxt "STR_INSERT_URLTXT"
msgid "Insert Hyperlink"
msgstr "Ибжьаргылатәуп агиперзхьарҧш..."
#. 9odT8
-#: sw/inc/strings.hrc:510
+#: sw/inc/strings.hrc:511
msgctxt "STR_DELETE_INVISIBLECNTNT"
msgid "remove invisible content"
msgstr "ианыхтәуп иҵәаху аҵанакы"
#. e6U2R
-#: sw/inc/strings.hrc:511
+#: sw/inc/strings.hrc:512
msgctxt "STR_TOXCHANGE"
msgid "Table/index changed"
msgstr "Атаблица/аиндекс ҧсахуп"
#. JpGh6
-#: sw/inc/strings.hrc:512
+#: sw/inc/strings.hrc:513
msgctxt "STR_START_QUOTE"
msgid "“"
msgstr "«"
#. kZoAG
-#: sw/inc/strings.hrc:513
+#: sw/inc/strings.hrc:514
msgctxt "STR_END_QUOTE"
msgid "”"
msgstr "»"
#. wNZDq
-#: sw/inc/strings.hrc:514
+#: sw/inc/strings.hrc:515
msgctxt "STR_LDOTS"
msgid "..."
msgstr "..."
#. yiQgo
-#: sw/inc/strings.hrc:515
+#: sw/inc/strings.hrc:516
msgctxt "STR_MULTISEL"
msgid "multiple selection"
msgstr "ирацәоу алхра"
#. qFESB
-#: sw/inc/strings.hrc:516
+#: sw/inc/strings.hrc:517
msgctxt "STR_TYPING_UNDO"
msgid "Typing: $1"
msgstr "Аҭагалара: $1"
#. A6HSG
-#: sw/inc/strings.hrc:517
+#: sw/inc/strings.hrc:518
msgctxt "STR_PASTE_CLIPBOARD_UNDO"
msgid "Paste clipboard"
msgstr "Иҭаргылатәуп аиҭныԥсахларатә гәынкылага"
#. mfDMF
-#: sw/inc/strings.hrc:518
+#: sw/inc/strings.hrc:519
msgctxt "STR_YIELDS"
msgid "→"
msgstr "→"
#. wNRhZ
-#: sw/inc/strings.hrc:519
+#: sw/inc/strings.hrc:520
msgctxt "STR_OCCURRENCES_OF"
msgid "occurrences of"
msgstr ""
#. hHUZi
-#: sw/inc/strings.hrc:520
+#: sw/inc/strings.hrc:521
msgctxt "STR_UNDO_TABS"
msgid "One tab"
msgid_plural "$1 tabs"
@@ -5125,7 +5131,7 @@ msgstr[0] ""
msgstr[1] ""
#. eP6mC
-#: sw/inc/strings.hrc:521
+#: sw/inc/strings.hrc:522
msgctxt "STR_UNDO_NLS"
msgid "One line break"
msgid_plural "$1 line breaks"
@@ -5133,308 +5139,308 @@ msgstr[0] ""
msgstr[1] ""
#. yS3nP
-#: sw/inc/strings.hrc:522
+#: sw/inc/strings.hrc:523
msgctxt "STR_UNDO_PAGEBREAKS"
msgid "page break"
msgstr "адаҟьа аимҟьара"
#. Q4YVg
-#: sw/inc/strings.hrc:523
+#: sw/inc/strings.hrc:524
msgctxt "STR_UNDO_COLBRKS"
msgid "column break"
msgstr "аиҵаҩ аимҟьара"
#. L6qva
-#: sw/inc/strings.hrc:524
+#: sw/inc/strings.hrc:525
msgctxt "STR_UNDO_REDLINE_INSERT"
msgid "Insert $1"
msgstr "Ибжьаргылатәуп $1"
#. i8ZQo
-#: sw/inc/strings.hrc:525
+#: sw/inc/strings.hrc:526
msgctxt "STR_UNDO_REDLINE_DELETE"
msgid "Delete $1"
msgstr "$1 аныхра"
#. 5KECk
-#: sw/inc/strings.hrc:526
+#: sw/inc/strings.hrc:527
msgctxt "STR_UNDO_REDLINE_FORMAT"
msgid "Attributes changed"
msgstr "Атрибутқәа ҧсахуп"
#. N7CUk
-#: sw/inc/strings.hrc:527
+#: sw/inc/strings.hrc:528
msgctxt "STR_UNDO_REDLINE_TABLE"
msgid "Table changed"
msgstr "Атаблица ҧсахуп"
#. DCGPF
-#: sw/inc/strings.hrc:528
+#: sw/inc/strings.hrc:529
msgctxt "STR_UNDO_REDLINE_FMTCOLL"
msgid "Style changed"
msgstr "Астиль ҧсахуп"
#. p77WZ
-#: sw/inc/strings.hrc:529
+#: sw/inc/strings.hrc:530
msgctxt "STR_UNDO_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr "Абзац аформат ҧсахуп"
#. nehrq
-#: sw/inc/strings.hrc:530
+#: sw/inc/strings.hrc:531
msgctxt "STR_UNDO_REDLINE_TABLE_ROW_INSERT"
msgid "Insert Row"
msgstr "Ибжьаргылатәуп ацәаҳәа"
#. Ud4qT
-#: sw/inc/strings.hrc:531
+#: sw/inc/strings.hrc:532
msgctxt "STR_UNDO_REDLINE_TABLE_ROW_DELETE"
msgid "Delete Row"
msgstr "Ацәаҳәа аныхра"
#. GvxsC
-#: sw/inc/strings.hrc:532
+#: sw/inc/strings.hrc:533
msgctxt "STR_UNDO_REDLINE_TABLE_CELL_INSERT"
msgid "Insert Cell"
msgstr "Абларҭа аҭаргылара"
#. ZMrVY
-#: sw/inc/strings.hrc:533
+#: sw/inc/strings.hrc:534
msgctxt "STR_UNDO_REDLINE_TABLE_CELL_DELETE"
msgid "Delete Cell"
msgstr "Абларҭа аныхра"
#. DqprY
-#: sw/inc/strings.hrc:534
+#: sw/inc/strings.hrc:535
msgctxt "STR_N_REDLINES"
msgid "$1 changes"
msgstr "$1 алаԥсахрақәа"
#. ve5ZA
-#: sw/inc/strings.hrc:535
+#: sw/inc/strings.hrc:536
msgctxt "STR_UNDO_PAGEDESC"
msgid "Change page style: $1"
msgstr "Иҧсахтәуп адаҟьа астиль: $1"
#. RDkdy
-#: sw/inc/strings.hrc:536
+#: sw/inc/strings.hrc:537
msgctxt "STR_UNDO_PAGEDESC_CREATE"
msgid "Create page style: $1"
msgstr "Иаҧҵатәуп адаҟьа астиль: $1"
#. tBVzV
-#: sw/inc/strings.hrc:537
+#: sw/inc/strings.hrc:538
msgctxt "STR_UNDO_PAGEDESC_DELETE"
msgid "Delete page style: $1"
msgstr "Ианыхтәуп адаҟьа астиль: $1"
#. wzjRB
-#: sw/inc/strings.hrc:538
+#: sw/inc/strings.hrc:539
msgctxt "STR_UNDO_PAGEDESC_RENAME"
msgid "Rename page style: $1 $2 $3"
msgstr "Адаҟьа: $1 $2 $3 астиль ахьӡ ҧсахтәуп"
#. UcTVv
-#: sw/inc/strings.hrc:539
+#: sw/inc/strings.hrc:540
msgctxt "STR_UNDO_HEADER_FOOTER"
msgid "Header/footer changed"
msgstr "Аколонтитулқәа ԥсахуп"
#. tGyeC
-#: sw/inc/strings.hrc:540
+#: sw/inc/strings.hrc:541
msgctxt "STR_UNDO_FIELD"
msgid "Field changed"
msgstr "Аҭакыра ԥсахуп"
#. xh3dq
-#: sw/inc/strings.hrc:541
+#: sw/inc/strings.hrc:542
msgctxt "STR_UNDO_TXTFMTCOL_CREATE"
msgid "Create paragraph style: $1"
msgstr "Иаҧҵатәуп абзац астиль: $1"
#. aRf6Z
-#: sw/inc/strings.hrc:542
+#: sw/inc/strings.hrc:543
msgctxt "STR_UNDO_TXTFMTCOL_DELETE"
msgid "Delete paragraph style: $1"
msgstr "Ианыхтәуп абзац астиль: $1"
#. DtD6w
-#: sw/inc/strings.hrc:543
+#: sw/inc/strings.hrc:544
msgctxt "STR_UNDO_TXTFMTCOL_RENAME"
msgid "Rename paragraph style: $1 $2 $3"
msgstr "Абзац: $1 $2 $3 астиль ахьӡ ҧсахтәуп"
#. J2FcF
-#: sw/inc/strings.hrc:544
+#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_CHARFMT_CREATE"
msgid "Create character style: $1"
msgstr "Иаҧҵатәуп асимвол астиль: $1"
#. FjT56
-#: sw/inc/strings.hrc:545
+#: sw/inc/strings.hrc:546
msgctxt "STR_UNDO_CHARFMT_DELETE"
msgid "Delete character style: $1"
msgstr "Ианыхтәуп асимвол астиль: $1"
#. mT2GJ
-#: sw/inc/strings.hrc:546
+#: sw/inc/strings.hrc:547
msgctxt "STR_UNDO_CHARFMT_RENAME"
msgid "Rename character style: $1 $2 $3"
msgstr "Асимвол: $1 $2 $3 астиль ахьӡ ҧсахтәуп"
#. AvK4p
-#: sw/inc/strings.hrc:547
+#: sw/inc/strings.hrc:548
msgctxt "STR_UNDO_FRMFMT_CREATE"
msgid "Create frame style: $1"
msgstr "Иаҧҵатәуп афреим астиль: $1"
#. zHLcd
-#: sw/inc/strings.hrc:548
+#: sw/inc/strings.hrc:549
msgctxt "STR_UNDO_FRMFMT_DELETE"
msgid "Delete frame style: $1"
msgstr "Ианыхтәуп афреим астиль: $1"
#. BUdbD
-#: sw/inc/strings.hrc:549
+#: sw/inc/strings.hrc:550
msgctxt "STR_UNDO_FRMFMT_RENAME"
msgid "Rename frame style: $1 $2 $3"
msgstr "Афреим: $1 $2 $3 астиль ахьӡ ҧсахтәуп"
#. GG9BH
-#: sw/inc/strings.hrc:550
+#: sw/inc/strings.hrc:551
msgctxt "STR_UNDO_NUMRULE_CREATE"
msgid "Create numbering style: $1"
msgstr "Иаҧҵатәуп ахьӡынҵа астиль: $1"
#. zYZW8
-#: sw/inc/strings.hrc:551
+#: sw/inc/strings.hrc:552
msgctxt "STR_UNDO_NUMRULE_DELETE"
msgid "Delete numbering style: $1"
msgstr "Ианыхтәуп ахьӡынҵа астиль: $1"
#. QhDFe
-#: sw/inc/strings.hrc:552
+#: sw/inc/strings.hrc:553
msgctxt "STR_UNDO_NUMRULE_RENAME"
msgid "Rename numbering style: $1 $2 $3"
msgstr "Ахьӡынҵа: $1 $2 $3 астиль ахьӡ ҧсахтәуп"
#. oWrh9
-#: sw/inc/strings.hrc:553
+#: sw/inc/strings.hrc:554
msgctxt "STR_UNDO_BOOKMARK_RENAME"
msgid "Rename bookmark: $1 $2 $3"
msgstr "Агәылаҵа ахьӡ ԥсахтәуп: $1 $2 $3"
#. WTcEw
-#: sw/inc/strings.hrc:554
+#: sw/inc/strings.hrc:555
msgctxt "STR_UNDO_INDEX_ENTRY_INSERT"
msgid "Insert index entry"
msgstr ""
#. fbidx
-#: sw/inc/strings.hrc:555
+#: sw/inc/strings.hrc:556
msgctxt "STR_UNDO_INDEX_ENTRY_DELETE"
msgid "Delete index entry"
msgstr ""
#. WCDy7
-#: sw/inc/strings.hrc:556
+#: sw/inc/strings.hrc:557
msgctxt "STR_FIELD"
msgid "field"
msgstr "аҭакыра"
#. aC9iU
-#: sw/inc/strings.hrc:557
+#: sw/inc/strings.hrc:558
msgctxt "STR_UNDO_INSERT_TEXTBOX"
msgid "text box"
msgstr ""
#. yNjem
#. undo: STR_PARAGRAPHS, string.text
-#: sw/inc/strings.hrc:559
+#: sw/inc/strings.hrc:560
msgctxt "STR_PARAGRAPHS"
msgid "Paragraphs"
msgstr "Абзацқәа"
#. 9fb4z
-#: sw/inc/strings.hrc:560
+#: sw/inc/strings.hrc:561
msgctxt "STR_FRAME"
msgid "frame"
msgstr "афреим"
#. gcZ3a
-#: sw/inc/strings.hrc:561
+#: sw/inc/strings.hrc:562
msgctxt "STR_OLE"
msgid "OLE-object"
msgstr "OLE-аобиеқт"
#. db5Tg
-#: sw/inc/strings.hrc:562
+#: sw/inc/strings.hrc:563
msgctxt "STR_MATH_FORMULA"
msgid "formula"
msgstr "аформула"
#. BirkF
-#: sw/inc/strings.hrc:563
+#: sw/inc/strings.hrc:564
msgctxt "STR_CHART"
msgid "chart"
msgstr "адиаграмма"
#. YxCuu
-#: sw/inc/strings.hrc:564
+#: sw/inc/strings.hrc:565
msgctxt "STR_NOTE"
msgid "comment"
msgstr "акомментари"
#. CKqsU
-#: sw/inc/strings.hrc:565
+#: sw/inc/strings.hrc:566
msgctxt "STR_REFERENCE"
msgid "cross-reference"
msgstr "еимаздо азхьарԥшқәа"
#. q9BGR
-#: sw/inc/strings.hrc:566
+#: sw/inc/strings.hrc:567
msgctxt "STR_SCRIPT"
msgid "script"
msgstr "Асценари"
#. o6FWi
-#: sw/inc/strings.hrc:567
+#: sw/inc/strings.hrc:568
msgctxt "STR_AUTHORITY_ENTRY"
msgid "bibliography entry"
msgstr "алитература ахьӡынҵа аелемент"
#. qbRLG
-#: sw/inc/strings.hrc:568
+#: sw/inc/strings.hrc:569
msgctxt "STR_SPECIALCHAR"
msgid "special character"
msgstr "испециалтәу асимвол"
#. qJd8G
-#: sw/inc/strings.hrc:569
+#: sw/inc/strings.hrc:570
msgctxt "STR_FOOTNOTE"
msgid "footnote"
msgstr "албаага"
#. bKvaD
-#: sw/inc/strings.hrc:570
+#: sw/inc/strings.hrc:571
msgctxt "STR_GRAPHIC"
msgid "image"
msgstr "асахьа"
#. J7CgG
-#: sw/inc/strings.hrc:571
+#: sw/inc/strings.hrc:572
msgctxt "STR_DRAWING_OBJECTS"
msgid "drawing object(s)"
msgstr "аграфикатә обиеқт(қәа)"
#. rYPFG
-#: sw/inc/strings.hrc:572
+#: sw/inc/strings.hrc:573
msgctxt "STR_TABLE_NAME"
msgid "table: $1$2$3"
msgstr "атаблица: $1$2$3"
#. AtWxA
-#: sw/inc/strings.hrc:573
+#: sw/inc/strings.hrc:574
msgctxt "STR_CHAPTERS"
msgid "chapter"
msgid_plural "chapters"
@@ -5442,1657 +5448,1657 @@ msgstr[0] ""
msgstr[1] ""
#. 2JCL2
-#: sw/inc/strings.hrc:574
+#: sw/inc/strings.hrc:575
msgctxt "STR_PARAGRAPH_UNDO"
msgid "paragraph"
msgstr "абзац"
#. DvnGA
-#: sw/inc/strings.hrc:575
+#: sw/inc/strings.hrc:576
msgctxt "STR_PARAGRAPH_SIGN_UNDO"
msgid "Paragraph sign"
msgstr "Абзац адырга"
#. oL9GG
-#: sw/inc/strings.hrc:576
+#: sw/inc/strings.hrc:577
msgctxt "STR_UNDO_FLYFRMFMT_TITLE"
msgid "Change object title of $1"
msgstr "Иԥсахтәуп аобиект %1 ахы"
#. 3Cv7E
-#: sw/inc/strings.hrc:577
+#: sw/inc/strings.hrc:578
msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr "Иԥсахтәуп аобиект %1 ахҳәаа"
#. rWw8U
-#: sw/inc/strings.hrc:578
+#: sw/inc/strings.hrc:579
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
msgid "Create table style: $1"
msgstr "Иаҧҵатәуп атаблица астиль: $1"
#. jGxgy
-#: sw/inc/strings.hrc:579
+#: sw/inc/strings.hrc:580
msgctxt "STR_UNDO_TBLSTYLE_DELETE"
msgid "Delete table style: $1"
msgstr "Ианыхтәуп атаблица астиль: $1"
#. 6NWP3
-#: sw/inc/strings.hrc:580
+#: sw/inc/strings.hrc:581
msgctxt "STR_UNDO_TBLSTYLE_UPDATE"
msgid "Update table style: $1"
msgstr "Ирҿыцтәуп атаблица астиль: $1"
#. JegfU
-#: sw/inc/strings.hrc:581
+#: sw/inc/strings.hrc:582
msgctxt "STR_UNDO_TABLE_DELETE"
msgid "Delete table"
msgstr "Ианыхтәуп атаблица"
#. KSMpJ
-#: sw/inc/strings.hrc:582
+#: sw/inc/strings.hrc:583
msgctxt "STR_UNDO_INSERT_FORM_FIELD"
msgid "Insert form field"
msgstr ""
#. 2zJmG
-#: sw/inc/strings.hrc:583
+#: sw/inc/strings.hrc:584
msgctxt "STR_DROP_DOWN_FIELD_ITEM_LIMIT"
msgid "You can specify maximum of 25 items for a drop-down form field."
msgstr ""
#. CUXeF
-#: sw/inc/strings.hrc:585
+#: sw/inc/strings.hrc:586
msgctxt "STR_ACCESS_DOC_NAME"
msgid "Document view"
msgstr "Адокумент ахәаҧшра"
#. FrBrC
-#: sw/inc/strings.hrc:586
+#: sw/inc/strings.hrc:587
msgctxt "STR_ACCESS_DOC_DESC"
msgid "Document view"
msgstr "Адокумент ахәаҧшра"
#. BCEgS
-#: sw/inc/strings.hrc:587
+#: sw/inc/strings.hrc:588
msgctxt "STR_ACCESS_HEADER_NAME"
msgid "Header $(ARG1)"
msgstr "Хыхьтәи аколонтитул $(ARG1)"
#. zKdDR
-#: sw/inc/strings.hrc:588
+#: sw/inc/strings.hrc:589
msgctxt "STR_ACCESS_HEADER_DESC"
msgid "Header page $(ARG1)"
msgstr "Хыхьтәи аколонтитул $(ARG1)"
#. NhFrV
-#: sw/inc/strings.hrc:589
+#: sw/inc/strings.hrc:590
msgctxt "STR_ACCESS_FOOTER_NAME"
msgid "Footer $(ARG1)"
msgstr "Ҵаҟатәи аколонтитул $(ARG1)"
#. 6GJNd
-#: sw/inc/strings.hrc:590
+#: sw/inc/strings.hrc:591
msgctxt "STR_ACCESS_FOOTER_DESC"
msgid "Footer page $(ARG1)"
msgstr "Ҵаҟатәи аколонтитул $(ARG1)"
#. VGUwW
-#: sw/inc/strings.hrc:591
+#: sw/inc/strings.hrc:592
#, fuzzy
msgctxt "STR_ACCESS_FOOTNOTE_NAME"
msgid "Footnote $(ARG1)"
msgstr "Ҵаҟатәи аколонтитул $(ARG1)"
#. a7XMU
-#: sw/inc/strings.hrc:592
+#: sw/inc/strings.hrc:593
#, fuzzy
msgctxt "STR_ACCESS_FOOTNOTE_DESC"
msgid "Footnote $(ARG1)"
msgstr "Ҵаҟатәи аколонтитул $(ARG1)"
#. 3ExiP
-#: sw/inc/strings.hrc:593
+#: sw/inc/strings.hrc:594
msgctxt "STR_ACCESS_ENDNOTE_NAME"
msgid "Endnote $(ARG1)"
msgstr "Анҵәамҭатә лбаага $(ARG1)"
#. 8XdTm
-#: sw/inc/strings.hrc:594
+#: sw/inc/strings.hrc:595
msgctxt "STR_ACCESS_ENDNOTE_DESC"
msgid "Endnote $(ARG1)"
msgstr "Анҵәамҭатә лбаага $(ARG1)"
#. 4sTZN
-#: sw/inc/strings.hrc:595
+#: sw/inc/strings.hrc:596
msgctxt "STR_ACCESS_TABLE_DESC"
msgid "$(ARG1) on page $(ARG2)"
msgstr "$(ARG1) адаҟьа $(ARG2) аҟны"
#. Z5Uy9
-#: sw/inc/strings.hrc:596
+#: sw/inc/strings.hrc:597
msgctxt "STR_ACCESS_PAGE_NAME"
msgid "Page $(ARG1)"
msgstr "Адаҟьа $(ARG1)"
#. CWroT
-#: sw/inc/strings.hrc:597
+#: sw/inc/strings.hrc:598
msgctxt "STR_ACCESS_PAGE_DESC"
msgid "Page: $(ARG1)"
msgstr "Адаҟьа $(ARG1)"
#. iwfxM
-#: sw/inc/strings.hrc:598
+#: sw/inc/strings.hrc:599
msgctxt "STR_ACCESS_ANNOTATION_AUTHOR_NAME"
msgid "Author"
msgstr "Автор"
#. sff9t
-#: sw/inc/strings.hrc:599
+#: sw/inc/strings.hrc:600
msgctxt "STR_ACCESS_ANNOTATION_DATE_NAME"
msgid "Date"
msgstr "Арыцхә"
#. VScXC
-#: sw/inc/strings.hrc:600
+#: sw/inc/strings.hrc:601
msgctxt "STR_ACCESS_ANNOTATION_RESOLVED_NAME"
msgid "Resolved"
msgstr ""
#. JtzA4
-#: sw/inc/strings.hrc:601
+#: sw/inc/strings.hrc:602
msgctxt "STR_ACCESS_ANNOTATION_BUTTON_NAME"
msgid "Actions"
msgstr "Аҟаҵарақәа"
#. cHWqM
-#: sw/inc/strings.hrc:602
+#: sw/inc/strings.hrc:603
msgctxt "STR_ACCESS_ANNOTATION_BUTTON_DESC"
msgid "Activate this button to open a list of actions which can be performed on this comment and other comments"
msgstr ""
#. 9YxaB
-#: sw/inc/strings.hrc:603
+#: sw/inc/strings.hrc:604
msgctxt "STR_ACCESS_PREVIEW_DOC_NAME"
msgid "Document preview"
msgstr "Адокумент ахәаҧшра"
#. eYFFo
-#: sw/inc/strings.hrc:604
+#: sw/inc/strings.hrc:605
msgctxt "STR_ACCESS_PREVIEW_DOC_SUFFIX"
msgid "(Preview mode)"
msgstr "(Ахәаҧшра арежим)"
#. Fp7Hn
-#: sw/inc/strings.hrc:605
+#: sw/inc/strings.hrc:606
msgctxt "STR_ACCESS_DOC_WORDPROCESSING"
msgid "%PRODUCTNAME Document"
msgstr "%PRODUCTNAME адокуменқәа"
#. CsQKH
-#: sw/inc/strings.hrc:607
+#: sw/inc/strings.hrc:608
msgctxt "STR_COMCORE_READERROR"
msgid "Read Error"
msgstr "Аҧхьара агха"
#. ztbVu
-#: sw/inc/strings.hrc:608
+#: sw/inc/strings.hrc:609
msgctxt "STR_COMCORE_CANT_SHOW"
msgid "Image cannot be displayed."
msgstr "Иауам асахьа аарԥшра."
#. iJsFt
-#: sw/inc/strings.hrc:609
+#: sw/inc/strings.hrc:610
msgctxt "STR_ERROR_CLPBRD_READ"
msgid "Error reading from the clipboard."
msgstr "Аиҭныԥсахларатә гәыкылага аҟынтәи аԥхьараан агха."
#. bXZQD
-#: sw/inc/strings.hrc:611
+#: sw/inc/strings.hrc:612
msgctxt "STR_COLUMN_BREAK"
msgid "Manual Column Break"
msgstr "Аиҵаҩ аимҟьара"
#. 7DzNG
-#: sw/inc/strings.hrc:613
+#: sw/inc/strings.hrc:614
msgctxt "STR_CHART2_ROW_LABEL_TEXT"
msgid "Row %ROWNUMBER"
msgstr "Ацәаҳәа %ROWNUMBER"
#. GYFVF
-#: sw/inc/strings.hrc:614
+#: sw/inc/strings.hrc:615
msgctxt "STR_CHART2_COL_LABEL_TEXT"
msgid "Column %COLUMNLETTER"
msgstr "Аиҵагыла %COLUMNLETTER "
#. GGS2b
-#: sw/inc/strings.hrc:615
+#: sw/inc/strings.hrc:616
msgctxt "STR_STYLE_FAMILY_CHARACTER"
msgid "Character"
msgstr "Асимвол"
#. KBw5e
-#: sw/inc/strings.hrc:616
+#: sw/inc/strings.hrc:617
msgctxt "STR_STYLE_FAMILY_PARAGRAPH"
msgid "Paragraph"
msgstr "Абзац"
#. ERH8o
-#: sw/inc/strings.hrc:617
+#: sw/inc/strings.hrc:618
msgctxt "STR_STYLE_FAMILY_FRAME"
msgid "Frame"
msgstr "Афреим"
#. Cqjn8
-#: sw/inc/strings.hrc:618
+#: sw/inc/strings.hrc:619
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Pages"
msgstr "Адаҟьақәа"
#. FFZEr
-#: sw/inc/strings.hrc:619
+#: sw/inc/strings.hrc:620
msgctxt "STR_STYLE_FAMILY_NUMBERING"
msgid "List"
msgstr ""
#. NydLs
-#: sw/inc/strings.hrc:620
+#: sw/inc/strings.hrc:621
msgctxt "STR_STYLE_FAMILY_TABLE"
msgid "Table"
msgstr "Атаблица"
#. XUhuM
-#: sw/inc/strings.hrc:621
+#: sw/inc/strings.hrc:622
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell"
msgstr "Абларҭа"
#. DRqDZ
-#: sw/inc/strings.hrc:623
+#: sw/inc/strings.hrc:624
msgctxt "ST_SCRIPT_ASIAN"
msgid "Asian"
msgstr "Мрагыларазиатәиқәа"
#. owFtq
-#: sw/inc/strings.hrc:624
+#: sw/inc/strings.hrc:625
msgctxt "ST_SCRIPT_CTL"
msgid "CTL"
msgstr "Иуадаҩу аҩырақәа рсистемақәа"
#. ap5iF
-#: sw/inc/strings.hrc:625
+#: sw/inc/strings.hrc:626
msgctxt "ST_SCRIPT_WESTERN"
msgid "Western"
msgstr "Мраҭашәарахьтәиқәа"
#. HD64i
-#: sw/inc/strings.hrc:626
+#: sw/inc/strings.hrc:627
msgctxt "STR_PRINTOPTUI_PRODUCTNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. q6egu
-#: sw/inc/strings.hrc:627
+#: sw/inc/strings.hrc:628
msgctxt "STR_PRINTOPTUI_CONTENTS"
msgid "Contents"
msgstr "Иаҵанакуа"
#. Ka4fM
-#: sw/inc/strings.hrc:628
+#: sw/inc/strings.hrc:629
msgctxt "STR_PRINTOPTUI_PAGE_BACKGROUND"
msgid "Page ba~ckground"
msgstr "Адаҟьа аҿаҧшыра"
#. YPEEH
-#: sw/inc/strings.hrc:629
+#: sw/inc/strings.hrc:630
msgctxt "STR_PRINTOPTUI_PICTURES"
msgid "~Images and other graphic objects"
msgstr "Асахьақәеи егьырҭ аграфикатә обиектқәеи"
#. L6GSj
-#: sw/inc/strings.hrc:630
+#: sw/inc/strings.hrc:631
msgctxt "STR_PRINTOPTUI_HIDDEN"
msgid "Hidden te~xt"
msgstr "Иҵәаху атеқст"
#. pXiRN
-#: sw/inc/strings.hrc:631
+#: sw/inc/strings.hrc:632
msgctxt "STR_PRINTOPTUI_TEXT_PLACEHOLDERS"
msgid "~Text placeholders"
msgstr "Атеқст ахарҭәаага"
#. JBWVd
-#: sw/inc/strings.hrc:632
+#: sw/inc/strings.hrc:633
msgctxt "STR_PRINTOPTUI_FORM_CONTROLS"
msgid "Form control~s"
msgstr "Анапхгара аелементқәа"
#. X8Bfu
-#: sw/inc/strings.hrc:633
+#: sw/inc/strings.hrc:634
msgctxt "STR_PRINTOPTUI_COLOR"
msgid "Color"
msgstr "Аҧштәы"
#. kQDcq
-#: sw/inc/strings.hrc:634
+#: sw/inc/strings.hrc:635
msgctxt "STR_PRINTOPTUI_PRINT_BLACK"
msgid "Print text in blac~k"
msgstr "Икьыҧхьтәуп атеқст еиқәаҵәала"
#. DEELn
-#: sw/inc/strings.hrc:635
+#: sw/inc/strings.hrc:636
msgctxt "STR_PRINTOPTUI_PAGES_TEXT"
msgid "Pages:"
msgstr "Адаҟьақәа:"
#. uddbB
-#: sw/inc/strings.hrc:636
+#: sw/inc/strings.hrc:637
msgctxt "STR_PRINTOPTUI_PRINT_BLANK"
msgid "Print ~automatically inserted blank pages"
msgstr "Икьыԥхьлатәуп автоматикала иҭаргылоу иҭацәу адаҟьақәа"
#. MTJt2
-#: sw/inc/strings.hrc:637
+#: sw/inc/strings.hrc:638
msgctxt "STR_PRINTOPTUI_ONLY_PAPER"
msgid "~Use only paper tray from printer preferences"
msgstr "Ақьаад анашьҭра апринтер архиарақәа ирықәыршәаны"
#. 4uBam
-#: sw/inc/strings.hrc:638
+#: sw/inc/strings.hrc:639
msgctxt "STR_PRINTOPTUI_NONE"
msgid "None (document only)"
msgstr "Мап (адокумент мацара)"
#. pbQtA
-#: sw/inc/strings.hrc:639
+#: sw/inc/strings.hrc:640
msgctxt "STR_PRINTOPTUI_COMMENTS_ONLY"
msgid "Comments only"
msgstr "Акомментариқәа рымацара"
#. sVnbD
-#: sw/inc/strings.hrc:640
+#: sw/inc/strings.hrc:641
msgctxt "STR_PRINTOPTUI_PLACE_END"
msgid "Place at end of document"
msgstr "Ииагатәуп адокумент анҵәамҭахь"
#. D4BXH
-#: sw/inc/strings.hrc:641
+#: sw/inc/strings.hrc:642
msgctxt "STR_PRINTOPTUI_PLACE_PAGE"
msgid "Place at end of page"
msgstr "Ииагатәуп адаҟьа анҵәамҭахь"
#. 6rzab
-#: sw/inc/strings.hrc:642
+#: sw/inc/strings.hrc:643
msgctxt "STR_PRINTOPTUI_COMMENTS"
msgid "~Comments"
msgstr "Акомментари"
#. cnqLU
-#: sw/inc/strings.hrc:643
+#: sw/inc/strings.hrc:644
#, fuzzy
msgctxt "STR_PRINTOPTUI_BROCHURE"
msgid "Broch~ure"
msgstr "Аброшиура"
#. t6drz
-#: sw/inc/strings.hrc:644
+#: sw/inc/strings.hrc:645
msgctxt "STR_PRINTOPTUI_LEFT_SCRIPT"
msgid "Left-to-right script"
msgstr "Армарахьтә - арӷьарахь"
#. QgmxB
-#: sw/inc/strings.hrc:645
+#: sw/inc/strings.hrc:646
msgctxt "STR_PRINTOPTUI_RIGHT_SCRIPT"
msgid "Right-to-left script"
msgstr "Арӷьарахьтә-армарахь"
#. t4Cm7
-#: sw/inc/strings.hrc:646
+#: sw/inc/strings.hrc:647
msgctxt "STR_PRINTOPTUI_PRINTALLPAGES"
msgid "~All Pages"
msgstr ""
#. ZDRM2
-#: sw/inc/strings.hrc:647
+#: sw/inc/strings.hrc:648
msgctxt "STR_PRINTOPTUI_PRINTPAGES"
msgid "Pa~ges:"
msgstr "Адаҟьақәа:"
#. rajyx
-#: sw/inc/strings.hrc:648
+#: sw/inc/strings.hrc:649
msgctxt "STR_PRINTOPTUI_PRINTSELECTION"
msgid "~Selection"
msgstr "Алкаара"
#. 9EXcV
-#: sw/inc/strings.hrc:649
+#: sw/inc/strings.hrc:650
msgctxt "STR_PRINTOPTUI_PLACE_MARGINS"
msgid "Place in margins"
msgstr "Иҭагӡатәуп аҭакырақәа"
#. NGQw3
-#: sw/inc/strings.hrc:651
+#: sw/inc/strings.hrc:652
msgctxt "STR_FORMULA_CALC"
msgid "Functions"
msgstr "Афункциақәа"
#. D3RCG
-#: sw/inc/strings.hrc:652
+#: sw/inc/strings.hrc:653
msgctxt "STR_FORMULA_CANCEL"
msgid "Cancel"
msgstr "Аҟәыхра"
#. 3Tg3C
-#: sw/inc/strings.hrc:653
+#: sw/inc/strings.hrc:654
msgctxt "STR_FORMULA_APPLY"
msgid "Apply"
msgstr "Ихархәатәуп"
#. UDkFb
-#: sw/inc/strings.hrc:654
+#: sw/inc/strings.hrc:655
msgctxt "STR_ACCESS_FORMULA_TOOLBAR"
msgid "Formula Tool Bar"
msgstr "Аформулақәа рпанель"
#. Z3CB5
-#: sw/inc/strings.hrc:655
+#: sw/inc/strings.hrc:656
msgctxt "STR_ACCESS_FORMULA_TYPE"
msgid "Formula Type"
msgstr "Аформула атип"
#. 3CCa7
-#: sw/inc/strings.hrc:656
+#: sw/inc/strings.hrc:657
msgctxt "STR_ACCESS_FORMULA_TEXT"
msgid "Formula Text"
msgstr "Аформула атеқст"
#. FXNer
-#: sw/inc/strings.hrc:658
+#: sw/inc/strings.hrc:659
msgctxt "STR_ACCESS_TL_GLOBAL"
msgid "Global View"
msgstr ""
#. aeeRP
-#: sw/inc/strings.hrc:659
+#: sw/inc/strings.hrc:660
msgctxt "STR_ACCESS_TL_CONTENT"
msgid "Content Navigation View"
msgstr "Аҵанакы"
#. UAExA
-#: sw/inc/strings.hrc:660
+#: sw/inc/strings.hrc:661
msgctxt "STR_OUTLINE_LEVEL"
msgid "Outline Level"
msgstr "Аструктура аҩаӡара"
#. yERK6
-#: sw/inc/strings.hrc:661
+#: sw/inc/strings.hrc:662
msgctxt "STR_DRAGMODE"
msgid "Drag Mode"
msgstr "Аиагара арежим"
#. PAB4k
-#: sw/inc/strings.hrc:662
+#: sw/inc/strings.hrc:663
msgctxt "STR_SEND_OUTLINE_TO_CLIPBOARD_ENTRY"
msgid "Send Outline to Clipboard"
msgstr "Аструктура аиҭныԥсахларақәа ргәынкылагахь"
#. b5tPU
-#: sw/inc/strings.hrc:663
+#: sw/inc/strings.hrc:664
msgctxt "STR_OUTLINE_TRACKING"
msgid "Outline Tracking"
msgstr ""
#. qzXwn
-#: sw/inc/strings.hrc:664
+#: sw/inc/strings.hrc:665
msgctxt "STR_OUTLINE_TRACKING_DEFAULT"
msgid "Default"
msgstr ""
#. HGDgJ
-#: sw/inc/strings.hrc:665
+#: sw/inc/strings.hrc:666
msgctxt "STR_OUTLINE_TRACKING_FOCUS"
msgid "Focus"
msgstr ""
#. BYRpF
-#: sw/inc/strings.hrc:666
+#: sw/inc/strings.hrc:667
msgctxt "STR_OUTLINE_TRACKING_OFF"
msgid "Off"
msgstr ""
#. NGgt3
-#: sw/inc/strings.hrc:667
+#: sw/inc/strings.hrc:668
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle outline folding"
msgstr ""
#. 44jEc
-#: sw/inc/strings.hrc:668
+#: sw/inc/strings.hrc:669
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
msgstr ""
#. mnZA9
-#: sw/inc/strings.hrc:669
+#: sw/inc/strings.hrc:670
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle outline folding"
msgstr ""
#. rkD8H
-#: sw/inc/strings.hrc:670
+#: sw/inc/strings.hrc:671
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
msgstr ""
#. oBH6y
-#: sw/inc/strings.hrc:671
+#: sw/inc/strings.hrc:672
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_TOGGLE"
msgid "Toggle"
msgstr ""
#. YBDFD
-#: sw/inc/strings.hrc:672
+#: sw/inc/strings.hrc:673
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_SHOW_ALL"
msgid "Unfold All"
msgstr ""
#. Cj4js
-#: sw/inc/strings.hrc:673
+#: sw/inc/strings.hrc:674
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_HIDE_ALL"
msgid "Fold All"
msgstr ""
#. 9Fipd
-#: sw/inc/strings.hrc:675
+#: sw/inc/strings.hrc:676
msgctxt "STR_EXPANDALL"
msgid "Expand All"
msgstr ""
#. FxGVt
-#: sw/inc/strings.hrc:676
+#: sw/inc/strings.hrc:677
msgctxt "STR_COLLAPSEALL"
msgid "Collapse All"
msgstr ""
#. xvSRm
-#: sw/inc/strings.hrc:677
+#: sw/inc/strings.hrc:678
msgctxt "STR_HYPERLINK"
msgid "Insert as Hyperlink"
msgstr "Ибжьаргылатәуп агиперзхьарҧш ҳасабла"
#. sdfGe
-#: sw/inc/strings.hrc:678
+#: sw/inc/strings.hrc:679
msgctxt "STR_LINK_REGION"
msgid "Insert as Link"
msgstr "Ибжьаргылатәуп азхьарҧш ҳасабла"
#. Suaiz
-#: sw/inc/strings.hrc:679
+#: sw/inc/strings.hrc:680
msgctxt "STR_COPY_REGION"
msgid "Insert as Copy"
msgstr "Иҭаргылатәуп копиа ҳасабла"
#. VgdhT
-#: sw/inc/strings.hrc:680
+#: sw/inc/strings.hrc:681
msgctxt "STR_DISPLAY"
msgid "Display"
msgstr "Иаарҧштәуп"
#. 3VXp5
-#: sw/inc/strings.hrc:681
+#: sw/inc/strings.hrc:682
msgctxt "STR_ACTIVE_VIEW"
msgid "Active Window"
msgstr "Иактиву аҧенџьыр"
#. fAAUc
-#: sw/inc/strings.hrc:682
+#: sw/inc/strings.hrc:683
msgctxt "STR_HIDDEN"
msgid "hidden"
msgstr "иҵәаху"
#. 3VWjq
-#: sw/inc/strings.hrc:683
+#: sw/inc/strings.hrc:684
msgctxt "STR_ACTIVE"
msgid "active"
msgstr "иактиву"
#. YjPvg
-#: sw/inc/strings.hrc:684
+#: sw/inc/strings.hrc:685
msgctxt "STR_INACTIVE"
msgid "inactive"
msgstr "иактивым"
#. tBPKU
-#: sw/inc/strings.hrc:685
+#: sw/inc/strings.hrc:686
msgctxt "STR_EDIT_ENTRY"
msgid "Edit..."
msgstr "Ариашара..."
#. ppC87
-#: sw/inc/strings.hrc:686
+#: sw/inc/strings.hrc:687
msgctxt "STR_UPDATE"
msgid "~Update"
msgstr "Ирҿыцтәуп"
#. 44Esc
-#: sw/inc/strings.hrc:687
+#: sw/inc/strings.hrc:688
msgctxt "STR_EDIT_CONTENT"
msgid "Edit"
msgstr "Ариашара"
#. w3ZrD
-#: sw/inc/strings.hrc:688
+#: sw/inc/strings.hrc:689
msgctxt "STR_EDIT_LINK"
msgid "Edit link"
msgstr "Аимадара ариашара"
#. xyPWE
-#: sw/inc/strings.hrc:689
+#: sw/inc/strings.hrc:690
msgctxt "STR_EDIT_INSERT"
msgid "Insert"
msgstr "Ибжьаргылатәуп"
#. AT9SS
-#: sw/inc/strings.hrc:690
+#: sw/inc/strings.hrc:691
msgctxt "STR_INDEX"
msgid "~Index"
msgstr ""
#. MnBLc
-#: sw/inc/strings.hrc:691
+#: sw/inc/strings.hrc:692
msgctxt "STR_FILE"
msgid "File"
msgstr "Афаил"
#. DdBgh
-#: sw/inc/strings.hrc:692
+#: sw/inc/strings.hrc:693
msgctxt "STR_NEW_FILE"
msgid "New Document"
msgstr "Иаҧҵатәуп адокумент"
#. aV9Uy
-#: sw/inc/strings.hrc:693
+#: sw/inc/strings.hrc:694
msgctxt "STR_INSERT_TEXT"
msgid "Text"
msgstr "Атеқст"
#. 5rD3D
-#: sw/inc/strings.hrc:694
+#: sw/inc/strings.hrc:695
msgctxt "STR_DELETE"
msgid "Delete"
msgstr "Ианыхтәуп"
#. 9MrsU
-#: sw/inc/strings.hrc:695
+#: sw/inc/strings.hrc:696
msgctxt "STR_DELETE_ENTRY"
msgid "~Delete"
msgstr "Ианыхтәуп"
#. A28Rb
-#: sw/inc/strings.hrc:696
+#: sw/inc/strings.hrc:697
msgctxt "STR_UPDATE_SEL"
msgid "Selection"
msgstr "Иалкаау"
#. gRBxA
-#: sw/inc/strings.hrc:697
+#: sw/inc/strings.hrc:698
msgctxt "STR_UPDATE_INDEX"
msgid "Indexes"
msgstr "Аиндексқәа"
#. WKwLS
-#: sw/inc/strings.hrc:698
+#: sw/inc/strings.hrc:699
#, fuzzy
msgctxt "STR_UPDATE_LINK"
msgid "Links"
msgstr "Азхьарҧшқәа"
#. TaaJK
-#: sw/inc/strings.hrc:699
+#: sw/inc/strings.hrc:700
msgctxt "STR_UPDATE_ALL"
msgid "All"
msgstr "Зегьы"
#. HpMeb
-#: sw/inc/strings.hrc:701
+#: sw/inc/strings.hrc:702
msgctxt "STR_INVISIBLE"
msgid "hidden"
msgstr "иҵәаху"
#. XcCnB
-#: sw/inc/strings.hrc:702
+#: sw/inc/strings.hrc:703
msgctxt "STR_BROKEN_LINK"
msgid "File not found: "
msgstr "Афаил ҧшаам: "
#. UC53U
-#: sw/inc/strings.hrc:704
+#: sw/inc/strings.hrc:705
msgctxt "STR_RESOLVED"
msgid "RESOLVED"
msgstr ""
#. 3ceMF
-#: sw/inc/strings.hrc:706
+#: sw/inc/strings.hrc:707
msgctxt "STR_MARGIN_TOOLTIP_LEFT"
msgid "Left: "
msgstr "Арымарахь: "
#. EiXF2
-#: sw/inc/strings.hrc:707
+#: sw/inc/strings.hrc:708
msgctxt "STR_MARGIN_TOOLTIP_RIGHT"
msgid ". Right: "
msgstr " Арыӷьарахь: "
#. UFpVa
-#: sw/inc/strings.hrc:708
+#: sw/inc/strings.hrc:709
msgctxt "STR_MARGIN_TOOLTIP_INNER"
msgid "Inner: "
msgstr "Аҩныҵҟа: "
#. XE7Wb
-#: sw/inc/strings.hrc:709
+#: sw/inc/strings.hrc:710
msgctxt "STR_MARGIN_TOOLTIP_OUTER"
msgid ". Outer: "
msgstr " Адәныҟа: "
#. 3A8Vg
-#: sw/inc/strings.hrc:710
+#: sw/inc/strings.hrc:711
msgctxt "STR_MARGIN_TOOLTIP_TOP"
msgid ". Top: "
msgstr " Хыхьла: "
#. dRhyZ
-#: sw/inc/strings.hrc:711
+#: sw/inc/strings.hrc:712
msgctxt "STR_MARGIN_TOOLTIP_BOT"
msgid ". Bottom: "
msgstr " Ҵаҟала: "
#. XuC4Y
#. Error calculator
-#: sw/inc/strings.hrc:714
+#: sw/inc/strings.hrc:715
msgctxt "STR_POSTIT_PAGE"
msgid "Page"
msgstr "Адаҟьа"
#. AeDYh
-#: sw/inc/strings.hrc:715
+#: sw/inc/strings.hrc:716
msgctxt "STR_POSTIT_LINE"
msgid "Line"
msgstr "Ацәаҳәа"
#. kfJG6
-#: sw/inc/strings.hrc:716
+#: sw/inc/strings.hrc:717
msgctxt "STR_POSTIT_AUTHOR"
msgid "Author"
msgstr "Автор"
#. gejqG
-#: sw/inc/strings.hrc:717
+#: sw/inc/strings.hrc:718
msgctxt "STR_CALC_SYNTAX"
msgid "** Syntax Error **"
msgstr "** Аинтакстә гха **"
#. q6dUT
-#: sw/inc/strings.hrc:718
+#: sw/inc/strings.hrc:719
msgctxt "STR_CALC_ZERODIV"
msgid "** Division by zero **"
msgstr "** Ноль ала ашара **"
#. HSo6d
-#: sw/inc/strings.hrc:719
+#: sw/inc/strings.hrc:720
msgctxt "STR_CALC_BRACK"
msgid "** Wrong use of brackets **"
msgstr "** Ииашамкәа ахыцқәа рхархәара **"
#. jcNfg
-#: sw/inc/strings.hrc:720
+#: sw/inc/strings.hrc:721
msgctxt "STR_CALC_POW"
msgid "** Square function overflow **"
msgstr "** Аквадрат афункциа аҭәцәара **"
#. C453V
-#: sw/inc/strings.hrc:721
+#: sw/inc/strings.hrc:722
msgctxt "STR_CALC_OVERFLOW"
msgid "** Overflow **"
msgstr "** Аҭәцәара **"
#. KEQfz
-#: sw/inc/strings.hrc:722
+#: sw/inc/strings.hrc:723
msgctxt "STR_CALC_DEFAULT"
msgid "** Error **"
msgstr "** Агха **"
#. hxrg9
-#: sw/inc/strings.hrc:723
+#: sw/inc/strings.hrc:724
msgctxt "STR_CALC_ERROR"
msgid "** Expression is faulty **"
msgstr "** Агха змо аҵакҳәага **"
#. 2yBhF
-#: sw/inc/strings.hrc:724
+#: sw/inc/strings.hrc:725
msgctxt "STR_GETREFFLD_REFITEMNOTFOUND"
msgid "Error: Reference source not found"
msgstr "Агха: еимаздоу азхьарԥшқәа рхыҵхырҭа ԥшаам"
#. jgRW7
-#: sw/inc/strings.hrc:725
+#: sw/inc/strings.hrc:726
msgctxt "STR_TEMPLATE_NONE"
msgid "None"
msgstr "Мап"
#. KRD6s
-#: sw/inc/strings.hrc:726
+#: sw/inc/strings.hrc:727
msgctxt "STR_FIELD_FIXED"
msgid "(fixed)"
msgstr ""
#. FCRUB
-#: sw/inc/strings.hrc:727
+#: sw/inc/strings.hrc:728
msgctxt "STR_DURATION_FORMAT"
msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#. ocA84
-#: sw/inc/strings.hrc:728
+#: sw/inc/strings.hrc:729
msgctxt "STR_TOI"
msgid "Alphabetical Index"
msgstr "Алфавиттә ҭыԥрбага"
#. GDCRF
-#: sw/inc/strings.hrc:729
+#: sw/inc/strings.hrc:730
msgctxt "STR_TOU"
msgid "User-Defined"
msgstr "Иҷыдоу"
#. vnaNc
-#: sw/inc/strings.hrc:730
+#: sw/inc/strings.hrc:731
msgctxt "STR_TOC"
msgid "Table of Contents"
msgstr "Ахы"
#. BESjb
-#: sw/inc/strings.hrc:731
+#: sw/inc/strings.hrc:732
msgctxt "STR_TOX_AUTH"
msgid "Bibliography"
msgstr "Абиблиографиа"
#. ZFBUD
-#: sw/inc/strings.hrc:732
+#: sw/inc/strings.hrc:733
msgctxt "STR_TOX_CITATION"
msgid "Citation"
msgstr "Ацитата"
#. WAs8q
-#: sw/inc/strings.hrc:733
+#: sw/inc/strings.hrc:734
msgctxt "STR_TOX_TBL"
msgid "Index of Tables"
msgstr "Атаблицақәа рыхьӡынҵа"
#. NFzTx
-#: sw/inc/strings.hrc:734
+#: sw/inc/strings.hrc:735
msgctxt "STR_TOX_OBJ"
msgid "Table of Objects"
msgstr "Аобиеқтқәа рыхьӡынҵа"
#. mSyms
-#: sw/inc/strings.hrc:735
+#: sw/inc/strings.hrc:736
msgctxt "STR_TOX_ILL"
msgid "Table of Figures"
msgstr "Асахьақәа рыхьӡынҵа"
#. TspkU
#. SubType DocInfo
-#: sw/inc/strings.hrc:737
+#: sw/inc/strings.hrc:738
msgctxt "FLD_DOCINFO_TITEL"
msgid "Title"
msgstr "Ахы"
#. ziEpC
-#: sw/inc/strings.hrc:738
+#: sw/inc/strings.hrc:739
msgctxt "FLD_DOCINFO_THEMA"
msgid "Subject"
msgstr "Атема"
#. FCVZS
-#: sw/inc/strings.hrc:739
+#: sw/inc/strings.hrc:740
msgctxt "FLD_DOCINFO_KEYS"
msgid "Keywords"
msgstr "Ихадоу ажәақәа"
#. kHC7q
-#: sw/inc/strings.hrc:740
+#: sw/inc/strings.hrc:741
msgctxt "FLD_DOCINFO_COMMENT"
msgid "Comments"
msgstr "Акомментариқәа"
#. i6psX
-#: sw/inc/strings.hrc:741
+#: sw/inc/strings.hrc:742
msgctxt "FLD_DOCINFO_CREATE"
msgid "Created"
msgstr "Иаҧҵоуп"
#. L2Bxp
-#: sw/inc/strings.hrc:742
+#: sw/inc/strings.hrc:743
msgctxt "FLD_DOCINFO_CHANGE"
msgid "Modified"
msgstr "Иҧсахуп"
#. D2YKS
-#: sw/inc/strings.hrc:743
+#: sw/inc/strings.hrc:744
msgctxt "FLD_DOCINFO_PRINT"
msgid "Last printed"
msgstr "Икьыҧхьуп"
#. QtuZM
-#: sw/inc/strings.hrc:744
+#: sw/inc/strings.hrc:745
msgctxt "FLD_DOCINFO_DOCNO"
msgid "Revision number"
msgstr "Аредакциа"
#. YDFbi
-#: sw/inc/strings.hrc:745
+#: sw/inc/strings.hrc:746
msgctxt "FLD_DOCINFO_EDIT"
msgid "Total editing time"
msgstr "Аредакциазура иақәырӡу аамҭа зегьы"
#. EpZ9C
-#: sw/inc/strings.hrc:746
+#: sw/inc/strings.hrc:747
msgctxt "STR_PAGEDESC_NAME"
msgid "Convert $(ARG1)"
msgstr "Аконвертациа $(ARG1)"
#. nY3NU
-#: sw/inc/strings.hrc:747
+#: sw/inc/strings.hrc:748
msgctxt "STR_PAGEDESC_FIRSTNAME"
msgid "First convert $(ARG1)"
msgstr "Актәи аконвертациа $(ARG1)"
#. eQtGV
-#: sw/inc/strings.hrc:748
+#: sw/inc/strings.hrc:749
msgctxt "STR_PAGEDESC_FOLLOWNAME"
msgid "Next convert $(ARG1)"
msgstr "Анаҩстәи аконвертациа $(ARG1)"
#. aBwxC
-#: sw/inc/strings.hrc:749
+#: sw/inc/strings.hrc:750
msgctxt "STR_AUTH_TYPE_ARTICLE"
msgid "Article"
msgstr "Астатиа"
#. di8ud
-#: sw/inc/strings.hrc:750
+#: sw/inc/strings.hrc:751
msgctxt "STR_AUTH_TYPE_BOOK"
msgid "Book"
msgstr "Ашәҟәы"
#. GD5KJ
-#: sw/inc/strings.hrc:751
+#: sw/inc/strings.hrc:752
msgctxt "STR_AUTH_TYPE_BOOKLET"
msgid "Brochures"
msgstr "Аброшиура"
#. mfFSf
-#: sw/inc/strings.hrc:752
+#: sw/inc/strings.hrc:753
msgctxt "STR_AUTH_TYPE_CONFERENCE"
msgid "Conference proceedings"
msgstr "Аилацәажәара апротокол"
#. Et2Px
-#: sw/inc/strings.hrc:753
+#: sw/inc/strings.hrc:754
msgctxt "STR_AUTH_TYPE_INBOOK"
msgid "Book excerpt"
msgstr "Ашәҟәы аҟынтәи ацыԥҵәахақәа"
#. ys2B8
-#: sw/inc/strings.hrc:754
+#: sw/inc/strings.hrc:755
msgctxt "STR_AUTH_TYPE_INCOLLECTION"
msgid "Book excerpt with title"
msgstr "Ахқәа змоу ашәҟәы аҟынтәи ацыԥҵәахақәа"
#. mdEqj
-#: sw/inc/strings.hrc:755
+#: sw/inc/strings.hrc:756
msgctxt "STR_AUTH_TYPE_INPROCEEDINGS"
msgid "Conference proceedings"
msgstr "Аилацәажәара апротокол"
#. jNmVD
-#: sw/inc/strings.hrc:756
+#: sw/inc/strings.hrc:757
msgctxt "STR_AUTH_TYPE_JOURNAL"
msgid "Journal"
msgstr "Ажурнал"
#. M3xkM
-#: sw/inc/strings.hrc:757
+#: sw/inc/strings.hrc:758
msgctxt "STR_AUTH_TYPE_MANUAL"
msgid "Techn. documentation"
msgstr "Атехникатә документациа"
#. EJAj4
-#: sw/inc/strings.hrc:758
+#: sw/inc/strings.hrc:759
msgctxt "STR_AUTH_TYPE_MASTERSTHESIS"
msgid "Thesis"
msgstr "Адипломтә усумҭа"
#. NoUCv
-#: sw/inc/strings.hrc:759
+#: sw/inc/strings.hrc:760
msgctxt "STR_AUTH_TYPE_MISC"
msgid "Miscellaneous"
msgstr "Егьырҭқәа"
#. qNGGE
-#: sw/inc/strings.hrc:760
+#: sw/inc/strings.hrc:761
msgctxt "STR_AUTH_TYPE_PHDTHESIS"
msgid "Dissertation"
msgstr "Адиссертациа"
#. L7W7R
-#: sw/inc/strings.hrc:761
+#: sw/inc/strings.hrc:762
msgctxt "STR_AUTH_TYPE_PROCEEDINGS"
msgid "Conference proceedings"
msgstr "Аилацәажәара апротокол"
#. X8bGG
-#: sw/inc/strings.hrc:762
+#: sw/inc/strings.hrc:763
msgctxt "STR_AUTH_TYPE_TECHREPORT"
msgid "Research report"
msgstr "Аҭҵаара иазку аҳасабырба"
#. 4dDC9
-#: sw/inc/strings.hrc:763
+#: sw/inc/strings.hrc:764
msgctxt "STR_AUTH_TYPE_UNPUBLISHED"
msgid "Unpublished"
msgstr "Икьыԥхьым"
#. Gb38d
-#: sw/inc/strings.hrc:764
+#: sw/inc/strings.hrc:765
msgctxt "STR_AUTH_TYPE_EMAIL"
msgid "Email"
msgstr "E-mail"
#. 9HKD6
-#: sw/inc/strings.hrc:765
+#: sw/inc/strings.hrc:766
msgctxt "STR_AUTH_TYPE_WWW"
msgid "WWW document"
msgstr "Веб-адаҟьа"
#. qA449
-#: sw/inc/strings.hrc:766
+#: sw/inc/strings.hrc:767
msgctxt "STR_AUTH_TYPE_CUSTOM1"
msgid "User-defined1"
msgstr "Ахархәаҩ итип 1"
#. nyzxz
-#: sw/inc/strings.hrc:767
+#: sw/inc/strings.hrc:768
msgctxt "STR_AUTH_TYPE_CUSTOM2"
msgid "User-defined2"
msgstr "Ахархәаҩ итип 2"
#. cCFTF
-#: sw/inc/strings.hrc:768
+#: sw/inc/strings.hrc:769
msgctxt "STR_AUTH_TYPE_CUSTOM3"
msgid "User-defined3"
msgstr "Ахархәаҩ итип3"
#. mrqJC
-#: sw/inc/strings.hrc:769
+#: sw/inc/strings.hrc:770
msgctxt "STR_AUTH_TYPE_CUSTOM4"
msgid "User-defined4"
msgstr "Ахархәаҩ итип4"
#. fFs86
-#: sw/inc/strings.hrc:770
+#: sw/inc/strings.hrc:771
msgctxt "STR_AUTH_TYPE_CUSTOM5"
msgid "User-defined5"
msgstr "Ахархәаҩ итип5"
#. nsCwi
-#: sw/inc/strings.hrc:771
+#: sw/inc/strings.hrc:772
msgctxt "STR_AUTH_FIELD_IDENTIFIER"
msgid "Short name"
msgstr "Иркаҿны"
#. CpKgc
-#: sw/inc/strings.hrc:772
+#: sw/inc/strings.hrc:773
msgctxt "STR_AUTH_FIELD_AUTHORITY_TYPE"
msgid "Type"
msgstr "Атип"
#. kUGDr
-#: sw/inc/strings.hrc:773
+#: sw/inc/strings.hrc:774
msgctxt "STR_AUTH_FIELD_ADDRESS"
msgid "Address"
msgstr "Адрес"
#. DquVQ
-#: sw/inc/strings.hrc:774
+#: sw/inc/strings.hrc:775
msgctxt "STR_AUTH_FIELD_ANNOTE"
msgid "Annotation"
msgstr "Акомментари"
#. sduuV
-#: sw/inc/strings.hrc:775
+#: sw/inc/strings.hrc:776
msgctxt "STR_AUTH_FIELD_AUTHOR"
msgid "Author(s)"
msgstr "Автор(цәа)"
#. fXvz6
-#: sw/inc/strings.hrc:776
+#: sw/inc/strings.hrc:777
msgctxt "STR_AUTH_FIELD_BOOKTITLE"
msgid "Book title"
msgstr "Ашәҟәы ахқәа"
#. c8PFE
-#: sw/inc/strings.hrc:777
+#: sw/inc/strings.hrc:778
msgctxt "STR_AUTH_FIELD_CHAPTER"
msgid "Chapter"
msgstr "Ахқәа"
#. GXqxF
-#: sw/inc/strings.hrc:778
+#: sw/inc/strings.hrc:779
msgctxt "STR_AUTH_FIELD_EDITION"
msgid "Edition"
msgstr "Аҭыжьымҭа"
#. p7A3p
-#: sw/inc/strings.hrc:779
+#: sw/inc/strings.hrc:780
msgctxt "STR_AUTH_FIELD_EDITOR"
msgid "Editor"
msgstr "Аредактор"
#. aAFEz
-#: sw/inc/strings.hrc:780
+#: sw/inc/strings.hrc:781
msgctxt "STR_AUTH_FIELD_HOWPUBLISHED"
msgid "Publication type"
msgstr "Аҭыжьымҭа атип"
#. 8DwdJ
-#: sw/inc/strings.hrc:781
+#: sw/inc/strings.hrc:782
msgctxt "STR_AUTH_FIELD_INSTITUTION"
msgid "Institution"
msgstr ""
#. VWNxy
-#: sw/inc/strings.hrc:782
+#: sw/inc/strings.hrc:783
msgctxt "STR_AUTH_FIELD_JOURNAL"
msgid "Journal"
msgstr "Ажурнал"
#. Da4fW
-#: sw/inc/strings.hrc:783
+#: sw/inc/strings.hrc:784
msgctxt "STR_AUTH_FIELD_MONTH"
msgid "Month"
msgstr "Амза"
#. SdSBt
-#: sw/inc/strings.hrc:784
+#: sw/inc/strings.hrc:785
msgctxt "STR_AUTH_FIELD_NOTE"
msgid "Note"
msgstr "Азгәаҭа"
#. MZYpD
-#: sw/inc/strings.hrc:785
+#: sw/inc/strings.hrc:786
msgctxt "STR_AUTH_FIELD_NUMBER"
msgid "Number"
msgstr "Аномер"
#. ZB7Go
-#: sw/inc/strings.hrc:786
+#: sw/inc/strings.hrc:787
msgctxt "STR_AUTH_FIELD_ORGANIZATIONS"
msgid "Organization"
msgstr ""
#. C4CdP
-#: sw/inc/strings.hrc:787
+#: sw/inc/strings.hrc:788
msgctxt "STR_AUTH_FIELD_PAGES"
msgid "Page(s)"
msgstr "Адаҟьақәа рхыҧхьаӡара"
#. yFPFa
-#: sw/inc/strings.hrc:788
+#: sw/inc/strings.hrc:789
msgctxt "STR_AUTH_FIELD_PUBLISHER"
msgid "Publisher"
msgstr "Аҭыжьырҭа"
#. d9u3p
-#: sw/inc/strings.hrc:789
+#: sw/inc/strings.hrc:790
msgctxt "STR_AUTH_FIELD_SCHOOL"
msgid "University"
msgstr "Ауниверситет"
#. Qxsdb
-#: sw/inc/strings.hrc:790
+#: sw/inc/strings.hrc:791
msgctxt "STR_AUTH_FIELD_SERIES"
msgid "Series"
msgstr "Асериа"
#. YhXPg
-#: sw/inc/strings.hrc:791
+#: sw/inc/strings.hrc:792
msgctxt "STR_AUTH_FIELD_TITLE"
msgid "Title"
msgstr "Ахы"
#. qEBhL
-#: sw/inc/strings.hrc:792
+#: sw/inc/strings.hrc:793
msgctxt "STR_AUTH_FIELD_TYPE"
msgid "Type of report"
msgstr "Аҳасабырба атип"
#. Sij9w
-#: sw/inc/strings.hrc:793
+#: sw/inc/strings.hrc:794
msgctxt "STR_AUTH_FIELD_VOLUME"
msgid "Volume"
msgstr "Атом"
#. K8miv
-#: sw/inc/strings.hrc:794
+#: sw/inc/strings.hrc:795
msgctxt "STR_AUTH_FIELD_YEAR"
msgid "Year"
msgstr "Ашықәс"
#. pFMSV
-#: sw/inc/strings.hrc:795
+#: sw/inc/strings.hrc:796
msgctxt "STR_AUTH_FIELD_URL"
msgid "URL"
msgstr "URL"
#. xFG3c
-#: sw/inc/strings.hrc:796
+#: sw/inc/strings.hrc:797
msgctxt "STR_AUTH_FIELD_CUSTOM1"
msgid "User-defined1"
msgstr "Ахархәаҩ итип 1"
#. wtDyU
-#: sw/inc/strings.hrc:797
+#: sw/inc/strings.hrc:798
msgctxt "STR_AUTH_FIELD_CUSTOM2"
msgid "User-defined2"
msgstr "Ахархәаҩ итип 2"
#. VH3Se
-#: sw/inc/strings.hrc:798
+#: sw/inc/strings.hrc:799
msgctxt "STR_AUTH_FIELD_CUSTOM3"
msgid "User-defined3"
msgstr "Ахархәаҩ итип3"
#. twuKb
-#: sw/inc/strings.hrc:799
+#: sw/inc/strings.hrc:800
msgctxt "STR_AUTH_FIELD_CUSTOM4"
msgid "User-defined4"
msgstr "Ахархәаҩ итип4"
#. WAo7Z
-#: sw/inc/strings.hrc:800
+#: sw/inc/strings.hrc:801
msgctxt "STR_AUTH_FIELD_CUSTOM5"
msgid "User-defined5"
msgstr "Ахархәаҩ итип5"
#. 3r6Wg
-#: sw/inc/strings.hrc:801
+#: sw/inc/strings.hrc:802
msgctxt "STR_AUTH_FIELD_ISBN"
msgid "ISBN"
msgstr "ISBN"
#. BhDrt
-#: sw/inc/strings.hrc:802
+#: sw/inc/strings.hrc:803
msgctxt "STR_AUTH_FIELD_LOCAL_URL"
msgid "Local copy"
msgstr ""
#. eFnnx
-#: sw/inc/strings.hrc:804
+#: sw/inc/strings.hrc:805
msgctxt "STR_IDXMRK_EDIT"
msgid "Edit Index Entry"
msgstr "Аҭыԥрбага аелемент ариашара"
#. EHTHH
-#: sw/inc/strings.hrc:805
+#: sw/inc/strings.hrc:806
msgctxt "STR_IDXMRK_INSERT"
msgid "Insert Index Entry"
msgstr "Иҭаргылатәуп аҭыԥрбага аелемент"
#. D2gkA
-#: sw/inc/strings.hrc:806
+#: sw/inc/strings.hrc:807
msgctxt "STR_QUERY_CHANGE_AUTH_ENTRY"
msgid "The document already contains the bibliography entry but with different data. Do you want to adjust the existing entries?"
msgstr ""
#. mK84T
-#: sw/inc/strings.hrc:808
+#: sw/inc/strings.hrc:809
msgctxt "STR_COMMENTS_LABEL"
msgid "Comments"
msgstr "Акомментариқәа"
#. fwecS
-#: sw/inc/strings.hrc:809
+#: sw/inc/strings.hrc:810
msgctxt "STR_SHOW_COMMENTS"
msgid "Show comments"
msgstr "Иаарҧштәуп акомментари"
#. HkUvy
-#: sw/inc/strings.hrc:810
+#: sw/inc/strings.hrc:811
msgctxt "STR_HIDE_COMMENTS"
msgid "Hide comments"
msgstr "Иҵәахтәуп акомментари"
#. FcmEy
-#: sw/inc/strings.hrc:812
+#: sw/inc/strings.hrc:813
msgctxt "STR_DOUBLE_SHORTNAME"
msgid "Shortcut name already exists. Please choose another name."
msgstr "Ари армаҷра ыҟоуп. Иалышәх даҽа хьӡык."
#. VhMST
-#: sw/inc/strings.hrc:813
+#: sw/inc/strings.hrc:814
msgctxt "STR_QUERY_DELETE"
msgid "Delete AutoText?"
msgstr "Ианыхтәума автотеқст?"
#. E5MLr
-#: sw/inc/strings.hrc:814
+#: sw/inc/strings.hrc:815
msgctxt "STR_QUERY_DELETE_GROUP1"
msgid "Delete the category "
msgstr "Ианыхтәуп акатегориа "
#. qndNh
-#: sw/inc/strings.hrc:815
+#: sw/inc/strings.hrc:816
msgctxt "STR_QUERY_DELETE_GROUP2"
msgid "?"
msgstr "?"
#. B6xah
-#: sw/inc/strings.hrc:816
+#: sw/inc/strings.hrc:817
msgctxt "STR_GLOSSARY"
msgid "AutoText :"
msgstr "Автотеқст:"
#. ChetY
-#: sw/inc/strings.hrc:817
+#: sw/inc/strings.hrc:818
msgctxt "STR_SAVE_GLOSSARY"
msgid "Save AutoText"
msgstr "Еиқәырхатәуп автотеқст"
#. QxAiF
-#: sw/inc/strings.hrc:818
+#: sw/inc/strings.hrc:819
msgctxt "STR_NO_GLOSSARIES"
msgid "There is no AutoText in this file."
msgstr "Ари афаил иаҵанакуам автотеқст."
#. sG8Xt
-#: sw/inc/strings.hrc:819
+#: sw/inc/strings.hrc:820
msgctxt "STR_MY_AUTOTEXT"
msgid "My AutoText"
msgstr "Сара сАвтотеқст"
#. GaoqR
-#: sw/inc/strings.hrc:821
+#: sw/inc/strings.hrc:822
msgctxt "STR_NOGLOS"
msgid "AutoText for Shortcut '%1' not found."
msgstr "Армаҷраз автотеқст аелемент «%1» ԥшаам."
#. MwUEP
-#: sw/inc/strings.hrc:822
+#: sw/inc/strings.hrc:823
msgctxt "STR_NO_TABLE"
msgid "A table with no rows or no cells cannot be inserted"
msgstr "Иауам аҭаргылара атаблица ацәаҳәақәа ма аиҵагылақәа змам"
#. AawM4
-#: sw/inc/strings.hrc:823
+#: sw/inc/strings.hrc:824
msgctxt "STR_TABLE_TOO_LARGE"
msgid "The table cannot be inserted because it is too large"
msgstr "Иауам аҭаргылара атаблица, идуцәоуп"
#. GGo8i
-#: sw/inc/strings.hrc:824
+#: sw/inc/strings.hrc:825
msgctxt "STR_ERR_INSERT_GLOS"
msgid "AutoText could not be created."
msgstr "Автотеқст аԥҵара ауам."
#. DCPSB
-#: sw/inc/strings.hrc:825
+#: sw/inc/strings.hrc:826
msgctxt "STR_CLPBRD_FORMAT_ERROR"
msgid "Requested clipboard format is not available."
msgstr ""
#. YxCCF
-#: sw/inc/strings.hrc:826
+#: sw/inc/strings.hrc:827
msgctxt "STR_PRIVATETEXT"
msgid "%PRODUCTNAME %PRODUCTVERSION Text Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION атеқсттә документ"
#. 8ygN3
-#: sw/inc/strings.hrc:827
+#: sw/inc/strings.hrc:828
msgctxt "STR_PRIVATEGRAPHIC"
msgid "Image (%PRODUCTNAME %PRODUCTVERSION Text Document)"
msgstr "Асахьа (Атексттә документ %PRODUCTNAME %PRODUCTVERSION)"
#. ewPPB
-#: sw/inc/strings.hrc:828
+#: sw/inc/strings.hrc:829
msgctxt "STR_PRIVATEOLE"
msgid "Object (%PRODUCTNAME %PRODUCTVERSION Text Document)"
msgstr "Аобиект (Атексттә документ %PRODUCTNAME %PRODUCTVERSION)"
#. 9VEc3
-#: sw/inc/strings.hrc:829
+#: sw/inc/strings.hrc:830
msgctxt "STR_DDEFORMAT"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Динамикала адырқәа реиҭныԥсахлара (DDE-аимадара)"
#. svrE7
-#: sw/inc/strings.hrc:831
+#: sw/inc/strings.hrc:832
msgctxt "STR_DELETE_ALL_NOTES"
msgid "All Comments"
msgstr "Акомментариқәа зегьы"
#. YGNN4
-#: sw/inc/strings.hrc:832
+#: sw/inc/strings.hrc:833
msgctxt "STR_FORMAT_ALL_NOTES"
msgid "All Comments"
msgstr "Акомментариқәа зегьы"
#. GDH49
-#: sw/inc/strings.hrc:833
+#: sw/inc/strings.hrc:834
msgctxt "STR_DELETE_AUTHOR_NOTES"
msgid "Comments by "
msgstr "Акомментари иҟынтә"
#. RwAcm
-#: sw/inc/strings.hrc:834
+#: sw/inc/strings.hrc:835
msgctxt "STR_NODATE"
msgid "(no date)"
msgstr "(арыцхә ыҟам)"
#. ytxKG
-#: sw/inc/strings.hrc:835
+#: sw/inc/strings.hrc:836
msgctxt "STR_NOAUTHOR"
msgid "(no author)"
msgstr "(автор дамам)"
#. nAwMG
-#: sw/inc/strings.hrc:836
+#: sw/inc/strings.hrc:837
msgctxt "STR_REPLY"
msgid "Reply to $1"
msgstr "Аҭак $1 аҟны"
#. CVVa6
-#: sw/inc/strings.hrc:838
+#: sw/inc/strings.hrc:839
msgctxt "ST_TITLE_EDIT"
msgid "Edit Address Block"
msgstr "Аредакциазутәуп аблок адрес зцу"
#. njGGA
-#: sw/inc/strings.hrc:839
+#: sw/inc/strings.hrc:840
msgctxt "ST_TITLE_MALE"
msgid "Custom Salutation (Male Recipients)"
msgstr "Персоналла ахацәа ирызку аԥсшәаҳәара"
#. ZVuKY
-#: sw/inc/strings.hrc:840
+#: sw/inc/strings.hrc:841
msgctxt "ST_TITLE_FEMALE"
msgid "Custom Salutation (Female Recipients)"
msgstr "Персоналла аҳәсаа ирызку аԥсшәаҳәара"
#. h4yuq
-#: sw/inc/strings.hrc:841
+#: sw/inc/strings.hrc:842
msgctxt "ST_SALUTATIONELEMENTS"
msgid "Salutation e~lements"
msgstr "Аԥсшәаҳәара аелементқәа"
#. kWhqT
-#: sw/inc/strings.hrc:842
+#: sw/inc/strings.hrc:843
msgctxt "ST_INSERTSALUTATIONFIELD"
msgid "Add to salutation"
msgstr "Иацҵатәуп аԥсшәаҳәарахь"
#. hvF3V
-#: sw/inc/strings.hrc:843
+#: sw/inc/strings.hrc:844
msgctxt "ST_REMOVESALUTATIONFIELD"
msgid "Remove from salutation"
msgstr "Ианыхтәуп аԥсшәаҳәара аҟынтәи"
#. A6XaR
-#: sw/inc/strings.hrc:844
+#: sw/inc/strings.hrc:845
msgctxt "ST_DRAGSALUTATION"
msgid "1. ~Drag salutation elements into the box below"
msgstr ""
#. 4VJWL
-#: sw/inc/strings.hrc:845
+#: sw/inc/strings.hrc:846
msgctxt "ST_SALUTATION"
msgid "Salutation"
msgstr "Аԥсшәаҳәара"
#. Vj6XT
-#: sw/inc/strings.hrc:846
+#: sw/inc/strings.hrc:847
msgctxt "ST_PUNCTUATION"
msgid "Punctuation Mark"
msgstr "Ааҭгыларатә дырга"
#. bafeG
-#: sw/inc/strings.hrc:847
+#: sw/inc/strings.hrc:848
msgctxt "ST_TEXT"
msgid "Text"
msgstr "Атеқсттә"
#. tt6sA
-#: sw/inc/strings.hrc:848
+#: sw/inc/strings.hrc:849
msgctxt "ST_SALUTATIONMATCHING"
msgid "Assign the fields from your data source to match the salutation elements."
msgstr ""
#. zrUsN
-#: sw/inc/strings.hrc:849
+#: sw/inc/strings.hrc:850
msgctxt "ST_SALUTATIONPREVIEW"
msgid "Salutation preview"
msgstr "Аԥсшәаҳәара ахәаԥшра"
#. 2UVE6
-#: sw/inc/strings.hrc:850
+#: sw/inc/strings.hrc:851
msgctxt "ST_ADDRESSELEMENT"
msgid "Address elements"
msgstr "Адрес аелементқәа"
#. Bd6pd
-#: sw/inc/strings.hrc:851
+#: sw/inc/strings.hrc:852
msgctxt "ST_SALUTATIONELEMENT"
msgid "Salutation elements"
msgstr "Аԥсшәаҳәара аелементқәа"
#. 9krzf
-#: sw/inc/strings.hrc:852
+#: sw/inc/strings.hrc:853
msgctxt "ST_MATCHESTO"
msgid "Matches to field:"
msgstr "Аҭакыра иақәшәақәо:"
#. oahCQ
-#: sw/inc/strings.hrc:853
+#: sw/inc/strings.hrc:854
msgctxt "ST_PREVIEW"
msgid "Preview"
msgstr "Заатәи ахәаҧшра"
#. ijdxe
-#: sw/inc/strings.hrc:854
+#: sw/inc/strings.hrc:855
msgctxt "ST_DELETE_CONFIRM"
msgid "Do you want to delete this registered data source?"
msgstr ""
#. kE5C3
-#: sw/inc/strings.hrc:856
+#: sw/inc/strings.hrc:857
msgctxt "STR_NOTASSIGNED"
msgid " not yet matched "
msgstr " анеира залшом "
#. Y6FhG
-#: sw/inc/strings.hrc:857
+#: sw/inc/strings.hrc:858
msgctxt "STR_FILTER_ALL"
msgid "All files"
msgstr "Афаилқәа зегьы"
#. 7cNjh
-#: sw/inc/strings.hrc:858
+#: sw/inc/strings.hrc:859
msgctxt "STR_FILTER_ALL_DATA"
msgid "Address lists(*.*)"
msgstr "Адресқәа рыхьӡынҵақәа(*.*)"
#. Ef8TY
-#: sw/inc/strings.hrc:859
+#: sw/inc/strings.hrc:860
msgctxt "STR_FILTER_SXB"
msgid "%PRODUCTNAME Base (*.odb)"
msgstr "%PRODUCTNAME Base (*.odb)"
#. 24opW
-#: sw/inc/strings.hrc:860
+#: sw/inc/strings.hrc:861
msgctxt "STR_FILTER_SXC"
msgid "%PRODUCTNAME Calc (*.ods;*.sxc)"
msgstr "%PRODUCTNAME Calc (*.ods;*.sxc)"
#. sq73T
-#: sw/inc/strings.hrc:861
+#: sw/inc/strings.hrc:862
msgctxt "STR_FILTER_SXW"
msgid "%PRODUCTNAME Writer (*.odt;*.sxw)"
msgstr "%PRODUCTNAME Writer (*.odt;*.sxw)"
#. QupGC
-#: sw/inc/strings.hrc:862
+#: sw/inc/strings.hrc:863
msgctxt "STR_FILTER_DBF"
msgid "dBase (*.dbf)"
msgstr "dBase (*.dbf)"
#. SzqRv
-#: sw/inc/strings.hrc:863
+#: sw/inc/strings.hrc:864
msgctxt "STR_FILTER_XLS"
msgid "Microsoft Excel (*.xls;*.xlsx)"
msgstr "Microsoft Excel (*.xls;*.xlsx)"
#. zAUu8
-#: sw/inc/strings.hrc:864
+#: sw/inc/strings.hrc:865
msgctxt "STR_FILTER_DOC"
msgid "Microsoft Word (*.doc;*.docx)"
msgstr "Microsoft Word (*.doc;*.docx)"
#. JBZFc
-#: sw/inc/strings.hrc:865
+#: sw/inc/strings.hrc:866
msgctxt "STR_FILTER_TXT"
msgid "Plain text (*.txt)"
msgstr "Атеқст мариа (*.txt)"
#. CRJb6
-#: sw/inc/strings.hrc:866
+#: sw/inc/strings.hrc:867
msgctxt "STR_FILTER_CSV"
msgid "Text Comma Separated (*.csv)"
msgstr "Аҿарҵәиқәа рыла еиҟәшо атеқст (*.csv)"
#. U4H2j
-#: sw/inc/strings.hrc:867
+#: sw/inc/strings.hrc:868
msgctxt "STR_FILTER_MDB"
msgid "Microsoft Access (*.mdb;*.mde)"
msgstr "Microsoft Access (*.mdb,*.mde)"
#. DwxF8
-#: sw/inc/strings.hrc:868
+#: sw/inc/strings.hrc:869
msgctxt "STR_FILTER_ACCDB"
msgid "Microsoft Access 2007 (*.accdb,*.accde)"
msgstr "Microsoft Access 2007 (*.accdb,*.accde)"
#. uDNRt
-#: sw/inc/strings.hrc:869
+#: sw/inc/strings.hrc:870
msgctxt "ST_CONFIGUREMAIL"
msgid ""
"In order to be able to send mail merge documents by email, %PRODUCTNAME requires information about the email account to be used.\n"
@@ -7101,91 +7107,91 @@ msgid ""
msgstr ""
#. r9BVg
-#: sw/inc/strings.hrc:870
+#: sw/inc/strings.hrc:871
msgctxt "ST_FILTERNAME"
msgid "%PRODUCTNAME Address List (.csv)"
msgstr "Адрестә шәҟәы %PRODUCTNAME (.csv)"
#. jiJuZ
-#: sw/inc/strings.hrc:872
+#: sw/inc/strings.hrc:873
msgctxt "ST_STARTING"
msgid "Select Starting Document"
msgstr "Ахалагаратә документ алхра"
#. FiUyK
-#: sw/inc/strings.hrc:873
+#: sw/inc/strings.hrc:874
msgctxt "ST_DOCUMENTTYPE"
msgid "Select Document Type"
msgstr "Адокумент атип алхра"
#. QwrpS
-#: sw/inc/strings.hrc:874
+#: sw/inc/strings.hrc:875
msgctxt "ST_ADDRESSBLOCK"
msgid "Insert Address Block"
msgstr "Адрес аблок аҭарргылара"
#. omRZF
-#: sw/inc/strings.hrc:875
+#: sw/inc/strings.hrc:876
msgctxt "ST_ADDRESSLIST"
msgid "Select Address List"
msgstr "Адресқәа рыхьӡынҵа алхра"
#. YrDuD
-#: sw/inc/strings.hrc:876
+#: sw/inc/strings.hrc:877
msgctxt "ST_GREETINGSLINE"
msgid "Create Salutation"
msgstr "Аԥсшәаҳәара аԥҵара"
#. tTr4B
-#: sw/inc/strings.hrc:877
+#: sw/inc/strings.hrc:878
msgctxt "ST_LAYOUT"
msgid "Adjust Layout"
msgstr "Аҭыԥнҵара архиара"
#. S4p5M
-#: sw/inc/strings.hrc:878
+#: sw/inc/strings.hrc:879
msgctxt "ST_EXCLUDE"
msgid "Exclude recipient"
msgstr ""
#. N5YUH
-#: sw/inc/strings.hrc:879
+#: sw/inc/strings.hrc:880
msgctxt "ST_FINISH"
msgid "~Finish"
msgstr "~Ихиоуп"
#. L5FEG
-#: sw/inc/strings.hrc:880
+#: sw/inc/strings.hrc:881
msgctxt "ST_MMWTITLE"
msgid "Mail Merge Wizard"
msgstr "Mail адәықәҵарақәа"
#. CEhZj
-#: sw/inc/strings.hrc:882
+#: sw/inc/strings.hrc:883
msgctxt "ST_TABLE"
msgid "Table"
msgstr "Атаблица"
#. v9hEB
-#: sw/inc/strings.hrc:883
+#: sw/inc/strings.hrc:884
msgctxt "ST_QUERY"
msgid "Query"
msgstr "Азыҳәара"
#. HxGAu
-#: sw/inc/strings.hrc:885
+#: sw/inc/strings.hrc:886
msgctxt "STR_QUERY_SPELL_CONTINUE"
msgid "Continue checking at beginning of document?"
msgstr "Иацҵатәума адокумент агәаҭара ахы инаркны?"
#. gE7CA
-#: sw/inc/strings.hrc:886
+#: sw/inc/strings.hrc:887
msgctxt "STR_SPELLING_COMPLETED"
msgid "The spellcheck is complete."
msgstr "Аорфографиа агәаҭара хыркәшоуп."
#. 2SuqF
-#: sw/inc/strings.hrc:887
+#: sw/inc/strings.hrc:888
msgctxt "STR_DICTIONARY_UNAVAILABLE"
msgid "No dictionary available"
msgstr ""
@@ -7195,252 +7201,252 @@ msgstr ""
#. Description: strings for the types
#. --------------------------------------------------------------------
#. range document
-#: sw/inc/strings.hrc:893
+#: sw/inc/strings.hrc:894
msgctxt "STR_DATEFLD"
msgid "Date"
msgstr "Арыцхә"
#. V9cQp
-#: sw/inc/strings.hrc:894
+#: sw/inc/strings.hrc:895
msgctxt "STR_TIMEFLD"
msgid "Time"
msgstr "Аамҭа"
#. 2zgWi
-#: sw/inc/strings.hrc:895
+#: sw/inc/strings.hrc:896
msgctxt "STR_FILENAMEFLD"
msgid "File name"
msgstr "Афаил ахьӡ"
#. FdSaU
-#: sw/inc/strings.hrc:896
+#: sw/inc/strings.hrc:897
msgctxt "STR_DBNAMEFLD"
msgid "Database Name"
msgstr "Адырқәа рбаза ахьӡ"
#. XZADh
-#: sw/inc/strings.hrc:897
+#: sw/inc/strings.hrc:898
msgctxt "STR_CHAPTERFLD"
msgid "Chapter"
msgstr "Ахы"
#. wYWy2
-#: sw/inc/strings.hrc:898
+#: sw/inc/strings.hrc:899
msgctxt "STR_PAGENUMBERFLD"
msgid "Page number"
msgstr "Адаҟьа аномер"
#. EXC6N
-#: sw/inc/strings.hrc:899
+#: sw/inc/strings.hrc:900
msgctxt "STR_DOCSTATFLD"
msgid "Statistics"
msgstr "Астатистика"
#. EW86G
-#: sw/inc/strings.hrc:900
+#: sw/inc/strings.hrc:901
msgctxt "STR_AUTHORFLD"
msgid "Author"
msgstr "Автор"
#. 5aFak
-#: sw/inc/strings.hrc:901
+#: sw/inc/strings.hrc:902
msgctxt "STR_TEMPLNAMEFLD"
msgid "Templates"
msgstr "Ашаблонқәа"
#. 3wdud
-#: sw/inc/strings.hrc:902
+#: sw/inc/strings.hrc:903
msgctxt "STR_EXTUSERFLD"
msgid "Sender"
msgstr "Адәықәҵаҩ"
#. LxZEm
#. range functions
-#: sw/inc/strings.hrc:904
+#: sw/inc/strings.hrc:905
msgctxt "STR_SETFLD"
msgid "Set variable"
msgstr "Иаҧҵатәуп аҽеиҭак"
#. ckA26
-#: sw/inc/strings.hrc:905
+#: sw/inc/strings.hrc:906
msgctxt "STR_GETFLD"
msgid "Show variable"
msgstr "Иаарҧштәуп аҽеиҭак"
#. Fjzgu
-#: sw/inc/strings.hrc:906
+#: sw/inc/strings.hrc:907
msgctxt "STR_FORMELFLD"
msgid "Insert Formula"
msgstr "Ибжьаргылатәуп аформула"
#. AXoAT
-#: sw/inc/strings.hrc:907
+#: sw/inc/strings.hrc:908
msgctxt "STR_INPUTFLD"
msgid "Input field"
msgstr "Аҭагаларҭа аҭакыра"
#. VfqNE
-#: sw/inc/strings.hrc:908
+#: sw/inc/strings.hrc:909
msgctxt "STR_SETINPUTFLD"
msgid "Input field (variable)"
msgstr "Аҭагаларҭа аҭакыра (зыԥсахра ауа)"
#. E8JAd
-#: sw/inc/strings.hrc:909
+#: sw/inc/strings.hrc:910
msgctxt "STR_USRINPUTFLD"
msgid "Input field (user)"
msgstr "Аҭагаларҭа аҭакыра (ахархәаҩтәи)"
#. 8LGEQ
-#: sw/inc/strings.hrc:910
+#: sw/inc/strings.hrc:911
msgctxt "STR_CONDTXTFLD"
msgid "Conditional text"
msgstr ""
#. jrZ7i
-#: sw/inc/strings.hrc:911
+#: sw/inc/strings.hrc:912
msgctxt "STR_DDEFLD"
msgid "DDE field"
msgstr "DDE аҭакыра"
#. 9WAT9
-#: sw/inc/strings.hrc:912
+#: sw/inc/strings.hrc:913
msgctxt "STR_MACROFLD"
msgid "Execute macro"
msgstr "Инагӡатәуп амакрос"
#. qEBxa
-#: sw/inc/strings.hrc:913
+#: sw/inc/strings.hrc:914
msgctxt "STR_SEQFLD"
msgid "Number range"
msgstr "Аномерркра адиапазон"
#. ACE5s
-#: sw/inc/strings.hrc:914
+#: sw/inc/strings.hrc:915
msgctxt "STR_SETREFPAGEFLD"
msgid "Set page variable"
msgstr "Иазалхтәуп адаҟьа аҽеиҭак"
#. ayB3N
-#: sw/inc/strings.hrc:915
+#: sw/inc/strings.hrc:916
msgctxt "STR_GETREFPAGEFLD"
msgid "Show page variable"
msgstr "Иаарԥштәуп адаҟьа аҽеиҭакқәа"
#. DBM4P
-#: sw/inc/strings.hrc:916
+#: sw/inc/strings.hrc:917
msgctxt "STR_INTERNETFLD"
msgid "Load URL"
msgstr "URL адрес"
#. LJFF5
-#: sw/inc/strings.hrc:917
+#: sw/inc/strings.hrc:918
msgctxt "STR_JUMPEDITFLD"
msgid "Placeholder"
msgstr "Ахарҭәаага"
#. zZCg6
-#: sw/inc/strings.hrc:918
+#: sw/inc/strings.hrc:919
msgctxt "STR_COMBINED_CHARS"
msgid "Combine characters"
msgstr "Еидҵатәуп асимволқәа"
#. 9MGU6
-#: sw/inc/strings.hrc:919
+#: sw/inc/strings.hrc:920
msgctxt "STR_DROPDOWN"
msgid "Input list"
msgstr "Ахьӡынҵа"
#. 7BWSk
#. range references
-#: sw/inc/strings.hrc:921
+#: sw/inc/strings.hrc:922
msgctxt "STR_SETREFFLD"
msgid "Set Reference"
msgstr "Иқәыргылатәуп азхьарҧш"
#. FJ2X8
-#: sw/inc/strings.hrc:922
+#: sw/inc/strings.hrc:923
msgctxt "STR_GETREFFLD"
msgid "Insert Reference"
msgstr "Иҭаргылатәуп азхьарԥш"
#. sztLS
#. range database
-#: sw/inc/strings.hrc:924
+#: sw/inc/strings.hrc:925
msgctxt "STR_DBFLD"
msgid "Mail merge fields"
msgstr ""
#. JP2DU
-#: sw/inc/strings.hrc:925
+#: sw/inc/strings.hrc:926
msgctxt "STR_DBNEXTSETFLD"
msgid "Next record"
msgstr "Анаҩстәи анҵамҭа"
#. GizhA
-#: sw/inc/strings.hrc:926
+#: sw/inc/strings.hrc:927
msgctxt "STR_DBNUMSETFLD"
msgid "Any record"
msgstr ""
#. aMGxm
-#: sw/inc/strings.hrc:927
+#: sw/inc/strings.hrc:928
msgctxt "STR_DBSETNUMBERFLD"
msgid "Record number"
msgstr "Анҵамҭа аномер"
#. DtYzi
-#: sw/inc/strings.hrc:928
+#: sw/inc/strings.hrc:929
msgctxt "STR_PREVPAGEFLD"
msgid "Previous page"
msgstr "Аҧхьатәи адаҟьа"
#. UCSej
-#: sw/inc/strings.hrc:929
+#: sw/inc/strings.hrc:930
msgctxt "STR_NEXTPAGEFLD"
msgid "Next page"
msgstr "Анаҩстәи адаҟьа"
#. M8Fac
-#: sw/inc/strings.hrc:930
+#: sw/inc/strings.hrc:931
msgctxt "STR_HIDDENTXTFLD"
msgid "Hidden text"
msgstr "Иҵәаху атеқст"
#. WvBF2
#. range user fields
-#: sw/inc/strings.hrc:932
+#: sw/inc/strings.hrc:933
msgctxt "STR_USERFLD"
msgid "User Field"
msgstr "Ахархәаҩ иҭакыра"
#. XELYN
-#: sw/inc/strings.hrc:933
+#: sw/inc/strings.hrc:934
msgctxt "STR_POSTITFLD"
msgid "Note"
msgstr "Азгәаҭа"
#. MB6kt
-#: sw/inc/strings.hrc:934
+#: sw/inc/strings.hrc:935
msgctxt "STR_SCRIPTFLD"
msgid "Script"
msgstr "Асценари"
#. BWU6A
-#: sw/inc/strings.hrc:935
+#: sw/inc/strings.hrc:936
msgctxt "STR_AUTHORITY"
msgid "Bibliography entry"
msgstr "Абиблиографиатә зхьарҧш"
#. 7EGCR
-#: sw/inc/strings.hrc:936
+#: sw/inc/strings.hrc:937
msgctxt "STR_HIDDENPARAFLD"
msgid "Hidden Paragraph"
msgstr "Иҵәаху абзац"
#. dRBRK
#. range DocumentInfo
-#: sw/inc/strings.hrc:938
+#: sw/inc/strings.hrc:939
msgctxt "STR_DOCINFOFLD"
msgid "DocInformation"
msgstr "Адокумент иазкны"
@@ -7449,87 +7455,87 @@ msgstr "Адокумент иазкны"
#. --------------------------------------------------------------------
#. Description: SubCmd-Strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:942
+#: sw/inc/strings.hrc:943
msgctxt "FLD_DATE_STD"
msgid "Date"
msgstr "Арыцхә"
#. qMCEh
-#: sw/inc/strings.hrc:943
+#: sw/inc/strings.hrc:944
msgctxt "FLD_DATE_FIX"
msgid "Date (fixed)"
msgstr "Арыцхә (аҧсахра зымуа)"
#. AXmyw
-#: sw/inc/strings.hrc:944
+#: sw/inc/strings.hrc:945
msgctxt "FLD_TIME_STD"
msgid "Time"
msgstr "Аамҭа"
#. 6dxVs
-#: sw/inc/strings.hrc:945
+#: sw/inc/strings.hrc:946
msgctxt "FLD_TIME_FIX"
msgid "Time (fixed)"
msgstr "Аамҭа (аԥсахра зымуа)"
#. U3SW8
#. SubCmd Statistic
-#: sw/inc/strings.hrc:947
+#: sw/inc/strings.hrc:948
msgctxt "FLD_STAT_TABLE"
msgid "Tables"
msgstr "Атаблицақәа"
#. 7qW4K
-#: sw/inc/strings.hrc:948
+#: sw/inc/strings.hrc:949
msgctxt "FLD_STAT_CHAR"
msgid "Characters"
msgstr "Асимволқәа"
#. zDRCp
-#: sw/inc/strings.hrc:949
+#: sw/inc/strings.hrc:950
msgctxt "FLD_STAT_WORD"
msgid "Words"
msgstr "Ажәақәа"
#. 2wgLC
-#: sw/inc/strings.hrc:950
+#: sw/inc/strings.hrc:951
msgctxt "FLD_STAT_PARA"
msgid "Paragraphs"
msgstr "Абзацқәа"
#. JPGG7
-#: sw/inc/strings.hrc:951
+#: sw/inc/strings.hrc:952
msgctxt "FLD_STAT_GRF"
msgid "Image"
msgstr "Асахьа"
#. CzoFh
-#: sw/inc/strings.hrc:952
+#: sw/inc/strings.hrc:953
msgctxt "FLD_STAT_OBJ"
msgid "Objects"
msgstr "Аобиеқтқәа"
#. bDG6R
-#: sw/inc/strings.hrc:953
+#: sw/inc/strings.hrc:954
msgctxt "FLD_STAT_PAGE"
msgid "Pages"
msgstr "Адаҟьақәа"
#. yqhF5
#. SubCmd DDETypes
-#: sw/inc/strings.hrc:955
+#: sw/inc/strings.hrc:956
msgctxt "FMT_DDE_HOT"
msgid "DDE automatic"
msgstr "DDE автоматикала"
#. xPP2E
-#: sw/inc/strings.hrc:956
+#: sw/inc/strings.hrc:957
msgctxt "FMT_DDE_NORMAL"
msgid "DDE manual"
msgstr "DDE напыла"
#. spdXd
-#: sw/inc/strings.hrc:957
+#: sw/inc/strings.hrc:958
msgctxt "FLD_INPUT_TEXT"
msgid "[Text]"
msgstr "[Атеқст]"
@@ -7538,104 +7544,104 @@ msgstr "[Атеқст]"
#. --------------------------------------------------------------------
#. Description: SubType Extuser
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:962
+#: sw/inc/strings.hrc:963
msgctxt "FLD_EU_FIRMA"
msgid "Company"
msgstr "Аиҿкаара"
#. WWxTK
-#: sw/inc/strings.hrc:963
+#: sw/inc/strings.hrc:964
msgctxt "FLD_EU_VORNAME"
msgid "First Name"
msgstr "Ахьӡ"
#. 4tdAc
-#: sw/inc/strings.hrc:964
+#: sw/inc/strings.hrc:965
msgctxt "FLD_EU_NAME"
msgid "Last Name"
msgstr "Ажәла"
#. xTV7n
-#: sw/inc/strings.hrc:965
+#: sw/inc/strings.hrc:966
msgctxt "FLD_EU_ABK"
msgid "Initials"
msgstr "Аинициалқәа"
#. AKD3k
-#: sw/inc/strings.hrc:966
+#: sw/inc/strings.hrc:967
msgctxt "FLD_EU_STRASSE"
msgid "Street"
msgstr "Амҩа ахьӡ"
#. ErMju
-#: sw/inc/strings.hrc:967
+#: sw/inc/strings.hrc:968
msgctxt "FLD_EU_LAND"
msgid "Country"
msgstr "Атәыла"
#. ESbkx
-#: sw/inc/strings.hrc:968
+#: sw/inc/strings.hrc:969
msgctxt "FLD_EU_PLZ"
msgid "Zip code"
msgstr "Аԥошьҭатә индекс"
#. WDAc2
-#: sw/inc/strings.hrc:969
+#: sw/inc/strings.hrc:970
msgctxt "FLD_EU_ORT"
msgid "City"
msgstr "Ақалақь"
#. pg7MV
-#: sw/inc/strings.hrc:970
+#: sw/inc/strings.hrc:971
#, fuzzy
msgctxt "FLD_EU_TITEL"
msgid "Title"
msgstr "Ахы"
#. DwLhZ
-#: sw/inc/strings.hrc:971
+#: sw/inc/strings.hrc:972
msgctxt "FLD_EU_POS"
msgid "Position"
msgstr "Аҭыҧ"
#. LDTdu
-#: sw/inc/strings.hrc:972
+#: sw/inc/strings.hrc:973
msgctxt "FLD_EU_TELPRIV"
msgid "Tel. (Home)"
msgstr "Аҭел (аҩн.)"
#. JBZyj
-#: sw/inc/strings.hrc:973
+#: sw/inc/strings.hrc:974
msgctxt "FLD_EU_TELFIRMA"
msgid "Tel. (Work)"
msgstr "Аҭел (аус.)"
#. 5EmGH
-#: sw/inc/strings.hrc:974
+#: sw/inc/strings.hrc:975
msgctxt "FLD_EU_FAX"
msgid "Fax"
msgstr "Афакс"
#. AtN9J
-#: sw/inc/strings.hrc:975
+#: sw/inc/strings.hrc:976
msgctxt "FLD_EU_EMAIL"
msgid "Email"
msgstr "E-mail"
#. 6GBRm
-#: sw/inc/strings.hrc:976
+#: sw/inc/strings.hrc:977
msgctxt "FLD_EU_STATE"
msgid "State"
msgstr "Араион"
#. pbrdQ
-#: sw/inc/strings.hrc:977
+#: sw/inc/strings.hrc:978
msgctxt "FLD_PAGEREF_OFF"
msgid "off"
msgstr "иаҿых."
#. wC8SE
-#: sw/inc/strings.hrc:978
+#: sw/inc/strings.hrc:979
msgctxt "FLD_PAGEREF_ON"
msgid "on"
msgstr "иаҿак."
@@ -7645,37 +7651,37 @@ msgstr "иаҿак."
#. Description: path name
#. --------------------------------------------------------------------
#. Format FileName
-#: sw/inc/strings.hrc:983
+#: sw/inc/strings.hrc:984
msgctxt "FMT_FF_NAME"
msgid "File name"
msgstr "Афаил ахьӡ"
#. RBpz3
-#: sw/inc/strings.hrc:984
+#: sw/inc/strings.hrc:985
msgctxt "FMT_FF_NAME_NOEXT"
msgid "File name without extension"
msgstr "Афаил ахьӡ арҭбаарада"
#. BCzy8
-#: sw/inc/strings.hrc:985
+#: sw/inc/strings.hrc:986
msgctxt "FMT_FF_PATHNAME"
msgid "Path/File name"
msgstr "Амҩа/Афаил ахьӡ"
#. ChFwM
-#: sw/inc/strings.hrc:986
+#: sw/inc/strings.hrc:987
msgctxt "FMT_FF_PATH"
msgid "Path"
msgstr "Амҩа"
#. R6KrL
-#: sw/inc/strings.hrc:987
+#: sw/inc/strings.hrc:988
msgctxt "FMT_FF_UI_NAME"
msgid "Template name"
msgstr ""
#. ANM2H
-#: sw/inc/strings.hrc:988
+#: sw/inc/strings.hrc:989
msgctxt "FMT_FF_UI_RANGE"
msgid "Category"
msgstr "Акатегориа"
@@ -7684,25 +7690,25 @@ msgstr "Акатегориа"
#. --------------------------------------------------------------------
#. Description: format chapter
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:992
+#: sw/inc/strings.hrc:993
msgctxt "FMT_CHAPTER_NAME"
msgid "Chapter name"
msgstr "Ахы ахьӡ"
#. tnLqE
-#: sw/inc/strings.hrc:993
+#: sw/inc/strings.hrc:994
msgctxt "FMT_CHAPTER_NO"
msgid "Chapter number"
msgstr "Ахы аномер"
#. qGEAs
-#: sw/inc/strings.hrc:994
+#: sw/inc/strings.hrc:995
msgctxt "FMT_CHAPTER_NO_NOSEPARATOR"
msgid "Chapter number without separator"
msgstr ""
#. WFA5R
-#: sw/inc/strings.hrc:995
+#: sw/inc/strings.hrc:996
msgctxt "FMT_CHAPTER_NAMENO"
msgid "Chapter number and name"
msgstr "Ахы ахьӡи аномери"
@@ -7711,55 +7717,55 @@ msgstr "Ахы ахьӡи аномери"
#. --------------------------------------------------------------------
#. Description: formats
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:999
+#: sw/inc/strings.hrc:1000
msgctxt "FMT_NUM_ABC"
msgid "A B C"
msgstr "A B C"
#. jm7G7
-#: sw/inc/strings.hrc:1000
+#: sw/inc/strings.hrc:1001
msgctxt "FMT_NUM_SABC"
msgid "a b c"
msgstr "a b c"
#. ETgy7
-#: sw/inc/strings.hrc:1001
+#: sw/inc/strings.hrc:1002
msgctxt "FMT_NUM_ABC_N"
msgid "A .. AA .. AAA"
msgstr "A .. AA .. AAA"
#. m84Fb
-#: sw/inc/strings.hrc:1002
+#: sw/inc/strings.hrc:1003
msgctxt "FMT_NUM_SABC_N"
msgid "a .. aa .. aaa"
msgstr "a .. aa .. aaa"
#. d9YtB
-#: sw/inc/strings.hrc:1003
+#: sw/inc/strings.hrc:1004
msgctxt "FMT_NUM_ROMAN"
msgid "Roman (I II III)"
msgstr "Аримтә (I II III)"
#. vA5RT
-#: sw/inc/strings.hrc:1004
+#: sw/inc/strings.hrc:1005
msgctxt "FMT_NUM_SROMAN"
msgid "Roman (i ii iii)"
msgstr "Аримтә (i ii iii)"
#. 3ZDgc
-#: sw/inc/strings.hrc:1005
+#: sw/inc/strings.hrc:1006
msgctxt "FMT_NUM_ARABIC"
msgid "Arabic (1 2 3)"
msgstr "Арабтә (1 2 3)"
#. CHmdp
-#: sw/inc/strings.hrc:1006
+#: sw/inc/strings.hrc:1007
msgctxt "FMT_NUM_PAGEDESC"
msgid "As Page Style"
msgstr "Адаҟьа астиль ала"
#. xBKwZ
-#: sw/inc/strings.hrc:1007
+#: sw/inc/strings.hrc:1008
msgctxt "FMT_NUM_PAGESPECIAL"
msgid "Text"
msgstr "Атеқст"
@@ -7768,13 +7774,13 @@ msgstr "Атеқст"
#. --------------------------------------------------------------------
#. Description: Author
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1011
+#: sw/inc/strings.hrc:1012
msgctxt "FMT_AUTHOR_NAME"
msgid "Name"
msgstr "Ахьӡ"
#. RCnZb
-#: sw/inc/strings.hrc:1012
+#: sw/inc/strings.hrc:1013
msgctxt "FMT_AUTHOR_SCUT"
msgid "Initials"
msgstr "Аинициалқәа"
@@ -7783,49 +7789,49 @@ msgstr "Аинициалқәа"
#. --------------------------------------------------------------------
#. Description: set variable
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1016
+#: sw/inc/strings.hrc:1017
msgctxt "FMT_SETVAR_SYS"
msgid "System"
msgstr "Асистема"
#. qKXLW
-#: sw/inc/strings.hrc:1017
+#: sw/inc/strings.hrc:1018
msgctxt "FMT_SETVAR_TEXT"
msgid "Text"
msgstr "Атеқст"
#. E86ZD
-#: sw/inc/strings.hrc:1018
+#: sw/inc/strings.hrc:1019
msgctxt "FMT_GETVAR_NAME"
msgid "Name"
msgstr "Ахьӡ"
#. FB3Rp
-#: sw/inc/strings.hrc:1019
+#: sw/inc/strings.hrc:1020
msgctxt "FMT_GETVAR_TEXT"
msgid "Text"
msgstr "Атеқст"
#. KiBai
-#: sw/inc/strings.hrc:1020
+#: sw/inc/strings.hrc:1021
msgctxt "FMT_USERVAR_CMD"
msgid "Formula"
msgstr "Аформула"
#. 9AsdS
-#: sw/inc/strings.hrc:1021
+#: sw/inc/strings.hrc:1022
msgctxt "FMT_USERVAR_TEXT"
msgid "Text"
msgstr "Атеқст"
#. GokUf
-#: sw/inc/strings.hrc:1022
+#: sw/inc/strings.hrc:1023
msgctxt "FMT_DBFLD_DB"
msgid "Database"
msgstr "Адырқәа рбаза"
#. UBADL
-#: sw/inc/strings.hrc:1023
+#: sw/inc/strings.hrc:1024
msgctxt "FMT_DBFLD_SYS"
msgid "System"
msgstr "Асистема"
@@ -7834,19 +7840,19 @@ msgstr "Асистема"
#. --------------------------------------------------------------------
#. Description: storage fields
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1027
+#: sw/inc/strings.hrc:1028
msgctxt "FMT_REG_AUTHOR"
msgid "Author"
msgstr "Автор"
#. aqFVp
-#: sw/inc/strings.hrc:1028
+#: sw/inc/strings.hrc:1029
msgctxt "FMT_REG_TIME"
msgid "Time"
msgstr "Аамҭа"
#. FaZKx
-#: sw/inc/strings.hrc:1029
+#: sw/inc/strings.hrc:1030
msgctxt "FMT_REG_DATE"
msgid "Date"
msgstr "Арыцхә"
@@ -7855,79 +7861,79 @@ msgstr "Арыцхә"
#. --------------------------------------------------------------------
#. Description: formats references
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1033
+#: sw/inc/strings.hrc:1034
msgctxt "FMT_REF_TEXT"
msgid "Referenced text"
msgstr ""
#. eeSAu
-#: sw/inc/strings.hrc:1034
+#: sw/inc/strings.hrc:1035
msgctxt "FMT_REF_PAGE"
msgid "Page number (unstyled)"
msgstr ""
#. MaB3q
-#: sw/inc/strings.hrc:1035
+#: sw/inc/strings.hrc:1036
msgctxt "FMT_REF_CHAPTER"
msgid "Chapter"
msgstr "Ахы"
#. VBMno
-#: sw/inc/strings.hrc:1036
+#: sw/inc/strings.hrc:1037
msgctxt "FMT_REF_UPDOWN"
msgid "“Above”/“Below”"
msgstr ""
#. 96emU
-#: sw/inc/strings.hrc:1037
+#: sw/inc/strings.hrc:1038
msgctxt "FMT_REF_PAGE_PGDSC"
msgid "Page number (styled)"
msgstr ""
#. CQitd
-#: sw/inc/strings.hrc:1038
+#: sw/inc/strings.hrc:1039
msgctxt "FMT_REF_ONLYNUMBER"
msgid "Category and Number"
msgstr "Акатегориеи аномери"
#. BsvCn
-#: sw/inc/strings.hrc:1039
+#: sw/inc/strings.hrc:1040
msgctxt "FMT_REF_ONLYCAPTION"
msgid "Caption Text"
msgstr "Ахьӡ атеқст"
#. P7wiX
-#: sw/inc/strings.hrc:1040
+#: sw/inc/strings.hrc:1041
msgctxt "FMT_REF_ONLYSEQNO"
msgid "Numbering"
msgstr "Аномерркра"
#. QBGit
-#: sw/inc/strings.hrc:1041
+#: sw/inc/strings.hrc:1042
msgctxt "FMT_REF_NUMBER"
msgid "Number"
msgstr "Аномер"
#. CGkV7
-#: sw/inc/strings.hrc:1042
+#: sw/inc/strings.hrc:1043
msgctxt "FMT_REF_NUMBER_NO_CONTEXT"
msgid "Number (no context)"
msgstr "Аномер (контексда)"
#. XgSb3
-#: sw/inc/strings.hrc:1043
+#: sw/inc/strings.hrc:1044
msgctxt "FMT_REF_NUMBER_FULL_CONTEXT"
msgid "Number (full context)"
msgstr "Аномер (ихарҭәаау аконтекст)"
#. zQTNF
-#: sw/inc/strings.hrc:1045
+#: sw/inc/strings.hrc:1046
msgctxt "FMT_REF_WITH_LOWERCASE_HU_ARTICLE"
msgid "Article a/az + "
msgstr "Астатиа a/az + "
#. 97Vs7
-#: sw/inc/strings.hrc:1046
+#: sw/inc/strings.hrc:1047
msgctxt "FMT_REF_WITH_UPPERCASE_HU_ARTICLE"
msgid "Article A/Az + "
msgstr "Астстиа A/Az + "
@@ -7936,31 +7942,31 @@ msgstr "Астстиа A/Az + "
#. --------------------------------------------------------------------
#. Description: placeholder
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1050
+#: sw/inc/strings.hrc:1051
msgctxt "FMT_MARK_TEXT"
msgid "Text"
msgstr "Атеқст"
#. rAQoE
-#: sw/inc/strings.hrc:1051
+#: sw/inc/strings.hrc:1052
msgctxt "FMT_MARK_TABLE"
msgid "Table"
msgstr "Атаблица"
#. biUa2
-#: sw/inc/strings.hrc:1052
+#: sw/inc/strings.hrc:1053
msgctxt "FMT_MARK_FRAME"
msgid "Frame"
msgstr "Афреим"
#. 7mkZb
-#: sw/inc/strings.hrc:1053
+#: sw/inc/strings.hrc:1054
msgctxt "FMT_MARK_GRAFIC"
msgid "Image"
msgstr "Асахьа"
#. GgbFY
-#: sw/inc/strings.hrc:1054
+#: sw/inc/strings.hrc:1055
msgctxt "FMT_MARK_OLE"
msgid "Object"
msgstr "Аобиеқт"
@@ -7969,1548 +7975,1548 @@ msgstr "Аобиеқт"
#. --------------------------------------------------------------------
#. Description: ExchangeStrings for Edit/NameFT
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1058
+#: sw/inc/strings.hrc:1059
msgctxt "STR_COND"
msgid "~Condition"
msgstr "Аҭагылазаашьа"
#. X9cqJ
-#: sw/inc/strings.hrc:1059
+#: sw/inc/strings.hrc:1060
msgctxt "STR_TEXT"
msgid "Then, Else"
msgstr "Анаҩс, Акәымзар"
#. bo8yF
-#: sw/inc/strings.hrc:1060
+#: sw/inc/strings.hrc:1061
msgctxt "STR_DDE_CMD"
msgid "DDE Statement"
msgstr "DDE алаҳәара"
#. LixXA
-#: sw/inc/strings.hrc:1061
+#: sw/inc/strings.hrc:1062
msgctxt "STR_INSTEXT"
msgid "Hidden t~ext"
msgstr "Иҵәахтәуп атеқст"
#. EX3bJ
-#: sw/inc/strings.hrc:1062
+#: sw/inc/strings.hrc:1063
msgctxt "STR_MACNAME"
msgid "~Macro name"
msgstr "Амакрос ахьӡ"
#. dNZtd
-#: sw/inc/strings.hrc:1063
+#: sw/inc/strings.hrc:1064
msgctxt "STR_PROMPT"
msgid "~Reference"
msgstr "Аҵаҳәара"
#. bfRPa
-#: sw/inc/strings.hrc:1064
+#: sw/inc/strings.hrc:1065
msgctxt "STR_COMBCHRS_FT"
msgid "Ch~aracters"
msgstr "Асимволқәа"
#. j2G5G
-#: sw/inc/strings.hrc:1065
+#: sw/inc/strings.hrc:1066
msgctxt "STR_OFFSET"
msgid "O~ffset"
msgstr "Аҭыԥхгара"
#. vEgGo
-#: sw/inc/strings.hrc:1066
+#: sw/inc/strings.hrc:1067
msgctxt "STR_VALUE"
msgid "Value"
msgstr "Аҵакы"
#. YQesU
-#: sw/inc/strings.hrc:1067
+#: sw/inc/strings.hrc:1068
msgctxt "STR_FORMULA"
msgid "Formula"
msgstr "Аформула"
#. Eq5xq
-#: sw/inc/strings.hrc:1068
+#: sw/inc/strings.hrc:1069
#, fuzzy
msgctxt "STR_CUSTOM_FIELD"
msgid "Custom"
msgstr "Даҽакы:"
#. 32NzA
-#: sw/inc/strings.hrc:1070
+#: sw/inc/strings.hrc:1071
msgctxt "STR_CUSTOM_LABEL"
msgid "[User]"
msgstr ""
#. dYQTU
-#: sw/inc/strings.hrc:1072
+#: sw/inc/strings.hrc:1073
msgctxt "STR_HDIST"
msgid "H. Pitch"
msgstr "Ашьаҿа горизонт. "
#. xELZY
-#: sw/inc/strings.hrc:1073
+#: sw/inc/strings.hrc:1074
msgctxt "STR_VDIST"
msgid "V. Pitch"
msgstr "Ашьаҿа верт."
#. F9Ldz
-#: sw/inc/strings.hrc:1074
+#: sw/inc/strings.hrc:1075
msgctxt "STR_WIDTH"
msgid "Width"
msgstr "Аҭбаара"
#. rdxcb
-#: sw/inc/strings.hrc:1075
+#: sw/inc/strings.hrc:1076
msgctxt "STR_HEIGHT"
msgid "Height"
msgstr "Аҳаракыра"
#. DQm2h
-#: sw/inc/strings.hrc:1076
+#: sw/inc/strings.hrc:1077
msgctxt "STR_LEFT"
msgid "Left margin"
msgstr "Армарахьтәи акьыԥшь"
#. imDMU
-#: sw/inc/strings.hrc:1077
+#: sw/inc/strings.hrc:1078
msgctxt "STR_UPPER"
msgid "Top margin"
msgstr ""
#. ayQss
-#: sw/inc/strings.hrc:1078
+#: sw/inc/strings.hrc:1079
msgctxt "STR_COLS"
msgid "Columns"
msgstr "Аиҵагылақәа"
#. 3moLd
-#: sw/inc/strings.hrc:1079
+#: sw/inc/strings.hrc:1080
msgctxt "STR_ROWS"
msgid "Rows"
msgstr "Ацәаҳәақәа"
#. XWMSH
-#: sw/inc/strings.hrc:1081
+#: sw/inc/strings.hrc:1082
msgctxt "STR_WORDCOUNT_HINT"
msgid "Word and character count. Click to open Word Count dialog."
msgstr "Ажәақәеи асимволқәеи рыԥхьаӡара. Шәақәыӷәӷәа, адиалог «Ажәақәа рхыԥхьаӡара»."
#. nxGNq
-#: sw/inc/strings.hrc:1082
+#: sw/inc/strings.hrc:1083
msgctxt "STR_VIEWLAYOUT_ONE"
msgid "Single-page view"
msgstr "Даҟьаклатәи аԥшра"
#. 57ju6
-#: sw/inc/strings.hrc:1083
+#: sw/inc/strings.hrc:1084
msgctxt "STR_VIEWLAYOUT_MULTI"
msgid "Multiple-page view"
msgstr "Амульти-даҟьалатәи аԥшра"
#. tbig8
-#: sw/inc/strings.hrc:1084
+#: sw/inc/strings.hrc:1085
msgctxt "STR_VIEWLAYOUT_BOOK"
msgid "Book view"
msgstr "Ашәҟәытә ԥшра"
#. xBHUG
-#: sw/inc/strings.hrc:1085
+#: sw/inc/strings.hrc:1086
msgctxt "STR_BOOKCTRL_HINT"
msgid "Page number in document. Click to open Go to Page dialog or right-click for bookmark list."
msgstr "Адокумент адаҟьа аномер. Ақәыӷәӷәара иаанартуеит адиалог «Ииастәуп адаҟьахь», арӷьарахьтәи ақәыӷәӷәара - агәылаҵақәа рыхьӡынҵа.."
#. XaF3v
-#: sw/inc/strings.hrc:1086
+#: sw/inc/strings.hrc:1087
msgctxt "STR_BOOKCTRL_HINT_EXTENDED"
msgid "Page number in document (Page number on printed document). Click to open Go to Page dialog."
msgstr "Адокумент аҟны адаҟьа аномер (акьыԥхьраан). Ақәыӷәӷәара иаанартуеит адиалог «Ииастәуп адаҟьахь»."
#. EWtd2
-#: sw/inc/strings.hrc:1087
+#: sw/inc/strings.hrc:1088
msgctxt "STR_TMPLCTRL_HINT"
msgid "Page Style. Right-click to change style or click to open Style dialog."
msgstr "Адаҟьа астиль. Арӷьарахьтәи ақәыӷәӷәара астиль аԥсахразы, ақәыӷәӷәара - адиалог «Астильқәа»"
#. jQAym
#. Strings for textual attributes.
-#: sw/inc/strings.hrc:1090
+#: sw/inc/strings.hrc:1091
msgctxt "STR_DROP_OVER"
msgid "Drop Caps over"
msgstr "Ахалагаранбан аҩадахьы"
#. PLAVt
-#: sw/inc/strings.hrc:1091
+#: sw/inc/strings.hrc:1092
msgctxt "STR_DROP_LINES"
msgid "rows"
msgstr "ацәаҳәақәа"
#. sg6Za
-#: sw/inc/strings.hrc:1092
+#: sw/inc/strings.hrc:1093
msgctxt "STR_NO_DROP_LINES"
msgid "No Drop Caps"
msgstr "Ахалагаранбан ада"
#. gueRC
-#: sw/inc/strings.hrc:1093
+#: sw/inc/strings.hrc:1094
msgctxt "STR_NO_PAGEDESC"
msgid "No page break"
msgstr "Адаҟьақәа реимҟьарада"
#. G3CQN
-#: sw/inc/strings.hrc:1094
+#: sw/inc/strings.hrc:1095
msgctxt "STR_NO_MIRROR"
msgid "Don't mirror"
msgstr "Ианырԥштәӡам"
#. MVEk8
-#: sw/inc/strings.hrc:1095
+#: sw/inc/strings.hrc:1096
msgctxt "STR_VERT_MIRROR"
msgid "Flip vertically"
msgstr "Ианырҧштәуп вертикалла"
#. Dns6t
-#: sw/inc/strings.hrc:1096
+#: sw/inc/strings.hrc:1097
msgctxt "STR_HORI_MIRROR"
msgid "Flip horizontal"
msgstr "Ианырҧштәуп горизонталла"
#. ZUKCy
-#: sw/inc/strings.hrc:1097
+#: sw/inc/strings.hrc:1098
msgctxt "STR_BOTH_MIRROR"
msgid "Horizontal and Vertical Flip"
msgstr "Ианырԥштәуп вертикаллеи горизонталлеи"
#. LoQic
-#: sw/inc/strings.hrc:1098
+#: sw/inc/strings.hrc:1099
msgctxt "STR_MIRROR_TOGGLE"
msgid "+ mirror horizontal on even pages"
msgstr "Горизонталла ианырԥштәуп еиҩшо адаҟьақәа рҟны"
#. kbnTf
-#: sw/inc/strings.hrc:1099
+#: sw/inc/strings.hrc:1100
msgctxt "STR_CHARFMT"
msgid "Character Style"
msgstr "Асимволқәа рстиль"
#. D99ZJ
-#: sw/inc/strings.hrc:1100
+#: sw/inc/strings.hrc:1101
msgctxt "STR_NO_CHARFMT"
msgid "No Character Style"
msgstr "Асимволқәа рстиль ада"
#. fzG3P
-#: sw/inc/strings.hrc:1101
+#: sw/inc/strings.hrc:1102
msgctxt "STR_FOOTER"
msgid "Footer"
msgstr "Ҵаҟатәи аколонтитул"
#. 9RCsQ
-#: sw/inc/strings.hrc:1102
+#: sw/inc/strings.hrc:1103
msgctxt "STR_NO_FOOTER"
msgid "No footer"
msgstr "Ҵаҟатәи аколонтитул ада"
#. zFTin
-#: sw/inc/strings.hrc:1103
+#: sw/inc/strings.hrc:1104
msgctxt "STR_HEADER"
msgid "Header"
msgstr "Хыхтәи аколонтитул"
#. PcYEB
-#: sw/inc/strings.hrc:1104
+#: sw/inc/strings.hrc:1105
msgctxt "STR_NO_HEADER"
msgid "No header"
msgstr "Хыхьтәи аколонтитул ада"
#. 8Jgfg
-#: sw/inc/strings.hrc:1105
+#: sw/inc/strings.hrc:1106
msgctxt "STR_SURROUND_IDEAL"
msgid "Optimal"
msgstr ""
#. HEuGy
-#: sw/inc/strings.hrc:1106
+#: sw/inc/strings.hrc:1107
msgctxt "STR_SURROUND_NONE"
msgid "None"
msgstr ""
#. 4tA4q
-#: sw/inc/strings.hrc:1107
+#: sw/inc/strings.hrc:1108
msgctxt "STR_SURROUND_THROUGH"
msgid "Through"
msgstr ""
#. ypvD6
-#: sw/inc/strings.hrc:1108
+#: sw/inc/strings.hrc:1109
msgctxt "STR_SURROUND_PARALLEL"
msgid "Parallel"
msgstr ""
#. hyEQ5
-#: sw/inc/strings.hrc:1109
+#: sw/inc/strings.hrc:1110
msgctxt "STR_SURROUND_LEFT"
msgid "Before"
msgstr ""
#. bGBtQ
-#: sw/inc/strings.hrc:1110
+#: sw/inc/strings.hrc:1111
msgctxt "STR_SURROUND_RIGHT"
msgid "After"
msgstr ""
#. SrG3D
-#: sw/inc/strings.hrc:1111
+#: sw/inc/strings.hrc:1112
msgctxt "STR_SURROUND_ANCHORONLY"
msgid "(Anchor only)"
msgstr "(Адҳәалара мацара)"
#. 9Ywzb
-#: sw/inc/strings.hrc:1112
+#: sw/inc/strings.hrc:1113
msgctxt "STR_FRM_WIDTH"
msgid "Width:"
msgstr "Аҭбаара:"
#. 2GYT7
-#: sw/inc/strings.hrc:1113
+#: sw/inc/strings.hrc:1114
msgctxt "STR_FRM_FIXEDHEIGHT"
msgid "Fixed height:"
msgstr "Афиксациа зызу аҳаракыра:"
#. QrFMi
-#: sw/inc/strings.hrc:1114
+#: sw/inc/strings.hrc:1115
msgctxt "STR_FRM_MINHEIGHT"
msgid "Min. height:"
msgstr "Имин. аҳаракыра:"
#. kLiYd
-#: sw/inc/strings.hrc:1115
+#: sw/inc/strings.hrc:1116
msgctxt "STR_FLY_AT_PARA"
msgid "to paragraph"
msgstr "абзац ахь"
#. A8nAb
-#: sw/inc/strings.hrc:1116
+#: sw/inc/strings.hrc:1117
msgctxt "STR_FLY_AS_CHAR"
msgid "as character"
msgstr ""
#. Uszmm
-#: sw/inc/strings.hrc:1117
+#: sw/inc/strings.hrc:1118
msgctxt "STR_FLY_AT_CHAR"
msgid "to character"
msgstr ""
#. hDUSa
-#: sw/inc/strings.hrc:1118
+#: sw/inc/strings.hrc:1119
msgctxt "STR_FLY_AT_PAGE"
msgid "to page"
msgstr "Адаҟьахь"
#. JMHRz
-#: sw/inc/strings.hrc:1119
+#: sw/inc/strings.hrc:1120
msgctxt "STR_POS_X"
msgid "X Coordinate:"
msgstr "Акоордината X:"
#. oCZWW
-#: sw/inc/strings.hrc:1120
+#: sw/inc/strings.hrc:1121
msgctxt "STR_POS_Y"
msgid "Y Coordinate:"
msgstr "Акоордината Y:"
#. YNKE6
-#: sw/inc/strings.hrc:1121
+#: sw/inc/strings.hrc:1122
msgctxt "STR_VERT_TOP"
msgid "at top"
msgstr "хыхьла"
#. GPTAu
-#: sw/inc/strings.hrc:1122
+#: sw/inc/strings.hrc:1123
msgctxt "STR_VERT_CENTER"
msgid "Centered vertically"
msgstr "Вертикалла ацентрла"
#. fcpTS
-#: sw/inc/strings.hrc:1123
+#: sw/inc/strings.hrc:1124
msgctxt "STR_VERT_BOTTOM"
msgid "at bottom"
msgstr "ҵаҟала"
#. 37hos
-#: sw/inc/strings.hrc:1124
+#: sw/inc/strings.hrc:1125
msgctxt "STR_LINE_TOP"
msgid "Top of line"
msgstr "Ацәаҳәа ахыхь"
#. MU7hC
-#: sw/inc/strings.hrc:1125
+#: sw/inc/strings.hrc:1126
msgctxt "STR_LINE_CENTER"
msgid "Line centered"
msgstr "Ацәаҳәа агәҭа"
#. ZvEq7
-#: sw/inc/strings.hrc:1126
+#: sw/inc/strings.hrc:1127
msgctxt "STR_LINE_BOTTOM"
msgid "Bottom of line"
msgstr "Ацәаҳәа аҵаҟа"
#. jypsG
-#: sw/inc/strings.hrc:1127
+#: sw/inc/strings.hrc:1128
msgctxt "STR_REGISTER_ON"
msgid "Page line-spacing"
msgstr ""
#. Cui3U
-#: sw/inc/strings.hrc:1128
+#: sw/inc/strings.hrc:1129
msgctxt "STR_REGISTER_OFF"
msgid "Not page line-spacing"
msgstr ""
#. 4RL9X
-#: sw/inc/strings.hrc:1129
+#: sw/inc/strings.hrc:1130
msgctxt "STR_HORI_RIGHT"
msgid "at the right"
msgstr "арыӷьарахь"
#. wzGK7
-#: sw/inc/strings.hrc:1130
+#: sw/inc/strings.hrc:1131
msgctxt "STR_HORI_CENTER"
msgid "Centered horizontally"
msgstr "Горизонталла ацентр ала"
#. ngRmB
-#: sw/inc/strings.hrc:1131
+#: sw/inc/strings.hrc:1132
msgctxt "STR_HORI_LEFT"
msgid "at the left"
msgstr "арымарахь"
#. JyHkM
-#: sw/inc/strings.hrc:1132
+#: sw/inc/strings.hrc:1133
msgctxt "STR_HORI_INSIDE"
msgid "inside"
msgstr "аҩныҵҟа"
#. iXSZZ
-#: sw/inc/strings.hrc:1133
+#: sw/inc/strings.hrc:1134
msgctxt "STR_HORI_OUTSIDE"
msgid "outside"
msgstr "адәныҟа"
#. kDY9Z
-#: sw/inc/strings.hrc:1134
+#: sw/inc/strings.hrc:1135
msgctxt "STR_HORI_FULL"
msgid "Full width"
msgstr "Ихарҭәаау аҭбаара"
#. Hvn8D
-#: sw/inc/strings.hrc:1135
+#: sw/inc/strings.hrc:1136
msgctxt "STR_COLUMNS"
msgid "Columns"
msgstr "Аиҵагылақәа"
#. 6j6TA
-#: sw/inc/strings.hrc:1136
+#: sw/inc/strings.hrc:1137
msgctxt "STR_LINE_WIDTH"
msgid "Separator Width:"
msgstr "Аиҟәыҭхага ҵәаӷәа аҭбаара:"
#. dvdDt
-#: sw/inc/strings.hrc:1137
+#: sw/inc/strings.hrc:1138
msgctxt "STR_MAX_FTN_HEIGHT"
msgid "Max. footnote area:"
msgstr "Албаагақәа имакс. рҵакыра:"
#. BWqF3
-#: sw/inc/strings.hrc:1138
+#: sw/inc/strings.hrc:1139
msgctxt "STR_EDIT_IN_READONLY"
msgid "Editable in read-only document"
msgstr "Изинтәуп ариашара адокумент «аԥхьара мацараз» аҟны"
#. SCL5F
-#: sw/inc/strings.hrc:1139
+#: sw/inc/strings.hrc:1140
msgctxt "STR_LAYOUT_SPLIT"
msgid "Split"
msgstr "Еиҟәшатәуп"
#. CFmBk
-#: sw/inc/strings.hrc:1140
+#: sw/inc/strings.hrc:1141
msgctxt "STR_NUMRULE_ON"
msgid "List Style: (%LISTSTYLENAME)"
msgstr ""
#. HvZBm
-#: sw/inc/strings.hrc:1141
+#: sw/inc/strings.hrc:1142
msgctxt "STR_NUMRULE_OFF"
msgid "List Style: (None)"
msgstr ""
#. QDaFk
-#: sw/inc/strings.hrc:1142
+#: sw/inc/strings.hrc:1143
msgctxt "STR_CONNECT1"
msgid "linked to "
msgstr "Иадҳәалатәуп "
#. rWmT8
-#: sw/inc/strings.hrc:1143
+#: sw/inc/strings.hrc:1144
msgctxt "STR_CONNECT2"
msgid "and "
msgstr "и"
#. H2Kwq
-#: sw/inc/strings.hrc:1144
+#: sw/inc/strings.hrc:1145
msgctxt "STR_LINECOUNT"
msgid "Count lines"
msgstr "Ацәаҳәақәа рыԥхьаӡара"
#. yjSiJ
-#: sw/inc/strings.hrc:1145
+#: sw/inc/strings.hrc:1146
msgctxt "STR_DONTLINECOUNT"
msgid "don't count lines"
msgstr "Ацәаҳәақәа ԥхьаӡатәӡам"
#. HE4BV
-#: sw/inc/strings.hrc:1146
+#: sw/inc/strings.hrc:1147
msgctxt "STR_LINCOUNT_START"
msgid "restart line count with: "
msgstr "Иалагатәуп ацәақәа рыԥхьазара аҟынтә:"
#. 7Q8qC
-#: sw/inc/strings.hrc:1147
+#: sw/inc/strings.hrc:1148
msgctxt "STR_LUMINANCE"
msgid "Brightness: "
msgstr "Ажжара: "
#. sNxPE
-#: sw/inc/strings.hrc:1148
+#: sw/inc/strings.hrc:1149
msgctxt "STR_CHANNELR"
msgid "Red: "
msgstr ""
#. u73NC
-#: sw/inc/strings.hrc:1149
+#: sw/inc/strings.hrc:1150
msgctxt "STR_CHANNELG"
msgid "Green: "
msgstr ""
#. qQsPp
-#: sw/inc/strings.hrc:1150
+#: sw/inc/strings.hrc:1151
msgctxt "STR_CHANNELB"
msgid "Blue: "
msgstr ""
#. BS4nZ
-#: sw/inc/strings.hrc:1151
+#: sw/inc/strings.hrc:1152
msgctxt "STR_CONTRAST"
msgid "Contrast: "
msgstr ""
#. avJBK
-#: sw/inc/strings.hrc:1152
+#: sw/inc/strings.hrc:1153
msgctxt "STR_GAMMA"
msgid "Gamma: "
msgstr ""
#. HQCJZ
-#: sw/inc/strings.hrc:1153
+#: sw/inc/strings.hrc:1154
msgctxt "STR_TRANSPARENCY"
msgid "Transparency: "
msgstr "Аҵәцара: "
#. 5jDK3
-#: sw/inc/strings.hrc:1154
+#: sw/inc/strings.hrc:1155
#, fuzzy
msgctxt "STR_INVERT"
msgid "Invert"
msgstr "Ибжьаргылатәуп"
#. DVSAx
-#: sw/inc/strings.hrc:1155
+#: sw/inc/strings.hrc:1156
msgctxt "STR_INVERT_NOT"
msgid "do not invert"
msgstr "аинвертациа азутәӡам"
#. Z7tXB
-#: sw/inc/strings.hrc:1156
+#: sw/inc/strings.hrc:1157
msgctxt "STR_DRAWMODE"
msgid "Graphics mode: "
msgstr "Аграфикатә режим: "
#. RXuUF
-#: sw/inc/strings.hrc:1157
+#: sw/inc/strings.hrc:1158
msgctxt "STR_DRAWMODE_STD"
msgid "Standard"
msgstr "Истандарту"
#. kbALJ
-#: sw/inc/strings.hrc:1158
+#: sw/inc/strings.hrc:1159
msgctxt "STR_DRAWMODE_GREY"
msgid "Grayscales"
msgstr ""
#. eSHEj
-#: sw/inc/strings.hrc:1159
+#: sw/inc/strings.hrc:1160
msgctxt "STR_DRAWMODE_BLACKWHITE"
msgid "Black & White"
msgstr "Аиқәаҵәа-ашкәакәа"
#. tABTr
-#: sw/inc/strings.hrc:1160
+#: sw/inc/strings.hrc:1161
msgctxt "STR_DRAWMODE_WATERMARK"
msgid "Watermark"
msgstr "Аӡдырга"
#. 8SwC3
-#: sw/inc/strings.hrc:1161
+#: sw/inc/strings.hrc:1162
msgctxt "STR_ROTATION"
msgid "Rotation"
msgstr "Аргьежьра"
#. hWEeF
-#: sw/inc/strings.hrc:1162
+#: sw/inc/strings.hrc:1163
msgctxt "STR_GRID_NONE"
msgid "No grid"
msgstr "Акаҭа ада"
#. HEuEv
-#: sw/inc/strings.hrc:1163
+#: sw/inc/strings.hrc:1164
msgctxt "STR_GRID_LINES_ONLY"
msgid "Grid (lines only)"
msgstr "Акаҭа (аҵәаӷәақәа мацара рзы)"
#. VFgMq
-#: sw/inc/strings.hrc:1164
+#: sw/inc/strings.hrc:1165
msgctxt "STR_GRID_LINES_CHARS"
msgid "Grid (lines and characters)"
msgstr "Акаҭа (аҵәаӷәақәеи асимволқеи рзы)"
#. VRJrB
-#: sw/inc/strings.hrc:1165
+#: sw/inc/strings.hrc:1166
msgctxt "STR_FOLLOW_TEXT_FLOW"
msgid "Follow text flow"
msgstr "Атеқст иашьҭалатәуп"
#. Sb3Je
-#: sw/inc/strings.hrc:1166
+#: sw/inc/strings.hrc:1167
msgctxt "STR_DONT_FOLLOW_TEXT_FLOW"
msgid "Do not follow text flow"
msgstr "Атеқст иашьҭалатәӡап"
#. yXFKP
-#: sw/inc/strings.hrc:1167
+#: sw/inc/strings.hrc:1168
msgctxt "STR_CONNECT_BORDER_ON"
msgid "Merge borders"
msgstr "Еидҵатәуп аҿыкәырша"
#. vwHbS
-#: sw/inc/strings.hrc:1168
+#: sw/inc/strings.hrc:1169
msgctxt "STR_CONNECT_BORDER_OFF"
msgid "Do not merge borders"
msgstr "Еидҵатәӡам аҿыкәырша"
#. 3874B
-#: sw/inc/strings.hrc:1170
+#: sw/inc/strings.hrc:1171
msgctxt "ST_TBL"
msgid "Table"
msgstr "Атаблица"
#. T9JAj
-#: sw/inc/strings.hrc:1171
+#: sw/inc/strings.hrc:1172
msgctxt "ST_FRM"
msgid "Frame"
msgstr ""
#. Fsnm6
-#: sw/inc/strings.hrc:1172
+#: sw/inc/strings.hrc:1173
msgctxt "ST_PGE"
msgid "Page"
msgstr "Адаҟьа"
#. pKFCz
-#: sw/inc/strings.hrc:1173
+#: sw/inc/strings.hrc:1174
msgctxt "ST_DRW"
msgid "Drawing"
msgstr "Асахьа"
#. amiSY
-#: sw/inc/strings.hrc:1174
+#: sw/inc/strings.hrc:1175
msgctxt "ST_CTRL"
msgid "Control"
msgstr "Анапхгара аелемент"
#. GEw9u
-#: sw/inc/strings.hrc:1175
+#: sw/inc/strings.hrc:1176
#, fuzzy
msgctxt "ST_REG"
msgid "Section"
msgstr "апараграф"
#. bEiyL
-#: sw/inc/strings.hrc:1176
+#: sw/inc/strings.hrc:1177
msgctxt "ST_BKM"
msgid "Bookmark"
msgstr "Агәылаҵа"
#. 6gXCo
-#: sw/inc/strings.hrc:1177
+#: sw/inc/strings.hrc:1178
msgctxt "ST_GRF"
msgid "Graphics"
msgstr "Асахьа"
#. d5eSc
-#: sw/inc/strings.hrc:1178
+#: sw/inc/strings.hrc:1179
msgctxt "ST_OLE"
msgid "OLE object"
msgstr "OLE аобиеқт"
#. h5QQ8
-#: sw/inc/strings.hrc:1179
+#: sw/inc/strings.hrc:1180
msgctxt "ST_OUTL"
msgid "Headings"
msgstr "Ахқәа"
#. Cbktp
-#: sw/inc/strings.hrc:1180
+#: sw/inc/strings.hrc:1181
msgctxt "ST_SEL"
msgid "Selection"
msgstr "Алкаара"
#. nquvS
-#: sw/inc/strings.hrc:1181
+#: sw/inc/strings.hrc:1182
msgctxt "ST_FTN"
msgid "Footnote"
msgstr "Албаага"
#. GpAUo
-#: sw/inc/strings.hrc:1182
+#: sw/inc/strings.hrc:1183
msgctxt "ST_MARK"
msgid "Reminder"
msgstr "Агәаларшәара"
#. nDFKa
-#: sw/inc/strings.hrc:1183
+#: sw/inc/strings.hrc:1184
msgctxt "ST_POSTIT"
msgid "Comment"
msgstr "Акомментари"
#. qpbDE
-#: sw/inc/strings.hrc:1184
+#: sw/inc/strings.hrc:1185
msgctxt "ST_SRCH_REP"
msgid "Repeat search"
msgstr "Даҽазнык аԥшаара"
#. ipxfH
-#: sw/inc/strings.hrc:1185
+#: sw/inc/strings.hrc:1186
msgctxt "ST_INDEX_ENTRY"
msgid "Index entry"
msgstr ""
#. sfmff
-#: sw/inc/strings.hrc:1186
+#: sw/inc/strings.hrc:1187
msgctxt "ST_TABLE_FORMULA"
msgid "Table formula"
msgstr "Атаблица аформула"
#. DtkuT
-#: sw/inc/strings.hrc:1187
+#: sw/inc/strings.hrc:1188
msgctxt "ST_TABLE_FORMULA_ERROR"
msgid "Wrong table formula"
msgstr "Атаблица аформула иашаӡам"
#. A6Vgk
-#: sw/inc/strings.hrc:1188
+#: sw/inc/strings.hrc:1189
msgctxt "ST_RECENCY"
msgid "Recency"
msgstr ""
#. pCp7u
-#: sw/inc/strings.hrc:1189
+#: sw/inc/strings.hrc:1190
msgctxt "ST_FIELD"
msgid "Field"
msgstr ""
#. LYuHA
-#: sw/inc/strings.hrc:1190
+#: sw/inc/strings.hrc:1191
msgctxt "ST_FIELD_BYTYPE"
msgid "Field by type"
msgstr ""
#. ECFxw
#. Strings for the quickhelp of the View-PgUp/Down-Buttons
-#: sw/inc/strings.hrc:1192
+#: sw/inc/strings.hrc:1193
msgctxt "STR_IMGBTN_TBL_DOWN"
msgid "Next table"
msgstr "Анаҩстәи атаблица"
#. yhnpi
-#: sw/inc/strings.hrc:1193
+#: sw/inc/strings.hrc:1194
msgctxt "STR_IMGBTN_FRM_DOWN"
msgid "Next frame"
msgstr ""
#. M4BCA
-#: sw/inc/strings.hrc:1194
+#: sw/inc/strings.hrc:1195
msgctxt "STR_IMGBTN_PGE_DOWN"
msgid "Next page"
msgstr "Анаҩстәи адаҟьа"
#. UWeq4
-#: sw/inc/strings.hrc:1195
+#: sw/inc/strings.hrc:1196
msgctxt "STR_IMGBTN_DRW_DOWN"
msgid "Next drawing"
msgstr "Анаҩстәи асахьа"
#. ZVCrD
-#: sw/inc/strings.hrc:1196
+#: sw/inc/strings.hrc:1197
msgctxt "STR_IMGBTN_CTRL_DOWN"
msgid "Next control"
msgstr "Анаҩстәи анапхгара аелемент"
#. NGAqr
-#: sw/inc/strings.hrc:1197
+#: sw/inc/strings.hrc:1198
#, fuzzy
msgctxt "STR_IMGBTN_REG_DOWN"
msgid "Next section"
msgstr "Анаҩстәи алкаара"
#. Mwcvm
-#: sw/inc/strings.hrc:1198
+#: sw/inc/strings.hrc:1199
msgctxt "STR_IMGBTN_BKM_DOWN"
msgid "Next bookmark"
msgstr "Анаҩстәи агәылаҵа"
#. xbxDs
-#: sw/inc/strings.hrc:1199
+#: sw/inc/strings.hrc:1200
msgctxt "STR_IMGBTN_GRF_DOWN"
msgid "Next graphic"
msgstr "Анаҩстәи асахьа"
#. 4ovAF
-#: sw/inc/strings.hrc:1200
+#: sw/inc/strings.hrc:1201
msgctxt "STR_IMGBTN_OLE_DOWN"
msgid "Next OLE object"
msgstr "OLE анаҩстәи аобиеқт"
#. YzK6w
-#: sw/inc/strings.hrc:1201
+#: sw/inc/strings.hrc:1202
msgctxt "STR_IMGBTN_OUTL_DOWN"
msgid "Next heading"
msgstr "Анаҩстәи ахы"
#. skdRc
-#: sw/inc/strings.hrc:1202
+#: sw/inc/strings.hrc:1203
msgctxt "STR_IMGBTN_SEL_DOWN"
msgid "Next selection"
msgstr "Анаҩстәи алкаара"
#. RBFga
-#: sw/inc/strings.hrc:1203
+#: sw/inc/strings.hrc:1204
msgctxt "STR_IMGBTN_FTN_DOWN"
msgid "Next footnote"
msgstr "Анаҩстәи албаага"
#. GNLrx
-#: sw/inc/strings.hrc:1204
+#: sw/inc/strings.hrc:1205
msgctxt "STR_IMGBTN_MARK_DOWN"
msgid "Next Reminder"
msgstr "Анаҩстәи агәаларшәара"
#. mFCfp
-#: sw/inc/strings.hrc:1205
+#: sw/inc/strings.hrc:1206
msgctxt "STR_IMGBTN_POSTIT_DOWN"
msgid "Next Comment"
msgstr "Анаҩстәи акомментари"
#. gbnwp
-#: sw/inc/strings.hrc:1206
+#: sw/inc/strings.hrc:1207
msgctxt "STR_IMGBTN_SRCH_REP_DOWN"
msgid "Continue search forward"
msgstr "Иацҵатәуп аԥшаара ԥхьаҟа"
#. TXYkA
-#: sw/inc/strings.hrc:1207
+#: sw/inc/strings.hrc:1208
msgctxt "STR_IMGBTN_INDEX_ENTRY_DOWN"
msgid "Next index entry"
msgstr "Анаҩстәи аҭыԥрбага аелемент"
#. EyvbV
-#: sw/inc/strings.hrc:1208
+#: sw/inc/strings.hrc:1209
msgctxt "STR_IMGBTN_TBL_UP"
msgid "Previous table"
msgstr "Аҧхьатәи атаблица"
#. cC5vJ
-#: sw/inc/strings.hrc:1209
+#: sw/inc/strings.hrc:1210
msgctxt "STR_IMGBTN_FRM_UP"
msgid "Previous frame"
msgstr ""
#. eQPFD
-#: sw/inc/strings.hrc:1210
+#: sw/inc/strings.hrc:1211
msgctxt "STR_IMGBTN_PGE_UP"
msgid "Previous page"
msgstr "Аҧхьатәи адаҟьа"
#. p5jbU
-#: sw/inc/strings.hrc:1211
+#: sw/inc/strings.hrc:1212
msgctxt "STR_IMGBTN_DRW_UP"
msgid "Previous drawing"
msgstr "Аԥхьатәи асахьа"
#. 2WMmZ
-#: sw/inc/strings.hrc:1212
+#: sw/inc/strings.hrc:1213
msgctxt "STR_IMGBTN_CTRL_UP"
msgid "Previous control"
msgstr "Аԥхьатәи анапхгара аелемент"
#. 6uGDP
-#: sw/inc/strings.hrc:1213
+#: sw/inc/strings.hrc:1214
#, fuzzy
msgctxt "STR_IMGBTN_REG_UP"
msgid "Previous section"
msgstr "Аҧхьатәи алкаара"
#. YYCtk
-#: sw/inc/strings.hrc:1214
+#: sw/inc/strings.hrc:1215
msgctxt "STR_IMGBTN_BKM_UP"
msgid "Previous bookmark"
msgstr "Аԥхьатәи агәылаҵа"
#. nFLdX
-#: sw/inc/strings.hrc:1215
+#: sw/inc/strings.hrc:1216
msgctxt "STR_IMGBTN_GRF_UP"
msgid "Previous graphic"
msgstr "Аԥхьатәи асахьа"
#. VuxvB
-#: sw/inc/strings.hrc:1216
+#: sw/inc/strings.hrc:1217
msgctxt "STR_IMGBTN_OLE_UP"
msgid "Previous OLE object"
msgstr "OLE аԥхьатәи аобиект"
#. QSuct
-#: sw/inc/strings.hrc:1217
+#: sw/inc/strings.hrc:1218
msgctxt "STR_IMGBTN_OUTL_UP"
msgid "Previous heading"
msgstr ""
#. CzLBr
-#: sw/inc/strings.hrc:1218
+#: sw/inc/strings.hrc:1219
msgctxt "STR_IMGBTN_SEL_UP"
msgid "Previous selection"
msgstr "Аҧхьатәи алкаара"
#. B7PoL
-#: sw/inc/strings.hrc:1219
+#: sw/inc/strings.hrc:1220
msgctxt "STR_IMGBTN_FTN_UP"
msgid "Previous footnote"
msgstr "Аԥхьатәи албаага"
#. AgtLD
-#: sw/inc/strings.hrc:1220
+#: sw/inc/strings.hrc:1221
msgctxt "STR_IMGBTN_MARK_UP"
msgid "Previous Reminder"
msgstr "Аԥхьатәи агәаларшәара"
#. GJQ6F
-#: sw/inc/strings.hrc:1221
+#: sw/inc/strings.hrc:1222
msgctxt "STR_IMGBTN_POSTIT_UP"
msgid "Previous Comment"
msgstr "Аԥхьатәи акомментари"
#. GWnfD
-#: sw/inc/strings.hrc:1222
+#: sw/inc/strings.hrc:1223
msgctxt "STR_IMGBTN_SRCH_REP_UP"
msgid "Continue search backwards"
msgstr "Иацҵатәуп аԥшаара шьҭахьҟа"
#. uDtcG
-#: sw/inc/strings.hrc:1223
+#: sw/inc/strings.hrc:1224
msgctxt "STR_IMGBTN_INDEX_ENTRY_UP"
msgid "Previous index entry"
msgstr "Аԥхьатәи аҭыԥрбага аелемент"
#. VR6DX
-#: sw/inc/strings.hrc:1224
+#: sw/inc/strings.hrc:1225
msgctxt "STR_IMGBTN_TBLFML_UP"
msgid "Previous table formula"
msgstr "Атаблица аҧхьатәи аформула"
#. GqESF
-#: sw/inc/strings.hrc:1225
+#: sw/inc/strings.hrc:1226
msgctxt "STR_IMGBTN_TBLFML_DOWN"
msgid "Next table formula"
msgstr "Атаблица анаҩстәи аформула"
#. gBgxo
-#: sw/inc/strings.hrc:1226
+#: sw/inc/strings.hrc:1227
msgctxt "STR_IMGBTN_TBLFML_ERR_UP"
msgid "Previous faulty table formula"
msgstr "Атаблица иаҧхьааиуа игхатәу аформула"
#. UAon9
-#: sw/inc/strings.hrc:1227
+#: sw/inc/strings.hrc:1228
msgctxt "STR_IMGBTN_TBLFML_ERR_DOWN"
msgid "Next faulty table formula"
msgstr "Атаблица анаҩстәи игхатәу аформула"
#. L2Apv
-#: sw/inc/strings.hrc:1228
+#: sw/inc/strings.hrc:1229
msgctxt "STR_IMGBTN_RECENCY_UP"
msgid "Go back"
msgstr ""
#. jCsGs
-#: sw/inc/strings.hrc:1229
+#: sw/inc/strings.hrc:1230
msgctxt "STR_IMGBTN_RECENCY_DOWN"
msgid "Go forward"
msgstr ""
#. o3BBz
-#: sw/inc/strings.hrc:1230
+#: sw/inc/strings.hrc:1231
msgctxt "STR_IMGBTN_FIELD_UP"
msgid "Previous field"
msgstr ""
#. bQ33Z
-#: sw/inc/strings.hrc:1231
+#: sw/inc/strings.hrc:1232
msgctxt "STR_IMGBTN_FIELD_DOWN"
msgid "Next field"
msgstr ""
#. bhUaK
-#: sw/inc/strings.hrc:1232
+#: sw/inc/strings.hrc:1233
msgctxt "STR_IMGBTN_FIELD_BYTYPE_UP"
msgid "Previous '%FIELDTYPE' field"
msgstr ""
#. A8HWi
-#: sw/inc/strings.hrc:1233
+#: sw/inc/strings.hrc:1234
msgctxt "STR_IMGBTN_FIELD_BYTYPE_DOWN"
msgid "Next '%FIELDTYPE' field"
msgstr ""
#. hSYa3
-#: sw/inc/strings.hrc:1235
+#: sw/inc/strings.hrc:1236
#, fuzzy
msgctxt "STR_REDLINE_INSERT"
msgid "Inserted"
msgstr "Ибжьаргылатәуп"
#. LnFkq
-#: sw/inc/strings.hrc:1236
+#: sw/inc/strings.hrc:1237
msgctxt "STR_REDLINE_DELETE"
msgid "Deleted"
msgstr "Ианыхуп"
#. cTNEn
-#: sw/inc/strings.hrc:1237
+#: sw/inc/strings.hrc:1238
msgctxt "STR_REDLINE_FORMAT"
msgid "Formatted"
msgstr "Иформатркуп"
#. YWr7C
-#: sw/inc/strings.hrc:1238
+#: sw/inc/strings.hrc:1239
msgctxt "STR_REDLINE_TABLE"
msgid "Table changed"
msgstr "Атаблица ҧсахуп"
#. 6xVDN
-#: sw/inc/strings.hrc:1239
+#: sw/inc/strings.hrc:1240
msgctxt "STR_REDLINE_FMTCOLL"
msgid "Applied Paragraph Styles"
msgstr "Ихархәоуп абзац астиль"
#. 32AND
-#: sw/inc/strings.hrc:1240
+#: sw/inc/strings.hrc:1241
msgctxt "STR_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr "Абзац аформат ҧсахуп"
#. wLDkj
-#: sw/inc/strings.hrc:1241
+#: sw/inc/strings.hrc:1242
msgctxt "STR_REDLINE_TABLE_ROW_INSERT"
msgid "Row Inserted"
msgstr "Ацәаҳәа ҭаргылоуп"
#. Eb5Gb
-#: sw/inc/strings.hrc:1242
+#: sw/inc/strings.hrc:1243
msgctxt "STR_REDLINE_TABLE_ROW_DELETE"
msgid "Row Deleted"
msgstr "Ацәаҳәа аныхуп"
#. i5ZJt
-#: sw/inc/strings.hrc:1243
+#: sw/inc/strings.hrc:1244
msgctxt "STR_REDLINE_TABLE_CELL_INSERT"
msgid "Cell Inserted"
msgstr "Абларҭа ҭаргылоуп"
#. 4gE3z
-#: sw/inc/strings.hrc:1244
+#: sw/inc/strings.hrc:1245
msgctxt "STR_REDLINE_TABLE_CELL_DELETE"
msgid "Cell Deleted"
msgstr "Абларҭа аныхуп"
#. DRCyp
-#: sw/inc/strings.hrc:1245
+#: sw/inc/strings.hrc:1246
msgctxt "STR_ENDNOTE"
msgid "Endnote: "
msgstr "Анҵәамҭатә лбаага: "
#. qpW2q
-#: sw/inc/strings.hrc:1246
+#: sw/inc/strings.hrc:1247
msgctxt "STR_FTNNOTE"
msgid "Footnote: "
msgstr "Албаага: "
#. 3RFUd
-#: sw/inc/strings.hrc:1247
+#: sw/inc/strings.hrc:1248
msgctxt "STR_SMARTTAG_CLICK"
msgid "%s-click to open Smart Tag menu"
msgstr "%s-ақыәӷәӷәара смарт-тегқәа рыхкынҵа аартразы"
#. QCD36
-#: sw/inc/strings.hrc:1248
+#: sw/inc/strings.hrc:1249
msgctxt "STR_HEADER_TITLE"
msgid "Header (%1)"
msgstr "Хыхьтәи аколонтитул (%1)"
#. AYjgB
-#: sw/inc/strings.hrc:1249
+#: sw/inc/strings.hrc:1250
msgctxt "STR_FIRST_HEADER_TITLE"
msgid "First Page Header (%1)"
msgstr "Актәи адаҟьа хыхьтәи аколонтитул (%1)"
#. qVX2k
-#: sw/inc/strings.hrc:1250
+#: sw/inc/strings.hrc:1251
msgctxt "STR_LEFT_HEADER_TITLE"
msgid "Left Page Header (%1)"
msgstr "Армарахьтәи адаҟьа хыхьтәи аколонтитул (%1)"
#. DSg3b
-#: sw/inc/strings.hrc:1251
+#: sw/inc/strings.hrc:1252
msgctxt "STR_RIGHT_HEADER_TITLE"
msgid "Right Page Header (%1)"
msgstr "Арӷьарахьтәи адаҟьа хыхьтәи аколонтитул (%1)"
#. 6GzuM
-#: sw/inc/strings.hrc:1252
+#: sw/inc/strings.hrc:1253
msgctxt "STR_FOOTER_TITLE"
msgid "Footer (%1)"
msgstr "Ҵаҟатәи аколонтитул (%1)"
#. FDVNH
-#: sw/inc/strings.hrc:1253
+#: sw/inc/strings.hrc:1254
msgctxt "STR_FIRST_FOOTER_TITLE"
msgid "First Page Footer (%1)"
msgstr "Актәи адаҟьа ҵаҟатәи аколонтитул (%1)"
#. SL7r3
-#: sw/inc/strings.hrc:1254
+#: sw/inc/strings.hrc:1255
msgctxt "STR_LEFT_FOOTER_TITLE"
msgid "Left Page Footer (%1)"
msgstr "Армарахьтәи адаҟьа ҵаҟатәи аколонтитул (%1)"
#. CBvih
-#: sw/inc/strings.hrc:1255
+#: sw/inc/strings.hrc:1256
msgctxt "STR_RIGHT_FOOTER_TITLE"
msgid "Right Page Footer (%1)"
msgstr "Арӷьарахьтәи адаҟьа ҵаҟатәи аколонтитул (%1)"
#. s8v3h
-#: sw/inc/strings.hrc:1256
+#: sw/inc/strings.hrc:1257
msgctxt "STR_DELETE_HEADER"
msgid "Delete Header..."
msgstr "Ианыхтәуп хыхьтәи аколонтитул..."
#. wL3Fr
-#: sw/inc/strings.hrc:1257
+#: sw/inc/strings.hrc:1258
#, fuzzy
msgctxt "STR_FORMAT_HEADER"
msgid "Format Header..."
msgstr "Адаҟьа аформат"
#. DrAUe
-#: sw/inc/strings.hrc:1258
+#: sw/inc/strings.hrc:1259
msgctxt "STR_DELETE_FOOTER"
msgid "Delete Footer..."
msgstr "Ианыхтәуп ҵаҟатәи аколонтитул..."
#. 9Xgou
-#: sw/inc/strings.hrc:1259
+#: sw/inc/strings.hrc:1260
msgctxt "STR_FORMAT_FOOTER"
msgid "Format Footer..."
msgstr "Иформатрктәуп ҵаҟатәи аколонтитул..."
#. ApT5B
-#: sw/inc/strings.hrc:1261
+#: sw/inc/strings.hrc:1262
msgctxt "STR_UNFLOAT_TABLE"
msgid "Un-float Table"
msgstr ""
#. wVAZJ
-#: sw/inc/strings.hrc:1263
+#: sw/inc/strings.hrc:1264
msgctxt "STR_PAGE_BREAK_BUTTON"
msgid "Edit page break"
msgstr ""
#. uvDKE
-#: sw/inc/strings.hrc:1265
+#: sw/inc/strings.hrc:1266
msgctxt "STR_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "Асахьа аартра ауам"
#. iJuAv
-#: sw/inc/strings.hrc:1266
+#: sw/inc/strings.hrc:1267
msgctxt "STR_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr "Асахьа аҧхьара ауам"
#. Bwwho
-#: sw/inc/strings.hrc:1267
+#: sw/inc/strings.hrc:1268
msgctxt "STR_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr "Асахьа идырым аформат"
#. bfog5
-#: sw/inc/strings.hrc:1268
+#: sw/inc/strings.hrc:1269
msgctxt "STR_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr "Агрфикатә фаил ари аверсиа аднакылашом"
#. xy4Vm
-#: sw/inc/strings.hrc:1269
+#: sw/inc/strings.hrc:1270
msgctxt "STR_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr "Иԥшаам асахьа афильтр"
#. tEqyq
-#: sw/inc/strings.hrc:1270
+#: sw/inc/strings.hrc:1271
msgctxt "STR_GRFILTER_TOOBIG"
msgid "Not enough memory to insert the image."
msgstr "Асахьа аҭаргыларазы иазхом агәынкылара."
#. 5ihue
-#: sw/inc/strings.hrc:1271
+#: sw/inc/strings.hrc:1272
msgctxt "STR_INSERT_GRAPHIC"
msgid "Insert Image"
msgstr "Ибжьаргылатәуп асахьа"
#. GWzLN
-#: sw/inc/strings.hrc:1272
+#: sw/inc/strings.hrc:1273
msgctxt "STR_REDLINE_COMMENT"
msgid "Comment: "
msgstr "Акомментари:"
#. CoJc8
-#: sw/inc/strings.hrc:1273
+#: sw/inc/strings.hrc:1274
msgctxt "STR_REDLINE_INSERTED"
msgid "Insertion"
msgstr "Аҭаргылара"
#. dfMEF
-#: sw/inc/strings.hrc:1274
+#: sw/inc/strings.hrc:1275
msgctxt "STR_REDLINE_DELETED"
msgid "Deletion"
msgstr "Аныхра"
#. NytQQ
-#: sw/inc/strings.hrc:1275
+#: sw/inc/strings.hrc:1276
msgctxt "STR_REDLINE_AUTOFMT"
msgid "AutoCorrect"
msgstr "Автоҧсахра"
#. YRAQL
-#: sw/inc/strings.hrc:1276
+#: sw/inc/strings.hrc:1277
msgctxt "STR_REDLINE_FORMATTED"
msgid "Formats"
msgstr "Аформатқәа"
#. ELCVU
-#: sw/inc/strings.hrc:1277
+#: sw/inc/strings.hrc:1278
msgctxt "STR_REDLINE_TABLECHG"
msgid "Table Changes"
msgstr "Атаблица аредакциазура"
#. PzfQF
-#: sw/inc/strings.hrc:1278
+#: sw/inc/strings.hrc:1279
msgctxt "STR_REDLINE_FMTCOLLSET"
msgid "Applied Paragraph Styles"
msgstr "Ихархәоуп абзац астиль"
#. sgEbW
-#: sw/inc/strings.hrc:1279
+#: sw/inc/strings.hrc:1280
msgctxt "STR_PAGE"
msgid "Page "
msgstr "Адаҟьа "
#. 3DpEx
-#: sw/inc/strings.hrc:1280
+#: sw/inc/strings.hrc:1281
msgctxt "STR_PAGE_COUNT"
msgid "Page %1 of %2"
msgstr "Адаҟьа %1 %2 аҟынтәи"
#. HSbzS
-#: sw/inc/strings.hrc:1281
+#: sw/inc/strings.hrc:1282
msgctxt "STR_PAGE_COUNT_CUSTOM"
msgid "Page %1 of %2 (Page %3)"
msgstr "Адаҟьа %1 %2 аҟынтәи (адаҟьа %3)"
#. a7tDc
-#: sw/inc/strings.hrc:1282
+#: sw/inc/strings.hrc:1283
msgctxt "STR_PAGE_COUNT_PRINTED"
msgid "Page %1 of %2 (Page %3 of %4 to print)"
msgstr ""
#. KjML8
#. Strings for gallery/background
-#: sw/inc/strings.hrc:1284
+#: sw/inc/strings.hrc:1285
msgctxt "STR_SWBG_PARAGRAPH"
msgid "Paragraph"
msgstr "Абзац"
#. aAtmp
-#: sw/inc/strings.hrc:1285
+#: sw/inc/strings.hrc:1286
msgctxt "STR_SWBG_GRAPHIC"
msgid "Image"
msgstr "Асахьа"
#. UBDMK
-#: sw/inc/strings.hrc:1286
+#: sw/inc/strings.hrc:1287
msgctxt "STR_SWBG_OLE"
msgid "OLE object"
msgstr "OLE-аобиеқт"
#. xEWbo
-#: sw/inc/strings.hrc:1287
+#: sw/inc/strings.hrc:1288
msgctxt "STR_SWBG_FRAME"
msgid "Frame"
msgstr "Афреим"
#. hfJns
-#: sw/inc/strings.hrc:1288
+#: sw/inc/strings.hrc:1289
msgctxt "STR_SWBG_TABLE"
msgid "Table"
msgstr "Атаблица"
#. GRqNY
-#: sw/inc/strings.hrc:1289
+#: sw/inc/strings.hrc:1290
msgctxt "STR_SWBG_TABLE_ROW"
msgid "Table row"
msgstr "Атаблица ацәаҳәа"
#. CDQY4
-#: sw/inc/strings.hrc:1290
+#: sw/inc/strings.hrc:1291
msgctxt "STR_SWBG_TABLE_CELL"
msgid "Table cell"
msgstr "Атаблица абларҭа"
#. 2Db9T
-#: sw/inc/strings.hrc:1291
+#: sw/inc/strings.hrc:1292
msgctxt "STR_SWBG_PAGE"
msgid "Page"
msgstr "Адаҟьа"
#. 63FuG
-#: sw/inc/strings.hrc:1292
+#: sw/inc/strings.hrc:1293
msgctxt "STR_SWBG_HEADER"
msgid "Header"
msgstr "Хыхтәи аколонтитул"
#. aDuAY
-#: sw/inc/strings.hrc:1293
+#: sw/inc/strings.hrc:1294
msgctxt "STR_SWBG_FOOTER"
msgid "Footer"
msgstr "Ҵаҟатәи аколонтитул"
#. uAp9i
#. End: strings for gallery/background
-#: sw/inc/strings.hrc:1296
+#: sw/inc/strings.hrc:1297
msgctxt "STR_WRITER_WEBDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION HTML Document"
msgstr "HTML (%PRODUCTNAME %PRODUCTVERSION) адокумент"
#. y2GBv
-#: sw/inc/strings.hrc:1298
+#: sw/inc/strings.hrc:1299
msgctxt "STR_TITLE"
msgid "Title"
msgstr "Ахы"
#. AipGR
-#: sw/inc/strings.hrc:1299
+#: sw/inc/strings.hrc:1300
msgctxt "STR_ALPHA"
msgid "Separator"
msgstr "Аиҟәшага"
#. CoSEf
-#: sw/inc/strings.hrc:1300
+#: sw/inc/strings.hrc:1301
msgctxt "STR_LEVEL"
msgid "Level "
msgstr "Аҩаӡара "
#. JdTF4
-#: sw/inc/strings.hrc:1301
+#: sw/inc/strings.hrc:1302
msgctxt "STR_FILE_NOT_FOUND"
msgid "The file, \"%1\" in the \"%2\" path could not be found."
msgstr "Афаил «%1» аԥшаара амуит «%2» амҩа ала."
#. zRWDZ
-#: sw/inc/strings.hrc:1302
+#: sw/inc/strings.hrc:1303
msgctxt "STR_USER_DEFINED_INDEX"
msgid "User-Defined Index"
msgstr "Ахархәаҩ иҭыԥрбага"
#. t5uWs
-#: sw/inc/strings.hrc:1303
+#: sw/inc/strings.hrc:1304
msgctxt "STR_NOSORTKEY"
msgid "<None>"
msgstr "<мап>"
#. vSSnJ
-#: sw/inc/strings.hrc:1304
+#: sw/inc/strings.hrc:1305
msgctxt "STR_NO_CHAR_STYLE"
msgid "<None>"
msgstr "<мап>"
#. NSx98
-#: sw/inc/strings.hrc:1305
+#: sw/inc/strings.hrc:1306
msgctxt "STR_DELIM"
msgid "S"
msgstr ""
#. hK8CX
-#: sw/inc/strings.hrc:1306
+#: sw/inc/strings.hrc:1307
msgctxt "STR_TOKEN_ENTRY_NO"
msgid "E#"
msgstr ""
#. 8EgTx
-#: sw/inc/strings.hrc:1307
+#: sw/inc/strings.hrc:1308
msgctxt "STR_TOKEN_ENTRY"
msgid "E"
msgstr ""
#. gxt8B
-#: sw/inc/strings.hrc:1308
+#: sw/inc/strings.hrc:1309
msgctxt "STR_TOKEN_TAB_STOP"
msgid "T"
msgstr ""
#. pGAb4
-#: sw/inc/strings.hrc:1309
+#: sw/inc/strings.hrc:1310
msgctxt "STR_TOKEN_PAGE_NUMS"
msgid "#"
msgstr ""
#. teDm3
-#: sw/inc/strings.hrc:1310
+#: sw/inc/strings.hrc:1311
msgctxt "STR_TOKEN_CHAPTER_INFO"
msgid "CI"
msgstr ""
#. XWaFn
-#: sw/inc/strings.hrc:1311
+#: sw/inc/strings.hrc:1312
msgctxt "STR_TOKEN_LINK_START"
msgid "LS"
msgstr ""
#. xp6D6
-#: sw/inc/strings.hrc:1312
+#: sw/inc/strings.hrc:1313
msgctxt "STR_TOKEN_LINK_END"
msgid "LE"
msgstr ""
#. AogDK
-#: sw/inc/strings.hrc:1313
+#: sw/inc/strings.hrc:1314
msgctxt "STR_TOKEN_AUTHORITY"
msgid "A"
msgstr ""
#. 5A4jw
-#: sw/inc/strings.hrc:1314
+#: sw/inc/strings.hrc:1315
msgctxt "STR_TOKEN_HELP_ENTRY_NO"
msgid "Chapter number"
msgstr "Ахы аномер"
#. FH365
-#: sw/inc/strings.hrc:1315
+#: sw/inc/strings.hrc:1316
msgctxt "STR_TOKEN_HELP_ENTRY"
msgid "Entry"
msgstr "Аелемент"
#. xZjtZ
-#: sw/inc/strings.hrc:1316
+#: sw/inc/strings.hrc:1317
msgctxt "STR_TOKEN_HELP_TAB_STOP"
msgid "Tab stop"
msgstr "Атабулиациа ашьаҿа"
#. aXW8y
-#: sw/inc/strings.hrc:1317
+#: sw/inc/strings.hrc:1318
msgctxt "STR_TOKEN_HELP_TEXT"
msgid "Text"
msgstr "Атеқсттә"
#. MCUd2
-#: sw/inc/strings.hrc:1318
+#: sw/inc/strings.hrc:1319
msgctxt "STR_TOKEN_HELP_PAGE_NUMS"
msgid "Page number"
msgstr "Адаҟьа аномер"
#. pXqw3
-#: sw/inc/strings.hrc:1319
+#: sw/inc/strings.hrc:1320
msgctxt "STR_TOKEN_HELP_CHAPTER_INFO"
msgid "Chapter info"
msgstr "Ахы аинформациа"
#. DRBSD
-#: sw/inc/strings.hrc:1320
+#: sw/inc/strings.hrc:1321
msgctxt "STR_TOKEN_HELP_LINK_START"
msgid "Hyperlink start"
msgstr "Агиперзхьарҧш алагамҭа"
#. Ytn5g
-#: sw/inc/strings.hrc:1321
+#: sw/inc/strings.hrc:1322
msgctxt "STR_TOKEN_HELP_LINK_END"
msgid "Hyperlink end"
msgstr "Агиперзхьарҧш анҵәамҭа"
#. hRo3J
-#: sw/inc/strings.hrc:1322
+#: sw/inc/strings.hrc:1323
msgctxt "STR_TOKEN_HELP_AUTHORITY"
msgid "Bibliography entry: "
msgstr "Абиблиографиатә зхьарԥш:"
#. ZKG5v
-#: sw/inc/strings.hrc:1323
+#: sw/inc/strings.hrc:1324
msgctxt "STR_CHARSTYLE"
msgid "Character Style: "
msgstr "Асимволқәа рстиль: "
#. d9BES
-#: sw/inc/strings.hrc:1324
+#: sw/inc/strings.hrc:1325
msgctxt "STR_STRUCTURE"
msgid "Structure text"
msgstr "Аструктура атеқст"
#. kwoGP
-#: sw/inc/strings.hrc:1325
+#: sw/inc/strings.hrc:1326
msgctxt "STR_ADDITIONAL_ACCNAME_STRING1"
msgid "Press Ctrl+Alt+A to move focus for more operations"
msgstr "Шәақәыӷәӷәа Ctrl+Alt+A иацҵоу аоперациақәа рзы"
#. Avm9y
-#: sw/inc/strings.hrc:1326
+#: sw/inc/strings.hrc:1327
msgctxt "STR_ADDITIONAL_ACCNAME_STRING2"
msgid "Press left or right arrow to choose the structure controls"
msgstr "Шәрықәыӷәӷәала армарахьтәии арӷьарахьтәии ахыцқәа аструктура аелементқәа рнапхгара алхразы"
#. 59eRi
-#: sw/inc/strings.hrc:1327
+#: sw/inc/strings.hrc:1328
msgctxt "STR_ADDITIONAL_ACCNAME_STRING3"
msgid "Press Ctrl+Alt+B to move focus back to the current structure control"
msgstr ""
#. 8AagG
-#: sw/inc/strings.hrc:1328
+#: sw/inc/strings.hrc:1329
msgctxt "STR_AUTOMARK_TYPE"
msgid "Selection file for the alphabetical index (*.sdi)"
msgstr "Иалышәх афаил амаҭәартә ҭыԥрбагаз (*.sdi)"
@@ -9519,260 +9525,260 @@ msgstr "Иалышәх афаил амаҭәартә ҭыԥрбагаз (*.sdi)"
#. -----------------------------------------------------------------------
#. Description: character alignment for frmsh.cxx - context menu
#. -----------------------------------------------------------------------
-#: sw/inc/strings.hrc:1333
+#: sw/inc/strings.hrc:1334
msgctxt "STR_FRMUI_TOP_BASE"
msgid "Base line at ~top"
msgstr "Абазатә ҵәаӷәа хыхьла"
#. 5GiEA
-#: sw/inc/strings.hrc:1334
+#: sw/inc/strings.hrc:1335
msgctxt "STR_FRMUI_BOTTOM_BASE"
msgid "~Base line at bottom"
msgstr "Абазатә ҵәаӷәа ҵаҟала"
#. sdyVF
-#: sw/inc/strings.hrc:1335
+#: sw/inc/strings.hrc:1336
msgctxt "STR_FRMUI_CENTER_BASE"
msgid "Base line ~centered"
msgstr "Абазатә ҵәаӷәа ацентр ала"
#. NAXyZ
-#: sw/inc/strings.hrc:1336
+#: sw/inc/strings.hrc:1337
#, fuzzy
msgctxt "STR_FRMUI_OLE_INSERT"
msgid "Insert object"
msgstr "Ибжьаргылатәуп аобиеқт(қәа)"
#. 5C6Rc
-#: sw/inc/strings.hrc:1337
+#: sw/inc/strings.hrc:1338
msgctxt "STR_FRMUI_OLE_EDIT"
msgid "Edit object"
msgstr "Иҧсахтәуп аобиеқт"
#. 3QFYB
-#: sw/inc/strings.hrc:1338
+#: sw/inc/strings.hrc:1339
msgctxt "STR_FRMUI_COLL_HEADER"
msgid " (Template: "
msgstr " (Ашаблон: "
#. oUhnK
-#: sw/inc/strings.hrc:1339
+#: sw/inc/strings.hrc:1340
msgctxt "STR_FRMUI_BORDER"
msgid "Borders"
msgstr "Аҿыкәырша"
#. T2SH2
-#: sw/inc/strings.hrc:1340
+#: sw/inc/strings.hrc:1341
msgctxt "STR_FRMUI_PATTERN"
msgid "Background"
msgstr "Аҿаҧшыра"
#. K6Yvs
-#: sw/inc/strings.hrc:1342
+#: sw/inc/strings.hrc:1343
msgctxt "STR_TEXTCOLL_HEADER"
msgid "(Paragraph Style: "
msgstr "(Абзац астиль: "
#. Fsanh
-#: sw/inc/strings.hrc:1343
+#: sw/inc/strings.hrc:1344
msgctxt "STR_ILLEGAL_PAGENUM"
msgid "Page numbers cannot be applied to the current page. Even numbers can be used on left pages, odd numbers on right pages."
msgstr "Ари адаҟьа аҟны аномер ақәыргылара ауам. Армарахьтәи адаҟьақәа рҟны иқәыргылазар ауеит мацара еиҩшо, арӷьарахьтәи - мацара еиҩымшо ацифрақәа."
#. VZnJf
-#: sw/inc/strings.hrc:1345
+#: sw/inc/strings.hrc:1346
msgctxt "STR_WRITER_GLOBALDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Master Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION еилоу адокумент"
#. kWe9j
-#: sw/inc/strings.hrc:1347
+#: sw/inc/strings.hrc:1348
msgctxt "STR_QUERY_CONNECT"
msgid "A file connection will delete the contents of the current section. Connect anyway?"
msgstr ""
#. dLuAF
-#: sw/inc/strings.hrc:1348
+#: sw/inc/strings.hrc:1349
msgctxt "STR_WRONG_PASSWORD"
msgid "The password entered is invalid."
msgstr "Иҭагалоуп ииашам ажәамаӡа."
#. oUR7Y
-#: sw/inc/strings.hrc:1349
+#: sw/inc/strings.hrc:1350
msgctxt "STR_WRONG_PASSWD_REPEAT"
msgid "The password has not been set."
msgstr "Ажәамаӡа ықәыргылам."
#. GBVqD
-#: sw/inc/strings.hrc:1351
+#: sw/inc/strings.hrc:1352
msgctxt "STR_HYP_OK"
msgid "Hyphenation completed"
msgstr "Аиагагақәа рыргылара хыркәшоуп"
#. rZBXF
-#: sw/inc/strings.hrc:1352
+#: sw/inc/strings.hrc:1353
msgctxt "STR_LANGSTATUS_NONE"
msgid "None (Do not check spelling)"
msgstr "Мап (аорфографиа гәаҭатәӡам)"
#. Z8EjG
-#: sw/inc/strings.hrc:1353
+#: sw/inc/strings.hrc:1354
msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE"
msgid "Reset to Default Language"
msgstr "Иқәыргылатәуп абызшәа ишыҟаз"
#. YEXdS
-#: sw/inc/strings.hrc:1354
+#: sw/inc/strings.hrc:1355
msgctxt "STR_LANGSTATUS_MORE"
msgid "More..."
msgstr "Иҵегь..."
#. QecQ3
-#: sw/inc/strings.hrc:1355
+#: sw/inc/strings.hrc:1356
msgctxt "STR_IGNORE_SELECTION"
msgid "~Ignore"
msgstr "Ибжьажьтәуп"
#. aaiBM
-#: sw/inc/strings.hrc:1356
+#: sw/inc/strings.hrc:1357
msgctxt "STR_EXPLANATION_LINK"
msgid "Explanations..."
msgstr "Аилыркаарақәа..."
#. kSDGu
-#: sw/inc/strings.hrc:1358
+#: sw/inc/strings.hrc:1359
msgctxt "STR_QUERY_SPECIAL_FORCED"
msgid "Check special regions is deactivated. Check anyway?"
msgstr "Испециалу аҵакырақәа ргәаҭара аҿыхуп. Зегь акоуп игәаҭатәума?"
#. KiAdJ
-#: sw/inc/strings.hrc:1359
+#: sw/inc/strings.hrc:1360
msgctxt "STR_NO_MERGE_ENTRY"
msgid "Could not merge documents."
msgstr "Иауам адокументқәа реидҵара."
#. FqsCt
-#: sw/inc/strings.hrc:1360
+#: sw/inc/strings.hrc:1361
msgctxt "STR_NO_BASE_FOR_MERGE"
msgid "%PRODUCTNAME Base component is absent, and it is required to use Mail Merge."
msgstr ""
#. wcuf4
-#: sw/inc/strings.hrc:1361
+#: sw/inc/strings.hrc:1362
msgctxt "STR_ERR_SRCSTREAM"
msgid "The source cannot be loaded."
msgstr "Ахалагаратә теқст аҭагалара ауам."
#. K9qMS
-#: sw/inc/strings.hrc:1362
+#: sw/inc/strings.hrc:1363
msgctxt "STR_ERR_NO_FAX"
msgid "No fax printer has been set under Tools/Options/%1/Print."
msgstr "Ахкынҵа «Аервис/Апараметрқәа/%1/Акьыԥхьра» аҟны афакс-принтер ықәыргылаӡам."
#. XWQ8w
-#: sw/inc/strings.hrc:1363
+#: sw/inc/strings.hrc:1364
msgctxt "STR_WEBOPTIONS"
msgid "HTML document"
msgstr "HTML адокумент"
#. qVZBx
-#: sw/inc/strings.hrc:1364
+#: sw/inc/strings.hrc:1365
msgctxt "STR_TEXTOPTIONS"
msgid "Text document"
msgstr "Атеқсттә документ"
#. qmmPU
-#: sw/inc/strings.hrc:1365
+#: sw/inc/strings.hrc:1366
msgctxt "STR_SCAN_NOSOURCE"
msgid "Source not specified."
msgstr "Ахыҵхырҭа арбам."
#. 2LgDJ
-#: sw/inc/strings.hrc:1366
+#: sw/inc/strings.hrc:1367
msgctxt "STR_NUM_LEVEL"
msgid "Level "
msgstr "Аҩаӡара "
#. AcAD8
-#: sw/inc/strings.hrc:1367
+#: sw/inc/strings.hrc:1368
msgctxt "STR_NUM_OUTLINE"
msgid "Outline "
msgstr "Аструктура "
#. DE9FZ
-#: sw/inc/strings.hrc:1368
+#: sw/inc/strings.hrc:1369
msgctxt "STR_EDIT_FOOTNOTE"
msgid "Edit Footnote/Endnote"
msgstr "Албаага ариашара/анҵәамҭатә лбаага"
#. EzBCZ
-#: sw/inc/strings.hrc:1369
+#: sw/inc/strings.hrc:1370
msgctxt "STR_NB_REPLACED"
msgid "Search key replaced XX times."
msgstr "Иԥшаатәу ажәа ԥсахуп XX нтә."
#. fgywB
-#: sw/inc/strings.hrc:1370
+#: sw/inc/strings.hrc:1371
msgctxt "STR_SRCVIEW_ROW"
msgid "Row "
msgstr "Ацәаҳәа "
#. GUc4a
-#: sw/inc/strings.hrc:1371
+#: sw/inc/strings.hrc:1372
msgctxt "STR_SRCVIEW_COL"
msgid "Column "
msgstr "Аиҵагыла "
#. yMyuo
-#: sw/inc/strings.hrc:1372
+#: sw/inc/strings.hrc:1373
msgctxt "STR_SAVEAS_SRC"
msgid "~Export source..."
msgstr "Ахалагаратә теқст аекспорт..."
#. ywFCb
-#: sw/inc/strings.hrc:1373
+#: sw/inc/strings.hrc:1374
msgctxt "STR_SAVEACOPY_SRC"
msgid "~Export copy of source..."
msgstr "Ахыҵхырҭа акопиақәа рекспорт..."
#. BT3M3
-#: sw/inc/strings.hrc:1375
+#: sw/inc/strings.hrc:1376
msgctxt "ST_CONTINUE"
msgid "~Continue"
msgstr "Иацҵатәуп"
#. ZR9aw
-#: sw/inc/strings.hrc:1376
+#: sw/inc/strings.hrc:1377
msgctxt "ST_SENDINGTO"
msgid "Sending to: %1"
msgstr "Адәықәҵара: %1"
#. YCNYb
-#: sw/inc/strings.hrc:1377
+#: sw/inc/strings.hrc:1378
msgctxt "ST_COMPLETED"
msgid "Successfully sent"
msgstr "Қәҿиарала идәықәҵоуп"
#. fmHmE
-#: sw/inc/strings.hrc:1378
+#: sw/inc/strings.hrc:1379
msgctxt "ST_FAILED"
msgid "Sending failed"
msgstr "Адәықәҵара амуӡеит"
#. yAAPM
-#: sw/inc/strings.hrc:1380
+#: sw/inc/strings.hrc:1381
msgctxt "STR_SENDER_TOKENS"
msgid "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
msgstr "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
#. mWrXk
-#: sw/inc/strings.hrc:1382
+#: sw/inc/strings.hrc:1383
msgctxt "STR_TBL_FORMULA"
msgid "Text formula"
msgstr "Аформула атеқст"
#. RmBFW
-#: sw/inc/strings.hrc:1384
+#: sw/inc/strings.hrc:1385
msgctxt "STR_DROP_DOWN_EMPTY_LIST"
msgid "No Item specified"
msgstr ""
@@ -9781,7 +9787,7 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Classification strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1390
+#: sw/inc/strings.hrc:1391
msgctxt "STR_CLASSIFICATION_LEVEL_CHANGED"
msgid "Document classification has changed because a paragraph classification level is higher"
msgstr ""
@@ -9790,121 +9796,121 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Paragraph Signature
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1395
+#: sw/inc/strings.hrc:1396
msgctxt "STR_VALID"
msgid " Valid "
msgstr " Иҵабыргуп "
#. xAKRC
-#: sw/inc/strings.hrc:1396
+#: sw/inc/strings.hrc:1397
msgctxt "STR_INVALID"
msgid "Invalid"
msgstr "Иҵабыргӡам"
#. pDAHz
-#: sw/inc/strings.hrc:1397
+#: sw/inc/strings.hrc:1398
msgctxt "STR_INVALID_SIGNATURE"
msgid "Invalid Signature"
msgstr "Анапаҵаҩра ҵабыргӡам"
#. etEEx
-#: sw/inc/strings.hrc:1398
+#: sw/inc/strings.hrc:1399
msgctxt "STR_SIGNED_BY"
msgid "Signed-by"
msgstr "Анапаҵаҩуп"
#. BK7ub
-#: sw/inc/strings.hrc:1399
+#: sw/inc/strings.hrc:1400
msgctxt "STR_PARAGRAPH_SIGNATURE"
msgid "Paragraph Signature"
msgstr "Абзац анапаҵаҩра"
#. kZKCf
-#: sw/inc/strings.hrc:1401
+#: sw/inc/strings.hrc:1402
msgctxt "labeldialog|cards"
msgid "Business Cards"
msgstr "Авизиттә картақәа"
#. ECFij
-#: sw/inc/strings.hrc:1403
+#: sw/inc/strings.hrc:1404
msgctxt "STR_MAILCONFIG_DLG_TITLE"
msgid "Email settings"
msgstr "E-Mail архиарақәа"
#. PwrB9
-#: sw/inc/strings.hrc:1405
+#: sw/inc/strings.hrc:1406
msgctxt "optredlinepage|insertedpreview"
msgid "Insert"
msgstr "Ибжьаргылатәуп"
#. NL48o
-#: sw/inc/strings.hrc:1406
+#: sw/inc/strings.hrc:1407
msgctxt "optredlinepage|deletedpreview"
msgid "Delete"
msgstr "Ианыхтәуп"
#. PW4Bz
-#: sw/inc/strings.hrc:1407
+#: sw/inc/strings.hrc:1408
msgctxt "optredlinepage|changedpreview"
msgid "Attributes"
msgstr "Атрибутқәа"
#. yfgiq
-#: sw/inc/strings.hrc:1409
+#: sw/inc/strings.hrc:1410
msgctxt "createautomarkdialog|searchterm"
msgid "Search term"
msgstr "Иԥшаатәу аилкаа"
#. fhLzk
-#: sw/inc/strings.hrc:1410
+#: sw/inc/strings.hrc:1411
msgctxt "createautomarkdialog|alternative"
msgid "Alternative entry"
msgstr "Альтенативатә елемент"
#. gD4D3
-#: sw/inc/strings.hrc:1411
+#: sw/inc/strings.hrc:1412
msgctxt "createautomarkdialog|key1"
msgid "1st key"
msgstr "1-тәи ацаԥха"
#. BFszo
-#: sw/inc/strings.hrc:1412
+#: sw/inc/strings.hrc:1413
msgctxt "createautomarkdialog|key2"
msgid "2nd key"
msgstr "2-тәи ацаԥха"
#. EoAB8
-#: sw/inc/strings.hrc:1413
+#: sw/inc/strings.hrc:1414
msgctxt "createautomarkdialog|comment"
msgid "Comment"
msgstr "Акомментари"
#. Shstx
-#: sw/inc/strings.hrc:1414
+#: sw/inc/strings.hrc:1415
msgctxt "createautomarkdialog|casesensitive"
msgid "Match case"
msgstr "Ҳасаб азутәуп арегистр"
#. 8Cjvb
-#: sw/inc/strings.hrc:1415
+#: sw/inc/strings.hrc:1416
msgctxt "createautomarkdialog|wordonly"
msgid "Word only"
msgstr "Ажәа мацара"
#. zD8rb
-#: sw/inc/strings.hrc:1416
+#: sw/inc/strings.hrc:1417
msgctxt "createautomarkdialog|yes"
msgid "Yes"
msgstr "Ааи"
#. 4tTop
-#: sw/inc/strings.hrc:1417
+#: sw/inc/strings.hrc:1418
msgctxt "createautomarkdialog|no"
msgid "No"
msgstr "Мап"
#. KhKwa
-#: sw/inc/strings.hrc:1419
+#: sw/inc/strings.hrc:1420
#, fuzzy
msgctxt "sidebarwrap|customlabel"
msgid "Custom"
@@ -10402,8 +10408,14 @@ msgctxt "asciifilterdialog|includebom"
msgid "Include byte-order mark"
msgstr ""
+#. 9E8VF
+#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:291
+msgctxt "asciifilterdialog|extended_tip|includebom"
+msgid "For Unicode character set only, a byte order mark (BOM) is a sequence of bytes used to indicate Unicode encoding of a text file."
+msgstr ""
+
#. B2ofV
-#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:304
+#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:309
msgctxt "asciifilterdialog|label1"
msgid "Properties"
msgstr "Аҷыдаҟазшьақәа"
@@ -20041,45 +20053,51 @@ msgctxt "mmresultsavedialog|extended_tip|individualrb"
msgid "Saves the merged document as a separate file for each recipient. The file names of the documents are constructed from the name that you enter, followed by an underscore, and the number of the current record."
msgstr ""
+#. g3Knf
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:157
+msgctxt "mmresultsavedialog|label2"
+msgid "Save As Options"
+msgstr ""
+
#. xRGbs
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:159
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:191
msgctxt "mmresultsavedialog|fromrb"
msgid "_From"
msgstr ""
#. gvAQf
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:170
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:202
msgctxt "mmresultsavedialog|extended_tip|fromrb"
msgid "Selects a range of records starting at the record number in the From box and ending at the record number in the To box."
msgstr ""
#. LGEwR
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:183
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:215
#, fuzzy
msgctxt "mmresultsavedialog|toft"
msgid "_To"
msgstr "Хыхьла"
#. XML8V
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:205
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:238
msgctxt "mmresultsavedialog|extended_tip|from"
msgid "Enter the number of the first record to include in the mail merge."
msgstr ""
#. dAWiB
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:224
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:258
msgctxt "mmresultsavedialog|extended_tip|to"
msgid "Enter the number of the last record to include in the mail merge."
msgstr ""
-#. g3Knf
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:245
-msgctxt "mmresultsavedialog|label2"
-msgid "Save As Options"
+#. VibGJ
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:273
+msgctxt "mmresultsavedialog|FromToRange"
+msgid "Range"
msgstr ""
#. 2BCiE
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:267
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:295
msgctxt "mmresultsavedialog|extended_tip|MMResultSaveDialog"
msgid "Save the mail merge output to file."
msgstr ""
@@ -20451,7 +20469,7 @@ msgid "Transfer Status"
msgstr ""
#. c2i5B
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:26
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:20
msgctxt "navigatorcontextmenu|STR_SEND_OUTLINE_TO_CLIPBOARD_ENTRY"
msgid "Send Outline to Clipboard"
msgstr ""
@@ -20463,143 +20481,215 @@ msgid "Go to"
msgstr ""
#. VCmAZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:49
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:43
msgctxt "navigatorcontextmenu|STR_SELECT"
msgid "Select"
msgstr ""
#. dajzZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:57
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:51
msgctxt "navigatorcontextmenu|STR_DELETE"
msgid "Delete"
msgstr ""
#. CQSp3
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:66
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:60
msgctxt "navigatorcontextmenu|STR_PROMOTE_CHAPTER"
msgid "Promote Chapter"
msgstr ""
#. ikRHB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:75
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:69
msgctxt "navigatorcontextmenu|STR_DEMOTE_CHAPTER"
msgid "Demote Chapter"
msgstr ""
#. MhtFa
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:84
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:78
msgctxt "navigatorcontextmenu|STR_PROMOTE_LEVEL"
msgid "Promote Level"
msgstr ""
#. dUM5D
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:93
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:87
msgctxt "navigatorcontextmenu|STR_DEMOTE_LEVEL"
msgid "Demote Level"
msgstr ""
#. tukRq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:102
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:96
msgctxt "navigatorcontextmenu|STR_REMOVE_INDEX"
msgid "_Remove Index"
msgstr ""
#. C4355
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:110
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:104
msgctxt "navigatorcontextmenu|STR_UPDATE"
msgid "_Update"
msgstr ""
#. BtCca
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:118
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:112
msgctxt "navigatorcontextmenu|STR_EDIT_ENTRY"
msgid "Edit..."
msgstr ""
#. BYyhD
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:126
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:120
msgctxt "navigatorcontextmenu|STR_REMOVE_TBL_PROTECTION"
msgid "_Unprotect"
msgstr ""
#. 6KWWG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:134
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:128
msgctxt "navigatorcontextmenu|STR_READONLY_IDX"
msgid "Read-_only"
msgstr ""
#. BUQRq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:142
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:136
msgctxt "navigatorcontextmenu|STR_DELETE_ENTRY"
msgid "_Delete"
msgstr ""
#. CUqD5
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:151
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:145
msgctxt "navigatorcontextmenu|STR_RENAME"
msgid "_Rename..."
msgstr ""
#. U5nAb
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:159
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:153
msgctxt "navigatorcontextmenu|STR_POSTIT_SHOW"
msgid "Show All"
msgstr ""
#. E2wWp
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:167
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:161
msgctxt "navigatorcontextmenu|STR_POSTIT_HIDE"
msgid "Hide All"
msgstr ""
#. aDRke
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:175
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:169
msgctxt "navigatorcontextmenu|STR_POSTIT_DELETE"
msgid "Delete All"
msgstr ""
#. YBipC
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:189
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:183
msgctxt "navigatorcontextmenu|STR_OUTLINE_CONTENT"
msgid "Outline Folding"
msgstr ""
-#. EBK2E
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:209
-msgctxt "navigatorcontextmenu|STR_OUTLINE_TRACKING"
-msgid "Outline Tracking"
-msgstr ""
-
#. cECoG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:223
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:203
msgctxt "navigatorcontextmenu|STR_OUTLINE_LEVEL"
msgid "Outline Level"
msgstr ""
+#. EBK2E
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:217
+msgctxt "navigatorcontextmenu|STR_OUTLINE_TRACKING"
+msgid "Outline Tracking"
+msgstr ""
+
#. fZEEr
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:237
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:231
msgctxt "navigatorcontextmenu|STR_TABLE_TRACKING"
msgid "Table Tracking"
msgstr ""
#. 7oCFa
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:245
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:239
msgctxt "navigatorcontextmenu|STR_SECTION_TRACKING"
msgid "Section Tracking"
msgstr ""
+#. YmjQf
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:247
+msgctxt "navigatorcontextmenu|STR_FRAME_TRACKING"
+msgid "Frame Tracking"
+msgstr ""
+
+#. vhxX5
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:255
+msgctxt "navigatorcontextmenu|STR_IMAGE_TRACKING"
+msgid "Image Tracking"
+msgstr ""
+
+#. mcYqZ
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:263
+msgctxt "navigatorcontextmenu|STR_OLE_OBJECT_TRACKING"
+msgid "OLE Object Tracking"
+msgstr ""
+
+#. DRaED
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:271
+msgctxt "navigatorcontextmenu|STR_BOOKMARK_TRACKING"
+msgid "Bookmark Tracking"
+msgstr ""
+
+#. vpLmh
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:279
+msgctxt "navigatorcontextmenu|STR_HYPERLINK_TRACKING"
+msgid "Hyperlink Tracking"
+msgstr ""
+
+#. EvBzN
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:287
+msgctxt "navigatorcontextmenu|STR_REFERENCE_TRACKING"
+msgid "Reference Tracking"
+msgstr ""
+
+#. M8Bes
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:295
+msgctxt "navigatorcontextmenu|STR_INDEX_TRACKING"
+msgid "Index Tracking"
+msgstr ""
+
+#. KBFwM
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:303
+msgctxt "navigatorcontextmenu|STR_COMMENT_TRACKING"
+msgid "Comment Tracking"
+msgstr ""
+
+#. oGavB
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:311
+msgctxt "navigatorcontextmenu|STR_DRAWING_OBJECT_TRACKING"
+msgid "Drawing Object Tracking"
+msgstr ""
+
+#. w8FTW
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:319
+msgctxt "navigatorcontextmenu|STR_FIELD_TRACKING"
+msgid "Field Tracking"
+msgstr ""
+
+#. BoCeZ
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:327
+msgctxt "navigatorcontextmenu|STR_FOOTNOTE_TRACKING"
+msgid "Footnote Tracking"
+msgstr ""
+
#. GyAcG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:253
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:341
msgctxt "navigatorcontextmenu|STR_DRAGMODE"
msgid "Drag Mode"
msgstr ""
#. Zehx2
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:267
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:355
msgctxt "navigatorcontextmenu|STR_DISPLAY"
msgid "Display"
msgstr ""
+#. bgZoy
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:375
+msgctxt "navigatorcontextmenu|STR_COLLAPSE_ALL_CATEGORIES"
+msgid "Collapse All Categories"
+msgstr ""
+
#. ba8wC
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:18
msgctxt "navigatorpanel|hyperlink"
diff --git a/source/ab/vcl/messages.po b/source/ab/vcl/messages.po
index 266dab4bc8d..b1eccd8dca7 100644
--- a/source/ab/vcl/messages.po
+++ b/source/ab/vcl/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-10 23:12+0200\n"
+"POT-Creation-Date: 2021-10-20 13:09+0200\n"
"PO-Revision-Date: 2021-02-07 23:36+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/ab/>\n"
@@ -1964,530 +1964,530 @@ msgid "_Print"
msgstr "Акьыԥхьра"
#. M3L4L
-#: vcl/uiconfig/ui/printdialog.ui:157
+#: vcl/uiconfig/ui/printdialog.ui:160
msgctxt "printdialog|printpreview"
msgid "Print preview"
msgstr "Аԥхьахәаԥшра"
#. 67YPm
-#: vcl/uiconfig/ui/printdialog.ui:163
+#: vcl/uiconfig/ui/printdialog.ui:166
msgctxt "printdialog|extended_tip|preview"
msgid "The preview shows how each sheet of paper will look. You can browse through all sheets of paper with the buttons below the preview."
msgstr ""
#. dQEY8
-#: vcl/uiconfig/ui/printdialog.ui:193
+#: vcl/uiconfig/ui/printdialog.ui:196
msgctxt "printdialog|previewbox"
msgid "Pre_view"
msgstr "Ахәаԥшра"
#. EpB5H
-#: vcl/uiconfig/ui/printdialog.ui:202
+#: vcl/uiconfig/ui/printdialog.ui:205
msgctxt "printdialog|extended_tip|previewbox"
msgid "Turn on or off display of the print preview."
msgstr ""
#. SbgFv
-#: vcl/uiconfig/ui/printdialog.ui:232
+#: vcl/uiconfig/ui/printdialog.ui:235
msgctxt "printdialog|firstpage"
msgid "First page"
msgstr "Актәи адаҟьа"
#. GVGSq
-#: vcl/uiconfig/ui/printdialog.ui:236
+#: vcl/uiconfig/ui/printdialog.ui:239
msgctxt "printdialog|extended_tip|btnFirst"
msgid "Shows preview of the first page."
msgstr ""
#. ebceU
-#: vcl/uiconfig/ui/printdialog.ui:251
+#: vcl/uiconfig/ui/printdialog.ui:254
msgctxt "printdialog|backward"
msgid "Previous page"
msgstr "Аԥхьатәи адаҟьа"
#. uS5Ka
-#: vcl/uiconfig/ui/printdialog.ui:255
+#: vcl/uiconfig/ui/printdialog.ui:258
msgctxt "printdialog|extended_tip|backward"
msgid "Shows preview of the previous page."
msgstr "Иаанарԥшуит аԥхьатәи адаҟьа."
#. c7uMG
-#: vcl/uiconfig/ui/printdialog.ui:274
+#: vcl/uiconfig/ui/printdialog.ui:277
msgctxt "printdialog|extended_tip|pageedit"
msgid "Enter the number of page to be shown in the preview."
msgstr ""
#. yyFVV
-#: vcl/uiconfig/ui/printdialog.ui:288
+#: vcl/uiconfig/ui/printdialog.ui:291
msgctxt "printdialog|totalnumpages"
msgid "/ %n"
msgstr "/ %n"
#. CZQLF
-#: vcl/uiconfig/ui/printdialog.ui:301
+#: vcl/uiconfig/ui/printdialog.ui:304
msgctxt "printdialog|forward"
msgid "Next page"
msgstr "Анаҩстәи адаҟьа"
#. emK9r
-#: vcl/uiconfig/ui/printdialog.ui:305
+#: vcl/uiconfig/ui/printdialog.ui:308
msgctxt "printdialog|extended_tip|forward"
msgid "Shows preview of the next page."
msgstr "Иаанарԥшуеит анаҩстәи адаҟьа."
#. Aq6Gv
-#: vcl/uiconfig/ui/printdialog.ui:320
+#: vcl/uiconfig/ui/printdialog.ui:323
msgctxt "printdialog|lastpage"
msgid "Last page"
msgstr "Аҵыхәтәантәи адаҟьа"
#. RwCmD
-#: vcl/uiconfig/ui/printdialog.ui:324
+#: vcl/uiconfig/ui/printdialog.ui:327
msgctxt "printdialog|extended_tip|btnLast"
msgid "Shows preview of the last page."
msgstr ""
#. PD6Aj
-#: vcl/uiconfig/ui/printdialog.ui:400
+#: vcl/uiconfig/ui/printdialog.ui:403
msgctxt "printdialog|extended_tip|printersbox"
msgid "The list box shows the installed printers. Click the printer to use for the current print job. Click the Properties button to change some of the printer properties."
msgstr ""
#. qgQDX
-#: vcl/uiconfig/ui/printdialog.ui:419
+#: vcl/uiconfig/ui/printdialog.ui:422
msgctxt "printdialog|labelstatus"
msgid "Status:"
msgstr ""
#. dyo2j
-#: vcl/uiconfig/ui/printdialog.ui:434
+#: vcl/uiconfig/ui/printdialog.ui:437
msgctxt "printdialog|status"
msgid "Default Printer"
msgstr ""
#. McZgQ
-#: vcl/uiconfig/ui/printdialog.ui:440
+#: vcl/uiconfig/ui/printdialog.ui:443
msgctxt "printdialog|extended_tip|status"
msgid "Shows the availability of the selected printer."
msgstr ""
#. oBACQ
-#: vcl/uiconfig/ui/printdialog.ui:452
+#: vcl/uiconfig/ui/printdialog.ui:455
msgctxt "printdialog|setup"
msgid "Properties..."
msgstr "Аҷыдаҟазшьақәа..."
#. 89CRC
-#: vcl/uiconfig/ui/printdialog.ui:459
+#: vcl/uiconfig/ui/printdialog.ui:462
msgctxt "printdialog|extended_tip|setup"
msgid "Opens the Printer Properties dialog. The printer properties vary according to the printer that you select."
msgstr ""
#. AJGau
-#: vcl/uiconfig/ui/printdialog.ui:483
+#: vcl/uiconfig/ui/printdialog.ui:486
msgctxt "printdialog|labelprinter"
msgid "Printer"
msgstr "Апринтер"
#. AyxGJ
-#: vcl/uiconfig/ui/printdialog.ui:521
+#: vcl/uiconfig/ui/printdialog.ui:524
msgctxt "printdialog|rbAllPages"
msgid "_All pages"
msgstr "Адаҟьақәа зегьы"
#. AQ7Ms
-#: vcl/uiconfig/ui/printdialog.ui:532
+#: vcl/uiconfig/ui/printdialog.ui:535
msgctxt "printdialog|extended_tip|rbAllPages"
msgid "Prints the entire document."
msgstr "Иакьыԥхьуеит адокумент зегьы"
#. pYtbq
-#: vcl/uiconfig/ui/printdialog.ui:543
+#: vcl/uiconfig/ui/printdialog.ui:546
msgctxt "printdialog|rbPageRange"
msgid "_Pages:"
msgstr "Адаҟьақәа:"
#. azXfE
-#: vcl/uiconfig/ui/printdialog.ui:555
+#: vcl/uiconfig/ui/printdialog.ui:558
msgctxt "printdialog|extended_tip|rbRangePages"
msgid "Prints only the pages or slides that you specify in the Pages box."
msgstr ""
#. 786QC
-#: vcl/uiconfig/ui/printdialog.ui:571
+#: vcl/uiconfig/ui/printdialog.ui:574
msgctxt "printdialog|pagerange"
msgid "e.g.: 1, 3-5, 7, 9"
msgstr "аҿырԥштәы: 1, 3-5, 7, 9"
#. FTtLK
-#: vcl/uiconfig/ui/printdialog.ui:574
+#: vcl/uiconfig/ui/printdialog.ui:577
msgctxt "printdialog|extended_tip|pagerange"
msgid "To print a range of pages, use a format like 3-6. To print single pages, use a format like 7;9;11. You can print a combination of page ranges and single pages, by using a format like 3-6;8;10;12."
msgstr ""
#. Z5kiB
-#: vcl/uiconfig/ui/printdialog.ui:585
+#: vcl/uiconfig/ui/printdialog.ui:588
msgctxt "printdialog|rbRangeSelection"
msgid "_Selection"
msgstr "Иалкаау"
#. CJ2E7
-#: vcl/uiconfig/ui/printdialog.ui:595
+#: vcl/uiconfig/ui/printdialog.ui:598
msgctxt "printdialog|extended_tip|rbRangeSelection"
msgid "Prints only the selected area(s) or object(s) in the current document."
msgstr ""
#. UKYwM
-#: vcl/uiconfig/ui/printdialog.ui:609
+#: vcl/uiconfig/ui/printdialog.ui:612
msgctxt "printdialog|includeevenodd"
msgid "Include:"
msgstr ""
#. XmeFL
-#: vcl/uiconfig/ui/printdialog.ui:626
+#: vcl/uiconfig/ui/printdialog.ui:629
msgctxt "printdialog|liststore3"
msgid "Odd and Even Pages"
msgstr "Адаҟьақәа зегьы"
#. 49y67
-#: vcl/uiconfig/ui/printdialog.ui:627
+#: vcl/uiconfig/ui/printdialog.ui:630
msgctxt "printdialog|liststore3"
msgid "Odd Pages"
msgstr "Еиҩымшо адаҟьақәа"
#. 6CkPE
-#: vcl/uiconfig/ui/printdialog.ui:628
+#: vcl/uiconfig/ui/printdialog.ui:631
msgctxt "printdialog|liststore3"
msgid "Even Pages"
msgstr "Еиҩшо адаҟьақәа"
#. ZeA37
-#: vcl/uiconfig/ui/printdialog.ui:632
+#: vcl/uiconfig/ui/printdialog.ui:635
msgctxt "printdialog|extended_tip|evenoddbox"
msgid "Select the subset of pages to print."
msgstr ""
#. wn2kB
-#: vcl/uiconfig/ui/printdialog.ui:663
+#: vcl/uiconfig/ui/printdialog.ui:666
msgctxt "printdialog|fromwhich"
msgid "_From which print:"
msgstr ""
#. Cuc2u
-#: vcl/uiconfig/ui/printdialog.ui:688
+#: vcl/uiconfig/ui/printdialog.ui:691
msgctxt "printdialog|labelpapersides"
msgid "Paper _sides:"
msgstr "Ақьаад аганқәа:"
#. SYxRJ
-#: vcl/uiconfig/ui/printdialog.ui:704
+#: vcl/uiconfig/ui/printdialog.ui:707
msgctxt "printdialog|liststore4"
msgid "Print on one side (simplex)"
msgstr ""
#. hCZPg
-#: vcl/uiconfig/ui/printdialog.ui:705
+#: vcl/uiconfig/ui/printdialog.ui:708
msgctxt "printdialog|liststore4"
msgid "Print on both sides (duplex long edge)"
msgstr ""
#. iqr9C
-#: vcl/uiconfig/ui/printdialog.ui:706
+#: vcl/uiconfig/ui/printdialog.ui:709
msgctxt "printdialog|liststore4"
msgid "Print on both sides (duplex short edge)"
msgstr ""
#. CKpgL
-#: vcl/uiconfig/ui/printdialog.ui:710
+#: vcl/uiconfig/ui/printdialog.ui:713
msgctxt "printdialog|extended_tip|sidesbox"
msgid "If the printer is capable of duplex printing it's possible to choose between using only one side of the paper or both."
msgstr ""
#. AVv6D
-#: vcl/uiconfig/ui/printdialog.ui:724
+#: vcl/uiconfig/ui/printdialog.ui:727
msgctxt "printdialog|labelcopies"
msgid "_Number of copies:"
msgstr "_Акопиақәа рыԥхьаӡа:"
#. NwD7S
-#: vcl/uiconfig/ui/printdialog.ui:747
+#: vcl/uiconfig/ui/printdialog.ui:750
msgctxt "printdialog|extended_tip|copycount"
msgid "Enter the number of copies that you want to print."
msgstr ""
#. BT4nY
-#: vcl/uiconfig/ui/printdialog.ui:761
+#: vcl/uiconfig/ui/printdialog.ui:764
msgctxt "printdialog|cbPrintOrder"
msgid "Order:"
msgstr ""
#. vwjVt
-#: vcl/uiconfig/ui/printdialog.ui:774
+#: vcl/uiconfig/ui/printdialog.ui:777
msgctxt "printdialog|reverseorder"
msgid "Print in _reverse order"
msgstr ""
#. svd2Q
-#: vcl/uiconfig/ui/printdialog.ui:783
+#: vcl/uiconfig/ui/printdialog.ui:786
msgctxt "printdialog|extended_tip|reverseorder"
msgid "Check to print pages in reverse order."
msgstr ""
#. G6QEr
-#: vcl/uiconfig/ui/printdialog.ui:800
+#: vcl/uiconfig/ui/printdialog.ui:803
msgctxt "printdialog|collate"
msgid "_Collate"
msgstr ""
#. kR6bA
-#: vcl/uiconfig/ui/printdialog.ui:808
+#: vcl/uiconfig/ui/printdialog.ui:811
msgctxt "printdialog|extended_tip|collate"
msgid "Preserves the page order of the original document."
msgstr ""
#. GZrpG
-#: vcl/uiconfig/ui/printdialog.ui:838
+#: vcl/uiconfig/ui/printdialog.ui:841
msgctxt "printdialog|singlejobs"
msgid "Create separate print jobs for collated output"
msgstr ""
#. X4Am9
-#: vcl/uiconfig/ui/printdialog.ui:846
+#: vcl/uiconfig/ui/printdialog.ui:849
msgctxt "printdialog|extended_tip|collate"
msgid "Check to not rely on the printer to create collated copies but create a print job for each copy instead."
msgstr ""
#. 2MdHu
-#: vcl/uiconfig/ui/printdialog.ui:867
+#: vcl/uiconfig/ui/printdialog.ui:870
msgctxt "printdialog|rangeexpander"
msgid "_More"
msgstr ""
#. ehfCG
-#: vcl/uiconfig/ui/printdialog.ui:883
+#: vcl/uiconfig/ui/printdialog.ui:886
msgctxt "printdialog|label2"
msgid "Range and Copies"
msgstr ""
#. CBLet
-#: vcl/uiconfig/ui/printdialog.ui:922
+#: vcl/uiconfig/ui/printdialog.ui:925
msgctxt "printdialog|labelorientation"
msgid "Orientation:"
msgstr ""
#. U4byk
-#: vcl/uiconfig/ui/printdialog.ui:937
+#: vcl/uiconfig/ui/printdialog.ui:940
msgctxt "printdialog|labelsize"
msgid "Paper size:"
msgstr ""
#. X9iBj
-#: vcl/uiconfig/ui/printdialog.ui:954
+#: vcl/uiconfig/ui/printdialog.ui:957
msgctxt "printdialog|liststore3"
msgid "Automatic"
msgstr "Автоматикала"
#. vaWZE
-#: vcl/uiconfig/ui/printdialog.ui:955
+#: vcl/uiconfig/ui/printdialog.ui:958
msgctxt "printdialog|liststore3"
msgid "Portrait"
msgstr "Ашәҟәытә"
#. Qnpje
-#: vcl/uiconfig/ui/printdialog.ui:956
+#: vcl/uiconfig/ui/printdialog.ui:959
msgctxt "printdialog|liststore3"
msgid "Landscape"
msgstr "Альбомтә"
#. PkAo9
-#: vcl/uiconfig/ui/printdialog.ui:960
+#: vcl/uiconfig/ui/printdialog.ui:963
msgctxt "printdialog|extended_tip|pageorientationbox"
msgid "Select the orientation of the paper."
msgstr ""
#. DSFv2
-#: vcl/uiconfig/ui/printdialog.ui:976
+#: vcl/uiconfig/ui/printdialog.ui:979
msgctxt "printdialog|extended_tip|papersizebox"
msgid "Set the paper size you would like to use. The preview will show how the document would look on a paper of the given size."
msgstr ""
#. EZdsx
-#: vcl/uiconfig/ui/printdialog.ui:1011
+#: vcl/uiconfig/ui/printdialog.ui:1014
msgctxt "printdialog|pagespersheetbtn"
msgid "Pages per sheet:"
msgstr ""
#. ok8Lw
-#: vcl/uiconfig/ui/printdialog.ui:1025
+#: vcl/uiconfig/ui/printdialog.ui:1028
msgctxt "printdialog|extended_tip|pagespersheetbtn"
msgid "Print multiple pages per sheet of paper."
msgstr ""
#. DKP5g
-#: vcl/uiconfig/ui/printdialog.ui:1066
+#: vcl/uiconfig/ui/printdialog.ui:1069
#, fuzzy
msgctxt "printdialog|liststore1"
msgid "Custom"
msgstr "Даҽакы:"
#. duVEo
-#: vcl/uiconfig/ui/printdialog.ui:1073
+#: vcl/uiconfig/ui/printdialog.ui:1076
msgctxt "printdialog|extended_tip|pagespersheetbox"
msgid "Select how many pages to print per sheet of paper."
msgstr ""
#. 65WWt
-#: vcl/uiconfig/ui/printdialog.ui:1086
+#: vcl/uiconfig/ui/printdialog.ui:1089
msgctxt "printdialog|pagespersheettxt"
msgid "Pages:"
msgstr ""
#. X8bjE
-#: vcl/uiconfig/ui/printdialog.ui:1106
+#: vcl/uiconfig/ui/printdialog.ui:1109
msgctxt "printdialog|extended_tip|pagerows"
msgid "Select number of rows."
msgstr ""
#. DM5aX
-#: vcl/uiconfig/ui/printdialog.ui:1118
+#: vcl/uiconfig/ui/printdialog.ui:1121
msgctxt "printdialog|by"
msgid "by"
msgstr ""
#. Z2EDz
-#: vcl/uiconfig/ui/printdialog.ui:1137
+#: vcl/uiconfig/ui/printdialog.ui:1140
msgctxt "printdialog|extended_tip|pagecols"
msgid "Select number of columns."
msgstr ""
#. szcD7
-#: vcl/uiconfig/ui/printdialog.ui:1149
+#: vcl/uiconfig/ui/printdialog.ui:1152
msgctxt "printdialog|pagemargintxt1"
msgid "Margin:"
msgstr ""
#. QxE58
-#: vcl/uiconfig/ui/printdialog.ui:1168
+#: vcl/uiconfig/ui/printdialog.ui:1171
msgctxt "printdialog|extended_tip|pagemarginsb"
msgid "Select margin between individual pages on each sheet of paper."
msgstr ""
#. iGg2m
-#: vcl/uiconfig/ui/printdialog.ui:1181
+#: vcl/uiconfig/ui/printdialog.ui:1184
msgctxt "printdialog|pagemargintxt2"
msgid "between pages"
msgstr "адаҟьақәа рыбжьара"
#. oryuw
-#: vcl/uiconfig/ui/printdialog.ui:1192
+#: vcl/uiconfig/ui/printdialog.ui:1195
msgctxt "printdialog|sheetmargintxt1"
msgid "Distance:"
msgstr ""
#. EDFnW
-#: vcl/uiconfig/ui/printdialog.ui:1211
+#: vcl/uiconfig/ui/printdialog.ui:1214
msgctxt "printdialog|extended_tip|sheetmarginsb"
msgid "Select margin between the printed pages and paper edge."
msgstr ""
#. XhfvB
-#: vcl/uiconfig/ui/printdialog.ui:1224
+#: vcl/uiconfig/ui/printdialog.ui:1227
msgctxt "printdialog|sheetmargintxt2"
msgid "to sheet border"
msgstr ""
#. AGWe3
-#: vcl/uiconfig/ui/printdialog.ui:1237
+#: vcl/uiconfig/ui/printdialog.ui:1240
msgctxt "printdialog|labelorder"
msgid "Order:"
msgstr ""
#. psAku
-#: vcl/uiconfig/ui/printdialog.ui:1254
+#: vcl/uiconfig/ui/printdialog.ui:1257
msgctxt "printdialog|liststore2"
msgid "Left to right, then down"
msgstr ""
#. fnfLt
-#: vcl/uiconfig/ui/printdialog.ui:1255
+#: vcl/uiconfig/ui/printdialog.ui:1258
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then right"
msgstr ""
#. y6nZE
-#: vcl/uiconfig/ui/printdialog.ui:1256
+#: vcl/uiconfig/ui/printdialog.ui:1259
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then left"
msgstr ""
#. PteTg
-#: vcl/uiconfig/ui/printdialog.ui:1257
+#: vcl/uiconfig/ui/printdialog.ui:1260
msgctxt "printdialog|liststore2"
msgid "Right to left, then down"
msgstr ""
#. DvF8r
-#: vcl/uiconfig/ui/printdialog.ui:1261
+#: vcl/uiconfig/ui/printdialog.ui:1264
msgctxt "printdialog|extended_tip|orderbox"
msgid "Select order in which pages are to be printed."
msgstr ""
#. QG59F
-#: vcl/uiconfig/ui/printdialog.ui:1273
+#: vcl/uiconfig/ui/printdialog.ui:1276
msgctxt "printdialog|bordercb"
msgid "Draw a border around each page"
msgstr ""
#. 8aAGu
-#: vcl/uiconfig/ui/printdialog.ui:1282
+#: vcl/uiconfig/ui/printdialog.ui:1285
msgctxt "printdialog|extended_tip|bordercb"
msgid "Check to draw a border around each page."
msgstr ""
#. Yo4xV
-#: vcl/uiconfig/ui/printdialog.ui:1294
+#: vcl/uiconfig/ui/printdialog.ui:1297
msgctxt "printdialog|brochure"
msgid "Brochure"
msgstr "Аброшиура"
#. 3zcKq
-#: vcl/uiconfig/ui/printdialog.ui:1304
+#: vcl/uiconfig/ui/printdialog.ui:1307
msgctxt "printdialog|extended_tip|brochure"
msgid "Select to print the document in brochure format."
msgstr ""
#. JMA7A
-#: vcl/uiconfig/ui/printdialog.ui:1327
+#: vcl/uiconfig/ui/printdialog.ui:1330
msgctxt "printdialog|collationpreview"
msgid "Collation preview"
msgstr ""
#. dePkB
-#: vcl/uiconfig/ui/printdialog.ui:1332
+#: vcl/uiconfig/ui/printdialog.ui:1335
msgctxt "printdialog|extended_tip|orderpreview"
msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look."
msgstr ""
#. fCjdq
-#: vcl/uiconfig/ui/printdialog.ui:1354
+#: vcl/uiconfig/ui/printdialog.ui:1357
msgctxt "printdialog|layoutexpander"
msgid "M_ore"
msgstr ""
#. rCBA5
-#: vcl/uiconfig/ui/printdialog.ui:1370
+#: vcl/uiconfig/ui/printdialog.ui:1373
msgctxt "printdialog|label3"
msgid "Page Layout"
msgstr ""
#. A2iC5
-#: vcl/uiconfig/ui/printdialog.ui:1393
+#: vcl/uiconfig/ui/printdialog.ui:1396
msgctxt "printdialog|generallabel"
msgid "General"
msgstr ""
#. CzGM4
-#: vcl/uiconfig/ui/printdialog.ui:1447
+#: vcl/uiconfig/ui/printdialog.ui:1450
msgctxt "printdialog|extended_tip|PrintDialog"
msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document."
msgstr ""
diff --git a/source/af/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po b/source/af/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po
index ff94abeac19..97e039e83a9 100644
--- a/source/af/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po
+++ b/source/af/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2019-01-18 11:30+0000\n"
-"Last-Translator: F Wolff <friedel@translate.org.za>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"POT-Creation-Date: 2021-10-20 13:07+0200\n"
+"PO-Revision-Date: 2021-10-21 11:32+0000\n"
+"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
+"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/connectivityregistryfirebirdorgopenofficeofficedataaccess/af/>\n"
"Language: af\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.8.1\n"
"X-POOTLE-MTIME: 1547811046.000000\n"
#. DfEKx
@@ -26,12 +26,12 @@ msgctxt ""
msgid "Firebird Embedded"
msgstr "Firebird ingebed"
-#. 3davX
+#. ZVyum
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
".Drivers.Installed.sdbc:firebird:*\n"
"DriverTypeDisplayName\n"
"value.text"
-msgid "Firebird File"
-msgstr "Firebird-lêer"
+msgid "Firebird External"
+msgstr "Firebird Ekstern"
diff --git a/source/af/cui/messages.po b/source/af/cui/messages.po
index 75101cfa667..c78adda5c8e 100644
--- a/source/af/cui/messages.po
+++ b/source/af/cui/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-10-04 19:50+0200\n"
-"PO-Revision-Date: 2021-09-29 21:36+0000\n"
+"PO-Revision-Date: 2021-10-07 21:11+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/af/>\n"
"Language: af\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.8.1\n"
"X-POOTLE-MTIME: 1560976497.000000\n"
#. GyY9M
@@ -2127,7 +2127,7 @@ msgstr "Pas toe op %MODULE"
#: cui/inc/strings.hrc:397
msgctxt "RID_SVXSTR_OLE_INSERT"
msgid "Inserting OLE object..."
-msgstr ""
+msgstr "OLE objek Invoeg..."
#. mpS3V
#: cui/inc/tipoftheday.hrc:50
diff --git a/source/af/dbaccess/messages.po b/source/af/dbaccess/messages.po
index 569a8456bb2..10eb186c036 100644
--- a/source/af/dbaccess/messages.po
+++ b/source/af/dbaccess/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-10-04 19:51+0200\n"
-"PO-Revision-Date: 2021-09-17 15:36+0000\n"
+"PO-Revision-Date: 2021-10-21 11:33+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/af/>\n"
"Language: af\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.8.1\n"
"X-POOTLE-MTIME: 1548168630.000000\n"
#. BiN6g
@@ -3398,7 +3398,7 @@ msgstr "Sk_ep ’n nuwe databasis"
#: dbaccess/uiconfig/ui/generalpagewizard.ui:71
msgctxt "generalpagewizard|extended_tip|createDatabase"
msgid "Select to create a new database."
-msgstr ""
+msgstr "Selekteer om 'n nuwe databasis te skep."
#. BRSfR
#: dbaccess/uiconfig/ui/generalpagewizard.ui:90
@@ -3416,7 +3416,7 @@ msgstr "Open ’n bestaande _databasislêer"
#: dbaccess/uiconfig/ui/generalpagewizard.ui:130
msgctxt "generalpagewizard|extended_tip|openExistingDatabase"
msgid "Select to open a database file from a list of recently used files or from a file selection dialog."
-msgstr ""
+msgstr "Kies vanuit 'n lys onlangs gebruikte lêers om 'n databasis oop te maak of kies vanuit lêer seleksie dialoog."
#. dfae2
#: dbaccess/uiconfig/ui/generalpagewizard.ui:149
@@ -3428,7 +3428,7 @@ msgstr "Onlangs geb_ruik:"
#: dbaccess/uiconfig/ui/generalpagewizard.ui:174
msgctxt "generalpagewizard|extended_tip|docListBox"
msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard."
-msgstr ""
+msgstr "Kies 'n databasislêer om uit die lys onlangs gebruikte lêers oop te maak. Klik op Voltooi om die lêer onmiddellik oop te maak en uit die slimmerd te gaan."
#. dVAEy
#: dbaccess/uiconfig/ui/generalpagewizard.ui:185
@@ -3440,7 +3440,7 @@ msgstr "Open"
#: dbaccess/uiconfig/ui/generalpagewizard.ui:194
msgctxt "generalpagewizard|extended_tip|openDatabase"
msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard."
-msgstr ""
+msgstr "Maak 'n dialoog vir lêerseleksie oop waar u 'n databasislêer kan kies. Klik op Oopmaak of OK in die lêerseleksie -dialoog om die lêer onmiddellik oop te maak en uit die slimmerd te gaan."
#. cKpTp
#: dbaccess/uiconfig/ui/generalpagewizard.ui:205
@@ -3452,13 +3452,13 @@ msgstr "Verbind _aan ’n bestaande databasis"
#: dbaccess/uiconfig/ui/generalpagewizard.ui:215
msgctxt "generalpagewizard|extended_tip|connectDatabase"
msgid "Select to create a database document for an existing database connection."
-msgstr ""
+msgstr "Kies om 'n databasiedokument te skep vir 'n bestaande databasisverbinding."
#. CYq28
#: dbaccess/uiconfig/ui/generalpagewizard.ui:232
msgctxt "generalpagewizard|extended_tip|datasourceType"
msgid "Select the database type for the existing database connection."
-msgstr ""
+msgstr "Kies 'n databasistipe vir die bestaande databasis konneksie."
#. emqeD
#: dbaccess/uiconfig/ui/generalpagewizard.ui:255
@@ -3472,7 +3472,7 @@ msgstr "Dit is nie moontlik om 'n nuwe databasis te skep omdat of HSQLDB, of Fir
#: dbaccess/uiconfig/ui/generalpagewizard.ui:265
msgctxt "generalpagewizard|extended_tip|PageGeneral"
msgid "The Database Wizard creates a database file that contains information about a database."
-msgstr ""
+msgstr "Die Databasis Simmerd skep 'n databasis lêer wat inligting oor die databasis bevat."
#. DQvKi
#: dbaccess/uiconfig/ui/generalspecialjdbcdetailspage.ui:39
@@ -4660,7 +4660,7 @@ msgstr "Gebruik SQL92-naambeperkings"
#: dbaccess/uiconfig/ui/specialsettingspage.ui:32
msgctxt "specialsettingspage|extended_tip|usesql92"
msgid "Only allows characters that conform to the SQL92 naming convention in a name in a data source. All other characters are rejected. Each name must begin with a lowercase letter, an uppercase letter, or an underscore ( _ ). The remaining characters can be ASCII letters, numbers, and underscores."
-msgstr ""
+msgstr "Laat slegs karakters toe wat voldoen aan die SQL92 -naamkonvensie vir 'n naam van 'n databron. Alle ander karakters word verwerp. Elke naam moet begin of 'n kleinletter, of 'n hoofletter of 'n onderstreep (_). Die oorblywende karakters kan ASCII -letters, syfers en onderstrepe wees."
#. Gwn9n
#: dbaccess/uiconfig/ui/specialsettingspage.ui:43
@@ -4672,7 +4672,7 @@ msgstr "Voeg die Tabel Alias-naam aan die SELECT stelling"
#: dbaccess/uiconfig/ui/specialsettingspage.ui:51
msgctxt "specialsettings|extended_tip|append"
msgid "Appends the alias to the table name in SELECT statements."
-msgstr ""
+msgstr "Voeg die alias by die tabelnaam in SELECT -stellings."
#. rim5j
#: dbaccess/uiconfig/ui/specialsettingspage.ui:62
@@ -4684,7 +4684,7 @@ msgstr "Gebruik die sleutelwoord AS, voor table alias name"
#: dbaccess/uiconfig/ui/specialsettingspage.ui:70
msgctxt "specialsettingspage|extended_tip|useas"
msgid "Some databases use the keyword \"AS\" between a name and its alias, while other databases use a whitespace. Enable this option to insert AS before the alias."
-msgstr ""
+msgstr "Sommige databasisse gebruik die sleutelwoord \"AS\" tussen 'n naam en sy alias, terwyl ander databasisse 'n wit spasie gebruik. Aktiveer hierdie opsie om \"AS\" voor die alias in te voeg."
#. JDTsA
#: dbaccess/uiconfig/ui/specialsettingspage.ui:81
@@ -4696,7 +4696,7 @@ msgstr "Gebruik buite Binding sintaks '{OJ }'"
#: dbaccess/uiconfig/ui/specialsettingspage.ui:89
msgctxt "specialsettingsoage|extended_tip|useoj"
msgid "Use escape sequences for outer joins. The syntax for this escape sequence is {oj outer-join}"
-msgstr ""
+msgstr "Gebruik ontsnapkarakters vir buitenste verbindings. Die sintaksis vir hierdie ontsnapkarakters is {oj outer-join}"
#. T8TKQ
#: dbaccess/uiconfig/ui/specialsettingspage.ui:100
@@ -4708,7 +4708,7 @@ msgstr "Negeer die regte van die databasis drywer"
#: dbaccess/uiconfig/ui/specialsettingspage.ui:108
msgctxt "specialsettingspage|extended_tip|ignoreprivs"
msgid "Ignores access privileges that are provided by the database driver."
-msgstr ""
+msgstr "Ignoreer toegangsregte wat deur die databasisdrywer verskaf word."
#. QK4W3
#: dbaccess/uiconfig/ui/specialsettingspage.ui:119
@@ -4720,7 +4720,7 @@ msgstr "Vervang benoemde parameters met “?”"
#: dbaccess/uiconfig/ui/specialsettingspage.ui:127
msgctxt "specialsettingspage|extended_tip|replaceparams"
msgid "Replaces named parameters in a data source with a question mark (?)."
-msgstr ""
+msgstr "Vervang genoemde parameters in 'n datahulpbron met 'n vraagteken (?)."
#. kfSki
#: dbaccess/uiconfig/ui/specialsettingspage.ui:138
@@ -4732,7 +4732,7 @@ msgstr "Vertoon weergawekolomme (indien beskikbaar)"
#: dbaccess/uiconfig/ui/specialsettingspage.ui:146
msgctxt "specialsettingspage|extended_tip|displayver"
msgid "Displays the internal version number of the record in the database table."
-msgstr ""
+msgstr "Toon die interne weergawenommer van die rekord in die databasistabel."
#. JqBdc
#: dbaccess/uiconfig/ui/specialsettingspage.ui:157
@@ -4744,7 +4744,7 @@ msgstr "Gebruik katalogusnaam in SELECT-stellings"
#: dbaccess/uiconfig/ui/specialsettingspage.ui:165
msgctxt "specialsettingspage|extended_tip|usecatalogname"
msgid "Uses the current data source of the catalog. This option is useful when the ODBC data source is a database server. Do not select this option if the ODBC data source is a dBASE driver."
-msgstr ""
+msgstr "Gebruik die huidige databron van die katalogus. Hierdie opsie is handig as die ODBC -databron 'n databasisdrywer is. Moenie hierdie opsie kies as die ODBC -databron 'n dBASE -drywer is nie."
#. yFGxG
#: dbaccess/uiconfig/ui/specialsettingspage.ui:176
@@ -4756,7 +4756,7 @@ msgstr "Gebruik skemanaam in SELECT-stellings"
#: dbaccess/uiconfig/ui/specialsettingspage.ui:184
msgctxt "specialsettingspage|extended_tip|useschemaname"
msgid "Allows you to use the schema name in SELECT statements."
-msgstr ""
+msgstr "Hiermee kan u die skema -naam in SELECT -stellings gebruik."
#. gyC7J
#: dbaccess/uiconfig/ui/specialsettingspage.ui:195
@@ -4768,7 +4768,7 @@ msgstr "Skep indeks met ASC- of DESC-stelling"
#: dbaccess/uiconfig/ui/specialsettingspage.ui:203
msgctxt "specialsettingspage|extended_tip|createindex"
msgid "Creates an index with ASC or DESC statements."
-msgstr ""
+msgstr "Skep 'n indeks met ASC- of DESC -opsies."
#. Xabxp
#: dbaccess/uiconfig/ui/specialsettingspage.ui:214
@@ -4780,7 +4780,7 @@ msgstr "Eindig teksreëls met CR+LF"
#: dbaccess/uiconfig/ui/specialsettingspage.ui:222
msgctxt "specialsettingspage|extended_tip|eol"
msgid "Select to use the CR + LF code pair to end every text line (preferred for DOS and Windows operating systems)."
-msgstr ""
+msgstr "Kies om die CR + LF -sleutelpaar te gebruik waarmee elke teksreël beëindig sal word (verkieslik vir DOS- en Windows -bedryfstelsels)."
#. XFM7x
#: dbaccess/uiconfig/ui/specialsettingspage.ui:233
@@ -4792,7 +4792,7 @@ msgstr "Ignoreer geldveldinligting"
#: dbaccess/uiconfig/ui/specialsettingspage.ui:241
msgctxt "specialsettingspage|extended_tip|ignorecurrency"
msgid "Only for Oracle JDBC connections. When enabled it specifies that no column is treated as a currency field. The field type returned from the database driver is discarded."
-msgstr ""
+msgstr "Net vir Oracle JDBC koppelings. Wanneer geaktiveer, spesifiseer dit dat geen kolom as 'n valuta-veld gehanteer word nie. Die veld-tipe terugvoer van die databasis drywer word geïgnoreer."
#. 2tRzG
#: dbaccess/uiconfig/ui/specialsettingspage.ui:252
@@ -4804,7 +4804,7 @@ msgstr "Toevoerkontroles vir vir vereiste velde in vorms"
#: dbaccess/uiconfig/ui/specialsettingspage.ui:260
msgctxt "specialsettingspage|extended_tip|inputchecks"
msgid "When you enter a new record or update an existing record in a form, and you leave a field empty which is bound to a database column which requires input, then you will see a message complaining about the empty field."
-msgstr ""
+msgstr "As u 'n nuwe rekord invoer of 'n bestaande rekord in 'n vorm wysig, en u 'n veld leeg laat wat verbonde is aan 'n databasiskolom wat invoer vereis, sal u 'n foutboodskap sien oor die leë veld."
#. jEgvf
#: dbaccess/uiconfig/ui/specialsettingspage.ui:271
@@ -4816,7 +4816,7 @@ msgstr "Gebruik ODBC-formaat Datum/Tyd simbole"
#: dbaccess/uiconfig/ui/specialsettingspage.ui:279
msgctxt "specialsettingspage|extended_tip|useodbcliterals"
msgid "Use date/time literals that conform to ODBC standard."
-msgstr ""
+msgstr "Gebruik datum/tyd formaat wat voldoen aan die ODBC -standaard."
#. GuCLC
#: dbaccess/uiconfig/ui/specialsettingspage.ui:290
@@ -4828,7 +4828,7 @@ msgstr "Ondersteun primêre sleutels"
#: dbaccess/uiconfig/ui/specialsettingspage.ui:298
msgctxt "specialsettingspage|extended_tip|primarykeys"
msgid "Enable to overrule Base's heuristics used to detect whether the database supports primary keys."
-msgstr ""
+msgstr "Aktiveer om Base se heuristiek wat gebruik is te kan oorskry, om vas te stel of die databasis primêre sleutels ondersteun."
#. o7mns
#: dbaccess/uiconfig/ui/specialsettingspage.ui:309
@@ -4840,7 +4840,7 @@ msgstr "Aanvaar die resultaat datatipe van die databasis drywer"
#: dbaccess/uiconfig/ui/specialsettingspage.ui:317
msgctxt "specialsettingspage|extended_tip|resulttype"
msgid "Use the database driver different scroll capabilities of a result set."
-msgstr ""
+msgstr "Gebruik die databasisdrywer se verskillende blaai moontlikhede van die resultaat stel."
#. RQ7hP
#: dbaccess/uiconfig/ui/specialsettingspage.ui:337
@@ -4870,13 +4870,13 @@ msgstr "Vermengde"
#: dbaccess/uiconfig/ui/specialsettingspage.ui:355
msgctxt "specialsettingspage|comparison"
msgid "MS Access"
-msgstr "MS Access"
+msgstr "MS Access DB"
#. FxEbE
#: dbaccess/uiconfig/ui/specialsettingspage.ui:359
msgctxt "specialsettingspage|extended_tip|comparison"
msgid "Select the type of Boolean comparison that you want to use."
-msgstr ""
+msgstr "Kies die tipe Boole -vergelyking wat u wil gebruik."
#. 3eorZ
#: dbaccess/uiconfig/ui/specialsettingspage.ui:372
@@ -4888,7 +4888,7 @@ msgstr "Rye vir kolomtipes soektog:"
#: dbaccess/uiconfig/ui/specialsettingspage.ui:391
msgctxt "specialsettingspage|extended_tip|rows"
msgid "Select the number of rows to let the driver detect the data type."
-msgstr ""
+msgstr "Kies die aantal rye vir die drywer om data tipe te bepaal."
#. Y7PiJ
#: dbaccess/uiconfig/ui/sqlexception.ui:18
diff --git a/source/af/extensions/messages.po b/source/af/extensions/messages.po
index e352bca5a1a..235ba795512 100644
--- a/source/af/extensions/messages.po
+++ b/source/af/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-10 23:11+0200\n"
+"POT-Creation-Date: 2021-10-20 13:07+0200\n"
"PO-Revision-Date: 2021-09-14 10:10+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/extensionsmessages/af/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1548063388.000000\n"
#. cBx8W
@@ -4183,91 +4183,163 @@ msgid "Scanner"
msgstr "Skandeerder"
#. 8aFBr
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:66
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:78
msgctxt "sanedialog|deviceInfoButton"
msgid "About Dev_ice"
msgstr "Aangaande t_oestel"
+#. 3aG8b
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:85
+msgctxt "sanedialog|extended_tip|deviceInfoButton"
+msgid "Displays a popup window with information obtained from the scanner driver."
+msgstr ""
+
#. 3EeXn
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:80
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:97
msgctxt "sanedialog|previewButton"
msgid "Create Previe_w"
msgstr "Skep _voorskou"
+#. FPGEB
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:104
+msgctxt "sanedialog|extended_tip|previewButton"
+msgid "Scans and displays the document in the preview area."
+msgstr ""
+
#. ihLsf
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:94
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:116
msgctxt "sanedialog|scanButton"
msgid "_Scan"
msgstr "_Skandeer"
+#. a4hC3
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:123
+msgctxt "sanedialog|extended_tip|ok"
+msgid "Scans an image, and then inserts the result into the document and closes the dialog."
+msgstr ""
+
#. gFREe
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:160
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:187
msgctxt "sanedialog|label3"
msgid "_Left:"
msgstr "_Links:"
#. ErDB4
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:174
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:201
msgctxt "sanedialog|label4"
msgid "To_p:"
msgstr "_Bo:"
#. bSfBR
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:188
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:215
msgctxt "sanedialog|label5"
msgid "_Right:"
msgstr "_Regs:"
#. NGDq3
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:202
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:229
msgctxt "sanedialog|label6"
msgid "_Bottom:"
msgstr "_Onder:"
+#. nu6SM
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:249
+msgctxt "sanedialog|extended_tip|topSpinbutton"
+msgid "Set the top margin of the scan area."
+msgstr ""
+
+#. oDppB
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:268
+msgctxt "sanedialog|extended_tip|rightSpinbutton"
+msgid "Set the right margin of the scan area."
+msgstr ""
+
+#. EdgNn
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:287
+msgctxt "sanedialog|extended_tip|bottomSpinbutton"
+msgid "Set the bottom margin of the scan area."
+msgstr ""
+
+#. L7tZS
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:306
+msgctxt "sanedialog|extended_tip|leftSpinbutton"
+msgid "Set the left margin of the scan area."
+msgstr ""
+
#. YfU4m
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:274
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:321
msgctxt "sanedialog|label1"
msgid "Scan Area"
msgstr "Skandeergebied"
+#. wECiq
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:366
+msgctxt "sanedialog|extended_tip|preview"
+msgid "Displays a preview of the scanned image. The preview area contains eight handles. Drag the handles to adjust the scan area or enter a value in the corresponding margin spin box."
+msgstr ""
+
#. FZ7Vw
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:327
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:379
msgctxt "sanedialog|label2"
msgid "Preview"
msgstr "Voorskou"
#. EiiLN
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:361
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:413
msgctxt "sanedialog|label7"
msgid "Device _used"
msgstr "Toestel gebr_uik"
#. W6hNP
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:375
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:427
msgctxt "sanedialog|label8"
msgid "Resolution [_DPI]"
msgstr "Resolusie [_DPI]"
+#. diRy3
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:444
+msgctxt "sanedialog|extended_tip|deviceCombobox"
+msgid "Displays a list of available scanners detected in your system."
+msgstr ""
+
+#. nBuc6
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:466
+msgctxt "sanedialog|extended_tip|reslCombobox"
+msgid "Select the resolution in dots per inch for the scan job."
+msgstr ""
+
#. t3Tuq
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:430
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:492
msgctxt "sanedialog|advancedCheckbutton"
msgid "Show advanced options"
msgstr "Wys gevorderde opsies"
+#. yXnEA
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:500
+msgctxt "sanedialog|extended_tip|advancedcheckbutton"
+msgid "Mark this checkbox to display more configuration options for the scanner device."
+msgstr ""
+
#. gneMZ
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:460
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:527
msgctxt "sanedialog|label10"
msgid "Options:"
msgstr "Opsies:"
+#. 4FHyM
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:569
+msgctxt "sanedialog\\extended_tip|optionSvTreeListBox"
+msgid "Displays the list of available scanner driver advanced options. Double click an option to display its contents just below."
+msgstr ""
+
#. VDQay
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:536
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:607
msgctxt "sanedialog|optionsButton"
msgid "Se_t"
msgstr "S_tel"
#. bNTfS
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:609
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:680
msgctxt "sanedialog|vectorLabel"
msgid "Vector element"
msgstr "Vektorelement"
diff --git a/source/af/fpicker/messages.po b/source/af/fpicker/messages.po
index 0f34b1fffe3..7f6375b1840 100644
--- a/source/af/fpicker/messages.po
+++ b/source/af/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
"PO-Revision-Date: 2021-01-26 17:36+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/fpickermessages/af/>\n"
@@ -222,49 +222,49 @@ msgid "_Open"
msgstr "_Oopmaak"
#. JnE2t
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:548
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:551
msgctxt "explorerfiledialog|play"
msgid "_Play"
msgstr "-Speel"
#. dWNqZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:586
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:589
msgctxt "explorerfiledialog|file_name_label"
msgid "File _name:"
msgstr "Lêer_naam:"
#. 9cjFB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:612
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:615
msgctxt "explorerfiledialog|file_type_label"
msgid "File _type:"
msgstr "Lêer_tipe:"
#. quCXH
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:676
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:679
msgctxt "explorerfiledialog|readonly"
msgid "_Read-only"
msgstr "_Leesalleen"
#. hm2xy
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:699
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:702
msgctxt "explorerfiledialog|password"
msgid "Save with password"
msgstr "Stoor met wagwoord"
#. 8EYcB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:712
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:715
msgctxt "explorerfiledialog|extension"
msgid "_Automatic file name extension"
msgstr "_Outomatiese lêernaamuitbreiding"
#. 2CgAZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:725
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:728
msgctxt "explorerfiledialog|options"
msgid "Edit _filter settings"
msgstr "Redigeer _filterinstellings"
#. 6XqLj
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:752
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:755
msgctxt "explorerfiledialog|gpgencrypt"
msgid "Encrypt with GPG key"
msgstr "Enkripteer met GPG-sleutel"
@@ -323,68 +323,62 @@ msgctxt "remotefilesdialog|open"
msgid "_Open"
msgstr "_Oopmaak"
-#. kKETY
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:157
-msgctxt "remotefilesdialog|save"
-msgid "_Save"
-msgstr "_Stoor"
-
#. uGwr4
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:186
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:175
msgctxt "remotefilesdialog|label1"
msgid "Service:"
msgstr "Diens:"
#. cwNkT
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:214
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:203
msgctxt "remotefilesdialog|add_service_btn"
msgid "_Manage services"
msgstr "_Hersien dienste"
#. Jnndg
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:264
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:253
msgctxt "remotefilesdialog|list_view|tooltip_text"
msgid "List view"
msgstr "Lysaansig"
#. xxBtB
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:279
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:268
msgctxt "remotefilesdialog|icon_view|tooltip_text"
msgid "Icon view"
msgstr "Ikoonaansig"
#. 6CiqC
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:295
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:284
msgctxt "remotefilesdialog|new_folder|tooltip_text"
msgid "Create New Folder"
msgstr "Skep nuwe gids"
#. aXDaC
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:400
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:389
msgctxt "remotefilesdialog|name"
msgid "Name"
msgstr "Naam"
#. qRHnF
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:420
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:409
msgctxt "remotefilesdialog|size"
msgid "Size"
msgstr "Grootte"
#. qeF3r
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:434
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:423
msgctxt "remotefilesdialog|date"
msgid "Date modified"
msgstr "Wysigingsdatum"
#. cGNWD
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:508
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:499
msgctxt "remotefilesdialog|filterLabel"
msgid "Filter"
msgstr "Filter"
#. rCVer
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:522
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:513
msgctxt "remotefilesdialog|nameLabel"
msgid "File name"
msgstr "Lêernaam"
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 d6d52bcebff..4858b022bec 100644
--- a/source/af/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/af/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-04 19:52+0200\n"
-"PO-Revision-Date: 2021-09-24 08:36+0000\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
+"PO-Revision-Date: 2021-10-21 11:33+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/af/>\n"
"Language: af\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.8.1\n"
"X-POOTLE-MTIME: 1560976865.000000\n"
#. W5ukN
@@ -1146,6 +1146,16 @@ msgctxt ""
msgid "~Insert or Edit..."
msgstr "Voeg ~in of redigeer..."
+#. dHdzP
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Commands..uno:InsertPivotTableNBLabel\n"
+"Label\n"
+"value.text"
+msgid "~Insert or Edit Pivot Table..."
+msgstr "~Invoeg of Wysig Spil Tabel..."
+
#. vqC2u
#: CalcCommands.xcu
msgctxt ""
@@ -3156,15 +3166,15 @@ msgctxt ""
msgid "Merge Cells"
msgstr "Voeg selle saam"
-#. GGRNG
+#. APBqu
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:SplitCell\n"
"Label\n"
"value.text"
-msgid "Split Cells"
-msgstr "Verdeel selle"
+msgid "Unmerge Cells"
+msgstr "Ontbondel Selle"
#. qJGdH
#: CalcCommands.xcu
@@ -3176,6 +3186,16 @@ msgctxt ""
msgid "M~erge and Center Cells"
msgstr "Vo~eg selle saam"
+#. ET4vB
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Commands..uno:ToggleMergeCells\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Merge and center or unmerge cells depending on the current toggle state"
+msgstr "Saamvoeg en senter of opspleet van selle afhangende van die huidige gekose status"
+
#. VZsps
#: CalcCommands.xcu
msgctxt ""
@@ -4356,15 +4376,15 @@ msgctxt ""
msgid "Cell ~Comments"
msgstr "~Selopmerkings"
-#. 3xhAF
+#. yqd4v
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:MergeCellsMenu\n"
"Label\n"
"value.text"
-msgid "M~erge Cells"
-msgstr "Vo~eg selle saam"
+msgid "M~erge and Unmerge Cells"
+msgstr "S~aamvoeg en Opspleet vaan Selle"
#. G3E3Q
#: CalcCommands.xcu
@@ -18586,6 +18606,16 @@ msgctxt ""
msgid "Line Spacing: 1"
msgstr "Reëlspasiëring: 1"
+#. jmAwA
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:SpacePara115\n"
+"Label\n"
+"value.text"
+msgid "Line Spacing: 1.15"
+msgstr "Lyn Spasiëring: 1.15"
+
#. q8wJt
#: GenericCommands.xcu
msgctxt ""
@@ -32616,7 +32646,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Edit Fo~rmula"
-msgstr ""
+msgstr "Redigeer Fo~rmule"
#. iABvA
#: WriterCommands.xcu
@@ -32626,7 +32656,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert or Edit Formula"
-msgstr ""
+msgstr "Invoeg of Redigeer Formule"
#. DGAud
#: WriterCommands.xcu
diff --git a/source/af/sc/messages.po b/source/af/sc/messages.po
index 5de79c39e8f..42c31a88640 100644
--- a/source/af/sc/messages.po
+++ b/source/af/sc/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-27 19:09+0200\n"
-"PO-Revision-Date: 2021-09-24 08:36+0000\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
+"PO-Revision-Date: 2021-10-21 11:33+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/af/>\n"
"Language: af\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.8.1\n"
"X-POOTLE-MTIME: 1560976792.000000\n"
#. kBovX
@@ -27093,314 +27093,344 @@ msgctxt "pastespecial|paste_values_only|tooltip_text"
msgid "Values Only"
msgstr "Slegs waardes"
+#. tDknw
+#: sc/uiconfig/scalc/ui/pastespecial.ui:141
+msgctxt "pastespecial|extended_tip|paste_values_only"
+msgid "Pastes numbers, text, dates and the results of formulas."
+msgstr "Plak getalle, teks, datums en die resultate van formules."
+
#. CTEKF
-#: sc/uiconfig/scalc/ui/pastespecial.ui:148
+#: sc/uiconfig/scalc/ui/pastespecial.ui:153
msgctxt "pastespecial|paste_values_formats|label"
msgid "Values & _Formats"
msgstr "Waardes & _Formate"
#. 7GuDi
-#: sc/uiconfig/scalc/ui/pastespecial.ui:152
+#: sc/uiconfig/scalc/ui/pastespecial.ui:157
msgctxt "pastespecial|paste_values_formats|tooltip_text"
msgid "Values & Formats"
msgstr "Waardes & Formate"
+#. FjJPU
+#: sc/uiconfig/scalc/ui/pastespecial.ui:164
+msgctxt "pastespecial|extended_tip|paste_values_formats"
+msgid "Pastes cell values, formula results and formats applied to cells."
+msgstr "Plak selwaardes, formule -resultate en formate wat op selle toegepas word."
+
#. Rb8KR
-#: sc/uiconfig/scalc/ui/pastespecial.ui:166
+#: sc/uiconfig/scalc/ui/pastespecial.ui:176
msgctxt "pastespecial|paste_format|label"
msgid "Formats Onl_y"
msgstr "Slegs Formate"
#. Cvyjn
-#: sc/uiconfig/scalc/ui/pastespecial.ui:170
+#: sc/uiconfig/scalc/ui/pastespecial.ui:180
msgctxt "pastespecial|paste_format|tooltip_text"
msgid "Formats Only"
msgstr "Slegs Formate"
+#. Jhc4o
+#: sc/uiconfig/scalc/ui/pastespecial.ui:187
+msgctxt "pastespecial|extended_tip|paste_formats"
+msgid "Pastes only the formats from the source range without changing the values in the destination range."
+msgstr "Plak slegs die formate uit die bronreeks sonder om die waardes in die bestemmingsreeks te verander."
+
#. YGdhH
-#: sc/uiconfig/scalc/ui/pastespecial.ui:184
+#: sc/uiconfig/scalc/ui/pastespecial.ui:199
msgctxt "pastespecial|paste_transpose|label"
msgid "_Transpose All"
msgstr "Alles _Transponeer"
#. sbLGi
-#: sc/uiconfig/scalc/ui/pastespecial.ui:188
+#: sc/uiconfig/scalc/ui/pastespecial.ui:203
msgctxt "pastespecial|paste_transpose|tooltip_text"
msgid "Transpose All"
msgstr "Alles Transponeer"
+#. 3BC6U
+#: sc/uiconfig/scalc/ui/pastespecial.ui:210
+msgctxt "pastespecial|extended_tip|paste_transpose"
+msgid "Pastes cell contents transposed, hence columns are converted to rows."
+msgstr "Plak selinhoud getransponeer, dan word kolomme na rye omgeskakel."
+
#. 4ETCT
-#: sc/uiconfig/scalc/ui/pastespecial.ui:209
+#: sc/uiconfig/scalc/ui/pastespecial.ui:229
msgctxt "pastespecial|cbImmediately"
msgid "_Run immediately"
msgstr "Di_rek Uitvoer"
+#. 7a9JE
+#: sc/uiconfig/scalc/ui/pastespecial.ui:238
+msgctxt "pastespecial|extended_tip|cbImmediately"
+msgid "Check this option to run the preset immediately. Uncheck it to manipulate the options before clicking OK."
+msgstr "Merk hierdie opsie om die voorafbepaalde instelling onmiddellik uit te voer. Ontmerk om die opsies te manipuleer voordat u op OK klik."
+
#. YD43i
-#: sc/uiconfig/scalc/ui/pastespecial.ui:229
+#: sc/uiconfig/scalc/ui/pastespecial.ui:254
msgctxt "pastespecial|frPresets"
msgid "Presets"
msgstr "Instellings"
#. g6DfA
-#: sc/uiconfig/scalc/ui/pastespecial.ui:265
+#: sc/uiconfig/scalc/ui/pastespecial.ui:290
msgctxt "pastespecial|paste_all"
msgid "_All"
msgstr "_Alles"
#. Labin
-#: sc/uiconfig/scalc/ui/pastespecial.ui:273
+#: sc/uiconfig/scalc/ui/pastespecial.ui:298
msgctxt "pastespecial|extended_tip|paste_all"
msgid "Pastes all cell contents, comments, formats, and objects into the current document."
msgstr "Voeg by alle selinhoud, opmerkings, formate en voorwerpe in die huidige dokument."
#. qzFbg
-#: sc/uiconfig/scalc/ui/pastespecial.ui:284
+#: sc/uiconfig/scalc/ui/pastespecial.ui:309
msgctxt "pastespecial|numbers"
msgid "_Numbers"
msgstr "_Getalle"
#. SCVEu
-#: sc/uiconfig/scalc/ui/pastespecial.ui:292
+#: sc/uiconfig/scalc/ui/pastespecial.ui:317
msgctxt "pastespecial|extended_tip|numbers"
msgid "Inserts cells containing numbers."
msgstr "Voeg selle in wat syfers bevat."
#. BSEWE
-#: sc/uiconfig/scalc/ui/pastespecial.ui:303
+#: sc/uiconfig/scalc/ui/pastespecial.ui:328
msgctxt "pastespecial|text"
msgid "Te_xt"
msgstr "Te_ks"
#. JWDk5
-#: sc/uiconfig/scalc/ui/pastespecial.ui:311
+#: sc/uiconfig/scalc/ui/pastespecial.ui:336
msgctxt "pastespecial|extended_tip|text"
msgid "Inserts cells containing text."
msgstr "Voeg selle in wat teks bevat."
#. DBaJD
-#: sc/uiconfig/scalc/ui/pastespecial.ui:322
+#: sc/uiconfig/scalc/ui/pastespecial.ui:347
msgctxt "pastespecial|datetime"
msgid "_Date & time"
msgstr "_Datum & Tyd"
#. jq6Md
-#: sc/uiconfig/scalc/ui/pastespecial.ui:330
+#: sc/uiconfig/scalc/ui/pastespecial.ui:355
msgctxt "pastespecial|extended_tip|datetime"
msgid "Inserts cells containing date and time values."
msgstr "Voeg selle in wat datum en tyd waardes bevat."
#. aHXF8
-#: sc/uiconfig/scalc/ui/pastespecial.ui:341
+#: sc/uiconfig/scalc/ui/pastespecial.ui:366
msgctxt "pastespecial|formats"
msgid "For_mats"
msgstr "Formate"
#. ehyEf
-#: sc/uiconfig/scalc/ui/pastespecial.ui:349
+#: sc/uiconfig/scalc/ui/pastespecial.ui:374
msgctxt "pastespecial|extended_tip|formats"
msgid "Inserts cell format attributes."
msgstr "Voeg by sel formate."
#. NT4Am
-#: sc/uiconfig/scalc/ui/pastespecial.ui:360
+#: sc/uiconfig/scalc/ui/pastespecial.ui:385
msgctxt "pastespecial|comments"
msgid "_Comments"
msgstr "_Opmerkings"
#. 3uP7i
-#: sc/uiconfig/scalc/ui/pastespecial.ui:368
+#: sc/uiconfig/scalc/ui/pastespecial.ui:393
msgctxt "pastespecial|extended_tip|comments"
msgid "Inserts comments that are attached to cells. If you want to add the comments to the existing cell content, select the \"Add\" operation."
msgstr "Voeg in kommentaar by die selle toegevoeg word. Kies die \"Voeg by\"-opsie om kommentaar by die bestaande inhoud te voeg."
#. YZQBh
-#: sc/uiconfig/scalc/ui/pastespecial.ui:379
+#: sc/uiconfig/scalc/ui/pastespecial.ui:404
msgctxt "pastespecial|objects"
msgid "Ob_jects"
msgstr "Ob_jekte"
#. DZsnr
-#: sc/uiconfig/scalc/ui/pastespecial.ui:387
+#: sc/uiconfig/scalc/ui/pastespecial.ui:412
msgctxt "pastespecial|extended_tip|objects"
msgid "Inserts objects contained within the selected cell range. These can be OLE objects, chart objects, or drawing objects."
msgstr "Voeg objekte by die geselekteerde selreeks in. Dit kan OLE-objekte, diagramme of tekenobjekte wees."
#. jrjYA
-#: sc/uiconfig/scalc/ui/pastespecial.ui:398
+#: sc/uiconfig/scalc/ui/pastespecial.ui:423
msgctxt "pastespecial|formulas"
msgid "F_ormulas"
msgstr "F_ormules"
#. Na5Ba
-#: sc/uiconfig/scalc/ui/pastespecial.ui:406
+#: sc/uiconfig/scalc/ui/pastespecial.ui:431
msgctxt "pastespecial|extended_tip|formulas"
msgid "Inserts cells containing formulae."
msgstr "Voeg selle in wat formules bevat."
#. UtpWA
-#: sc/uiconfig/scalc/ui/pastespecial.ui:421
+#: sc/uiconfig/scalc/ui/pastespecial.ui:446
msgctxt "pastespecial|label1"
msgid "Paste"
msgstr "Plak"
#. fonBJ
-#: sc/uiconfig/scalc/ui/pastespecial.ui:452
+#: sc/uiconfig/scalc/ui/pastespecial.ui:477
msgctxt "pastespecial|no_shift"
msgid "Don't sh_ift"
msgstr "_Nie verskuif nie"
#. q3Xv3
-#: sc/uiconfig/scalc/ui/pastespecial.ui:461
+#: sc/uiconfig/scalc/ui/pastespecial.ui:486
msgctxt "pastespecial|extended_tip|no_shift"
msgid "Inserted cells replace the target cells."
msgstr "Ingevoegde selle vervang die teikenselle."
#. RuiU6
-#: sc/uiconfig/scalc/ui/pastespecial.ui:473
+#: sc/uiconfig/scalc/ui/pastespecial.ui:498
msgctxt "pastespecial|move_down"
msgid "_Down"
msgstr "_Afwaarts"
#. BNALN
-#: sc/uiconfig/scalc/ui/pastespecial.ui:482
+#: sc/uiconfig/scalc/ui/pastespecial.ui:507
msgctxt "pastespecial|extended_tip|move_down"
msgid "Target cells are shifted downward when you insert cells from the clipboard."
msgstr "Teikenselle skuif af as u selle vanaf die knipbord plak."
#. obSAt
-#: sc/uiconfig/scalc/ui/pastespecial.ui:494
+#: sc/uiconfig/scalc/ui/pastespecial.ui:519
msgctxt "pastespecial|move_right"
msgid "_Right"
msgstr "_Regs"
#. GEFe7
-#: sc/uiconfig/scalc/ui/pastespecial.ui:503
+#: sc/uiconfig/scalc/ui/pastespecial.ui:528
msgctxt "pastespecial|extended_tip|move_right"
msgid "Target cells are shifted to the right when you insert cells from the clipboard."
msgstr "Teikenselle skuif na regs wanneer u selle vanaf die knipbord plak."
#. fzYTm
-#: sc/uiconfig/scalc/ui/pastespecial.ui:519
+#: sc/uiconfig/scalc/ui/pastespecial.ui:544
msgctxt "pastespecial|label4"
msgid "Shift Cells"
msgstr "Selle verskuif"
#. nuJd9
-#: sc/uiconfig/scalc/ui/pastespecial.ui:563
+#: sc/uiconfig/scalc/ui/pastespecial.ui:588
msgctxt "pastespecial|link"
msgid "As _Link"
msgstr "As Koppe_ling"
#. Bg9dc
-#: sc/uiconfig/scalc/ui/pastespecial.ui:571
+#: sc/uiconfig/scalc/ui/pastespecial.ui:596
msgctxt "pastespecial|extended_tip|link"
msgid "Inserts the cell range as a link, so that changes made to the cells in the source file are updated in the target file. To ensure that changes made to empty cells in the source file are updated in the target file, ensure that the \"Paste All\" option is also selected."
msgstr "Voeg die selreeks as 'n skakel in, sodat veranderinge aan selle in die bronlêer in die bestemmingslêer opgedateer word. Om te verseker dat veranderinge aan leë selle in die bronlêer in die teikelêer opgedateer word, moet u seker maak dat die \"Plak Alles\"-opsie ook gekies is."
#. qt6LA
-#: sc/uiconfig/scalc/ui/pastespecial.ui:582
+#: sc/uiconfig/scalc/ui/pastespecial.ui:607
msgctxt "pastespecial|transpose"
msgid "Trans_pose"
msgstr "Trans_poneer"
#. P3eE4
-#: sc/uiconfig/scalc/ui/pastespecial.ui:590
+#: sc/uiconfig/scalc/ui/pastespecial.ui:615
msgctxt "pastespecial|extended_tip|transpose"
msgid "The rows of the range in the clipboard are pasted to become columns of the output range. The columns of the range in the clipboard are pasted to become rows."
msgstr "Die lrye van die area in die klembord word as kolomme in die uitvoerarea ingevoeg. Die kolomme van die gebied op die knipbord word as rye ingevoeg."
#. eG52z
-#: sc/uiconfig/scalc/ui/pastespecial.ui:601
+#: sc/uiconfig/scalc/ui/pastespecial.ui:626
msgctxt "pastespecial|skip_empty"
msgid "_Skip empty cells"
msgstr "Leë selle oor_slaan"
#. BodqB
-#: sc/uiconfig/scalc/ui/pastespecial.ui:605
+#: sc/uiconfig/scalc/ui/pastespecial.ui:630
msgctxt "pastespecial|skip_empty"
msgid "If enabled, blank cells in source will not override the target."
msgstr "As dit geaktiveer word, word teikenselle nie deur leë bronselle oorskryf nie."
#. u2Cms
-#: sc/uiconfig/scalc/ui/pastespecial.ui:610
+#: sc/uiconfig/scalc/ui/pastespecial.ui:635
msgctxt "pastespecial|extended_tip|skip_empty"
msgid "Empty cells from the clipboard do not replace target cells. If you use this option in conjunction with the \"Multiply\" or the \"Divide\" operation, the operation is not applied to the target cell of an empty cell in the clipboard."
msgstr "Leë selle vanuit die knipbord vervang nie teikenselle nie. As daar 'n leë sel op die klembord is, word dit nie saam met die vermenigvuldig of verdeel nie, sal die bewerking nie op die teikensel toegepas word nie."
#. jTFAJ
-#: sc/uiconfig/scalc/ui/pastespecial.ui:625
+#: sc/uiconfig/scalc/ui/pastespecial.ui:650
msgctxt "pastespecial|OptionsFrame"
msgid "Options"
msgstr "Opsies"
#. nJiy4
-#: sc/uiconfig/scalc/ui/pastespecial.ui:656
+#: sc/uiconfig/scalc/ui/pastespecial.ui:681
msgctxt "pastespecial|none"
msgid "Non_e"
msgstr "G_een"
#. 7GKDG
-#: sc/uiconfig/scalc/ui/pastespecial.ui:665
+#: sc/uiconfig/scalc/ui/pastespecial.ui:690
msgctxt "pastespecial|extended_tip|none"
msgid "Does not apply an operation when you insert the cell range from the clipboard. The contents of the clipboard will replace existing cell contents."
msgstr "Pas geen bewerking toe as u die selreeks van die knipbord invoeg nie. Die inhoud van die knipbord vervang die bestaande selinhoud."
#. CEsbt
-#: sc/uiconfig/scalc/ui/pastespecial.ui:677
+#: sc/uiconfig/scalc/ui/pastespecial.ui:702
msgctxt "pastespecial|add"
msgid "_Add"
msgstr "_Voeg by"
#. bNyh2
-#: sc/uiconfig/scalc/ui/pastespecial.ui:686
+#: sc/uiconfig/scalc/ui/pastespecial.ui:711
msgctxt "pastespecial|extended_tip|add"
msgid "Adds the values in the clipboard cells to the values in the target cells. Also, if the clipboard only contains comments, adds the comments to the target cells."
msgstr "Voeg die waardes in die knipbord selle by die waardes in die teikenselle. As die knipbord slegs opmerkings bevat, word die kommentaar by die teikenselle gevoeg."
#. iFTvh
-#: sc/uiconfig/scalc/ui/pastespecial.ui:698
+#: sc/uiconfig/scalc/ui/pastespecial.ui:723
msgctxt "pastespecial|subtract"
msgid "_Subtract"
msgstr "_Trek af"
#. 2SKbT
-#: sc/uiconfig/scalc/ui/pastespecial.ui:707
+#: sc/uiconfig/scalc/ui/pastespecial.ui:732
msgctxt "pastespecial|extended_tip|subtract"
msgid "Subtracts the values in the clipboard cells from the values in the target cells."
msgstr "Trek die waardes in die selle op die knipbord af van die waardes in die teikenselle."
#. zdDUB
-#: sc/uiconfig/scalc/ui/pastespecial.ui:719
+#: sc/uiconfig/scalc/ui/pastespecial.ui:744
msgctxt "pastespecial|multiply"
msgid "_Multiply"
msgstr "_Vermenigvuldig"
#. jkRDm
-#: sc/uiconfig/scalc/ui/pastespecial.ui:728
+#: sc/uiconfig/scalc/ui/pastespecial.ui:753
msgctxt "pastespecial|extended_tip|multiply"
msgid "Multiplies the values in the clipboard cells with the values in the target cells."
msgstr "Vermenigvuldig die waardes in die selle op die knipbord met die waardes in die teikenselle."
#. 7Nd8u
-#: sc/uiconfig/scalc/ui/pastespecial.ui:740
+#: sc/uiconfig/scalc/ui/pastespecial.ui:765
msgctxt "pastespecial|divide"
msgid "_Divide"
msgstr "_Deel"
#. 9VKdS
-#: sc/uiconfig/scalc/ui/pastespecial.ui:749
+#: sc/uiconfig/scalc/ui/pastespecial.ui:774
msgctxt "pastespecial|extended_tip|divide"
msgid "Divides the values in the target cells by the values in the clipboard cells."
msgstr "Deel die waardes van die teikenselle deur die waardes van die selle op die knipbord."
#. 9otLM
-#: sc/uiconfig/scalc/ui/pastespecial.ui:765
+#: sc/uiconfig/scalc/ui/pastespecial.ui:790
msgctxt "pastespecial|label2"
msgid "Operations"
msgstr "Bewerkings"
#. ypkML
-#: sc/uiconfig/scalc/ui/pastespecial.ui:800
+#: sc/uiconfig/scalc/ui/pastespecial.ui:825
msgctxt "pastespecial|extended_tip|PasteSpecial"
msgid "Inserts the contents of the clipboard into the current file in a format that you can specify."
msgstr "Plak die inhoud van die knipbord in die huidige lêer in die gewenste formaat."
diff --git a/source/af/sd/messages.po b/source/af/sd/messages.po
index cd5ac5c66ee..9cf588d9bae 100644
--- a/source/af/sd/messages.po
+++ b/source/af/sd/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-14 12:01+0200\n"
-"PO-Revision-Date: 2021-09-14 10:10+0000\n"
+"POT-Creation-Date: 2021-10-20 13:09+0200\n"
+"PO-Revision-Date: 2021-10-21 11:33+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/af/>\n"
"Language: af\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.8.1\n"
"X-POOTLE-MTIME: 1560928573.000000\n"
#. WDjkB
@@ -4966,241 +4966,253 @@ msgid "Text Animation"
msgstr "Teksanimasie"
#. FcztB
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:132
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:140
msgctxt "customanimationspanel|extended_tip|custom_animation_list"
msgid "The animation list displays all animations for the current slide."
msgstr "Die animasielys toon alle animasies vir die huidige skyfie."
-#. KFRTW
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:163
+#. VBxbo
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:171
msgctxt "customanimationspanel|STR_CUSTOMANIMATION_LIST_HELPTEXT"
-msgid "First select the slide element and then click 'Add...' to add an animation effect."
-msgstr "Kies die skyfie-element en klik op \"Voeg ...\", om 'n animasie-effek by te voeg."
+msgid "First select the slide element and then click 'Add' to add an animation effect."
+msgstr "Kies eers die skyfie -element en klik dan op 'Voeg by' om 'n animasie -effek by te voeg."
+
+#. wWeBD
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:215
+msgctxt "customanimationspanel|lbEffect"
+msgid "Effects"
+msgstr "Effekte"
+
+#. WGWNA
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:236
+msgctxt "customanimationspanel|add"
+msgid "_Add"
+msgstr "_Byvoeg"
#. nRqGR
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:195
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:240
msgctxt "customanimationspanel|add_effect|tooltip_text"
msgid "Add Effect"
msgstr "Voeg Effek by"
#. CskWF
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:199
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:245
msgctxt "customanimationspanel|extended_tip|add_effect"
msgid "Adds another animation effect for the selected object on the slide."
msgstr "Voeg 'n ander effek in vir die geselekteerde voorwerp of skyfie."
#. vitMM
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:214
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:260
msgctxt "customanimationspanel|remove_effect|tooltip_text"
msgid "Remove Effect"
msgstr "Verwyder Effek"
#. pvCFG
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:218
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:264
msgctxt "customanimationspanel|extended_tip|remove_effect"
msgid "Removes the selected animation effects from the animation list."
msgstr "Verwyder die geselekteerde animasie-effekte uit die animasielys."
#. 3wHRp
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:233
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:279
msgctxt "customanimationspanel|move_up|tooltip_text"
msgid "Move Up"
msgstr "Skuif op"
#. buR2G
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:237
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:283
msgctxt "customanimationspanel|extended_tip|move_up"
msgid "Click one of the buttons to move the selected animation effect up or down in the list."
msgstr "Klik op een van die knoppies om die geselekteerde animasie-effek in die lys op of af te skuif."
#. jEksa
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:252
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:298
msgctxt "customanimationspanel|move_down|tooltip_text"
msgid "Move Down"
msgstr "Skuif ondertoe"
#. x82hp
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:256
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:302
msgctxt "customanimationspanel|extended_tip|move_down"
msgid "Click one of the buttons to move the selected animation effect up or down in the list."
msgstr "Klik op een van die knoppies om die geselekteerde animasie-effek in die lys op of af te skuif."
#. wCc89
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:285
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:324
msgctxt "customanimationspanel|categorylabel"
msgid "Category:"
msgstr "Kategorie:"
-#. EHRAp
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:299
-msgctxt "customanimationspanel|effectlabel"
-msgid "Effect:"
-msgstr "Effek:"
-
#. jQcZZ
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:314
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:338
msgctxt "customanimationspanel|categorylb"
msgid "Entrance"
msgstr "Ingang"
#. 2qTvP
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:315
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:339
msgctxt "customanimationspanel|categorylb"
msgid "Emphasis"
msgstr "Beklemtoning"
#. TZeh8
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:316
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:340
msgctxt "customanimationspanel|categorylb"
msgid "Exit"
msgstr "Uitgang"
#. N8Xvu
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:317
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:341
msgctxt "customanimationspanel|categorylb"
msgid "Motion Paths"
msgstr "Animasiepaaie"
#. qDYCQ
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:318
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:342
msgctxt "customanimationspanel|categorylb"
msgid "Misc Effects"
msgstr "Diverse Effekte"
#. ozsMp
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:322
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:346
msgctxt "customanimationspanel|extended_tip|categorylb"
msgid "Select an animation effect category."
msgstr "Hiermee kan u 'n animasie-effek kategorie kies."
+#. EHRAp
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:363
+msgctxt "customanimationspanel|effectlabel"
+msgid "Effect:"
+msgstr "Effek:"
+
#. MEJrn
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:366
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:412
msgctxt "customanimationspanel|extended_tip|effect_list"
msgid "Select an animation effect."
msgstr "Kies 'n animasie-effek."
+#. LGuGy
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:428
+msgctxt "customanimationspanel|effect_label"
+msgid "Options"
+msgstr "Opsies"
+
#. GDYfC
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:403
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:445
msgctxt "customanimationspanel|start_effect"
msgid "_Start:"
msgstr "Begin:"
-#. 8AUq9
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:417
-msgctxt "customanimationspanel|effect_property"
-msgid "_Direction:"
-msgstr "Rigting:"
-
-#. QWndb
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:431
-msgctxt "customanimationspanel|effect_duration"
-msgid "D_uration:"
-msgstr "Tydsduur"
-
#. DhPiJ
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:446
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:459
msgctxt "customanimationspanel|start_effect_list"
msgid "On click"
msgstr "Op Klik"
#. FNFGr
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:447
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:460
msgctxt "customanimationspanel|start_effect_list"
msgid "With previous"
msgstr "Met vorige"
#. dCfj4
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:448
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:461
msgctxt "customanimationspanel|start_effect_list"
msgid "After previous"
msgstr "Na vorige"
#. iboET
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:452
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:465
msgctxt "customanimationspanel|extended_tip|start_effect_list"
msgid "Displays when the selected animation effect should be started."
msgstr "Dui aan wanneer die geselekteerde effek behoort te begin."
+#. 8AUq9
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:479
+msgctxt "customanimationspanel|effect_property"
+msgid "_Direction:"
+msgstr "Rigting:"
+
#. mMYic
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:481
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:492
msgctxt "customanimationspanel|more_properties|tooltip_text"
msgid "Options"
msgstr "Opsies"
#. PE6vL
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:486
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:497
msgctxt "customanimationspanel|extended_tip|more_properties"
msgid "Specifies additional properties for the selected element in the Custom Animations pane."
msgstr "Definieer addisionele eienskappe vir die geselekteerde element in die \"Custom Animations\"-paneel."
+#. QWndb
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:511
+msgctxt "customanimationspanel|effect_duration"
+msgid "D_uration:"
+msgstr "Tydsduur"
+
#. Ewipq
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:505
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:529
msgctxt "customanimationspanel|extended_tip|anim_duration"
msgid "Specifies the duration of the selected animation effect."
msgstr "Spesifiseer die duur van die geselekteerde animasie-effek."
#. 2cGAb
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:519
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:543
msgctxt "customanimationspanel|delay_label"
msgid "_Delay:"
msgstr "Vertraging:"
#. g6bR3
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:538
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:561
msgctxt "customanimationspanel|extended_tip|delay_value"
msgid "The animation starts delayed by this amount of time."
msgstr "Die animasie begin vertraag met die gespesifiseerde tyd."
-#. FgkKZ
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:562
-msgctxt "customanimationspanel|effect_label"
-msgid "Effect"
-msgstr "Effek"
-
#. J2bC5
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:600
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:583
msgctxt "customanimationspanel|auto_preview"
msgid "Automatic Preview"
msgstr "Automatiese voorskou"
#. GufhE
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:608
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:591
msgctxt "customanimationspanel|extended_tip|auto_preview"
msgid "Select to preview new or edited effects on the slide while you assign them."
msgstr "Aktiveer om 'n voorbeeld van nuwe of geredigeerde effekte op die skyfie te sien terwyl dit toegepas word."
#. KP8UC
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:620
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:603
msgctxt "customanimationspanel|play"
msgid "Play"
msgstr "Speel"
#. Bn67v
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:624
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:607
msgctxt "customanimationspanel|play|tooltip_text"
msgid "Preview Effect"
msgstr "Effek Voorskou"
#. sUTTG
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:631
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:614
msgctxt "customanimationspanel|extended_tip|play"
msgid "Plays the selected animation effect in the preview."
msgstr "Speel die geselekteerde animasie-effek in die voorskou."
#. LBEzG
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:658
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:626
msgctxt "customanimationspanel|box1_label"
msgid "Animation Deck"
msgstr "Animasie bereik"
#. bUvjt
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:671
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:638
msgctxt "customanimationspanel|custom_animation_list_label"
msgid "Animation List"
msgstr "Animasie Lys"
#. F7AZL
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:690
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:694
msgctxt "customanimationspanel|extended_tip|CustomAnimationsPanel"
msgid "Assigns effects to selected objects."
msgstr "Pas effekte toe op die geselekteerde objekte."
diff --git a/source/af/sfx2/messages.po b/source/af/sfx2/messages.po
index 6465ed01c3e..4bbab397452 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: 2021-09-27 19:09+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
"PO-Revision-Date: 2021-09-29 21:36+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 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1560975251.000000\n"
#. bHbFE
@@ -3054,147 +3054,147 @@ msgid "Contains descriptive information about the document."
msgstr "Bevat beskrywende inligting oor die dokument."
#. tC2rt
-#: sfx2/uiconfig/ui/developmenttool.ui:96
+#: sfx2/uiconfig/ui/developmenttool.ui:117
msgctxt "developmenttool|dom_current_selection_toggle-tooltip"
msgid "Current Selection In Document"
msgstr "Huidige seleksie in die dokument"
#. Po2S3
-#: sfx2/uiconfig/ui/developmenttool.ui:97
+#: sfx2/uiconfig/ui/developmenttool.ui:118
msgctxt "developmenttool|dom_current_selection_toggle"
msgid "Current Selection"
msgstr "Huidige seleksie"
#. eB6NR
-#: sfx2/uiconfig/ui/developmenttool.ui:109
+#: sfx2/uiconfig/ui/developmenttool.ui:130
msgctxt "developmenttool|dom_refresh_button-tooltip"
msgid "Refresh Document Model Tree View"
msgstr "Hervertoon die Dokument Boomstruktuur."
#. FD2yt
-#: sfx2/uiconfig/ui/developmenttool.ui:110
+#: sfx2/uiconfig/ui/developmenttool.ui:131
msgctxt "developmenttool|dom_refresh_button"
msgid "Refresh"
msgstr "Vernuwe"
#. qVgcX
-#: sfx2/uiconfig/ui/developmenttool.ui:155
+#: sfx2/uiconfig/ui/developmenttool.ui:177
msgctxt "developmenttool|object"
msgid "Object"
msgstr "Objek"
#. x6GLB
-#: sfx2/uiconfig/ui/developmenttool.ui:203
+#: sfx2/uiconfig/ui/developmenttool.ui:226
msgctxt "developmenttool|tooltip-back"
msgid "Back"
msgstr "Terug"
#. SinPk
-#: sfx2/uiconfig/ui/developmenttool.ui:204
+#: sfx2/uiconfig/ui/developmenttool.ui:227
msgctxt "developmenttool|back"
msgid "Back"
msgstr "Terugkeer"
#. 4CBb3
-#: sfx2/uiconfig/ui/developmenttool.ui:217
+#: sfx2/uiconfig/ui/developmenttool.ui:240
msgctxt "developmenttool|tooltip-inspect"
msgid "Inspect"
msgstr "Inspekteer"
#. vCciB
-#: sfx2/uiconfig/ui/developmenttool.ui:218
+#: sfx2/uiconfig/ui/developmenttool.ui:241
msgctxt "developmenttool|inspect"
msgid "Inspect"
msgstr "Inspekteer"
#. nFMXe
-#: sfx2/uiconfig/ui/developmenttool.ui:231
+#: sfx2/uiconfig/ui/developmenttool.ui:254
msgctxt "developmenttool|tooltip-refresh"
msgid "Refresh"
msgstr "Vernuwe"
#. CFuvW
-#: sfx2/uiconfig/ui/developmenttool.ui:232
+#: sfx2/uiconfig/ui/developmenttool.ui:255
msgctxt "developmenttool|refresh"
msgid "Refresh"
msgstr "Vernuwe"
#. 6gFmn
-#: sfx2/uiconfig/ui/developmenttool.ui:256
+#: sfx2/uiconfig/ui/developmenttool.ui:278
msgctxt "developmenttool|classname"
msgid "Class name:"
msgstr "Klas Naam:"
#. a9j7f
-#: sfx2/uiconfig/ui/developmenttool.ui:319
-#: sfx2/uiconfig/ui/developmenttool.ui:364
-#: sfx2/uiconfig/ui/developmenttool.ui:418
+#: sfx2/uiconfig/ui/developmenttool.ui:343
+#: sfx2/uiconfig/ui/developmenttool.ui:392
+#: sfx2/uiconfig/ui/developmenttool.ui:450
msgctxt "developmenttool|name"
msgid "Name"
msgstr "Naam"
#. VFqAa
-#: sfx2/uiconfig/ui/developmenttool.ui:338
+#: sfx2/uiconfig/ui/developmenttool.ui:363
msgctxt "developmenttool|interfaces"
msgid "Interfaces"
msgstr "Koppelvlakke"
#. iCdWe
-#: sfx2/uiconfig/ui/developmenttool.ui:386
+#: sfx2/uiconfig/ui/developmenttool.ui:415
msgctxt "developmenttool|services"
msgid "Services"
msgstr "Dienste"
#. H7pYE
-#: sfx2/uiconfig/ui/developmenttool.ui:432
+#: sfx2/uiconfig/ui/developmenttool.ui:465
msgctxt "developmenttool|value"
msgid "Value"
msgstr "Waarde"
#. Jjkqh
-#: sfx2/uiconfig/ui/developmenttool.ui:446
+#: sfx2/uiconfig/ui/developmenttool.ui:479
msgctxt "developmenttool|type"
msgid "Type"
msgstr "Tipe"
#. zpXuY
-#: sfx2/uiconfig/ui/developmenttool.ui:460
+#: sfx2/uiconfig/ui/developmenttool.ui:493
msgctxt "developmenttool|info"
msgid "Info"
msgstr "Inligting"
#. AUktw
-#: sfx2/uiconfig/ui/developmenttool.ui:511
+#: sfx2/uiconfig/ui/developmenttool.ui:544
msgctxt "developmenttool|properties"
msgid "Properties"
msgstr "Eienskappe"
#. wGJtn
-#: sfx2/uiconfig/ui/developmenttool.ui:538
+#: sfx2/uiconfig/ui/developmenttool.ui:574
msgctxt "developmenttool|method"
msgid "Method"
msgstr "Metode"
#. EnGfg
-#: sfx2/uiconfig/ui/developmenttool.ui:552
+#: sfx2/uiconfig/ui/developmenttool.ui:589
msgctxt "developmenttool|returntype"
msgid "Return Type"
msgstr "Resultaat Datatipe"
#. AKnSa
-#: sfx2/uiconfig/ui/developmenttool.ui:566
+#: sfx2/uiconfig/ui/developmenttool.ui:603
msgctxt "developmenttool|parameters"
msgid "Parameters"
msgstr "Parameters"
#. tmttq
-#: sfx2/uiconfig/ui/developmenttool.ui:580
+#: sfx2/uiconfig/ui/developmenttool.ui:617
msgctxt "developmenttool|implementation_class"
msgid "Implementation Class"
msgstr "Implementasie Klas"
#. Q2CBK
-#: sfx2/uiconfig/ui/developmenttool.ui:602
+#: sfx2/uiconfig/ui/developmenttool.ui:639
msgctxt "developmenttool|methods"
msgid "Methods"
msgstr "Metodes"
@@ -4478,7 +4478,7 @@ msgid "Do_n’t Save"
msgstr "Moenie Stoor nie"
#. dzVqL
-#: sfx2/uiconfig/ui/querysavedialog.ui:53
+#: sfx2/uiconfig/ui/querysavedialog.ui:56
msgctxt "querysavedialog|save"
msgid "_Save"
msgstr "_Stoor"
diff --git a/source/af/svtools/messages.po b/source/af/svtools/messages.po
index 7fa015f7872..b3c6783f987 100644
--- a/source/af/svtools/messages.po
+++ b/source/af/svtools/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-20 13:03+0200\n"
-"PO-Revision-Date: 2021-09-22 20:36+0000\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
+"PO-Revision-Date: 2021-10-21 11:33+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/af/>\n"
"Language: af\n"
@@ -5010,6 +5010,12 @@ msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Klingon"
msgstr "Klingon"
+#. xFYhC
+#: svtools/inc/langtab.hrc:437
+msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
+msgid "English (Israel)"
+msgstr "Engels (Israel)"
+
#. fXSja
#: svtools/uiconfig/ui/addresstemplatedialog.ui:8
msgctxt "addresstemplatedialog|AddressTemplateDialog"
@@ -5113,355 +5119,355 @@ msgid "Modify dimensions"
msgstr "Wysig dimensies"
#. pyd6J
-#: svtools/uiconfig/ui/graphicexport.ui:146
+#: svtools/uiconfig/ui/graphicexport.ui:145
msgctxt "graphicexport|label5"
msgid "Width:"
msgstr "Wydte:"
#. drQDY
-#: svtools/uiconfig/ui/graphicexport.ui:160
+#: svtools/uiconfig/ui/graphicexport.ui:159
msgctxt "graphicexport|label6"
msgid "Height:"
msgstr "Hoogte:"
#. exCyd
-#: svtools/uiconfig/ui/graphicexport.ui:171
+#: svtools/uiconfig/ui/graphicexport.ui:170
msgctxt "graphicexport|modifyresolutioncb"
msgid "Modify resolution"
msgstr "Wysig resolusie"
#. ZWxGB
-#: svtools/uiconfig/ui/graphicexport.ui:189
+#: svtools/uiconfig/ui/graphicexport.ui:188
msgctxt "graphicexport|resolutionft"
msgid "Resolution:"
msgstr "Resolusie:"
#. 2rwEJ
-#: svtools/uiconfig/ui/graphicexport.ui:209
+#: svtools/uiconfig/ui/graphicexport.ui:208
msgctxt "graphicexport|extended_tip|widthmf"
msgid "Specifies the measurement units."
msgstr "Spesifiseer die maateenhede."
#. BPaB3
-#: svtools/uiconfig/ui/graphicexport.ui:229
+#: svtools/uiconfig/ui/graphicexport.ui:228
msgctxt "graphicexport|extended_tip|heightmf"
msgid "Specifies the height."
msgstr "Spesifiseer die hoogte."
#. Da3fv
-#: svtools/uiconfig/ui/graphicexport.ui:249
+#: svtools/uiconfig/ui/graphicexport.ui:248
msgctxt "graphicexport|extended_tip|resolutionmf"
msgid "Enter the image resolution. Select the measurement units from the list box."
msgstr "Tik die beeld resolusie in. Kies die meeteenhede in die lys."
#. S9aHs
-#: svtools/uiconfig/ui/graphicexport.ui:263
+#: svtools/uiconfig/ui/graphicexport.ui:262
msgctxt "graphicexport|liststore2"
msgid "inches"
msgstr "duim"
#. dCstP
-#: svtools/uiconfig/ui/graphicexport.ui:264
+#: svtools/uiconfig/ui/graphicexport.ui:263
msgctxt "graphicexport|liststore2"
msgid "cm"
msgstr "cm"
#. X5dLV
-#: svtools/uiconfig/ui/graphicexport.ui:265
+#: svtools/uiconfig/ui/graphicexport.ui:264
msgctxt "graphicexport|liststore2"
msgid "mm"
msgstr "mm"
#. 6vWVJ
-#: svtools/uiconfig/ui/graphicexport.ui:266
+#: svtools/uiconfig/ui/graphicexport.ui:265
msgctxt "graphicexport|liststore2"
msgid "points"
msgstr "punte"
#. ZqyAj
-#: svtools/uiconfig/ui/graphicexport.ui:267
+#: svtools/uiconfig/ui/graphicexport.ui:266
msgctxt "graphicexport|liststore2"
msgid "pixels"
msgstr "pixels"
#. QL8mE
-#: svtools/uiconfig/ui/graphicexport.ui:271
+#: svtools/uiconfig/ui/graphicexport.ui:270
msgctxt "graphicexport|extended_tip|widthlb"
msgid "Specifies the width."
msgstr "Spesifiseer die wydte."
#. kYLvv
-#: svtools/uiconfig/ui/graphicexport.ui:285
+#: svtools/uiconfig/ui/graphicexport.ui:284
msgctxt "graphicexport|liststore1"
msgid "pixels/cm"
msgstr "pixels/cm"
#. zjmFd
-#: svtools/uiconfig/ui/graphicexport.ui:286
+#: svtools/uiconfig/ui/graphicexport.ui:285
msgctxt "graphicexport|liststore1"
msgid "pixels/inch"
msgstr "pixels/duim"
#. iMZW3
-#: svtools/uiconfig/ui/graphicexport.ui:287
+#: svtools/uiconfig/ui/graphicexport.ui:286
msgctxt "graphicexport|liststore1"
msgid "pixels/meter"
msgstr "pixeels/meter"
#. ND5ki
-#: svtools/uiconfig/ui/graphicexport.ui:291
+#: svtools/uiconfig/ui/graphicexport.ui:290
msgctxt "graphicexport|extended_tip|resolutionlb"
msgid "Enter the image resolution. Select the measurement units from the list box."
msgstr "Tik die beeld-resolusie in. Kies die meeteenhede vanuit die lys."
#. ENaqm
-#: svtools/uiconfig/ui/graphicexport.ui:309
+#: svtools/uiconfig/ui/graphicexport.ui:308
msgctxt "graphicexport|label1"
msgid "Size"
msgstr "Grootte"
#. Dc5fy
-#: svtools/uiconfig/ui/graphicexport.ui:335
+#: svtools/uiconfig/ui/graphicexport.ui:334
msgctxt "graphicexport|extended_tip|colordepthlb"
msgid "Select the color depth from 8 bit grayscale or 24 bit true color."
msgstr "Kies as die kleurdiepte van 8-bis-grysskale of 24-bit ware kleure."
#. hFaPC
-#: svtools/uiconfig/ui/graphicexport.ui:344
+#: svtools/uiconfig/ui/graphicexport.ui:343
msgctxt "graphicexport|label2"
msgid "Color Depth"
msgstr "Kleurdiepte"
#. 5v8Jn
-#: svtools/uiconfig/ui/graphicexport.ui:380
+#: svtools/uiconfig/ui/graphicexport.ui:379
msgctxt "graphicexport|extended_tip|compressionjpgnf"
msgid "Sets the quality for the export. Choose from a low quality with minimal file size, up to a high quality and big file size."
msgstr "Stel die beeldkwaliteit vir uitskryf. Kies van lae kwaliteit met minimale lêergrootte, tot hoë kwaliteit met 'n groot lêer."
#. Tk5y2
-#: svtools/uiconfig/ui/graphicexport.ui:409
+#: svtools/uiconfig/ui/graphicexport.ui:408
msgctxt "graphicexport|label9"
msgid "Quality"
msgstr "Gehalte"
#. AHkNV
-#: svtools/uiconfig/ui/graphicexport.ui:445
+#: svtools/uiconfig/ui/graphicexport.ui:444
msgctxt "graphicexport|extended_tip|compressionpngnf"
msgid "Sets the compression for the export. A high compression means a smaller, but slower to load image."
msgstr "Stel in die kompressie vir die uitvoer. Hoë kompressie beteken 'n kleiner, maar stadiger laai beeld."
#. f4LYz
-#: svtools/uiconfig/ui/graphicexport.ui:474
+#: svtools/uiconfig/ui/graphicexport.ui:473
msgctxt "graphicexport|label"
msgid "Compression"
msgstr "Kompressie"
#. hQadL
-#: svtools/uiconfig/ui/graphicexport.ui:494
+#: svtools/uiconfig/ui/graphicexport.ui:493
msgctxt "graphicexport|rlecb"
msgid "RLE encoding"
msgstr "RLE-enkodering"
#. DqpKW
-#: svtools/uiconfig/ui/graphicexport.ui:505
+#: svtools/uiconfig/ui/graphicexport.ui:504
msgctxt "graphicexport|extended_tip|rlecb"
msgid "Applies RLE (Run Length Encoding) to the BMP graphics."
msgstr "Pas RLE (Run Length Encoding) toe op BMP-grafika."
#. EA7BF
-#: svtools/uiconfig/ui/graphicexport.ui:514
+#: svtools/uiconfig/ui/graphicexport.ui:513
msgctxt "graphicexport|label3"
msgid "Compression"
msgstr "Kompressie"
#. qiLZK
-#: svtools/uiconfig/ui/graphicexport.ui:534
+#: svtools/uiconfig/ui/graphicexport.ui:533
msgctxt "graphicexport|interlacedcb"
msgid "Interlaced"
msgstr "Saamgevleg"
#. cLvu6
-#: svtools/uiconfig/ui/graphicexport.ui:545
+#: svtools/uiconfig/ui/graphicexport.ui:544
msgctxt "graphicexport|extended_tip|interlacedcb"
msgid "Specifies whether the graphic is to be saved in interlaced mode."
msgstr "Spesifiseer of 'n afbeelding in die interlace-modus gestoor word."
#. BkbD3
-#: svtools/uiconfig/ui/graphicexport.ui:554
+#: svtools/uiconfig/ui/graphicexport.ui:553
msgctxt "graphicexport|label12"
msgid "Mode"
msgstr "Modus"
#. Nhj88
-#: svtools/uiconfig/ui/graphicexport.ui:574
+#: svtools/uiconfig/ui/graphicexport.ui:573
msgctxt "graphicexport|savetransparencycb"
msgid "Save transparency"
msgstr "Stoor deursigtigheid"
#. kZ3uW
-#: svtools/uiconfig/ui/graphicexport.ui:585
+#: svtools/uiconfig/ui/graphicexport.ui:584
msgctxt "graphicexport|extended_tip|savetransparencycb"
msgid "Specifies whether to save the background of the picture as transparent. Only objects will be visible in the GIF image. Use the Color Replacer to set the transparent color in the picture."
msgstr "Spesifiseer of die beeldagtergrond as deursigtig gestoor moet word. Slegs objekte is dan sigbaar in die GIF-beeld. Gebruik die oogdrupper om die deursigtige kleur van die prentjie in te stel."
#. ZPmXf
-#: svtools/uiconfig/ui/graphicexport.ui:594
+#: svtools/uiconfig/ui/graphicexport.ui:593
msgctxt "graphicexport|labe"
msgid "Drawing Objects"
msgstr "Tekenobjekte"
#. KMCxb
-#: svtools/uiconfig/ui/graphicexport.ui:621
+#: svtools/uiconfig/ui/graphicexport.ui:620
msgctxt "graphicexport|binarycb"
msgid "Binary"
msgstr "Binêr"
#. qFTuj
-#: svtools/uiconfig/ui/graphicexport.ui:630
+#: svtools/uiconfig/ui/graphicexport.ui:629
msgctxt "graphicexport|extended_tip|binarycb"
msgid "Exports the file in binary format. The resulting file is smaller than a text file."
msgstr "Die lêer word in binêre formaat uitgevoer. Die verkrygde lêer is kleiner as 'n tekslêer."
#. 8cZsH
-#: svtools/uiconfig/ui/graphicexport.ui:641
+#: svtools/uiconfig/ui/graphicexport.ui:640
msgctxt "graphicexport|textcb"
msgid "Text"
msgstr "Teks"
#. GFbg2
-#: svtools/uiconfig/ui/graphicexport.ui:650
+#: svtools/uiconfig/ui/graphicexport.ui:649
msgctxt "graphicexport|extended_tip|textcb"
msgid "Exports the file in ASCII text format. The resulting file is larger than a binary file."
msgstr "Die lêer word uitgevoer in ASCII-teksformaat. 'n Lêer van hierdie tipe is groter as 'n binêre lêer."
#. ECUb9
-#: svtools/uiconfig/ui/graphicexport.ui:665
+#: svtools/uiconfig/ui/graphicexport.ui:664
msgctxt "graphicexport|label16"
msgid "Encoding"
msgstr "Enkodering"
#. aeV52
-#: svtools/uiconfig/ui/graphicexport.ui:697
+#: svtools/uiconfig/ui/graphicexport.ui:696
msgctxt "graphicexport|tiffpreviewcb"
msgid "Image preview (TIFF)"
msgstr "Beeldvoorskou (TIFF)"
#. H8vtD
-#: svtools/uiconfig/ui/graphicexport.ui:706
+#: svtools/uiconfig/ui/graphicexport.ui:705
msgctxt "graphicexport|extended_tip|tiffpreviewcb"
msgid "Specifies whether a preview image is exported in the TIFF format together with the actual PostScript file."
msgstr "Spesifiseer of 'n voorskouprent in TIFF-formaat saam met die PostScript-lêer uitgeskryf word."
#. AeEJu
-#: svtools/uiconfig/ui/graphicexport.ui:717
+#: svtools/uiconfig/ui/graphicexport.ui:716
msgctxt "graphicexport|epsipreviewcb"
msgid "Interchange (EPSI)"
msgstr "Uitruiling (EPSI)"
#. gLbUQ
-#: svtools/uiconfig/ui/graphicexport.ui:725
+#: svtools/uiconfig/ui/graphicexport.ui:724
msgctxt "graphicexport|extended_tip|epsipreviewcb"
msgid "Specifies whether a monochrome preview graphic in EPSI format is exported together with the PostScript file. This format only contains printable characters from the 7-bit ASCII code."
msgstr "Spesifiseer of 'n monochrome voorskouprent in EPSI-formaat met die PostScript-lêer uitgeskryf moet word. Hierdie formaat bevat slegs drukbare karakters van die 7-bis ASCII-kode."
#. sRbZb
-#: svtools/uiconfig/ui/graphicexport.ui:740
+#: svtools/uiconfig/ui/graphicexport.ui:739
msgctxt "graphicexport|label17"
msgid "Preview"
msgstr "Voorskou"
#. Jfbgx
-#: svtools/uiconfig/ui/graphicexport.ui:767
+#: svtools/uiconfig/ui/graphicexport.ui:766
msgctxt "graphicexport|color1rb"
msgid "Color"
msgstr "Kleur"
#. LNHEi
-#: svtools/uiconfig/ui/graphicexport.ui:776
+#: svtools/uiconfig/ui/graphicexport.ui:775
msgctxt "graphicexport|extended_tip|color1rb"
msgid "Exports the file in color."
msgstr "Voer die lêer in kleur uit."
#. VeZFK
-#: svtools/uiconfig/ui/graphicexport.ui:787
+#: svtools/uiconfig/ui/graphicexport.ui:786
msgctxt "graphicexport|color2rb"
msgid "Grayscale"
msgstr "Grysskaal"
#. TWEx8
-#: svtools/uiconfig/ui/graphicexport.ui:796
+#: svtools/uiconfig/ui/graphicexport.ui:795
msgctxt "graphicexport|extended_tip|color2rb"
msgid "Exports the file in grayscale tones."
msgstr "Skryf die lêer in grysskaal uit."
#. BbSGF
-#: svtools/uiconfig/ui/graphicexport.ui:811
+#: svtools/uiconfig/ui/graphicexport.ui:810
msgctxt "graphicexport|label18"
msgid "Color Format"
msgstr "Kleurformaat"
#. b6J7X
-#: svtools/uiconfig/ui/graphicexport.ui:838
+#: svtools/uiconfig/ui/graphicexport.ui:837
msgctxt "graphicexport|level1rb"
msgid "Level 1"
msgstr "Vlak 1"
#. pEcBC
-#: svtools/uiconfig/ui/graphicexport.ui:847
+#: svtools/uiconfig/ui/graphicexport.ui:846
msgctxt "graphicexport|extended_tip|level1rb"
msgid "Compression is not available at this level. Select the Level 1 option if your PostScript printer does not offer the capabilities of Level 2."
msgstr "Geen kompressie is op hierdie vlak moontlik nie. As die PostScript drukker nie vlak 2 ondersteun nie, kies die vlak 1-opsie."
#. kuCNX
-#: svtools/uiconfig/ui/graphicexport.ui:858
+#: svtools/uiconfig/ui/graphicexport.ui:857
msgctxt "graphicexport|level2rb"
msgid "Level 2"
msgstr "Vlak 2"
#. wiWrE
-#: svtools/uiconfig/ui/graphicexport.ui:867
+#: svtools/uiconfig/ui/graphicexport.ui:866
msgctxt "graphicexport|extended_tip|level2rb"
msgid "Select the Level 2 option if your output device supports colored bitmaps, palette graphics and compressed graphics."
msgstr "Kies die vlak 2-opsie as die uitvoerapparaat wel kleurkaart, paletgrafiek en saamgeperste grafika ondersteun."
#. JUuBZ
-#: svtools/uiconfig/ui/graphicexport.ui:882
+#: svtools/uiconfig/ui/graphicexport.ui:881
msgctxt "graphicexport|label19"
msgid "Version"
msgstr "Weergawe"
#. FjkbL
-#: svtools/uiconfig/ui/graphicexport.ui:909
+#: svtools/uiconfig/ui/graphicexport.ui:908
msgctxt "graphicexport|compresslzw"
msgid "LZW encoding"
msgstr "LZW-enkodering"
#. 5cYFM
-#: svtools/uiconfig/ui/graphicexport.ui:918
+#: svtools/uiconfig/ui/graphicexport.ui:917
msgctxt "graphicexport|extended_tip|compresslzw"
msgid "LZW compression is the compression of a file into a smaller file using a table-based lookup algorithm."
msgstr "LZW-kompressie kompakteer 'n lêer in 'n kleiner lêer met behulp van 'n tabel-gebaseerde opsoekalgoritme."
#. vXGXe
-#: svtools/uiconfig/ui/graphicexport.ui:929
+#: svtools/uiconfig/ui/graphicexport.ui:928
msgctxt "graphicexport|compressnone"
msgid "None"
msgstr "Geen"
#. kW3QD
-#: svtools/uiconfig/ui/graphicexport.ui:938
+#: svtools/uiconfig/ui/graphicexport.ui:937
msgctxt "graphicexport|extended_tip|compressnone"
msgid "Specifies that you do not wish to use compression."
msgstr "Spesifiseer dat geen kompressie gebruik word nie."
#. ghAqZ
-#: svtools/uiconfig/ui/graphicexport.ui:953
+#: svtools/uiconfig/ui/graphicexport.ui:952
msgctxt "graphicexport|label20"
msgid "Compression"
msgstr "Kompressie"
#. LmAeC
-#: svtools/uiconfig/ui/graphicexport.ui:992
+#: svtools/uiconfig/ui/graphicexport.ui:991
msgctxt "graphicexport|label4"
msgid "Information"
msgstr "Inligting"
@@ -5809,7 +5815,7 @@ msgid "For the Skia changes to take effect, %PRODUCTNAME must be restarted."
msgstr "Vir die Skia-veranderinge in werking te stel, moet %PRODUCTNAME herbegin word."
#. v9FjK
-#: svtools/uiconfig/ui/thineditcontrol.ui:69
+#: svtools/uiconfig/ui/thineditcontrol.ui:72
msgctxt "thineditcontrol|button"
msgid "Pick Date"
msgstr "Kies Datum"
diff --git a/source/af/svx/messages.po b/source/af/svx/messages.po
index 801040410a4..ce38ddcd43c 100644
--- a/source/af/svx/messages.po
+++ b/source/af/svx/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-20 13:03+0200\n"
-"PO-Revision-Date: 2021-09-24 08:36+0000\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
+"PO-Revision-Date: 2021-10-24 05:36+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/af/>\n"
"Language: af\n"
@@ -9938,126 +9938,126 @@ msgctxt "RID_SVXSTR_TRANSPARENCY"
msgid "Transparency:"
msgstr "Transpirant:"
-#. zvqUJ
+#. PGuXa
#. strings related to borders
#: include/svx/strings.hrc:1777
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
-msgid "Set No Borders"
-msgstr "Wys geen grense"
+msgid "No Borders"
+msgstr "Geen Kantlyne"
-#. ABKEK
+#. LzhYZ
#: include/svx/strings.hrc:1778
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
-msgid "Set Outer Border Only"
-msgstr "Wys slegs Buite Grense"
+msgid "Outer Border Only"
+msgstr "Slegs Buitenste Lyne"
-#. ygU8P
+#. EniNF
#: include/svx/strings.hrc:1779
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
-msgid "Set Outer Border and Horizontal Lines"
-msgstr "Wys Buite Grense en Horisontale lyne"
+msgid "Outer Border and Horizontal Lines"
+msgstr "Buitenste- en Horisontale- Lyne"
-#. q5KJ8
+#. BuDWX
#: include/svx/strings.hrc:1780
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
-msgid "Set Outer Border and All Inner Lines"
-msgstr "Wys Buite Grense en all Binneste Lyne"
+msgid "Outer Border and All Inner Lines"
+msgstr "Buitenste- en Alle Binneste-Lyne"
-#. TFuZb
+#. ckL2Z
#: include/svx/strings.hrc:1781
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
-msgid "Set Outer Border and Vertical Lines"
-msgstr "Wys Buite Grense en Vertikale Lyne"
+msgid "Outer Border and Vertical Lines"
+msgstr "Buitenste- en Vertikale-Lyne"
-#. H5s9X
+#. Q9hj4
#: include/svx/strings.hrc:1782
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
-msgid "Set Outer Border Without Changing Inner Lines"
-msgstr "Wys Buite Grense sonder Verandering aan Binneste Lyne"
+msgid "Outer Border Without Changing Inner Lines"
+msgstr "Buitenste Grenslyne Sonder Veranderinge aan Binneste Lyne"
-#. T5crG
+#. b7wCr
#: include/svx/strings.hrc:1783
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
-msgid "Set Diagonal Lines Only"
-msgstr "Stel slegs Diagnale Lyne"
+msgid "Diagonal Lines Only"
+msgstr "Slegs Diagnale Lyne"
-#. oodJY
+#. 8r98a
#: include/svx/strings.hrc:1784
-msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALLEFT"
-msgid "Set Diagonal Left Border"
-msgstr "Kies Diagnaal Linker Grens"
+msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
+msgid "Diagonal Down Border"
+msgstr "Diagnale Onderste Grens"
-#. gFFgD
+#. P4FGE
#: include/svx/strings.hrc:1785
-msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALRIGHT"
-msgid "Set Diagonal Right Border"
-msgstr "Kies Diagnaal Regter Grens"
+msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
+msgid "Diagonal Up Border"
+msgstr "Diagnale Boonste Grens"
-#. D6FCE
+#. VxBrT
#: include/svx/strings.hrc:1786
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
-msgid "Set Criss-Cross Border"
-msgstr "Stel Kruislyn-Grens"
+msgid "Criss-Cross Border"
+msgstr "Kruis-Dwars Grense"
-#. S6AAA
+#. hTi3j
#: include/svx/strings.hrc:1787
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
-msgid "Set All Four Borders"
-msgstr "Stel al Vier Grense"
+msgid "All Four Borders"
+msgstr "Al Vier Grense"
-#. tknFJ
+#. o8fB8
#: include/svx/strings.hrc:1788
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
-msgid "Set Left and Right Borders Only"
-msgstr "Stel slegs Linker en Regter Grense"
+msgid "Left and Right Borders Only"
+msgstr "Slegs Linker- en Regter Grense"
-#. hSmnW
+#. 6NnM2
#: include/svx/strings.hrc:1789
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
-msgid "Set Top and Bottom Borders Only"
-msgstr "Stel slegs Bo en Onder Grense"
+msgid "Top and Bottom Borders Only"
+msgstr "Slegs Boonste en Onderste Grense"
-#. DsEAB
+#. KTYVW
#: include/svx/strings.hrc:1790
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
-msgid "Set Top and Bottom Borders, and All Horizontal Lines"
-msgstr "Stel Boonste en Onderste Grense, en Alle Horisontale Lyne"
+msgid "Top and Bottom Borders, and All Horizontal Lines"
+msgstr "Boonste en Onderste Grense, en Alle Horisontale Lyne"
-#. Dy2UG
+#. fRcEu
#: include/svx/strings.hrc:1791
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Set Left Border Only"
-msgstr "Stel slegs Linker Grens"
+msgid "Left Border Only"
+msgstr "Slegs Linker Grens"
-#. yF8RP
+#. uqzE7
#: include/svx/strings.hrc:1792
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Set Right Border Only"
-msgstr "Stel slegs Regter Grens"
+msgid "Right Border Only"
+msgstr "Slegs Regter Grens"
-#. E2jZj
+#. 6ecLB
#: include/svx/strings.hrc:1793
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Set Top Border Only"
-msgstr "Stel slegs Bogrens"
+msgid "Top Border Only"
+msgstr "Slegs Boonste Grens"
-#. 7ixEC
+#. B6KZc
#: include/svx/strings.hrc:1794
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Set Bottom Border Only"
-msgstr "Stel slegs Ondergrens"
+msgid "Bottom Border Only"
+msgstr "Slegs Onderste Grens"
-#. nCjXG
+#. aCMGz
#: include/svx/strings.hrc:1795
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
-msgid "Set Top and Bottom Borders, and All Inner Lines"
-msgstr "Stel Bo- en Ondergrense, en alle Binneste Lyne"
+msgid "Top and Bottom Borders, and All Inner Lines"
+msgstr "Boonste en Onderste Grense, en All Binne Lyne"
-#. 46Fq7
+#. t38dT
#: include/svx/strings.hrc:1796
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
-msgid "Set Left and Right Borders, and All Inner Lines"
-msgstr "Stel Linker en Regter Grense, en Alle Binneste Lyne"
+msgid "Left and Right Borders, and All Inner Lines"
+msgstr "Linker en Regter Grense, en Alle Binne Grense"
#. wH3TZ
msgctxt "stock"
@@ -14384,13 +14384,13 @@ msgid "Delete footer?"
msgstr "Skrap voet?"
#. GE3hT
-#: svx/uiconfig/ui/deletefooterdialog.ui:14
+#: svx/uiconfig/ui/deletefooterdialog.ui:13
msgctxt "deletefooterdialog|DeleteFooterDialog"
msgid "Are you sure you want to delete the footer?"
msgstr "Wil u definitief die voet skrap?"
#. EthWp
-#: svx/uiconfig/ui/deletefooterdialog.ui:15
+#: svx/uiconfig/ui/deletefooterdialog.ui:14
msgctxt "deletefooterdialog|DeleteFooterDialog"
msgid "All contents of the footer will be deleted and can not be restored."
msgstr "Alle inhoud van die voet sal geskrap word en kan nie herwin word nie."
@@ -14402,13 +14402,13 @@ msgid "Delete header?"
msgstr "Skrap kop?"
#. YfZTx
-#: svx/uiconfig/ui/deleteheaderdialog.ui:14
+#: svx/uiconfig/ui/deleteheaderdialog.ui:13
msgctxt "deleteheaderdialog|DeleteHeaderDialog"
msgid "Are you sure you want to delete the header?"
msgstr "Wil u definitief die kop skrap?"
#. 86Aks
-#: svx/uiconfig/ui/deleteheaderdialog.ui:15
+#: svx/uiconfig/ui/deleteheaderdialog.ui:14
msgctxt "deleteheaderdialog|DeleteHeaderDialog"
msgid "All contents of the header will be deleted and can not be restored."
msgstr "Alle inhoud van die kop sal geskrap word en kan nie herwin word nie."
@@ -18888,19 +18888,19 @@ msgid "Standard selection"
msgstr "Standaard seleksie"
#. DGKv2
-#: svx/uiconfig/ui/selectionmenu.ui:20
+#: svx/uiconfig/ui/selectionmenu.ui:21
msgctxt "selectionmenu|extending"
msgid "Extending selection"
msgstr "Brei seleksie uit"
#. fqC9L
-#: svx/uiconfig/ui/selectionmenu.ui:28
+#: svx/uiconfig/ui/selectionmenu.ui:30
msgctxt "selectionmenu|adding"
msgid "Adding selection"
msgstr "Seleksie byvoeg"
#. DbjFT
-#: svx/uiconfig/ui/selectionmenu.ui:36
+#: svx/uiconfig/ui/selectionmenu.ui:39
msgctxt "selectionmenu|block"
msgid "Block selection"
msgstr "Seleksie blokkeer"
@@ -19807,49 +19807,49 @@ msgid "More Options"
msgstr "Meer Opsies"
#. DJ6vY
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:18
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:60
msgctxt "textcharacterspacingcontrol|very_tight"
msgid "Very Tight"
msgstr "Uiters Knap"
#. GYD7d
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:34
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:77
msgctxt "textcharacterspacingcontrol|tight"
msgid "Tight"
msgstr "_Knap"
#. 8EcPH
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:50
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:94
msgctxt "textcharacterspacingcontrol|normal"
msgid "Normal"
msgstr "Normaal"
#. hEuRj
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:66
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:111
msgctxt "textcharacterspacingcontrol|loose"
msgid "Loose"
msgstr "Lossies"
#. 4kdQx
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:82
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:128
msgctxt "textcharacterspacingcontrol|very_loose"
msgid "Very Loose"
msgstr "Baie lossies"
#. hsu3c
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:98
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:145
msgctxt "textcharacterspacingcontrol|last_custom"
msgid "Last Custom Value"
msgstr "Laaste Aangepaste Waarde"
#. pZZ9u
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:127
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:177
msgctxt "textcharacterspacingcontrol|kerning"
msgid "0.0"
msgstr "0.0"
#. 6kNQD
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:139
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:187
msgctxt "textcharacterspacingcontrol|label2"
msgid "Custom Value"
msgstr "Aangepaste waarde"
@@ -19909,73 +19909,73 @@ msgid "Tabs"
msgstr "Tabel stoppe"
#. hHwzA
-#: svx/uiconfig/ui/textunderlinecontrol.ui:19
+#: svx/uiconfig/ui/textunderlinecontrol.ui:74
msgctxt "textunderlinecontrol|none"
msgid "(Without)"
msgstr "(Sonder)"
#. 9VDo4
-#: svx/uiconfig/ui/textunderlinecontrol.ui:37
+#: svx/uiconfig/ui/textunderlinecontrol.ui:93
msgctxt "textunderlinecontrol|single|tooltip_text"
msgid "Single"
msgstr "Enkelvoudig"
#. czS3W
-#: svx/uiconfig/ui/textunderlinecontrol.ui:54
+#: svx/uiconfig/ui/textunderlinecontrol.ui:110
msgctxt "textunderlinecontrol|double|tooltip_text"
msgid "Double"
msgstr "Dubbel"
#. DBg8Y
-#: svx/uiconfig/ui/textunderlinecontrol.ui:71
+#: svx/uiconfig/ui/textunderlinecontrol.ui:127
msgctxt "textunderlinecontrol|bold|tooltip_text"
msgid "Bold"
msgstr "Vetdruk"
#. fNrBz
-#: svx/uiconfig/ui/textunderlinecontrol.ui:88
+#: svx/uiconfig/ui/textunderlinecontrol.ui:144
msgctxt "textunderlinecontrol|dot|tooltip_text"
msgid "Dotted"
msgstr "Stippels"
#. JEgvk
-#: svx/uiconfig/ui/textunderlinecontrol.ui:105
+#: svx/uiconfig/ui/textunderlinecontrol.ui:161
msgctxt "textunderlinecontrol|dotbold|tooltip_text"
msgid "Dotted (Bold)"
msgstr "Stippels (vet)"
#. 46nci
-#: svx/uiconfig/ui/textunderlinecontrol.ui:122
+#: svx/uiconfig/ui/textunderlinecontrol.ui:178
msgctxt "textunderlinecontrol|dash|tooltip_text"
msgid "Dash"
msgstr "Strepie"
#. D8gB4
-#: svx/uiconfig/ui/textunderlinecontrol.ui:139
+#: svx/uiconfig/ui/textunderlinecontrol.ui:195
msgctxt "textunderlinecontrol|dashlong|tooltip_text"
msgid "Long Dash"
msgstr "Lang aandagstreep"
#. gkUzu
-#: svx/uiconfig/ui/textunderlinecontrol.ui:156
+#: svx/uiconfig/ui/textunderlinecontrol.ui:212
msgctxt "textunderlinecontrol|dashdot|tooltip_text"
msgid "Dot Dash"
msgstr "Stippel-strepie"
#. qMLxK
-#: svx/uiconfig/ui/textunderlinecontrol.ui:173
+#: svx/uiconfig/ui/textunderlinecontrol.ui:229
msgctxt "textunderlinecontrol|dashdotdot|tooltip_text"
msgid "Dot Dot Dash"
msgstr "Stippel-stippel-strepie"
#. dusMw
-#: svx/uiconfig/ui/textunderlinecontrol.ui:190
+#: svx/uiconfig/ui/textunderlinecontrol.ui:246
msgctxt "textunderlinecontrol|wave|tooltip_text"
msgid "Wave"
msgstr "Golf"
#. xJTZe
-#: svx/uiconfig/ui/textunderlinecontrol.ui:204
+#: svx/uiconfig/ui/textunderlinecontrol.ui:260
msgctxt "textunderlinecontrol|moreoptions"
msgid "_More Options..."
msgstr "Meer opsies..."
diff --git a/source/af/sw/messages.po b/source/af/sw/messages.po
index b72a374d1de..5376e21c406 100644
--- a/source/af/sw/messages.po
+++ b/source/af/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-04 19:52+0200\n"
-"PO-Revision-Date: 2021-09-14 10:10+0000\n"
+"POT-Creation-Date: 2021-10-25 12:50+0200\n"
+"PO-Revision-Date: 2021-10-21 11:33+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/af/>\n"
"Language: af\n"
@@ -4226,7 +4226,7 @@ msgstr "Velde"
#: sw/inc/strings.hrc:374
msgctxt "STR_CONTENT_TYPE_FOOTNOTE"
msgid "Footnotes and Endnotes"
-msgstr ""
+msgstr "Voetnotas en Eindnotas"
#. KRE4o
#: sw/inc/strings.hrc:375
@@ -4406,34 +4406,40 @@ msgstr "Veld"
#: sw/inc/strings.hrc:404
msgctxt "STR_CONTENT_TYPE_SINGLE_FOOTNOTE"
msgid "Footnote or Endnote"
-msgstr ""
+msgstr "Voetnota of Eindnota"
#. dFkui
#: sw/inc/strings.hrc:405
msgctxt "STR_CONTENT_FOOTNOTE"
msgid "Footnote"
-msgstr ""
+msgstr "Voetnota"
#. X6DYF
#: sw/inc/strings.hrc:406
msgctxt "STR_CONTENT_ENDNOTE"
msgid "Endnote"
-msgstr ""
+msgstr "Eindnota"
-#. jThGW
+#. sEQCK
#: sw/inc/strings.hrc:407
+msgctxt "STR_FOOTNOTE_ENDNOTE_SEPARATOR_TIP"
+msgid "Footnotes are listed above this line and Endnotes are listed below"
+msgstr "Voetnotas word gelys bokant hierdie lyn en Eindnotas word onder gelys"
+
+#. jThGW
+#: sw/inc/strings.hrc:408
msgctxt "STR_DEFINE_NUMBERFORMAT"
msgid "Additional formats..."
msgstr "Bykomende formate..."
#. Cfiyt
-#: sw/inc/strings.hrc:408
+#: sw/inc/strings.hrc:409
msgctxt "RID_STR_SYSTEM"
msgid "[System]"
msgstr "[Stelsel]"
#. iD3WQ
-#: sw/inc/strings.hrc:409
+#: sw/inc/strings.hrc:410
msgctxt "STR_MULT_INTERACT_HYPH_WARN"
msgid ""
"The interactive hyphenation is already active\n"
@@ -4443,656 +4449,656 @@ msgstr ""
"in ’n ander dokument"
#. 68AYK
-#: sw/inc/strings.hrc:410
+#: sw/inc/strings.hrc:411
msgctxt "STR_HYPH_TITLE"
msgid "Hyphenation"
msgstr "Woordafbreking"
#. EDxsk
-#: sw/inc/strings.hrc:411
+#: sw/inc/strings.hrc:412
msgctxt "STR_HYPH_MISSING"
msgid "Missing hyphenation data"
msgstr "Ontbrekende Koppelteken Data"
#. TEP66
-#: sw/inc/strings.hrc:412
+#: sw/inc/strings.hrc:413
msgctxt "STR_HYPH_MISSING"
msgid "Please install the hyphenation package for locale “%1”."
msgstr "Installeer asb. die koppelteken vir gebiedskema \"%1\"."
#. bJFYS
-#: sw/inc/strings.hrc:413
+#: sw/inc/strings.hrc:414
msgctxt "STR_HIDDEN_CHANGES"
msgid "Track Changes"
msgstr "Opname van Wysigings"
#. DcXvE
-#: sw/inc/strings.hrc:414
+#: sw/inc/strings.hrc:415
msgctxt "STR_HIDDEN_CHANGES_DETAIL"
msgid "Document contains tracked changes and recording is enabled."
msgstr "Dokument bevat opgetekende wysigings en byhou is geaktiveer."
#. zxuEu
-#: sw/inc/strings.hrc:415
+#: sw/inc/strings.hrc:416
msgctxt "STR_HIDDEN_CHANGES_DETAIL2"
msgid "Recording of changes is enabled."
msgstr "Opname van veranderings is geaktiveer."
#. BH7Ud
-#: sw/inc/strings.hrc:416
+#: sw/inc/strings.hrc:417
msgctxt "STR_HIDDEN_CHANGES_DETAIL3"
msgid "Document contains tracked changes."
msgstr "Dokument bevat opgeneemde wysigings."
#. MEN2d
#. Undo
-#: sw/inc/strings.hrc:419
+#: sw/inc/strings.hrc:420
msgctxt "STR_CANT_UNDO"
msgid "not possible"
msgstr "nie moontlik nie"
#. 5GdxN
-#: sw/inc/strings.hrc:420
+#: sw/inc/strings.hrc:421
msgctxt "STR_DELETE_UNDO"
msgid "Delete $1"
msgstr "Skrap $1"
#. i6vB4
-#: sw/inc/strings.hrc:421
+#: sw/inc/strings.hrc:422
msgctxt "STR_INSERT_UNDO"
msgid "Insert $1"
msgstr "Voeg $1 in"
#. JESFv
-#: sw/inc/strings.hrc:422
+#: sw/inc/strings.hrc:423
msgctxt "STR_OVR_UNDO"
msgid "Overwrite: $1"
msgstr "Oorskryf: $1"
#. FVqpL
-#: sw/inc/strings.hrc:423
+#: sw/inc/strings.hrc:424
msgctxt "STR_SPLITNODE_UNDO"
msgid "New Paragraph"
msgstr "Nuwe paragraaf"
#. r3iVE
-#: sw/inc/strings.hrc:424
+#: sw/inc/strings.hrc:425
msgctxt "STR_MOVE_UNDO"
msgid "Move"
msgstr "Skuif"
#. Z2Ft8
-#: sw/inc/strings.hrc:425
+#: sw/inc/strings.hrc:426
msgctxt "STR_INSATTR_UNDO"
msgid "Apply attributes"
msgstr "Pas attribute toe"
#. hetuZ
-#: sw/inc/strings.hrc:426
+#: sw/inc/strings.hrc:427
msgctxt "STR_SETFMTCOLL_UNDO"
msgid "Apply Styles: $1"
msgstr "Pas style toe: $1"
#. GokWu
-#: sw/inc/strings.hrc:427
+#: sw/inc/strings.hrc:428
msgctxt "STR_RESET_ATTR_UNDO"
msgid "Reset attributes"
msgstr "Laai attribute terug"
#. mDgEJ
-#: sw/inc/strings.hrc:428
+#: sw/inc/strings.hrc:429
msgctxt "STR_INSFMT_ATTR_UNDO"
msgid "Change style: $1"
msgstr "Verander styl: $1"
#. onBFE
-#: sw/inc/strings.hrc:429
+#: sw/inc/strings.hrc:430
msgctxt "STR_INSERT_DOC_UNDO"
msgid "Insert file"
msgstr "Voeg lêer in"
#. WCCkF
-#: sw/inc/strings.hrc:430
+#: sw/inc/strings.hrc:431
msgctxt "STR_INSERT_GLOSSARY"
msgid "Insert AutoText"
msgstr "Voeg Outoteks in"
#. CyNXC
-#: sw/inc/strings.hrc:431
+#: sw/inc/strings.hrc:432
msgctxt "STR_DELBOOKMARK"
msgid "Delete bookmark: $1"
msgstr "Skrap boekmerk: $1"
#. 54y8f
-#: sw/inc/strings.hrc:432
+#: sw/inc/strings.hrc:433
msgctxt "STR_INSBOOKMARK"
msgid "Insert bookmark: $1"
msgstr "Voeg boekmerk in: $1"
#. XHkEY
-#: sw/inc/strings.hrc:433
+#: sw/inc/strings.hrc:434
msgctxt "STR_SORT_TBL"
msgid "Sort table"
msgstr "Sorteer tabel"
#. gui6q
-#: sw/inc/strings.hrc:434
+#: sw/inc/strings.hrc:435
msgctxt "STR_SORT_TXT"
msgid "Sort text"
msgstr "Sorteer teks"
#. APAMG
-#: sw/inc/strings.hrc:435
+#: sw/inc/strings.hrc:436
msgctxt "STR_INSTABLE_UNDO"
msgid "Insert table: $1$2$3"
msgstr "Voeg tabel in: $1$2$3"
#. 4pGhz
-#: sw/inc/strings.hrc:436
+#: sw/inc/strings.hrc:437
msgctxt "STR_TEXTTOTABLE_UNDO"
msgid "Convert text -> table"
msgstr "Skakel om teks → tabel"
#. h3EH7
-#: sw/inc/strings.hrc:437
+#: sw/inc/strings.hrc:438
msgctxt "STR_TABLETOTEXT_UNDO"
msgid "Convert table -> text"
msgstr "Skakel om tabel → teks"
#. uKreq
-#: sw/inc/strings.hrc:438
+#: sw/inc/strings.hrc:439
msgctxt "STR_COPY_UNDO"
msgid "Copy: $1"
msgstr "Kopieer: $1"
#. BfGaZ
-#: sw/inc/strings.hrc:439
+#: sw/inc/strings.hrc:440
msgctxt "STR_REPLACE_UNDO"
msgid "Replace $1 $2 $3"
msgstr "Vervang $1 $2 $3"
#. GEC4C
-#: sw/inc/strings.hrc:440
+#: sw/inc/strings.hrc:441
msgctxt "STR_INSERT_PAGE_BREAK_UNDO"
msgid "Insert page break"
msgstr "Voeg bladsybreuk in"
#. mrWg2
-#: sw/inc/strings.hrc:441
+#: sw/inc/strings.hrc:442
msgctxt "STR_INSERT_COLUMN_BREAK_UNDO"
msgid "Insert column break"
msgstr "Voeg kolombreuk in"
#. MGqRt
-#: sw/inc/strings.hrc:442
+#: sw/inc/strings.hrc:443
msgctxt "STR_INSERT_ENV_UNDO"
msgid "Insert Envelope"
msgstr "Voeg koevert in"
#. g8ALR
-#: sw/inc/strings.hrc:443
+#: sw/inc/strings.hrc:444
msgctxt "STR_DRAG_AND_COPY"
msgid "Copy: $1"
msgstr "Kopieer: $1"
#. qHdLG
-#: sw/inc/strings.hrc:444
+#: sw/inc/strings.hrc:445
msgctxt "STR_DRAG_AND_MOVE"
msgid "Move: $1"
msgstr "Skuif: $1"
#. xqxPn
-#: sw/inc/strings.hrc:445
+#: sw/inc/strings.hrc:446
msgctxt "STR_INSERT_CHART"
msgid "Insert %PRODUCTNAME Chart"
msgstr "Voeg %PRODUCTNAME-grafiek in"
#. qWEVG
-#: sw/inc/strings.hrc:446
+#: sw/inc/strings.hrc:447
msgctxt "STR_INSERTFLY"
msgid "Insert frame"
msgstr "Voeg raam in"
#. GmqXE
-#: sw/inc/strings.hrc:447
+#: sw/inc/strings.hrc:448
msgctxt "STR_DELETEFLY"
msgid "Delete frame"
msgstr "Skrap raam"
#. z9Eai
-#: sw/inc/strings.hrc:448
+#: sw/inc/strings.hrc:449
msgctxt "STR_AUTOFORMAT"
msgid "AutoFormat"
msgstr "Outoformaat"
#. E6uaH
-#: sw/inc/strings.hrc:449
+#: sw/inc/strings.hrc:450
msgctxt "STR_TABLEHEADLINE"
msgid "Table heading"
msgstr "Tabelopskrif"
#. gnndv
-#: sw/inc/strings.hrc:450
+#: sw/inc/strings.hrc:451
msgctxt "STR_REPLACE"
msgid "Replace: $1 $2 $3"
msgstr "Vervang: $1 $2 $3"
#. WwuFC
-#: sw/inc/strings.hrc:451
+#: sw/inc/strings.hrc:452
msgctxt "STR_INSERTSECTION"
msgid "Insert section"
msgstr "Voeg afdeling in"
#. 7pzWX
-#: sw/inc/strings.hrc:452
+#: sw/inc/strings.hrc:453
msgctxt "STR_DELETESECTION"
msgid "Delete section"
msgstr "Skrap afdeling"
#. AFkoM
-#: sw/inc/strings.hrc:453
+#: sw/inc/strings.hrc:454
msgctxt "STR_CHANGESECTION"
msgid "Modify section"
msgstr "Wysig afdeling"
#. BY9gB
-#: sw/inc/strings.hrc:454
+#: sw/inc/strings.hrc:455
msgctxt "STR_CHANGEDEFATTR"
msgid "Modify default values"
msgstr "Wysig verstek waardes"
#. X7eMx
-#: sw/inc/strings.hrc:455
+#: sw/inc/strings.hrc:456
msgctxt "STR_REPLACE_STYLE"
msgid "Replace style: $1 $2 $3"
msgstr "Vervang styl: $1 $2 $3"
#. EXFvJ
-#: sw/inc/strings.hrc:456
+#: sw/inc/strings.hrc:457
msgctxt "STR_DELETE_PAGE_BREAK"
msgid "Delete page break"
msgstr "Skrap bladsybreuk"
#. kHVr9
-#: sw/inc/strings.hrc:457
+#: sw/inc/strings.hrc:458
msgctxt "STR_TEXT_CORRECTION"
msgid "Text Correction"
msgstr "Tekskorreksie"
#. ZPCQf
-#: sw/inc/strings.hrc:458
+#: sw/inc/strings.hrc:459
msgctxt "STR_OUTLINE_LR"
msgid "Promote/demote outline"
msgstr "Verhef/verlaag skema"
#. WQJz2
-#: sw/inc/strings.hrc:459
+#: sw/inc/strings.hrc:460
msgctxt "STR_OUTLINE_UD"
msgid "Move outline"
msgstr "Skuif skema"
#. 3UGKP
-#: sw/inc/strings.hrc:460
+#: sw/inc/strings.hrc:461
msgctxt "STR_OUTLINE_EDIT"
msgid "Modify outline"
msgstr "Wysig skema"
#. RjcRH
-#: sw/inc/strings.hrc:461
+#: sw/inc/strings.hrc:462
msgctxt "STR_INSNUM"
msgid "Insert numbering"
msgstr "Voeg nommering in"
#. hbCQa
-#: sw/inc/strings.hrc:462
+#: sw/inc/strings.hrc:463
msgctxt "STR_NUMUP"
msgid "Promote level"
msgstr "Verhef vlak"
#. 63Ec4
-#: sw/inc/strings.hrc:463
+#: sw/inc/strings.hrc:464
msgctxt "STR_NUMDOWN"
msgid "Demote level"
msgstr "Verlaag vlak"
#. FGciC
-#: sw/inc/strings.hrc:464
+#: sw/inc/strings.hrc:465
msgctxt "STR_MOVENUM"
msgid "Move paragraphs"
msgstr "Skuif paragrawe"
#. WdMCK
-#: sw/inc/strings.hrc:465
+#: sw/inc/strings.hrc:466
msgctxt "STR_INSERTDRAW"
msgid "Insert drawing object: $1"
msgstr "Voeg tekenobjek in: $1"
#. ErB3W
-#: sw/inc/strings.hrc:466
+#: sw/inc/strings.hrc:467
msgctxt "STR_NUMORNONUM"
msgid "Number On/Off"
msgstr "Nommer aan/af"
#. rEZvN
-#: sw/inc/strings.hrc:467
+#: sw/inc/strings.hrc:468
msgctxt "STR_INC_LEFTMARGIN"
msgid "Increase Indent"
msgstr "Vergroot keep"
#. aJxcG
-#: sw/inc/strings.hrc:468
+#: sw/inc/strings.hrc:469
msgctxt "STR_DEC_LEFTMARGIN"
msgid "Decrease indent"
msgstr "Verklein keep"
#. 4GP7c
-#: sw/inc/strings.hrc:469
+#: sw/inc/strings.hrc:470
msgctxt "STR_INSERTLABEL"
msgid "Insert caption: $1"
msgstr "Voeg opskrif in: $1"
#. GGFM8
-#: sw/inc/strings.hrc:470
+#: sw/inc/strings.hrc:471
msgctxt "STR_SETNUMRULESTART"
msgid "Restart numbering"
msgstr "Herbegin nommering"
#. pHfp7
-#: sw/inc/strings.hrc:471
+#: sw/inc/strings.hrc:472
msgctxt "STR_CHANGEFTN"
msgid "Modify footnote"
msgstr "Wysig voetnoot"
#. Knr9y
-#: sw/inc/strings.hrc:472
+#: sw/inc/strings.hrc:473
msgctxt "STR_ACCEPT_REDLINE"
msgid "Accept change: $1"
msgstr "Aanvaar wysiging: $1"
#. jAvjr
-#: sw/inc/strings.hrc:473
+#: sw/inc/strings.hrc:474
msgctxt "STR_REJECT_REDLINE"
msgid "Reject change: $1"
msgstr "Verwerp wysiging: $1"
#. uCGqy
-#: sw/inc/strings.hrc:474
+#: sw/inc/strings.hrc:475
msgctxt "STR_SPLIT_TABLE"
msgid "Split Table"
msgstr "Verdeel tabel"
#. TJCZ8
-#: sw/inc/strings.hrc:475
+#: sw/inc/strings.hrc:476
msgctxt "STR_DONTEXPAND"
msgid "Stop attribute"
msgstr "Stop eienskap"
#. qyCiy
-#: sw/inc/strings.hrc:476
+#: sw/inc/strings.hrc:477
msgctxt "STR_AUTOCORRECT"
msgid "AutoCorrect"
msgstr "Outokorrigeer"
#. f4Jfr
-#: sw/inc/strings.hrc:477
+#: sw/inc/strings.hrc:478
msgctxt "STR_MERGE_TABLE"
msgid "Merge table"
msgstr "Voeg tabel saam"
#. BLcCC
-#: sw/inc/strings.hrc:478
+#: sw/inc/strings.hrc:479
msgctxt "STR_TRANSLITERATE"
msgid "Change Case"
msgstr "Verander letterkas"
#. BTGyD
-#: sw/inc/strings.hrc:479
+#: sw/inc/strings.hrc:480
msgctxt "STR_DELNUM"
msgid "Delete numbering"
msgstr "Skrap nommering"
#. TMvTD
-#: sw/inc/strings.hrc:480
+#: sw/inc/strings.hrc:481
msgctxt "STR_DRAWUNDO"
msgid "Drawing objects: $1"
msgstr "Tekenobjekte: $1"
#. FG7rN
-#: sw/inc/strings.hrc:481
+#: sw/inc/strings.hrc:482
msgctxt "STR_DRAWGROUP"
msgid "Group draw objects"
msgstr "Groepeer tekenobjekte"
#. xZqoJ
-#: sw/inc/strings.hrc:482
+#: sw/inc/strings.hrc:483
msgctxt "STR_DRAWUNGROUP"
msgid "Ungroup drawing objects"
msgstr "Degroepeer tekenobjekte"
#. FA3Vo
-#: sw/inc/strings.hrc:483
+#: sw/inc/strings.hrc:484
msgctxt "STR_DRAWDELETE"
msgid "Delete drawing objects"
msgstr "Skrap tekenobjekte"
#. MbJSs
-#: sw/inc/strings.hrc:484
+#: sw/inc/strings.hrc:485
msgctxt "STR_REREAD"
msgid "Replace Image"
msgstr "Vervang beeld"
#. 6GmVr
-#: sw/inc/strings.hrc:485
+#: sw/inc/strings.hrc:486
msgctxt "STR_DELGRF"
msgid "Delete Image"
msgstr "Skrap beeld"
#. PAmBF
-#: sw/inc/strings.hrc:486
+#: sw/inc/strings.hrc:487
msgctxt "STR_TABLE_ATTR"
msgid "Apply table attributes"
msgstr "Pas tabeleienskappe toe"
#. GA8gF
-#: sw/inc/strings.hrc:487
+#: sw/inc/strings.hrc:488
msgctxt "STR_UNDO_TABLE_AUTOFMT"
msgid "AutoFormat Table"
msgstr "Outoformateer tabel"
#. AAPTL
-#: sw/inc/strings.hrc:488
+#: sw/inc/strings.hrc:489
msgctxt "STR_UNDO_TABLE_INSCOL"
msgid "Insert Column"
msgstr "Voeg kolom in"
#. tA7ss
-#: sw/inc/strings.hrc:489
+#: sw/inc/strings.hrc:490
msgctxt "STR_UNDO_TABLE_INSROW"
msgid "Insert Row"
msgstr "Voeg ry in"
#. LAzxr
-#: sw/inc/strings.hrc:490
+#: sw/inc/strings.hrc:491
msgctxt "STR_UNDO_TABLE_DELBOX"
msgid "Delete row/column"
msgstr "Skrap ry/kolom"
#. yFDYp
-#: sw/inc/strings.hrc:491
+#: sw/inc/strings.hrc:492
msgctxt "STR_UNDO_COL_DELETE"
msgid "Delete column"
msgstr "Skrap kolom"
#. 9SF9L
-#: sw/inc/strings.hrc:492
+#: sw/inc/strings.hrc:493
msgctxt "STR_UNDO_ROW_DELETE"
msgid "Delete row"
msgstr "Skrap ry"
#. FnLC7
-#: sw/inc/strings.hrc:493
+#: sw/inc/strings.hrc:494
msgctxt "STR_UNDO_TABLE_SPLIT"
msgid "Split Cells"
msgstr "Verdeel selle"
#. 3Em7B
-#: sw/inc/strings.hrc:494
+#: sw/inc/strings.hrc:495
msgctxt "STR_UNDO_TABLE_MERGE"
msgid "Merge Cells"
msgstr "Voeg selle saam"
#. 3VVmF
-#: sw/inc/strings.hrc:495
+#: sw/inc/strings.hrc:496
msgctxt "STR_TABLE_NUMFORMAT"
msgid "Format cell"
msgstr "Formateer sel"
#. UbSKw
-#: sw/inc/strings.hrc:496
+#: sw/inc/strings.hrc:497
msgctxt "STR_INSERT_TOX"
msgid "Insert index/table"
msgstr "Voeg indeks/tabel in"
#. szpbj
-#: sw/inc/strings.hrc:497
+#: sw/inc/strings.hrc:498
msgctxt "STR_CLEAR_TOX_RANGE"
msgid "Remove index/table"
msgstr "Verwyder indeks/tabel"
#. cN5DN
-#: sw/inc/strings.hrc:498
+#: sw/inc/strings.hrc:499
msgctxt "STR_TABLE_TBLCPYTBL"
msgid "Copy table"
msgstr "Kopieer tabel"
#. eUFgx
-#: sw/inc/strings.hrc:499
+#: sw/inc/strings.hrc:500
msgctxt "STR_TABLE_CPYTBL"
msgid "Copy table"
msgstr "Kopieer tabel"
#. TC6mz
-#: sw/inc/strings.hrc:500
+#: sw/inc/strings.hrc:501
msgctxt "STR_INS_FROM_SHADOWCRSR"
msgid "Set cursor"
msgstr "Stel wyser"
#. 4GStA
-#: sw/inc/strings.hrc:501
+#: sw/inc/strings.hrc:502
msgctxt "STR_UNDO_CHAIN"
msgid "Link frames"
msgstr "Koppel rame"
#. XV4Ap
-#: sw/inc/strings.hrc:502
+#: sw/inc/strings.hrc:503
msgctxt "STR_UNDO_UNCHAIN"
msgid "Unlink frames"
msgstr "Ontkoppel rame"
#. vUJG9
-#: sw/inc/strings.hrc:503
+#: sw/inc/strings.hrc:504
msgctxt "STR_UNDO_FTNINFO"
msgid "Modify footnote options"
msgstr "Wysig voetnootopsies"
#. AgREs
-#: sw/inc/strings.hrc:504
+#: sw/inc/strings.hrc:505
msgctxt "STR_UNDO_COMPAREDOC"
msgid "Compare Document"
msgstr "Vergelyk dokument"
#. kZATW
-#: sw/inc/strings.hrc:505
+#: sw/inc/strings.hrc:506
msgctxt "STR_UNDO_SETFLYFRMFMT"
msgid "Apply frame style: $1"
msgstr "Pas raamstyl toe: $1"
#. 4Ae2X
-#: sw/inc/strings.hrc:506
+#: sw/inc/strings.hrc:507
msgctxt "STR_UNDO_SETRUBYATTR"
msgid "Ruby Setting"
msgstr "Robyninstelling"
#. J4AUR
-#: sw/inc/strings.hrc:507
+#: sw/inc/strings.hrc:508
msgctxt "STR_INSERT_FOOTNOTE"
msgid "Insert footnote"
msgstr "Voeg voetnoot in"
#. RMgFD
-#: sw/inc/strings.hrc:508
+#: sw/inc/strings.hrc:509
msgctxt "STR_INSERT_URLBTN"
msgid "insert URL button"
msgstr "voeg URL-knoppie in"
#. UKN7k
-#: sw/inc/strings.hrc:509
+#: sw/inc/strings.hrc:510
msgctxt "STR_INSERT_URLTXT"
msgid "Insert Hyperlink"
msgstr "Voeg hiperskakel in"
#. 9odT8
-#: sw/inc/strings.hrc:510
+#: sw/inc/strings.hrc:511
msgctxt "STR_DELETE_INVISIBLECNTNT"
msgid "remove invisible content"
msgstr "verwyder onsigbare inhoud"
#. e6U2R
-#: sw/inc/strings.hrc:511
+#: sw/inc/strings.hrc:512
msgctxt "STR_TOXCHANGE"
msgid "Table/index changed"
msgstr "Tabel/indeks gewysig"
#. JpGh6
-#: sw/inc/strings.hrc:512
+#: sw/inc/strings.hrc:513
msgctxt "STR_START_QUOTE"
msgid "“"
msgstr "“"
#. kZoAG
-#: sw/inc/strings.hrc:513
+#: sw/inc/strings.hrc:514
msgctxt "STR_END_QUOTE"
msgid "”"
msgstr "”"
#. wNZDq
-#: sw/inc/strings.hrc:514
+#: sw/inc/strings.hrc:515
msgctxt "STR_LDOTS"
msgid "..."
msgstr "..."
#. yiQgo
-#: sw/inc/strings.hrc:515
+#: sw/inc/strings.hrc:516
msgctxt "STR_MULTISEL"
msgid "multiple selection"
msgstr "veelvoudige seleksie"
#. qFESB
-#: sw/inc/strings.hrc:516
+#: sw/inc/strings.hrc:517
msgctxt "STR_TYPING_UNDO"
msgid "Typing: $1"
msgstr "Tik: $1"
#. A6HSG
-#: sw/inc/strings.hrc:517
+#: sw/inc/strings.hrc:518
msgctxt "STR_PASTE_CLIPBOARD_UNDO"
msgid "Paste clipboard"
msgstr "Plak knipbord"
#. mfDMF
-#: sw/inc/strings.hrc:518
+#: sw/inc/strings.hrc:519
msgctxt "STR_YIELDS"
msgid "→"
msgstr "→"
#. wNRhZ
-#: sw/inc/strings.hrc:519
+#: sw/inc/strings.hrc:520
msgctxt "STR_OCCURRENCES_OF"
msgid "occurrences of"
msgstr "voorkomste van"
#. hHUZi
-#: sw/inc/strings.hrc:520
+#: sw/inc/strings.hrc:521
msgctxt "STR_UNDO_TABS"
msgid "One tab"
msgid_plural "$1 tabs"
@@ -5100,7 +5106,7 @@ msgstr[0] "Een keep"
msgstr[1] "$1 kepe"
#. eP6mC
-#: sw/inc/strings.hrc:521
+#: sw/inc/strings.hrc:522
msgctxt "STR_UNDO_NLS"
msgid "One line break"
msgid_plural "$1 line breaks"
@@ -5108,308 +5114,308 @@ msgstr[0] "Een lynbreuk"
msgstr[1] "$1 lynbreuke"
#. yS3nP
-#: sw/inc/strings.hrc:522
+#: sw/inc/strings.hrc:523
msgctxt "STR_UNDO_PAGEBREAKS"
msgid "page break"
msgstr "bladsybreuk"
#. Q4YVg
-#: sw/inc/strings.hrc:523
+#: sw/inc/strings.hrc:524
msgctxt "STR_UNDO_COLBRKS"
msgid "column break"
msgstr "kolombreuk"
#. L6qva
-#: sw/inc/strings.hrc:524
+#: sw/inc/strings.hrc:525
msgctxt "STR_UNDO_REDLINE_INSERT"
msgid "Insert $1"
msgstr "Voeg $1 in"
#. i8ZQo
-#: sw/inc/strings.hrc:525
+#: sw/inc/strings.hrc:526
msgctxt "STR_UNDO_REDLINE_DELETE"
msgid "Delete $1"
msgstr "Skrap $1"
#. 5KECk
-#: sw/inc/strings.hrc:526
+#: sw/inc/strings.hrc:527
msgctxt "STR_UNDO_REDLINE_FORMAT"
msgid "Attributes changed"
msgstr "Attribute gewysig"
#. N7CUk
-#: sw/inc/strings.hrc:527
+#: sw/inc/strings.hrc:528
msgctxt "STR_UNDO_REDLINE_TABLE"
msgid "Table changed"
msgstr "Tabel het verander"
#. DCGPF
-#: sw/inc/strings.hrc:528
+#: sw/inc/strings.hrc:529
msgctxt "STR_UNDO_REDLINE_FMTCOLL"
msgid "Style changed"
msgstr "Styl het verander"
#. p77WZ
-#: sw/inc/strings.hrc:529
+#: sw/inc/strings.hrc:530
msgctxt "STR_UNDO_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr "Paragraafformatering het verander"
#. nehrq
-#: sw/inc/strings.hrc:530
+#: sw/inc/strings.hrc:531
msgctxt "STR_UNDO_REDLINE_TABLE_ROW_INSERT"
msgid "Insert Row"
msgstr "Voeg ry in"
#. Ud4qT
-#: sw/inc/strings.hrc:531
+#: sw/inc/strings.hrc:532
msgctxt "STR_UNDO_REDLINE_TABLE_ROW_DELETE"
msgid "Delete Row"
msgstr "Skrap ry"
#. GvxsC
-#: sw/inc/strings.hrc:532
+#: sw/inc/strings.hrc:533
msgctxt "STR_UNDO_REDLINE_TABLE_CELL_INSERT"
msgid "Insert Cell"
msgstr "Voeg sel in"
#. ZMrVY
-#: sw/inc/strings.hrc:533
+#: sw/inc/strings.hrc:534
msgctxt "STR_UNDO_REDLINE_TABLE_CELL_DELETE"
msgid "Delete Cell"
msgstr "Skrap sel"
#. DqprY
-#: sw/inc/strings.hrc:534
+#: sw/inc/strings.hrc:535
msgctxt "STR_N_REDLINES"
msgid "$1 changes"
msgstr "$1 wysigings"
#. ve5ZA
-#: sw/inc/strings.hrc:535
+#: sw/inc/strings.hrc:536
msgctxt "STR_UNDO_PAGEDESC"
msgid "Change page style: $1"
msgstr "Wysig bladsystyl: $1"
#. RDkdy
-#: sw/inc/strings.hrc:536
+#: sw/inc/strings.hrc:537
msgctxt "STR_UNDO_PAGEDESC_CREATE"
msgid "Create page style: $1"
msgstr "Skep bladsystyl: $1"
#. tBVzV
-#: sw/inc/strings.hrc:537
+#: sw/inc/strings.hrc:538
msgctxt "STR_UNDO_PAGEDESC_DELETE"
msgid "Delete page style: $1"
msgstr "Skrap bladsystyl: $1"
#. wzjRB
-#: sw/inc/strings.hrc:538
+#: sw/inc/strings.hrc:539
msgctxt "STR_UNDO_PAGEDESC_RENAME"
msgid "Rename page style: $1 $2 $3"
msgstr "Hernoem bladsystyl: $1 $2 $3"
#. UcTVv
-#: sw/inc/strings.hrc:539
+#: sw/inc/strings.hrc:540
msgctxt "STR_UNDO_HEADER_FOOTER"
msgid "Header/footer changed"
msgstr "Kopstuk/voetstuk het verander"
#. tGyeC
-#: sw/inc/strings.hrc:540
+#: sw/inc/strings.hrc:541
msgctxt "STR_UNDO_FIELD"
msgid "Field changed"
msgstr "Veldname het verander"
#. xh3dq
-#: sw/inc/strings.hrc:541
+#: sw/inc/strings.hrc:542
msgctxt "STR_UNDO_TXTFMTCOL_CREATE"
msgid "Create paragraph style: $1"
msgstr "Skep paragraafstyl: $1"
#. aRf6Z
-#: sw/inc/strings.hrc:542
+#: sw/inc/strings.hrc:543
msgctxt "STR_UNDO_TXTFMTCOL_DELETE"
msgid "Delete paragraph style: $1"
msgstr "Skrap paragraafstyl: $1"
#. DtD6w
-#: sw/inc/strings.hrc:543
+#: sw/inc/strings.hrc:544
msgctxt "STR_UNDO_TXTFMTCOL_RENAME"
msgid "Rename paragraph style: $1 $2 $3"
msgstr "Hernoem paragraafstyl: $1 $2 $3"
#. J2FcF
-#: sw/inc/strings.hrc:544
+#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_CHARFMT_CREATE"
msgid "Create character style: $1"
msgstr "Skep karakterstyl: $1"
#. FjT56
-#: sw/inc/strings.hrc:545
+#: sw/inc/strings.hrc:546
msgctxt "STR_UNDO_CHARFMT_DELETE"
msgid "Delete character style: $1"
msgstr "Skrap karakterstyl: $1"
#. mT2GJ
-#: sw/inc/strings.hrc:546
+#: sw/inc/strings.hrc:547
msgctxt "STR_UNDO_CHARFMT_RENAME"
msgid "Rename character style: $1 $2 $3"
msgstr "Hernoem karakterstyl: $1 $2 $3"
#. AvK4p
-#: sw/inc/strings.hrc:547
+#: sw/inc/strings.hrc:548
msgctxt "STR_UNDO_FRMFMT_CREATE"
msgid "Create frame style: $1"
msgstr "Skep raamstyl: $1"
#. zHLcd
-#: sw/inc/strings.hrc:548
+#: sw/inc/strings.hrc:549
msgctxt "STR_UNDO_FRMFMT_DELETE"
msgid "Delete frame style: $1"
msgstr "Skrap raamstyl: $1"
#. BUdbD
-#: sw/inc/strings.hrc:549
+#: sw/inc/strings.hrc:550
msgctxt "STR_UNDO_FRMFMT_RENAME"
msgid "Rename frame style: $1 $2 $3"
msgstr "Hernoem raamstyl: $1 $2 $3"
#. GG9BH
-#: sw/inc/strings.hrc:550
+#: sw/inc/strings.hrc:551
msgctxt "STR_UNDO_NUMRULE_CREATE"
msgid "Create numbering style: $1"
msgstr "Skep nommerstyl: $1"
#. zYZW8
-#: sw/inc/strings.hrc:551
+#: sw/inc/strings.hrc:552
msgctxt "STR_UNDO_NUMRULE_DELETE"
msgid "Delete numbering style: $1"
msgstr "Skrap nommerstyl: $1"
#. QhDFe
-#: sw/inc/strings.hrc:552
+#: sw/inc/strings.hrc:553
msgctxt "STR_UNDO_NUMRULE_RENAME"
msgid "Rename numbering style: $1 $2 $3"
msgstr "Hernoem nommerstyl: $1 $2 $3"
#. oWrh9
-#: sw/inc/strings.hrc:553
+#: sw/inc/strings.hrc:554
msgctxt "STR_UNDO_BOOKMARK_RENAME"
msgid "Rename bookmark: $1 $2 $3"
msgstr "Hernoem boekmerk: $1 $2 $3"
#. WTcEw
-#: sw/inc/strings.hrc:554
+#: sw/inc/strings.hrc:555
msgctxt "STR_UNDO_INDEX_ENTRY_INSERT"
msgid "Insert index entry"
msgstr "Voeg indeksinskrywying in"
#. fbidx
-#: sw/inc/strings.hrc:555
+#: sw/inc/strings.hrc:556
msgctxt "STR_UNDO_INDEX_ENTRY_DELETE"
msgid "Delete index entry"
msgstr "Skrap indeksinskrywing"
#. WCDy7
-#: sw/inc/strings.hrc:556
+#: sw/inc/strings.hrc:557
msgctxt "STR_FIELD"
msgid "field"
msgstr "veld"
#. aC9iU
-#: sw/inc/strings.hrc:557
+#: sw/inc/strings.hrc:558
msgctxt "STR_UNDO_INSERT_TEXTBOX"
msgid "text box"
msgstr "Teksveld"
#. yNjem
#. undo: STR_PARAGRAPHS, string.text
-#: sw/inc/strings.hrc:559
+#: sw/inc/strings.hrc:560
msgctxt "STR_PARAGRAPHS"
msgid "Paragraphs"
msgstr "Paragrawe"
#. 9fb4z
-#: sw/inc/strings.hrc:560
+#: sw/inc/strings.hrc:561
msgctxt "STR_FRAME"
msgid "frame"
msgstr "raam"
#. gcZ3a
-#: sw/inc/strings.hrc:561
+#: sw/inc/strings.hrc:562
msgctxt "STR_OLE"
msgid "OLE-object"
msgstr "OLE-objek"
#. db5Tg
-#: sw/inc/strings.hrc:562
+#: sw/inc/strings.hrc:563
msgctxt "STR_MATH_FORMULA"
msgid "formula"
msgstr "formule"
#. BirkF
-#: sw/inc/strings.hrc:563
+#: sw/inc/strings.hrc:564
msgctxt "STR_CHART"
msgid "chart"
msgstr "grafiek"
#. YxCuu
-#: sw/inc/strings.hrc:564
+#: sw/inc/strings.hrc:565
msgctxt "STR_NOTE"
msgid "comment"
msgstr "opmerking"
#. CKqsU
-#: sw/inc/strings.hrc:565
+#: sw/inc/strings.hrc:566
msgctxt "STR_REFERENCE"
msgid "cross-reference"
msgstr "kruisverwysing"
#. q9BGR
-#: sw/inc/strings.hrc:566
+#: sw/inc/strings.hrc:567
msgctxt "STR_SCRIPT"
msgid "script"
msgstr "skrip"
#. o6FWi
-#: sw/inc/strings.hrc:567
+#: sw/inc/strings.hrc:568
msgctxt "STR_AUTHORITY_ENTRY"
msgid "bibliography entry"
msgstr "bibliografie-inskrywing"
#. qbRLG
-#: sw/inc/strings.hrc:568
+#: sw/inc/strings.hrc:569
msgctxt "STR_SPECIALCHAR"
msgid "special character"
msgstr "spesiale karakter"
#. qJd8G
-#: sw/inc/strings.hrc:569
+#: sw/inc/strings.hrc:570
msgctxt "STR_FOOTNOTE"
msgid "footnote"
msgstr "voetnoot"
#. bKvaD
-#: sw/inc/strings.hrc:570
+#: sw/inc/strings.hrc:571
msgctxt "STR_GRAPHIC"
msgid "image"
msgstr "beeld"
#. J7CgG
-#: sw/inc/strings.hrc:571
+#: sw/inc/strings.hrc:572
msgctxt "STR_DRAWING_OBJECTS"
msgid "drawing object(s)"
msgstr "tekenobjek(te)"
#. rYPFG
-#: sw/inc/strings.hrc:572
+#: sw/inc/strings.hrc:573
msgctxt "STR_TABLE_NAME"
msgid "table: $1$2$3"
msgstr "tabel: $1$2$3"
#. AtWxA
-#: sw/inc/strings.hrc:573
+#: sw/inc/strings.hrc:574
msgctxt "STR_CHAPTERS"
msgid "chapter"
msgid_plural "chapters"
@@ -5417,1653 +5423,1653 @@ msgstr[0] "hoofstuk"
msgstr[1] "hoofstukke"
#. 2JCL2
-#: sw/inc/strings.hrc:574
+#: sw/inc/strings.hrc:575
msgctxt "STR_PARAGRAPH_UNDO"
msgid "paragraph"
msgstr "paragraaf"
#. DvnGA
-#: sw/inc/strings.hrc:575
+#: sw/inc/strings.hrc:576
msgctxt "STR_PARAGRAPH_SIGN_UNDO"
msgid "Paragraph sign"
msgstr "Paragrarafteken"
#. oL9GG
-#: sw/inc/strings.hrc:576
+#: sw/inc/strings.hrc:577
msgctxt "STR_UNDO_FLYFRMFMT_TITLE"
msgid "Change object title of $1"
msgstr "Verander objektitel van $1"
#. 3Cv7E
-#: sw/inc/strings.hrc:577
+#: sw/inc/strings.hrc:578
msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr "Wysig Objek Beskrywing van $1"
#. rWw8U
-#: sw/inc/strings.hrc:578
+#: sw/inc/strings.hrc:579
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
msgid "Create table style: $1"
msgstr "Skep bladsystyl: $1"
#. jGxgy
-#: sw/inc/strings.hrc:579
+#: sw/inc/strings.hrc:580
msgctxt "STR_UNDO_TBLSTYLE_DELETE"
msgid "Delete table style: $1"
msgstr "Skrap bladsystyl: $1"
#. 6NWP3
-#: sw/inc/strings.hrc:580
+#: sw/inc/strings.hrc:581
msgctxt "STR_UNDO_TBLSTYLE_UPDATE"
msgid "Update table style: $1"
msgstr "Werk bladsystyl by: $1"
#. JegfU
-#: sw/inc/strings.hrc:581
+#: sw/inc/strings.hrc:582
msgctxt "STR_UNDO_TABLE_DELETE"
msgid "Delete table"
msgstr "Skrap bladsy"
#. KSMpJ
-#: sw/inc/strings.hrc:582
+#: sw/inc/strings.hrc:583
msgctxt "STR_UNDO_INSERT_FORM_FIELD"
msgid "Insert form field"
msgstr "Voeg vorm-veld in"
#. 2zJmG
-#: sw/inc/strings.hrc:583
+#: sw/inc/strings.hrc:584
msgctxt "STR_DROP_DOWN_FIELD_ITEM_LIMIT"
msgid "You can specify maximum of 25 items for a drop-down form field."
msgstr "U kan maksimum 25 elemente spesifiseer vir 'n Aftuimel-Vormveld."
#. CUXeF
-#: sw/inc/strings.hrc:585
+#: sw/inc/strings.hrc:586
msgctxt "STR_ACCESS_DOC_NAME"
msgid "Document view"
msgstr "Dokumentaansig"
#. FrBrC
-#: sw/inc/strings.hrc:586
+#: sw/inc/strings.hrc:587
msgctxt "STR_ACCESS_DOC_DESC"
msgid "Document view"
msgstr "Dokumentaansig"
#. BCEgS
-#: sw/inc/strings.hrc:587
+#: sw/inc/strings.hrc:588
msgctxt "STR_ACCESS_HEADER_NAME"
msgid "Header $(ARG1)"
msgstr "Kop $(ARG1)"
#. zKdDR
-#: sw/inc/strings.hrc:588
+#: sw/inc/strings.hrc:589
msgctxt "STR_ACCESS_HEADER_DESC"
msgid "Header page $(ARG1)"
msgstr "Kopbladsy $(ARG1)"
#. NhFrV
-#: sw/inc/strings.hrc:589
+#: sw/inc/strings.hrc:590
msgctxt "STR_ACCESS_FOOTER_NAME"
msgid "Footer $(ARG1)"
msgstr "Voet $(ARG1)"
#. 6GJNd
-#: sw/inc/strings.hrc:590
+#: sw/inc/strings.hrc:591
msgctxt "STR_ACCESS_FOOTER_DESC"
msgid "Footer page $(ARG1)"
msgstr "Voetbladsy $(ARG1)"
#. VGUwW
-#: sw/inc/strings.hrc:591
+#: sw/inc/strings.hrc:592
msgctxt "STR_ACCESS_FOOTNOTE_NAME"
msgid "Footnote $(ARG1)"
msgstr "Voetnoot $(ARG1)"
#. a7XMU
-#: sw/inc/strings.hrc:592
+#: sw/inc/strings.hrc:593
msgctxt "STR_ACCESS_FOOTNOTE_DESC"
msgid "Footnote $(ARG1)"
msgstr "Voetnoot $(ARG1)"
#. 3ExiP
-#: sw/inc/strings.hrc:593
+#: sw/inc/strings.hrc:594
msgctxt "STR_ACCESS_ENDNOTE_NAME"
msgid "Endnote $(ARG1)"
msgstr "Eindnoot $(ARG1)"
#. 8XdTm
-#: sw/inc/strings.hrc:594
+#: sw/inc/strings.hrc:595
msgctxt "STR_ACCESS_ENDNOTE_DESC"
msgid "Endnote $(ARG1)"
msgstr "Eindnoot $(ARG1)"
#. 4sTZN
-#: sw/inc/strings.hrc:595
+#: sw/inc/strings.hrc:596
msgctxt "STR_ACCESS_TABLE_DESC"
msgid "$(ARG1) on page $(ARG2)"
msgstr "$(ARG1) op bladsy $(ARG2)"
#. Z5Uy9
-#: sw/inc/strings.hrc:596
+#: sw/inc/strings.hrc:597
msgctxt "STR_ACCESS_PAGE_NAME"
msgid "Page $(ARG1)"
msgstr "Bladsy $(ARG1)"
#. CWroT
-#: sw/inc/strings.hrc:597
+#: sw/inc/strings.hrc:598
msgctxt "STR_ACCESS_PAGE_DESC"
msgid "Page: $(ARG1)"
msgstr "Bladsy: $(ARG1)"
#. iwfxM
-#: sw/inc/strings.hrc:598
+#: sw/inc/strings.hrc:599
msgctxt "STR_ACCESS_ANNOTATION_AUTHOR_NAME"
msgid "Author"
msgstr "Outeur"
#. sff9t
-#: sw/inc/strings.hrc:599
+#: sw/inc/strings.hrc:600
msgctxt "STR_ACCESS_ANNOTATION_DATE_NAME"
msgid "Date"
msgstr "Datum"
#. VScXC
-#: sw/inc/strings.hrc:600
+#: sw/inc/strings.hrc:601
msgctxt "STR_ACCESS_ANNOTATION_RESOLVED_NAME"
msgid "Resolved"
msgstr "Opgelos"
#. JtzA4
-#: sw/inc/strings.hrc:601
+#: sw/inc/strings.hrc:602
msgctxt "STR_ACCESS_ANNOTATION_BUTTON_NAME"
msgid "Actions"
msgstr "Aksies"
#. cHWqM
-#: sw/inc/strings.hrc:602
+#: sw/inc/strings.hrc:603
msgctxt "STR_ACCESS_ANNOTATION_BUTTON_DESC"
msgid "Activate this button to open a list of actions which can be performed on this comment and other comments"
msgstr "Aktiveer dié knoppie om ’n lys aksies wat op dié opmerking en ander opmerkings verrig kan word te open"
#. 9YxaB
-#: sw/inc/strings.hrc:603
+#: sw/inc/strings.hrc:604
msgctxt "STR_ACCESS_PREVIEW_DOC_NAME"
msgid "Document preview"
msgstr "Dokumentvoorskou"
#. eYFFo
-#: sw/inc/strings.hrc:604
+#: sw/inc/strings.hrc:605
msgctxt "STR_ACCESS_PREVIEW_DOC_SUFFIX"
msgid "(Preview mode)"
msgstr "(Voorskoumodus)"
#. Fp7Hn
-#: sw/inc/strings.hrc:605
+#: sw/inc/strings.hrc:606
msgctxt "STR_ACCESS_DOC_WORDPROCESSING"
msgid "%PRODUCTNAME Document"
msgstr "%PRODUCTNAME-dokument"
#. CsQKH
-#: sw/inc/strings.hrc:607
+#: sw/inc/strings.hrc:608
msgctxt "STR_COMCORE_READERROR"
msgid "Read Error"
msgstr "Leesfout"
#. ztbVu
-#: sw/inc/strings.hrc:608
+#: sw/inc/strings.hrc:609
msgctxt "STR_COMCORE_CANT_SHOW"
msgid "Image cannot be displayed."
msgstr "Beeld kan nie vertoon word nie."
#. iJsFt
-#: sw/inc/strings.hrc:609
+#: sw/inc/strings.hrc:610
msgctxt "STR_ERROR_CLPBRD_READ"
msgid "Error reading from the clipboard."
msgstr "Fout tydens lees van die knipbord."
#. bXZQD
-#: sw/inc/strings.hrc:611
+#: sw/inc/strings.hrc:612
msgctxt "STR_COLUMN_BREAK"
msgid "Manual Column Break"
msgstr "Handmatige kolombreuk"
#. 7DzNG
-#: sw/inc/strings.hrc:613
+#: sw/inc/strings.hrc:614
msgctxt "STR_CHART2_ROW_LABEL_TEXT"
msgid "Row %ROWNUMBER"
msgstr "Ry %ROWNUMBER"
#. GYFVF
-#: sw/inc/strings.hrc:614
+#: sw/inc/strings.hrc:615
msgctxt "STR_CHART2_COL_LABEL_TEXT"
msgid "Column %COLUMNLETTER"
msgstr "Kolom %COLUMNLETTER"
#. GGS2b
-#: sw/inc/strings.hrc:615
+#: sw/inc/strings.hrc:616
msgctxt "STR_STYLE_FAMILY_CHARACTER"
msgid "Character"
msgstr "Karakter"
#. KBw5e
-#: sw/inc/strings.hrc:616
+#: sw/inc/strings.hrc:617
msgctxt "STR_STYLE_FAMILY_PARAGRAPH"
msgid "Paragraph"
msgstr "Paragraaf"
#. ERH8o
-#: sw/inc/strings.hrc:617
+#: sw/inc/strings.hrc:618
msgctxt "STR_STYLE_FAMILY_FRAME"
msgid "Frame"
msgstr "Raam"
#. Cqjn8
-#: sw/inc/strings.hrc:618
+#: sw/inc/strings.hrc:619
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Pages"
msgstr "Bladsye"
#. FFZEr
-#: sw/inc/strings.hrc:619
+#: sw/inc/strings.hrc:620
msgctxt "STR_STYLE_FAMILY_NUMBERING"
msgid "List"
msgstr "Lys"
#. NydLs
-#: sw/inc/strings.hrc:620
+#: sw/inc/strings.hrc:621
msgctxt "STR_STYLE_FAMILY_TABLE"
msgid "Table"
msgstr "Tabel"
#. XUhuM
-#: sw/inc/strings.hrc:621
+#: sw/inc/strings.hrc:622
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell"
msgstr "Sel"
#. DRqDZ
-#: sw/inc/strings.hrc:623
+#: sw/inc/strings.hrc:624
msgctxt "ST_SCRIPT_ASIAN"
msgid "Asian"
msgstr "Asiaties"
#. owFtq
-#: sw/inc/strings.hrc:624
+#: sw/inc/strings.hrc:625
msgctxt "ST_SCRIPT_CTL"
msgid "CTL"
msgstr "KTL"
#. ap5iF
-#: sw/inc/strings.hrc:625
+#: sw/inc/strings.hrc:626
msgctxt "ST_SCRIPT_WESTERN"
msgid "Western"
msgstr "Westers"
#. HD64i
-#: sw/inc/strings.hrc:626
+#: sw/inc/strings.hrc:627
msgctxt "STR_PRINTOPTUI_PRODUCTNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. q6egu
-#: sw/inc/strings.hrc:627
+#: sw/inc/strings.hrc:628
msgctxt "STR_PRINTOPTUI_CONTENTS"
msgid "Contents"
msgstr "Inhoud"
#. Ka4fM
-#: sw/inc/strings.hrc:628
+#: sw/inc/strings.hrc:629
msgctxt "STR_PRINTOPTUI_PAGE_BACKGROUND"
msgid "Page ba~ckground"
msgstr "~Bladsyagtergrond"
#. YPEEH
-#: sw/inc/strings.hrc:629
+#: sw/inc/strings.hrc:630
msgctxt "STR_PRINTOPTUI_PICTURES"
msgid "~Images and other graphic objects"
msgstr "Beelde en ander graf~ika-objekte"
#. L6GSj
-#: sw/inc/strings.hrc:630
+#: sw/inc/strings.hrc:631
msgctxt "STR_PRINTOPTUI_HIDDEN"
msgid "Hidden te~xt"
msgstr "Verstee~kte teks"
#. pXiRN
-#: sw/inc/strings.hrc:631
+#: sw/inc/strings.hrc:632
msgctxt "STR_PRINTOPTUI_TEXT_PLACEHOLDERS"
msgid "~Text placeholders"
msgstr "~Teksplekhouers"
#. JBWVd
-#: sw/inc/strings.hrc:632
+#: sw/inc/strings.hrc:633
msgctxt "STR_PRINTOPTUI_FORM_CONTROLS"
msgid "Form control~s"
msgstr "Vormkontrole~s"
#. X8Bfu
-#: sw/inc/strings.hrc:633
+#: sw/inc/strings.hrc:634
msgctxt "STR_PRINTOPTUI_COLOR"
msgid "Color"
msgstr "Kleur"
#. kQDcq
-#: sw/inc/strings.hrc:634
+#: sw/inc/strings.hrc:635
msgctxt "STR_PRINTOPTUI_PRINT_BLACK"
msgid "Print text in blac~k"
msgstr "Druk te~ks in swart"
#. DEELn
-#: sw/inc/strings.hrc:635
+#: sw/inc/strings.hrc:636
msgctxt "STR_PRINTOPTUI_PAGES_TEXT"
msgid "Pages:"
msgstr "Bladsye:"
#. uddbB
-#: sw/inc/strings.hrc:636
+#: sw/inc/strings.hrc:637
msgctxt "STR_PRINTOPTUI_PRINT_BLANK"
msgid "Print ~automatically inserted blank pages"
msgstr "Druk ~outomaties ingevoegde leë bladsye"
#. MTJt2
-#: sw/inc/strings.hrc:637
+#: sw/inc/strings.hrc:638
msgctxt "STR_PRINTOPTUI_ONLY_PAPER"
msgid "~Use only paper tray from printer preferences"
msgstr "Gebr~uik slegs die papierlaai van die drukvoorkeure"
#. 4uBam
-#: sw/inc/strings.hrc:638
+#: sw/inc/strings.hrc:639
msgctxt "STR_PRINTOPTUI_NONE"
msgid "None (document only)"
msgstr "Geen (slegs dokument)"
#. pbQtA
-#: sw/inc/strings.hrc:639
+#: sw/inc/strings.hrc:640
msgctxt "STR_PRINTOPTUI_COMMENTS_ONLY"
msgid "Comments only"
msgstr "Slegs opmerkings"
#. sVnbD
-#: sw/inc/strings.hrc:640
+#: sw/inc/strings.hrc:641
msgctxt "STR_PRINTOPTUI_PLACE_END"
msgid "Place at end of document"
msgstr "Plaas aan einde van dokument"
#. D4BXH
-#: sw/inc/strings.hrc:641
+#: sw/inc/strings.hrc:642
msgctxt "STR_PRINTOPTUI_PLACE_PAGE"
msgid "Place at end of page"
msgstr "Plaas aan einde van bladsy"
#. 6rzab
-#: sw/inc/strings.hrc:642
+#: sw/inc/strings.hrc:643
msgctxt "STR_PRINTOPTUI_COMMENTS"
msgid "~Comments"
msgstr "~Opmerkings"
#. cnqLU
-#: sw/inc/strings.hrc:643
+#: sw/inc/strings.hrc:644
msgctxt "STR_PRINTOPTUI_BROCHURE"
msgid "Broch~ure"
msgstr "Brosj~ure"
#. t6drz
-#: sw/inc/strings.hrc:644
+#: sw/inc/strings.hrc:645
msgctxt "STR_PRINTOPTUI_LEFT_SCRIPT"
msgid "Left-to-right script"
msgstr "Links-na-regs-skrif"
#. QgmxB
-#: sw/inc/strings.hrc:645
+#: sw/inc/strings.hrc:646
msgctxt "STR_PRINTOPTUI_RIGHT_SCRIPT"
msgid "Right-to-left script"
msgstr "Regs-na-links-skrif"
#. t4Cm7
-#: sw/inc/strings.hrc:646
+#: sw/inc/strings.hrc:647
msgctxt "STR_PRINTOPTUI_PRINTALLPAGES"
msgid "~All Pages"
msgstr "Alle Bladsye"
#. ZDRM2
-#: sw/inc/strings.hrc:647
+#: sw/inc/strings.hrc:648
msgctxt "STR_PRINTOPTUI_PRINTPAGES"
msgid "Pa~ges:"
msgstr "Bladsye:"
#. rajyx
-#: sw/inc/strings.hrc:648
+#: sw/inc/strings.hrc:649
msgctxt "STR_PRINTOPTUI_PRINTSELECTION"
msgid "~Selection"
msgstr "Gekiesde"
#. 9EXcV
-#: sw/inc/strings.hrc:649
+#: sw/inc/strings.hrc:650
msgctxt "STR_PRINTOPTUI_PLACE_MARGINS"
msgid "Place in margins"
msgstr "Plaas in kantlyne"
#. NGQw3
-#: sw/inc/strings.hrc:651
+#: sw/inc/strings.hrc:652
msgctxt "STR_FORMULA_CALC"
msgid "Functions"
msgstr "Funksies"
#. D3RCG
-#: sw/inc/strings.hrc:652
+#: sw/inc/strings.hrc:653
msgctxt "STR_FORMULA_CANCEL"
msgid "Cancel"
msgstr "Kanselleer"
#. 3Tg3C
-#: sw/inc/strings.hrc:653
+#: sw/inc/strings.hrc:654
msgctxt "STR_FORMULA_APPLY"
msgid "Apply"
msgstr "Pas toe"
#. UDkFb
-#: sw/inc/strings.hrc:654
+#: sw/inc/strings.hrc:655
msgctxt "STR_ACCESS_FORMULA_TOOLBAR"
msgid "Formula Tool Bar"
msgstr "Formule-nutsbalk"
#. Z3CB5
-#: sw/inc/strings.hrc:655
+#: sw/inc/strings.hrc:656
msgctxt "STR_ACCESS_FORMULA_TYPE"
msgid "Formula Type"
msgstr "Soort formule"
#. 3CCa7
-#: sw/inc/strings.hrc:656
+#: sw/inc/strings.hrc:657
msgctxt "STR_ACCESS_FORMULA_TEXT"
msgid "Formula Text"
msgstr "Formuleteks"
#. FXNer
-#: sw/inc/strings.hrc:658
+#: sw/inc/strings.hrc:659
msgctxt "STR_ACCESS_TL_GLOBAL"
msgid "Global View"
msgstr "Globale Oorsig"
#. aeeRP
-#: sw/inc/strings.hrc:659
+#: sw/inc/strings.hrc:660
msgctxt "STR_ACCESS_TL_CONTENT"
msgid "Content Navigation View"
msgstr "Aansig vir inhoudnavigering"
#. UAExA
-#: sw/inc/strings.hrc:660
+#: sw/inc/strings.hrc:661
msgctxt "STR_OUTLINE_LEVEL"
msgid "Outline Level"
msgstr "Skemavlak"
#. yERK6
-#: sw/inc/strings.hrc:661
+#: sw/inc/strings.hrc:662
msgctxt "STR_DRAGMODE"
msgid "Drag Mode"
msgstr "Sleepmodus"
#. PAB4k
-#: sw/inc/strings.hrc:662
+#: sw/inc/strings.hrc:663
msgctxt "STR_SEND_OUTLINE_TO_CLIPBOARD_ENTRY"
msgid "Send Outline to Clipboard"
msgstr "Stuur Buitelyn na die Knipbord"
#. b5tPU
-#: sw/inc/strings.hrc:663
+#: sw/inc/strings.hrc:664
msgctxt "STR_OUTLINE_TRACKING"
msgid "Outline Tracking"
msgstr "Buitelyn Spoor"
#. qzXwn
-#: sw/inc/strings.hrc:664
+#: sw/inc/strings.hrc:665
msgctxt "STR_OUTLINE_TRACKING_DEFAULT"
msgid "Default"
msgstr "Verstek"
#. HGDgJ
-#: sw/inc/strings.hrc:665
+#: sw/inc/strings.hrc:666
msgctxt "STR_OUTLINE_TRACKING_FOCUS"
msgid "Focus"
msgstr "Kokus"
#. BYRpF
-#: sw/inc/strings.hrc:666
+#: sw/inc/strings.hrc:667
msgctxt "STR_OUTLINE_TRACKING_OFF"
msgid "Off"
msgstr "Af"
#. NGgt3
-#: sw/inc/strings.hrc:667
+#: sw/inc/strings.hrc:668
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle outline folding"
msgstr "Klik om die skema se uitvou te verwissel"
#. 44jEc
-#: sw/inc/strings.hrc:668
+#: sw/inc/strings.hrc:669
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
msgstr "regsmuisklik om subvlakke in te sluit"
#. mnZA9
-#: sw/inc/strings.hrc:669
+#: sw/inc/strings.hrc:670
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle outline folding"
msgstr "Klik om die skema se uitvou te verwissel"
#. rkD8H
-#: sw/inc/strings.hrc:670
+#: sw/inc/strings.hrc:671
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
msgstr "regsmuisklik om subvlakke in te sluit"
#. oBH6y
-#: sw/inc/strings.hrc:671
+#: sw/inc/strings.hrc:672
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_TOGGLE"
msgid "Toggle"
msgstr "Wissel"
#. YBDFD
-#: sw/inc/strings.hrc:672
+#: sw/inc/strings.hrc:673
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_SHOW_ALL"
msgid "Unfold All"
msgstr "Alles Uitvou"
#. Cj4js
-#: sw/inc/strings.hrc:673
+#: sw/inc/strings.hrc:674
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_HIDE_ALL"
msgid "Fold All"
msgstr "Alles Invou"
#. 9Fipd
-#: sw/inc/strings.hrc:675
+#: sw/inc/strings.hrc:676
msgctxt "STR_EXPANDALL"
msgid "Expand All"
msgstr "Alles uitvou"
#. FxGVt
-#: sw/inc/strings.hrc:676
+#: sw/inc/strings.hrc:677
msgctxt "STR_COLLAPSEALL"
msgid "Collapse All"
msgstr "Alles invou"
#. xvSRm
-#: sw/inc/strings.hrc:677
+#: sw/inc/strings.hrc:678
msgctxt "STR_HYPERLINK"
msgid "Insert as Hyperlink"
msgstr "Voeg hiperskakel in"
#. sdfGe
-#: sw/inc/strings.hrc:678
+#: sw/inc/strings.hrc:679
msgctxt "STR_LINK_REGION"
msgid "Insert as Link"
msgstr "Voeg as skakel in"
#. Suaiz
-#: sw/inc/strings.hrc:679
+#: sw/inc/strings.hrc:680
msgctxt "STR_COPY_REGION"
msgid "Insert as Copy"
msgstr "Voeg as kopie in"
#. VgdhT
-#: sw/inc/strings.hrc:680
+#: sw/inc/strings.hrc:681
msgctxt "STR_DISPLAY"
msgid "Display"
msgstr "Vertoon"
#. 3VXp5
-#: sw/inc/strings.hrc:681
+#: sw/inc/strings.hrc:682
msgctxt "STR_ACTIVE_VIEW"
msgid "Active Window"
msgstr "Aktiewe venster"
#. fAAUc
-#: sw/inc/strings.hrc:682
+#: sw/inc/strings.hrc:683
msgctxt "STR_HIDDEN"
msgid "hidden"
msgstr "versteek"
#. 3VWjq
-#: sw/inc/strings.hrc:683
+#: sw/inc/strings.hrc:684
msgctxt "STR_ACTIVE"
msgid "active"
msgstr "aktief"
#. YjPvg
-#: sw/inc/strings.hrc:684
+#: sw/inc/strings.hrc:685
msgctxt "STR_INACTIVE"
msgid "inactive"
msgstr "onaktief"
#. tBPKU
-#: sw/inc/strings.hrc:685
+#: sw/inc/strings.hrc:686
msgctxt "STR_EDIT_ENTRY"
msgid "Edit..."
msgstr "Redigeer..."
#. ppC87
-#: sw/inc/strings.hrc:686
+#: sw/inc/strings.hrc:687
msgctxt "STR_UPDATE"
msgid "~Update"
msgstr "~Werk by"
#. 44Esc
-#: sw/inc/strings.hrc:687
+#: sw/inc/strings.hrc:688
msgctxt "STR_EDIT_CONTENT"
msgid "Edit"
msgstr "Redigeer"
#. w3ZrD
-#: sw/inc/strings.hrc:688
+#: sw/inc/strings.hrc:689
msgctxt "STR_EDIT_LINK"
msgid "Edit link"
msgstr "Redigeer skakel"
#. xyPWE
-#: sw/inc/strings.hrc:689
+#: sw/inc/strings.hrc:690
msgctxt "STR_EDIT_INSERT"
msgid "Insert"
msgstr "Voeg in"
#. AT9SS
-#: sw/inc/strings.hrc:690
+#: sw/inc/strings.hrc:691
msgctxt "STR_INDEX"
msgid "~Index"
msgstr "~Indeks"
#. MnBLc
-#: sw/inc/strings.hrc:691
+#: sw/inc/strings.hrc:692
msgctxt "STR_FILE"
msgid "File"
msgstr "Lêer"
#. DdBgh
-#: sw/inc/strings.hrc:692
+#: sw/inc/strings.hrc:693
msgctxt "STR_NEW_FILE"
msgid "New Document"
msgstr "Nuwe dokument"
#. aV9Uy
-#: sw/inc/strings.hrc:693
+#: sw/inc/strings.hrc:694
msgctxt "STR_INSERT_TEXT"
msgid "Text"
msgstr "Teks"
#. 5rD3D
-#: sw/inc/strings.hrc:694
+#: sw/inc/strings.hrc:695
msgctxt "STR_DELETE"
msgid "Delete"
msgstr "Skrap"
#. 9MrsU
-#: sw/inc/strings.hrc:695
+#: sw/inc/strings.hrc:696
msgctxt "STR_DELETE_ENTRY"
msgid "~Delete"
msgstr "~Skrap"
#. A28Rb
-#: sw/inc/strings.hrc:696
+#: sw/inc/strings.hrc:697
msgctxt "STR_UPDATE_SEL"
msgid "Selection"
msgstr "Seleksie"
#. gRBxA
-#: sw/inc/strings.hrc:697
+#: sw/inc/strings.hrc:698
msgctxt "STR_UPDATE_INDEX"
msgid "Indexes"
msgstr "Indekse"
#. WKwLS
-#: sw/inc/strings.hrc:698
+#: sw/inc/strings.hrc:699
msgctxt "STR_UPDATE_LINK"
msgid "Links"
msgstr "Skakels"
#. TaaJK
-#: sw/inc/strings.hrc:699
+#: sw/inc/strings.hrc:700
msgctxt "STR_UPDATE_ALL"
msgid "All"
msgstr "Alle"
#. HpMeb
-#: sw/inc/strings.hrc:701
+#: sw/inc/strings.hrc:702
msgctxt "STR_INVISIBLE"
msgid "hidden"
msgstr "versteek"
#. XcCnB
-#: sw/inc/strings.hrc:702
+#: sw/inc/strings.hrc:703
msgctxt "STR_BROKEN_LINK"
msgid "File not found: "
msgstr "Lêer nie gevind nie: "
#. UC53U
-#: sw/inc/strings.hrc:704
+#: sw/inc/strings.hrc:705
msgctxt "STR_RESOLVED"
msgid "RESOLVED"
msgstr "OPGELOS"
#. 3ceMF
-#: sw/inc/strings.hrc:706
+#: sw/inc/strings.hrc:707
msgctxt "STR_MARGIN_TOOLTIP_LEFT"
msgid "Left: "
msgstr "Links: "
#. EiXF2
-#: sw/inc/strings.hrc:707
+#: sw/inc/strings.hrc:708
msgctxt "STR_MARGIN_TOOLTIP_RIGHT"
msgid ". Right: "
msgstr ". Regs: "
#. UFpVa
-#: sw/inc/strings.hrc:708
+#: sw/inc/strings.hrc:709
msgctxt "STR_MARGIN_TOOLTIP_INNER"
msgid "Inner: "
msgstr "Binnekant: "
#. XE7Wb
-#: sw/inc/strings.hrc:709
+#: sw/inc/strings.hrc:710
msgctxt "STR_MARGIN_TOOLTIP_OUTER"
msgid ". Outer: "
msgstr ". Buitekant: "
#. 3A8Vg
-#: sw/inc/strings.hrc:710
+#: sw/inc/strings.hrc:711
msgctxt "STR_MARGIN_TOOLTIP_TOP"
msgid ". Top: "
msgstr ". Bo: "
#. dRhyZ
-#: sw/inc/strings.hrc:711
+#: sw/inc/strings.hrc:712
msgctxt "STR_MARGIN_TOOLTIP_BOT"
msgid ". Bottom: "
msgstr ". Onder: "
#. XuC4Y
#. Error calculator
-#: sw/inc/strings.hrc:714
+#: sw/inc/strings.hrc:715
msgctxt "STR_POSTIT_PAGE"
msgid "Page"
msgstr "Bladsy"
#. AeDYh
-#: sw/inc/strings.hrc:715
+#: sw/inc/strings.hrc:716
msgctxt "STR_POSTIT_LINE"
msgid "Line"
msgstr "Reël"
#. kfJG6
-#: sw/inc/strings.hrc:716
+#: sw/inc/strings.hrc:717
msgctxt "STR_POSTIT_AUTHOR"
msgid "Author"
msgstr "Outeur"
#. gejqG
-#: sw/inc/strings.hrc:717
+#: sw/inc/strings.hrc:718
msgctxt "STR_CALC_SYNTAX"
msgid "** Syntax Error **"
msgstr "** Sintaksfout **"
#. q6dUT
-#: sw/inc/strings.hrc:718
+#: sw/inc/strings.hrc:719
msgctxt "STR_CALC_ZERODIV"
msgid "** Division by zero **"
msgstr "** Deling deur nul **"
#. HSo6d
-#: sw/inc/strings.hrc:719
+#: sw/inc/strings.hrc:720
msgctxt "STR_CALC_BRACK"
msgid "** Wrong use of brackets **"
msgstr "** Hakies verkeerd gebruik **"
#. jcNfg
-#: sw/inc/strings.hrc:720
+#: sw/inc/strings.hrc:721
msgctxt "STR_CALC_POW"
msgid "** Square function overflow **"
msgstr "** Oorvloei in Kwadraatfunksie **"
#. C453V
-#: sw/inc/strings.hrc:721
+#: sw/inc/strings.hrc:722
msgctxt "STR_CALC_OVERFLOW"
msgid "** Overflow **"
msgstr "** Oorvloei **"
#. KEQfz
-#: sw/inc/strings.hrc:722
+#: sw/inc/strings.hrc:723
msgctxt "STR_CALC_DEFAULT"
msgid "** Error **"
msgstr "** Fout **"
#. hxrg9
-#: sw/inc/strings.hrc:723
+#: sw/inc/strings.hrc:724
msgctxt "STR_CALC_ERROR"
msgid "** Expression is faulty **"
msgstr "** Uitdrukking is foutief **"
#. 2yBhF
-#: sw/inc/strings.hrc:724
+#: sw/inc/strings.hrc:725
msgctxt "STR_GETREFFLD_REFITEMNOTFOUND"
msgid "Error: Reference source not found"
msgstr "Fout: Verwysingsbron nie gevind nie"
#. jgRW7
-#: sw/inc/strings.hrc:725
+#: sw/inc/strings.hrc:726
msgctxt "STR_TEMPLATE_NONE"
msgid "None"
msgstr "Geen"
#. KRD6s
-#: sw/inc/strings.hrc:726
+#: sw/inc/strings.hrc:727
msgctxt "STR_FIELD_FIXED"
msgid "(fixed)"
msgstr "(vaste)"
#. FCRUB
-#: sw/inc/strings.hrc:727
+#: sw/inc/strings.hrc:728
msgctxt "STR_DURATION_FORMAT"
msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " J: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#. ocA84
-#: sw/inc/strings.hrc:728
+#: sw/inc/strings.hrc:729
msgctxt "STR_TOI"
msgid "Alphabetical Index"
msgstr "Alfabetiese indeks"
#. GDCRF
-#: sw/inc/strings.hrc:729
+#: sw/inc/strings.hrc:730
msgctxt "STR_TOU"
msgid "User-Defined"
msgstr "Gebruikergedefinieer"
#. vnaNc
-#: sw/inc/strings.hrc:730
+#: sw/inc/strings.hrc:731
msgctxt "STR_TOC"
msgid "Table of Contents"
msgstr "Inhoudsopgawe"
#. BESjb
-#: sw/inc/strings.hrc:731
+#: sw/inc/strings.hrc:732
msgctxt "STR_TOX_AUTH"
msgid "Bibliography"
msgstr "Bibliografie"
#. ZFBUD
-#: sw/inc/strings.hrc:732
+#: sw/inc/strings.hrc:733
msgctxt "STR_TOX_CITATION"
msgid "Citation"
msgstr "Aanhaling"
#. WAs8q
-#: sw/inc/strings.hrc:733
+#: sw/inc/strings.hrc:734
msgctxt "STR_TOX_TBL"
msgid "Index of Tables"
msgstr "Tabelindeks"
#. NFzTx
-#: sw/inc/strings.hrc:734
+#: sw/inc/strings.hrc:735
msgctxt "STR_TOX_OBJ"
msgid "Table of Objects"
msgstr "Objektabel"
#. mSyms
-#: sw/inc/strings.hrc:735
+#: sw/inc/strings.hrc:736
msgctxt "STR_TOX_ILL"
msgid "Table of Figures"
msgstr "Figuurtabel"
#. TspkU
#. SubType DocInfo
-#: sw/inc/strings.hrc:737
+#: sw/inc/strings.hrc:738
msgctxt "FLD_DOCINFO_TITEL"
msgid "Title"
msgstr "Titel"
#. ziEpC
-#: sw/inc/strings.hrc:738
+#: sw/inc/strings.hrc:739
msgctxt "FLD_DOCINFO_THEMA"
msgid "Subject"
msgstr "Onderwerp"
#. FCVZS
-#: sw/inc/strings.hrc:739
+#: sw/inc/strings.hrc:740
msgctxt "FLD_DOCINFO_KEYS"
msgid "Keywords"
msgstr "Sleutelwoorde"
#. kHC7q
-#: sw/inc/strings.hrc:740
+#: sw/inc/strings.hrc:741
msgctxt "FLD_DOCINFO_COMMENT"
msgid "Comments"
msgstr "Opmerkings"
#. i6psX
-#: sw/inc/strings.hrc:741
+#: sw/inc/strings.hrc:742
msgctxt "FLD_DOCINFO_CREATE"
msgid "Created"
msgstr "Geskep"
#. L2Bxp
-#: sw/inc/strings.hrc:742
+#: sw/inc/strings.hrc:743
msgctxt "FLD_DOCINFO_CHANGE"
msgid "Modified"
msgstr "Gewysig"
#. D2YKS
-#: sw/inc/strings.hrc:743
+#: sw/inc/strings.hrc:744
msgctxt "FLD_DOCINFO_PRINT"
msgid "Last printed"
msgstr "Laas gedruk"
#. QtuZM
-#: sw/inc/strings.hrc:744
+#: sw/inc/strings.hrc:745
msgctxt "FLD_DOCINFO_DOCNO"
msgid "Revision number"
msgstr "Hersieningsnommer"
#. YDFbi
-#: sw/inc/strings.hrc:745
+#: sw/inc/strings.hrc:746
msgctxt "FLD_DOCINFO_EDIT"
msgid "Total editing time"
msgstr "Totale redigeertyd"
#. EpZ9C
-#: sw/inc/strings.hrc:746
+#: sw/inc/strings.hrc:747
msgctxt "STR_PAGEDESC_NAME"
msgid "Convert $(ARG1)"
msgstr "Skakel $(ARG1) om"
#. nY3NU
-#: sw/inc/strings.hrc:747
+#: sw/inc/strings.hrc:748
msgctxt "STR_PAGEDESC_FIRSTNAME"
msgid "First convert $(ARG1)"
msgstr "Skakel eers $(ARG1) om"
#. eQtGV
-#: sw/inc/strings.hrc:748
+#: sw/inc/strings.hrc:749
msgctxt "STR_PAGEDESC_FOLLOWNAME"
msgid "Next convert $(ARG1)"
msgstr "Skakel dan $(ARG1) om"
#. aBwxC
-#: sw/inc/strings.hrc:749
+#: sw/inc/strings.hrc:750
msgctxt "STR_AUTH_TYPE_ARTICLE"
msgid "Article"
msgstr "Artikel"
#. di8ud
-#: sw/inc/strings.hrc:750
+#: sw/inc/strings.hrc:751
msgctxt "STR_AUTH_TYPE_BOOK"
msgid "Book"
msgstr "Boek"
#. GD5KJ
-#: sw/inc/strings.hrc:751
+#: sw/inc/strings.hrc:752
msgctxt "STR_AUTH_TYPE_BOOKLET"
msgid "Brochures"
msgstr "Brosjures"
#. mfFSf
-#: sw/inc/strings.hrc:752
+#: sw/inc/strings.hrc:753
msgctxt "STR_AUTH_TYPE_CONFERENCE"
msgid "Conference proceedings"
msgstr "Konferensieverrigtinge"
#. Et2Px
-#: sw/inc/strings.hrc:753
+#: sw/inc/strings.hrc:754
msgctxt "STR_AUTH_TYPE_INBOOK"
msgid "Book excerpt"
msgstr "Boekuittreksel"
#. ys2B8
-#: sw/inc/strings.hrc:754
+#: sw/inc/strings.hrc:755
msgctxt "STR_AUTH_TYPE_INCOLLECTION"
msgid "Book excerpt with title"
msgstr "Boekuittreksel met titel"
#. mdEqj
-#: sw/inc/strings.hrc:755
+#: sw/inc/strings.hrc:756
msgctxt "STR_AUTH_TYPE_INPROCEEDINGS"
msgid "Conference proceedings"
msgstr "Konferensieverrigtinge"
#. jNmVD
-#: sw/inc/strings.hrc:756
+#: sw/inc/strings.hrc:757
msgctxt "STR_AUTH_TYPE_JOURNAL"
msgid "Journal"
msgstr "Joernaal"
#. M3xkM
-#: sw/inc/strings.hrc:757
+#: sw/inc/strings.hrc:758
msgctxt "STR_AUTH_TYPE_MANUAL"
msgid "Techn. documentation"
msgstr "Tegniese dokumentasie"
#. EJAj4
-#: sw/inc/strings.hrc:758
+#: sw/inc/strings.hrc:759
msgctxt "STR_AUTH_TYPE_MASTERSTHESIS"
msgid "Thesis"
msgstr "Tesis"
#. NoUCv
-#: sw/inc/strings.hrc:759
+#: sw/inc/strings.hrc:760
msgctxt "STR_AUTH_TYPE_MISC"
msgid "Miscellaneous"
msgstr "Allerlei"
#. qNGGE
-#: sw/inc/strings.hrc:760
+#: sw/inc/strings.hrc:761
msgctxt "STR_AUTH_TYPE_PHDTHESIS"
msgid "Dissertation"
msgstr "Verhandeling"
#. L7W7R
-#: sw/inc/strings.hrc:761
+#: sw/inc/strings.hrc:762
msgctxt "STR_AUTH_TYPE_PROCEEDINGS"
msgid "Conference proceedings"
msgstr "Konferensieverrigtinge"
#. X8bGG
-#: sw/inc/strings.hrc:762
+#: sw/inc/strings.hrc:763
msgctxt "STR_AUTH_TYPE_TECHREPORT"
msgid "Research report"
msgstr "Navorsingsverslag"
#. 4dDC9
-#: sw/inc/strings.hrc:763
+#: sw/inc/strings.hrc:764
msgctxt "STR_AUTH_TYPE_UNPUBLISHED"
msgid "Unpublished"
msgstr "Ongepubliseer"
#. Gb38d
-#: sw/inc/strings.hrc:764
+#: sw/inc/strings.hrc:765
msgctxt "STR_AUTH_TYPE_EMAIL"
msgid "Email"
msgstr "E-pos"
#. 9HKD6
-#: sw/inc/strings.hrc:765
+#: sw/inc/strings.hrc:766
msgctxt "STR_AUTH_TYPE_WWW"
msgid "WWW document"
msgstr "WWW-dokument"
#. qA449
-#: sw/inc/strings.hrc:766
+#: sw/inc/strings.hrc:767
msgctxt "STR_AUTH_TYPE_CUSTOM1"
msgid "User-defined1"
msgstr "Gebruikergedefinieer1"
#. nyzxz
-#: sw/inc/strings.hrc:767
+#: sw/inc/strings.hrc:768
msgctxt "STR_AUTH_TYPE_CUSTOM2"
msgid "User-defined2"
msgstr "Gebruikergedefinieer2"
#. cCFTF
-#: sw/inc/strings.hrc:768
+#: sw/inc/strings.hrc:769
msgctxt "STR_AUTH_TYPE_CUSTOM3"
msgid "User-defined3"
msgstr "Gebruikergedefinieer3"
#. mrqJC
-#: sw/inc/strings.hrc:769
+#: sw/inc/strings.hrc:770
msgctxt "STR_AUTH_TYPE_CUSTOM4"
msgid "User-defined4"
msgstr "Gebruikergedefinieer4"
#. fFs86
-#: sw/inc/strings.hrc:770
+#: sw/inc/strings.hrc:771
msgctxt "STR_AUTH_TYPE_CUSTOM5"
msgid "User-defined5"
msgstr "Gebruikergedefinieer5"
#. nsCwi
-#: sw/inc/strings.hrc:771
+#: sw/inc/strings.hrc:772
msgctxt "STR_AUTH_FIELD_IDENTIFIER"
msgid "Short name"
msgstr "Kort naam"
#. CpKgc
-#: sw/inc/strings.hrc:772
+#: sw/inc/strings.hrc:773
msgctxt "STR_AUTH_FIELD_AUTHORITY_TYPE"
msgid "Type"
msgstr "Soort"
#. kUGDr
-#: sw/inc/strings.hrc:773
+#: sw/inc/strings.hrc:774
msgctxt "STR_AUTH_FIELD_ADDRESS"
msgid "Address"
msgstr "Adres"
#. DquVQ
-#: sw/inc/strings.hrc:774
+#: sw/inc/strings.hrc:775
msgctxt "STR_AUTH_FIELD_ANNOTE"
msgid "Annotation"
msgstr "Annotering"
#. sduuV
-#: sw/inc/strings.hrc:775
+#: sw/inc/strings.hrc:776
msgctxt "STR_AUTH_FIELD_AUTHOR"
msgid "Author(s)"
msgstr "Outeur(s)"
#. fXvz6
-#: sw/inc/strings.hrc:776
+#: sw/inc/strings.hrc:777
msgctxt "STR_AUTH_FIELD_BOOKTITLE"
msgid "Book title"
msgstr "Boektitel"
#. c8PFE
-#: sw/inc/strings.hrc:777
+#: sw/inc/strings.hrc:778
msgctxt "STR_AUTH_FIELD_CHAPTER"
msgid "Chapter"
msgstr "Hoofstuk"
#. GXqxF
-#: sw/inc/strings.hrc:778
+#: sw/inc/strings.hrc:779
msgctxt "STR_AUTH_FIELD_EDITION"
msgid "Edition"
msgstr "Uitgawe"
#. p7A3p
-#: sw/inc/strings.hrc:779
+#: sw/inc/strings.hrc:780
msgctxt "STR_AUTH_FIELD_EDITOR"
msgid "Editor"
msgstr "Redakteur"
#. aAFEz
-#: sw/inc/strings.hrc:780
+#: sw/inc/strings.hrc:781
msgctxt "STR_AUTH_FIELD_HOWPUBLISHED"
msgid "Publication type"
msgstr "Soort publikasie"
#. 8DwdJ
-#: sw/inc/strings.hrc:781
+#: sw/inc/strings.hrc:782
msgctxt "STR_AUTH_FIELD_INSTITUTION"
msgid "Institution"
msgstr "Instelling"
#. VWNxy
-#: sw/inc/strings.hrc:782
+#: sw/inc/strings.hrc:783
msgctxt "STR_AUTH_FIELD_JOURNAL"
msgid "Journal"
msgstr "Joernaal"
#. Da4fW
-#: sw/inc/strings.hrc:783
+#: sw/inc/strings.hrc:784
msgctxt "STR_AUTH_FIELD_MONTH"
msgid "Month"
msgstr "Maand"
#. SdSBt
-#: sw/inc/strings.hrc:784
+#: sw/inc/strings.hrc:785
msgctxt "STR_AUTH_FIELD_NOTE"
msgid "Note"
msgstr "Nota"
#. MZYpD
-#: sw/inc/strings.hrc:785
+#: sw/inc/strings.hrc:786
msgctxt "STR_AUTH_FIELD_NUMBER"
msgid "Number"
msgstr "Nommer"
#. ZB7Go
-#: sw/inc/strings.hrc:786
+#: sw/inc/strings.hrc:787
msgctxt "STR_AUTH_FIELD_ORGANIZATIONS"
msgid "Organization"
msgstr "Organisasie"
#. C4CdP
-#: sw/inc/strings.hrc:787
+#: sw/inc/strings.hrc:788
msgctxt "STR_AUTH_FIELD_PAGES"
msgid "Page(s)"
msgstr "Bladsy(e)"
#. yFPFa
-#: sw/inc/strings.hrc:788
+#: sw/inc/strings.hrc:789
msgctxt "STR_AUTH_FIELD_PUBLISHER"
msgid "Publisher"
msgstr "Uitgewer"
#. d9u3p
-#: sw/inc/strings.hrc:789
+#: sw/inc/strings.hrc:790
msgctxt "STR_AUTH_FIELD_SCHOOL"
msgid "University"
msgstr "Universiteit"
#. Qxsdb
-#: sw/inc/strings.hrc:790
+#: sw/inc/strings.hrc:791
msgctxt "STR_AUTH_FIELD_SERIES"
msgid "Series"
msgstr "Reeks"
#. YhXPg
-#: sw/inc/strings.hrc:791
+#: sw/inc/strings.hrc:792
msgctxt "STR_AUTH_FIELD_TITLE"
msgid "Title"
msgstr "Titel"
#. qEBhL
-#: sw/inc/strings.hrc:792
+#: sw/inc/strings.hrc:793
msgctxt "STR_AUTH_FIELD_TYPE"
msgid "Type of report"
msgstr "Soort verslag"
#. Sij9w
-#: sw/inc/strings.hrc:793
+#: sw/inc/strings.hrc:794
msgctxt "STR_AUTH_FIELD_VOLUME"
msgid "Volume"
msgstr "Volume"
#. K8miv
-#: sw/inc/strings.hrc:794
+#: sw/inc/strings.hrc:795
msgctxt "STR_AUTH_FIELD_YEAR"
msgid "Year"
msgstr "Jaar"
#. pFMSV
-#: sw/inc/strings.hrc:795
+#: sw/inc/strings.hrc:796
msgctxt "STR_AUTH_FIELD_URL"
msgid "URL"
msgstr "URL"
#. xFG3c
-#: sw/inc/strings.hrc:796
+#: sw/inc/strings.hrc:797
msgctxt "STR_AUTH_FIELD_CUSTOM1"
msgid "User-defined1"
msgstr "Gebruikergedefinieer1"
#. wtDyU
-#: sw/inc/strings.hrc:797
+#: sw/inc/strings.hrc:798
msgctxt "STR_AUTH_FIELD_CUSTOM2"
msgid "User-defined2"
msgstr "Gebruikergedefinieer2"
#. VH3Se
-#: sw/inc/strings.hrc:798
+#: sw/inc/strings.hrc:799
msgctxt "STR_AUTH_FIELD_CUSTOM3"
msgid "User-defined3"
msgstr "Gebruikergedefinieer3"
#. twuKb
-#: sw/inc/strings.hrc:799
+#: sw/inc/strings.hrc:800
msgctxt "STR_AUTH_FIELD_CUSTOM4"
msgid "User-defined4"
msgstr "Gebruikergedefinieer4"
#. WAo7Z
-#: sw/inc/strings.hrc:800
+#: sw/inc/strings.hrc:801
msgctxt "STR_AUTH_FIELD_CUSTOM5"
msgid "User-defined5"
msgstr "Gebruikergedefinieer5"
#. 3r6Wg
-#: sw/inc/strings.hrc:801
+#: sw/inc/strings.hrc:802
msgctxt "STR_AUTH_FIELD_ISBN"
msgid "ISBN"
msgstr "ISBN"
#. BhDrt
-#: sw/inc/strings.hrc:802
+#: sw/inc/strings.hrc:803
msgctxt "STR_AUTH_FIELD_LOCAL_URL"
msgid "Local copy"
msgstr "Plaaslike kopie"
#. eFnnx
-#: sw/inc/strings.hrc:804
+#: sw/inc/strings.hrc:805
msgctxt "STR_IDXMRK_EDIT"
msgid "Edit Index Entry"
msgstr "Redigeer indeksinskrywing"
#. EHTHH
-#: sw/inc/strings.hrc:805
+#: sw/inc/strings.hrc:806
msgctxt "STR_IDXMRK_INSERT"
msgid "Insert Index Entry"
msgstr "Voeg indeksinskrywying in"
#. D2gkA
-#: sw/inc/strings.hrc:806
+#: sw/inc/strings.hrc:807
msgctxt "STR_QUERY_CHANGE_AUTH_ENTRY"
msgid "The document already contains the bibliography entry but with different data. Do you want to adjust the existing entries?"
msgstr "Hierdie dokument bevat reeds die bibliografie-inskrywing maar met ander data. Wil u die bestaande inskrywings aanpas?"
#. mK84T
-#: sw/inc/strings.hrc:808
+#: sw/inc/strings.hrc:809
msgctxt "STR_COMMENTS_LABEL"
msgid "Comments"
msgstr "Opmerking"
#. fwecS
-#: sw/inc/strings.hrc:809
+#: sw/inc/strings.hrc:810
msgctxt "STR_SHOW_COMMENTS"
msgid "Show comments"
msgstr "Wys opmerkings"
#. HkUvy
-#: sw/inc/strings.hrc:810
+#: sw/inc/strings.hrc:811
msgctxt "STR_HIDE_COMMENTS"
msgid "Hide comments"
msgstr "Versteek opmerkings"
#. FcmEy
-#: sw/inc/strings.hrc:812
+#: sw/inc/strings.hrc:813
msgctxt "STR_DOUBLE_SHORTNAME"
msgid "Shortcut name already exists. Please choose another name."
msgstr "Kortpadnaam bestaan reeds. Kies asseblief ’n ander naam."
#. VhMST
-#: sw/inc/strings.hrc:813
+#: sw/inc/strings.hrc:814
msgctxt "STR_QUERY_DELETE"
msgid "Delete AutoText?"
msgstr "Skrap Outoteks?"
#. E5MLr
-#: sw/inc/strings.hrc:814
+#: sw/inc/strings.hrc:815
msgctxt "STR_QUERY_DELETE_GROUP1"
msgid "Delete the category "
msgstr "Skrap die kategorie "
#. qndNh
-#: sw/inc/strings.hrc:815
+#: sw/inc/strings.hrc:816
msgctxt "STR_QUERY_DELETE_GROUP2"
msgid "?"
msgstr "?"
#. B6xah
-#: sw/inc/strings.hrc:816
+#: sw/inc/strings.hrc:817
msgctxt "STR_GLOSSARY"
msgid "AutoText :"
msgstr "OutoTeks:"
#. ChetY
-#: sw/inc/strings.hrc:817
+#: sw/inc/strings.hrc:818
msgctxt "STR_SAVE_GLOSSARY"
msgid "Save AutoText"
msgstr "Stoor Outoteks"
#. QxAiF
-#: sw/inc/strings.hrc:818
+#: sw/inc/strings.hrc:819
msgctxt "STR_NO_GLOSSARIES"
msgid "There is no AutoText in this file."
msgstr "Daar is geen Outoteks in hierdie lêer nie."
#. sG8Xt
-#: sw/inc/strings.hrc:819
+#: sw/inc/strings.hrc:820
msgctxt "STR_MY_AUTOTEXT"
msgid "My AutoText"
msgstr "My Outoteks"
#. GaoqR
-#: sw/inc/strings.hrc:821
+#: sw/inc/strings.hrc:822
msgctxt "STR_NOGLOS"
msgid "AutoText for Shortcut '%1' not found."
msgstr "Outoteks vir kortpad “%1” nie gevind nie."
#. MwUEP
-#: sw/inc/strings.hrc:822
+#: sw/inc/strings.hrc:823
msgctxt "STR_NO_TABLE"
msgid "A table with no rows or no cells cannot be inserted"
msgstr "’n Tabel kan nie met geen rye of kolomme ingevoeg word nie"
#. AawM4
-#: sw/inc/strings.hrc:823
+#: sw/inc/strings.hrc:824
msgctxt "STR_TABLE_TOO_LARGE"
msgid "The table cannot be inserted because it is too large"
msgstr "Die tabel kan nie ingevoeg word nie want hy is te groot"
#. GGo8i
-#: sw/inc/strings.hrc:824
+#: sw/inc/strings.hrc:825
msgctxt "STR_ERR_INSERT_GLOS"
msgid "AutoText could not be created."
msgstr "Outoteks kon nie geskep word nie."
#. DCPSB
-#: sw/inc/strings.hrc:825
+#: sw/inc/strings.hrc:826
msgctxt "STR_CLPBRD_FORMAT_ERROR"
msgid "Requested clipboard format is not available."
msgstr "Verlangde knipbordformaat is nie beskikbaar nie."
#. YxCCF
-#: sw/inc/strings.hrc:826
+#: sw/inc/strings.hrc:827
msgctxt "STR_PRIVATETEXT"
msgid "%PRODUCTNAME %PRODUCTVERSION Text Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION-teksdokument"
#. 8ygN3
-#: sw/inc/strings.hrc:827
+#: sw/inc/strings.hrc:828
msgctxt "STR_PRIVATEGRAPHIC"
msgid "Image (%PRODUCTNAME %PRODUCTVERSION Text Document)"
msgstr "Beeld (%PRODUCTNAME %PRODUCTVERSION-teksdokument)"
#. ewPPB
-#: sw/inc/strings.hrc:828
+#: sw/inc/strings.hrc:829
msgctxt "STR_PRIVATEOLE"
msgid "Object (%PRODUCTNAME %PRODUCTVERSION Text Document)"
msgstr "Objek (%PRODUCTNAME %PRODUCTVERSION-teksdokument)"
#. 9VEc3
-#: sw/inc/strings.hrc:829
+#: sw/inc/strings.hrc:830
msgctxt "STR_DDEFORMAT"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (DDE-skakel)"
#. svrE7
-#: sw/inc/strings.hrc:831
+#: sw/inc/strings.hrc:832
msgctxt "STR_DELETE_ALL_NOTES"
msgid "All Comments"
msgstr "Alle opmerkings"
#. YGNN4
-#: sw/inc/strings.hrc:832
+#: sw/inc/strings.hrc:833
msgctxt "STR_FORMAT_ALL_NOTES"
msgid "All Comments"
msgstr "Alle opmerkings"
#. GDH49
-#: sw/inc/strings.hrc:833
+#: sw/inc/strings.hrc:834
msgctxt "STR_DELETE_AUTHOR_NOTES"
msgid "Comments by "
msgstr "Opmerkings deur "
#. RwAcm
-#: sw/inc/strings.hrc:834
+#: sw/inc/strings.hrc:835
msgctxt "STR_NODATE"
msgid "(no date)"
msgstr "(geen datum)"
#. ytxKG
-#: sw/inc/strings.hrc:835
+#: sw/inc/strings.hrc:836
msgctxt "STR_NOAUTHOR"
msgid "(no author)"
msgstr "(geen outeur)"
#. nAwMG
-#: sw/inc/strings.hrc:836
+#: sw/inc/strings.hrc:837
msgctxt "STR_REPLY"
msgid "Reply to $1"
msgstr "Antwoord aan $1"
#. CVVa6
-#: sw/inc/strings.hrc:838
+#: sw/inc/strings.hrc:839
msgctxt "ST_TITLE_EDIT"
msgid "Edit Address Block"
msgstr "Redigeer adresblok"
#. njGGA
-#: sw/inc/strings.hrc:839
+#: sw/inc/strings.hrc:840
msgctxt "ST_TITLE_MALE"
msgid "Custom Salutation (Male Recipients)"
msgstr "Eie aanhef (manlike ontvangers)"
#. ZVuKY
-#: sw/inc/strings.hrc:840
+#: sw/inc/strings.hrc:841
msgctxt "ST_TITLE_FEMALE"
msgid "Custom Salutation (Female Recipients)"
msgstr "Eie aanhef (vroulike ontvangers)"
#. h4yuq
-#: sw/inc/strings.hrc:841
+#: sw/inc/strings.hrc:842
msgctxt "ST_SALUTATIONELEMENTS"
msgid "Salutation e~lements"
msgstr "Aanhefe~lemente"
#. kWhqT
-#: sw/inc/strings.hrc:842
+#: sw/inc/strings.hrc:843
msgctxt "ST_INSERTSALUTATIONFIELD"
msgid "Add to salutation"
msgstr "Voeg by aanhef"
#. hvF3V
-#: sw/inc/strings.hrc:843
+#: sw/inc/strings.hrc:844
msgctxt "ST_REMOVESALUTATIONFIELD"
msgid "Remove from salutation"
msgstr "Verwyder uit aanhef"
#. A6XaR
-#: sw/inc/strings.hrc:844
+#: sw/inc/strings.hrc:845
msgctxt "ST_DRAGSALUTATION"
msgid "1. ~Drag salutation elements into the box below"
msgstr "1. ~Sleep aanhefelemente na die boksie hieronder"
#. 4VJWL
-#: sw/inc/strings.hrc:845
+#: sw/inc/strings.hrc:846
msgctxt "ST_SALUTATION"
msgid "Salutation"
msgstr "Aanhef"
#. Vj6XT
-#: sw/inc/strings.hrc:846
+#: sw/inc/strings.hrc:847
msgctxt "ST_PUNCTUATION"
msgid "Punctuation Mark"
msgstr "Leesteken"
#. bafeG
-#: sw/inc/strings.hrc:847
+#: sw/inc/strings.hrc:848
msgctxt "ST_TEXT"
msgid "Text"
msgstr "Teks"
#. tt6sA
-#: sw/inc/strings.hrc:848
+#: sw/inc/strings.hrc:849
msgctxt "ST_SALUTATIONMATCHING"
msgid "Assign the fields from your data source to match the salutation elements."
msgstr "Wys die velde toe uit u databron wat pas by die adreselemente."
#. zrUsN
-#: sw/inc/strings.hrc:849
+#: sw/inc/strings.hrc:850
msgctxt "ST_SALUTATIONPREVIEW"
msgid "Salutation preview"
msgstr "Aanhefvoorskou"
#. 2UVE6
-#: sw/inc/strings.hrc:850
+#: sw/inc/strings.hrc:851
msgctxt "ST_ADDRESSELEMENT"
msgid "Address elements"
msgstr "Adreselemente"
#. Bd6pd
-#: sw/inc/strings.hrc:851
+#: sw/inc/strings.hrc:852
msgctxt "ST_SALUTATIONELEMENT"
msgid "Salutation elements"
msgstr "Aanhefelemente"
#. 9krzf
-#: sw/inc/strings.hrc:852
+#: sw/inc/strings.hrc:853
msgctxt "ST_MATCHESTO"
msgid "Matches to field:"
msgstr "Pas by veld:"
#. oahCQ
-#: sw/inc/strings.hrc:853
+#: sw/inc/strings.hrc:854
msgctxt "ST_PREVIEW"
msgid "Preview"
msgstr "Voorskou"
#. ijdxe
-#: sw/inc/strings.hrc:854
+#: sw/inc/strings.hrc:855
msgctxt "ST_DELETE_CONFIRM"
msgid "Do you want to delete this registered data source?"
msgstr "Wil u die geregistreerde Databron verwyder?"
#. kE5C3
-#: sw/inc/strings.hrc:856
+#: sw/inc/strings.hrc:857
msgctxt "STR_NOTASSIGNED"
msgid " not yet matched "
msgstr " nog nie gepas nie "
#. Y6FhG
-#: sw/inc/strings.hrc:857
+#: sw/inc/strings.hrc:858
msgctxt "STR_FILTER_ALL"
msgid "All files"
msgstr "Alle lêers"
#. 7cNjh
-#: sw/inc/strings.hrc:858
+#: sw/inc/strings.hrc:859
msgctxt "STR_FILTER_ALL_DATA"
msgid "Address lists(*.*)"
msgstr "Adreslyste (*.*)"
#. Ef8TY
-#: sw/inc/strings.hrc:859
+#: sw/inc/strings.hrc:860
msgctxt "STR_FILTER_SXB"
msgid "%PRODUCTNAME Base (*.odb)"
msgstr "%PRODUCTNAME Base (*.odb)"
#. 24opW
-#: sw/inc/strings.hrc:860
+#: sw/inc/strings.hrc:861
msgctxt "STR_FILTER_SXC"
msgid "%PRODUCTNAME Calc (*.ods;*.sxc)"
msgstr "%PRODUCTNAME Calc (*.ods;*.sxc)"
#. sq73T
-#: sw/inc/strings.hrc:861
+#: sw/inc/strings.hrc:862
msgctxt "STR_FILTER_SXW"
msgid "%PRODUCTNAME Writer (*.odt;*.sxw)"
msgstr "%PRODUCTNAME Writer (*.odt;*.sxw)"
#. QupGC
-#: sw/inc/strings.hrc:862
+#: sw/inc/strings.hrc:863
msgctxt "STR_FILTER_DBF"
msgid "dBase (*.dbf)"
msgstr "dBase (*.dbf)"
#. SzqRv
-#: sw/inc/strings.hrc:863
+#: sw/inc/strings.hrc:864
msgctxt "STR_FILTER_XLS"
msgid "Microsoft Excel (*.xls;*.xlsx)"
msgstr "Microsoft Excel (*.xls;*.xlsx)"
#. zAUu8
-#: sw/inc/strings.hrc:864
+#: sw/inc/strings.hrc:865
msgctxt "STR_FILTER_DOC"
msgid "Microsoft Word (*.doc;*.docx)"
msgstr "Microsoft Word (*.doc;*.docx)"
#. JBZFc
-#: sw/inc/strings.hrc:865
+#: sw/inc/strings.hrc:866
msgctxt "STR_FILTER_TXT"
msgid "Plain text (*.txt)"
msgstr "Skoonteks (*.txt)"
#. CRJb6
-#: sw/inc/strings.hrc:866
+#: sw/inc/strings.hrc:867
msgctxt "STR_FILTER_CSV"
msgid "Text Comma Separated (*.csv)"
msgstr "Teks met kommas geskei (*.csv)"
#. U4H2j
-#: sw/inc/strings.hrc:867
+#: sw/inc/strings.hrc:868
msgctxt "STR_FILTER_MDB"
msgid "Microsoft Access (*.mdb;*.mde)"
msgstr "Microsoft Access (*.mdb;*.mde)"
#. DwxF8
-#: sw/inc/strings.hrc:868
+#: sw/inc/strings.hrc:869
msgctxt "STR_FILTER_ACCDB"
msgid "Microsoft Access 2007 (*.accdb,*.accde)"
msgstr "Microsoft Access 2007 (*.accdb,*.accde)"
#. uDNRt
-#: sw/inc/strings.hrc:869
+#: sw/inc/strings.hrc:870
msgctxt "ST_CONFIGUREMAIL"
msgid ""
"In order to be able to send mail merge documents by email, %PRODUCTNAME requires information about the email account to be used.\n"
@@ -7075,91 +7081,91 @@ msgstr ""
"Wil u die epos rekeninginligting nou invoer?"
#. r9BVg
-#: sw/inc/strings.hrc:870
+#: sw/inc/strings.hrc:871
msgctxt "ST_FILTERNAME"
msgid "%PRODUCTNAME Address List (.csv)"
msgstr "%PRODUCTNAME-adreslys (.csv)"
#. jiJuZ
-#: sw/inc/strings.hrc:872
+#: sw/inc/strings.hrc:873
msgctxt "ST_STARTING"
msgid "Select Starting Document"
msgstr "Kies begindokument"
#. FiUyK
-#: sw/inc/strings.hrc:873
+#: sw/inc/strings.hrc:874
msgctxt "ST_DOCUMENTTYPE"
msgid "Select Document Type"
msgstr "Kies die dokumenttipe"
#. QwrpS
-#: sw/inc/strings.hrc:874
+#: sw/inc/strings.hrc:875
msgctxt "ST_ADDRESSBLOCK"
msgid "Insert Address Block"
msgstr "Voeg adresblok in"
#. omRZF
-#: sw/inc/strings.hrc:875
+#: sw/inc/strings.hrc:876
msgctxt "ST_ADDRESSLIST"
msgid "Select Address List"
msgstr "Kies adreslys"
#. YrDuD
-#: sw/inc/strings.hrc:876
+#: sw/inc/strings.hrc:877
msgctxt "ST_GREETINGSLINE"
msgid "Create Salutation"
msgstr "Skep aanhef"
#. tTr4B
-#: sw/inc/strings.hrc:877
+#: sw/inc/strings.hrc:878
msgctxt "ST_LAYOUT"
msgid "Adjust Layout"
msgstr "Pas uitleg aan"
#. S4p5M
-#: sw/inc/strings.hrc:878
+#: sw/inc/strings.hrc:879
msgctxt "ST_EXCLUDE"
msgid "Exclude recipient"
msgstr "Sluit ontvanger uit"
#. N5YUH
-#: sw/inc/strings.hrc:879
+#: sw/inc/strings.hrc:880
msgctxt "ST_FINISH"
msgid "~Finish"
msgstr "~Klaar"
#. L5FEG
-#: sw/inc/strings.hrc:880
+#: sw/inc/strings.hrc:881
msgctxt "ST_MMWTITLE"
msgid "Mail Merge Wizard"
msgstr "Massapos-slimmerd"
#. CEhZj
-#: sw/inc/strings.hrc:882
+#: sw/inc/strings.hrc:883
msgctxt "ST_TABLE"
msgid "Table"
msgstr "Tabel"
#. v9hEB
-#: sw/inc/strings.hrc:883
+#: sw/inc/strings.hrc:884
msgctxt "ST_QUERY"
msgid "Query"
msgstr "Navraag"
#. HxGAu
-#: sw/inc/strings.hrc:885
+#: sw/inc/strings.hrc:886
msgctxt "STR_QUERY_SPELL_CONTINUE"
msgid "Continue checking at beginning of document?"
msgstr "Wil u weer van die dokument se begin af toets?"
#. gE7CA
-#: sw/inc/strings.hrc:886
+#: sw/inc/strings.hrc:887
msgctxt "STR_SPELLING_COMPLETED"
msgid "The spellcheck is complete."
msgstr "Die speltoets is klaar."
#. 2SuqF
-#: sw/inc/strings.hrc:887
+#: sw/inc/strings.hrc:888
msgctxt "STR_DICTIONARY_UNAVAILABLE"
msgid "No dictionary available"
msgstr "Geen woordeboek beskikbaar nie"
@@ -7169,252 +7175,252 @@ msgstr "Geen woordeboek beskikbaar nie"
#. Description: strings for the types
#. --------------------------------------------------------------------
#. range document
-#: sw/inc/strings.hrc:893
+#: sw/inc/strings.hrc:894
msgctxt "STR_DATEFLD"
msgid "Date"
msgstr "Datum"
#. V9cQp
-#: sw/inc/strings.hrc:894
+#: sw/inc/strings.hrc:895
msgctxt "STR_TIMEFLD"
msgid "Time"
msgstr "Tyd"
#. 2zgWi
-#: sw/inc/strings.hrc:895
+#: sw/inc/strings.hrc:896
msgctxt "STR_FILENAMEFLD"
msgid "File name"
msgstr "Lêernaam"
#. FdSaU
-#: sw/inc/strings.hrc:896
+#: sw/inc/strings.hrc:897
msgctxt "STR_DBNAMEFLD"
msgid "Database Name"
msgstr "Databasisnaam"
#. XZADh
-#: sw/inc/strings.hrc:897
+#: sw/inc/strings.hrc:898
msgctxt "STR_CHAPTERFLD"
msgid "Chapter"
msgstr "Hoofstuk"
#. wYWy2
-#: sw/inc/strings.hrc:898
+#: sw/inc/strings.hrc:899
msgctxt "STR_PAGENUMBERFLD"
msgid "Page number"
msgstr "Bladsynommer"
#. EXC6N
-#: sw/inc/strings.hrc:899
+#: sw/inc/strings.hrc:900
msgctxt "STR_DOCSTATFLD"
msgid "Statistics"
msgstr "Statistieke"
#. EW86G
-#: sw/inc/strings.hrc:900
+#: sw/inc/strings.hrc:901
msgctxt "STR_AUTHORFLD"
msgid "Author"
msgstr "Outeur"
#. 5aFak
-#: sw/inc/strings.hrc:901
+#: sw/inc/strings.hrc:902
msgctxt "STR_TEMPLNAMEFLD"
msgid "Templates"
msgstr "Sjablone"
#. 3wdud
-#: sw/inc/strings.hrc:902
+#: sw/inc/strings.hrc:903
msgctxt "STR_EXTUSERFLD"
msgid "Sender"
msgstr "Afsender"
#. LxZEm
#. range functions
-#: sw/inc/strings.hrc:904
+#: sw/inc/strings.hrc:905
msgctxt "STR_SETFLD"
msgid "Set variable"
msgstr "Stel veranderlike"
#. ckA26
-#: sw/inc/strings.hrc:905
+#: sw/inc/strings.hrc:906
msgctxt "STR_GETFLD"
msgid "Show variable"
msgstr "Wys veranderlike"
#. Fjzgu
-#: sw/inc/strings.hrc:906
+#: sw/inc/strings.hrc:907
msgctxt "STR_FORMELFLD"
msgid "Insert Formula"
msgstr "Voeg formule in"
#. AXoAT
-#: sw/inc/strings.hrc:907
+#: sw/inc/strings.hrc:908
msgctxt "STR_INPUTFLD"
msgid "Input field"
msgstr "Toevoerveld"
#. VfqNE
-#: sw/inc/strings.hrc:908
+#: sw/inc/strings.hrc:909
msgctxt "STR_SETINPUTFLD"
msgid "Input field (variable)"
msgstr "Toevoerveld (veranderlike)"
#. E8JAd
-#: sw/inc/strings.hrc:909
+#: sw/inc/strings.hrc:910
msgctxt "STR_USRINPUTFLD"
msgid "Input field (user)"
msgstr "Toevoerveld (gebruiker)"
#. 8LGEQ
-#: sw/inc/strings.hrc:910
+#: sw/inc/strings.hrc:911
msgctxt "STR_CONDTXTFLD"
msgid "Conditional text"
msgstr "Voorwaardelike teks"
#. jrZ7i
-#: sw/inc/strings.hrc:911
+#: sw/inc/strings.hrc:912
msgctxt "STR_DDEFLD"
msgid "DDE field"
msgstr "DDE-veld"
#. 9WAT9
-#: sw/inc/strings.hrc:912
+#: sw/inc/strings.hrc:913
msgctxt "STR_MACROFLD"
msgid "Execute macro"
msgstr "Voer makro uit"
#. qEBxa
-#: sw/inc/strings.hrc:913
+#: sw/inc/strings.hrc:914
msgctxt "STR_SEQFLD"
msgid "Number range"
msgstr "Getalomvang"
#. ACE5s
-#: sw/inc/strings.hrc:914
+#: sw/inc/strings.hrc:915
msgctxt "STR_SETREFPAGEFLD"
msgid "Set page variable"
msgstr "Stel bladsyveranderlike"
#. ayB3N
-#: sw/inc/strings.hrc:915
+#: sw/inc/strings.hrc:916
msgctxt "STR_GETREFPAGEFLD"
msgid "Show page variable"
msgstr "Wys bladsyveranderlike"
#. DBM4P
-#: sw/inc/strings.hrc:916
+#: sw/inc/strings.hrc:917
msgctxt "STR_INTERNETFLD"
msgid "Load URL"
msgstr "Laai URL"
#. LJFF5
-#: sw/inc/strings.hrc:917
+#: sw/inc/strings.hrc:918
msgctxt "STR_JUMPEDITFLD"
msgid "Placeholder"
msgstr "Plekhouer"
#. zZCg6
-#: sw/inc/strings.hrc:918
+#: sw/inc/strings.hrc:919
msgctxt "STR_COMBINED_CHARS"
msgid "Combine characters"
msgstr "Kombineer karakters"
#. 9MGU6
-#: sw/inc/strings.hrc:919
+#: sw/inc/strings.hrc:920
msgctxt "STR_DROPDOWN"
msgid "Input list"
msgstr "Toevoerlys"
#. 7BWSk
#. range references
-#: sw/inc/strings.hrc:921
+#: sw/inc/strings.hrc:922
msgctxt "STR_SETREFFLD"
msgid "Set Reference"
msgstr "Stel verwysing"
#. FJ2X8
-#: sw/inc/strings.hrc:922
+#: sw/inc/strings.hrc:923
msgctxt "STR_GETREFFLD"
msgid "Insert Reference"
msgstr "Voeg verwysing in"
#. sztLS
#. range database
-#: sw/inc/strings.hrc:924
+#: sw/inc/strings.hrc:925
msgctxt "STR_DBFLD"
msgid "Mail merge fields"
msgstr "Massapos-velde"
#. JP2DU
-#: sw/inc/strings.hrc:925
+#: sw/inc/strings.hrc:926
msgctxt "STR_DBNEXTSETFLD"
msgid "Next record"
msgstr "Volgende rekord"
#. GizhA
-#: sw/inc/strings.hrc:926
+#: sw/inc/strings.hrc:927
msgctxt "STR_DBNUMSETFLD"
msgid "Any record"
msgstr "Enige rekord"
#. aMGxm
-#: sw/inc/strings.hrc:927
+#: sw/inc/strings.hrc:928
msgctxt "STR_DBSETNUMBERFLD"
msgid "Record number"
msgstr "Rekordnommer"
#. DtYzi
-#: sw/inc/strings.hrc:928
+#: sw/inc/strings.hrc:929
msgctxt "STR_PREVPAGEFLD"
msgid "Previous page"
msgstr "Vorige bladsy"
#. UCSej
-#: sw/inc/strings.hrc:929
+#: sw/inc/strings.hrc:930
msgctxt "STR_NEXTPAGEFLD"
msgid "Next page"
msgstr "Volgende bladsy"
#. M8Fac
-#: sw/inc/strings.hrc:930
+#: sw/inc/strings.hrc:931
msgctxt "STR_HIDDENTXTFLD"
msgid "Hidden text"
msgstr "Versteekte teks"
#. WvBF2
#. range user fields
-#: sw/inc/strings.hrc:932
+#: sw/inc/strings.hrc:933
msgctxt "STR_USERFLD"
msgid "User Field"
msgstr "Gebruikerveld"
#. XELYN
-#: sw/inc/strings.hrc:933
+#: sw/inc/strings.hrc:934
msgctxt "STR_POSTITFLD"
msgid "Note"
msgstr "Nota"
#. MB6kt
-#: sw/inc/strings.hrc:934
+#: sw/inc/strings.hrc:935
msgctxt "STR_SCRIPTFLD"
msgid "Script"
msgstr "Skrip"
#. BWU6A
-#: sw/inc/strings.hrc:935
+#: sw/inc/strings.hrc:936
msgctxt "STR_AUTHORITY"
msgid "Bibliography entry"
msgstr "Bibliografie-inskrywing"
#. 7EGCR
-#: sw/inc/strings.hrc:936
+#: sw/inc/strings.hrc:937
msgctxt "STR_HIDDENPARAFLD"
msgid "Hidden Paragraph"
msgstr "Versteekte paragraaf"
#. dRBRK
#. range DocumentInfo
-#: sw/inc/strings.hrc:938
+#: sw/inc/strings.hrc:939
msgctxt "STR_DOCINFOFLD"
msgid "DocInformation"
msgstr "DokInligting"
@@ -7423,87 +7429,87 @@ msgstr "DokInligting"
#. --------------------------------------------------------------------
#. Description: SubCmd-Strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:942
+#: sw/inc/strings.hrc:943
msgctxt "FLD_DATE_STD"
msgid "Date"
msgstr "Datum"
#. qMCEh
-#: sw/inc/strings.hrc:943
+#: sw/inc/strings.hrc:944
msgctxt "FLD_DATE_FIX"
msgid "Date (fixed)"
msgstr "Datum (vas)"
#. AXmyw
-#: sw/inc/strings.hrc:944
+#: sw/inc/strings.hrc:945
msgctxt "FLD_TIME_STD"
msgid "Time"
msgstr "Tyd"
#. 6dxVs
-#: sw/inc/strings.hrc:945
+#: sw/inc/strings.hrc:946
msgctxt "FLD_TIME_FIX"
msgid "Time (fixed)"
msgstr "Tyd (vas)"
#. U3SW8
#. SubCmd Statistic
-#: sw/inc/strings.hrc:947
+#: sw/inc/strings.hrc:948
msgctxt "FLD_STAT_TABLE"
msgid "Tables"
msgstr "Tabelle"
#. 7qW4K
-#: sw/inc/strings.hrc:948
+#: sw/inc/strings.hrc:949
msgctxt "FLD_STAT_CHAR"
msgid "Characters"
msgstr "Karakters"
#. zDRCp
-#: sw/inc/strings.hrc:949
+#: sw/inc/strings.hrc:950
msgctxt "FLD_STAT_WORD"
msgid "Words"
msgstr "Woorde"
#. 2wgLC
-#: sw/inc/strings.hrc:950
+#: sw/inc/strings.hrc:951
msgctxt "FLD_STAT_PARA"
msgid "Paragraphs"
msgstr "Paragrawe"
#. JPGG7
-#: sw/inc/strings.hrc:951
+#: sw/inc/strings.hrc:952
msgctxt "FLD_STAT_GRF"
msgid "Image"
msgstr "Beeld"
#. CzoFh
-#: sw/inc/strings.hrc:952
+#: sw/inc/strings.hrc:953
msgctxt "FLD_STAT_OBJ"
msgid "Objects"
msgstr "Objekte"
#. bDG6R
-#: sw/inc/strings.hrc:953
+#: sw/inc/strings.hrc:954
msgctxt "FLD_STAT_PAGE"
msgid "Pages"
msgstr "Bladsye"
#. yqhF5
#. SubCmd DDETypes
-#: sw/inc/strings.hrc:955
+#: sw/inc/strings.hrc:956
msgctxt "FMT_DDE_HOT"
msgid "DDE automatic"
msgstr "Outomatiese DDE"
#. xPP2E
-#: sw/inc/strings.hrc:956
+#: sw/inc/strings.hrc:957
msgctxt "FMT_DDE_NORMAL"
msgid "DDE manual"
msgstr "Handmatige DDE"
#. spdXd
-#: sw/inc/strings.hrc:957
+#: sw/inc/strings.hrc:958
msgctxt "FLD_INPUT_TEXT"
msgid "[Text]"
msgstr "[Teks]"
@@ -7512,103 +7518,103 @@ msgstr "[Teks]"
#. --------------------------------------------------------------------
#. Description: SubType Extuser
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:962
+#: sw/inc/strings.hrc:963
msgctxt "FLD_EU_FIRMA"
msgid "Company"
msgstr "Maatskappy"
#. WWxTK
-#: sw/inc/strings.hrc:963
+#: sw/inc/strings.hrc:964
msgctxt "FLD_EU_VORNAME"
msgid "First Name"
msgstr "Naam"
#. 4tdAc
-#: sw/inc/strings.hrc:964
+#: sw/inc/strings.hrc:965
msgctxt "FLD_EU_NAME"
msgid "Last Name"
msgstr "Van"
#. xTV7n
-#: sw/inc/strings.hrc:965
+#: sw/inc/strings.hrc:966
msgctxt "FLD_EU_ABK"
msgid "Initials"
msgstr "Voorletters"
#. AKD3k
-#: sw/inc/strings.hrc:966
+#: sw/inc/strings.hrc:967
msgctxt "FLD_EU_STRASSE"
msgid "Street"
msgstr "Straat"
#. ErMju
-#: sw/inc/strings.hrc:967
+#: sw/inc/strings.hrc:968
msgctxt "FLD_EU_LAND"
msgid "Country"
msgstr "Land"
#. ESbkx
-#: sw/inc/strings.hrc:968
+#: sw/inc/strings.hrc:969
msgctxt "FLD_EU_PLZ"
msgid "Zip code"
msgstr "Poskode"
#. WDAc2
-#: sw/inc/strings.hrc:969
+#: sw/inc/strings.hrc:970
msgctxt "FLD_EU_ORT"
msgid "City"
msgstr "Stad"
#. pg7MV
-#: sw/inc/strings.hrc:970
+#: sw/inc/strings.hrc:971
msgctxt "FLD_EU_TITEL"
msgid "Title"
msgstr "Titel"
#. DwLhZ
-#: sw/inc/strings.hrc:971
+#: sw/inc/strings.hrc:972
msgctxt "FLD_EU_POS"
msgid "Position"
msgstr "Posisie"
#. LDTdu
-#: sw/inc/strings.hrc:972
+#: sw/inc/strings.hrc:973
msgctxt "FLD_EU_TELPRIV"
msgid "Tel. (Home)"
msgstr "Foon (tuis)"
#. JBZyj
-#: sw/inc/strings.hrc:973
+#: sw/inc/strings.hrc:974
msgctxt "FLD_EU_TELFIRMA"
msgid "Tel. (Work)"
msgstr "Foon (werk)"
#. 5EmGH
-#: sw/inc/strings.hrc:974
+#: sw/inc/strings.hrc:975
msgctxt "FLD_EU_FAX"
msgid "Fax"
msgstr "Faks"
#. AtN9J
-#: sw/inc/strings.hrc:975
+#: sw/inc/strings.hrc:976
msgctxt "FLD_EU_EMAIL"
msgid "Email"
msgstr "E-pos"
#. 6GBRm
-#: sw/inc/strings.hrc:976
+#: sw/inc/strings.hrc:977
msgctxt "FLD_EU_STATE"
msgid "State"
msgstr "Provinsie"
#. pbrdQ
-#: sw/inc/strings.hrc:977
+#: sw/inc/strings.hrc:978
msgctxt "FLD_PAGEREF_OFF"
msgid "off"
msgstr "af"
#. wC8SE
-#: sw/inc/strings.hrc:978
+#: sw/inc/strings.hrc:979
msgctxt "FLD_PAGEREF_ON"
msgid "on"
msgstr "aan"
@@ -7618,37 +7624,37 @@ msgstr "aan"
#. Description: path name
#. --------------------------------------------------------------------
#. Format FileName
-#: sw/inc/strings.hrc:983
+#: sw/inc/strings.hrc:984
msgctxt "FMT_FF_NAME"
msgid "File name"
msgstr "Lêernaam"
#. RBpz3
-#: sw/inc/strings.hrc:984
+#: sw/inc/strings.hrc:985
msgctxt "FMT_FF_NAME_NOEXT"
msgid "File name without extension"
msgstr "Lêernaam sonder uitbreiding"
#. BCzy8
-#: sw/inc/strings.hrc:985
+#: sw/inc/strings.hrc:986
msgctxt "FMT_FF_PATHNAME"
msgid "Path/File name"
msgstr "Pad/lêernaam"
#. ChFwM
-#: sw/inc/strings.hrc:986
+#: sw/inc/strings.hrc:987
msgctxt "FMT_FF_PATH"
msgid "Path"
msgstr "Pad"
#. R6KrL
-#: sw/inc/strings.hrc:987
+#: sw/inc/strings.hrc:988
msgctxt "FMT_FF_UI_NAME"
msgid "Template name"
msgstr "Sjabloonnaam"
#. ANM2H
-#: sw/inc/strings.hrc:988
+#: sw/inc/strings.hrc:989
msgctxt "FMT_FF_UI_RANGE"
msgid "Category"
msgstr "Kategorie"
@@ -7657,25 +7663,25 @@ msgstr "Kategorie"
#. --------------------------------------------------------------------
#. Description: format chapter
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:992
+#: sw/inc/strings.hrc:993
msgctxt "FMT_CHAPTER_NAME"
msgid "Chapter name"
msgstr "Naam van hoofstuk"
#. tnLqE
-#: sw/inc/strings.hrc:993
+#: sw/inc/strings.hrc:994
msgctxt "FMT_CHAPTER_NO"
msgid "Chapter number"
msgstr "Hoofstuknommer"
#. qGEAs
-#: sw/inc/strings.hrc:994
+#: sw/inc/strings.hrc:995
msgctxt "FMT_CHAPTER_NO_NOSEPARATOR"
msgid "Chapter number without separator"
msgstr "Hoofstuknommer sonder skeisimbool"
#. WFA5R
-#: sw/inc/strings.hrc:995
+#: sw/inc/strings.hrc:996
msgctxt "FMT_CHAPTER_NAMENO"
msgid "Chapter number and name"
msgstr "Hoofstuknommer en -naam"
@@ -7684,55 +7690,55 @@ msgstr "Hoofstuknommer en -naam"
#. --------------------------------------------------------------------
#. Description: formats
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:999
+#: sw/inc/strings.hrc:1000
msgctxt "FMT_NUM_ABC"
msgid "A B C"
msgstr "A B C"
#. jm7G7
-#: sw/inc/strings.hrc:1000
+#: sw/inc/strings.hrc:1001
msgctxt "FMT_NUM_SABC"
msgid "a b c"
msgstr "a b c"
#. ETgy7
-#: sw/inc/strings.hrc:1001
+#: sw/inc/strings.hrc:1002
msgctxt "FMT_NUM_ABC_N"
msgid "A .. AA .. AAA"
msgstr "A .. AA .. AAA"
#. m84Fb
-#: sw/inc/strings.hrc:1002
+#: sw/inc/strings.hrc:1003
msgctxt "FMT_NUM_SABC_N"
msgid "a .. aa .. aaa"
msgstr "a .. aa .. aaa"
#. d9YtB
-#: sw/inc/strings.hrc:1003
+#: sw/inc/strings.hrc:1004
msgctxt "FMT_NUM_ROMAN"
msgid "Roman (I II III)"
msgstr "Romeinse syfers (I II III)"
#. vA5RT
-#: sw/inc/strings.hrc:1004
+#: sw/inc/strings.hrc:1005
msgctxt "FMT_NUM_SROMAN"
msgid "Roman (i ii iii)"
msgstr "Romeinse syfers (i ii iii)"
#. 3ZDgc
-#: sw/inc/strings.hrc:1005
+#: sw/inc/strings.hrc:1006
msgctxt "FMT_NUM_ARABIC"
msgid "Arabic (1 2 3)"
msgstr "Arabiese syfers (1 2 3)"
#. CHmdp
-#: sw/inc/strings.hrc:1006
+#: sw/inc/strings.hrc:1007
msgctxt "FMT_NUM_PAGEDESC"
msgid "As Page Style"
msgstr "Soos bladsystyl"
#. xBKwZ
-#: sw/inc/strings.hrc:1007
+#: sw/inc/strings.hrc:1008
msgctxt "FMT_NUM_PAGESPECIAL"
msgid "Text"
msgstr "Teks"
@@ -7741,13 +7747,13 @@ msgstr "Teks"
#. --------------------------------------------------------------------
#. Description: Author
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1011
+#: sw/inc/strings.hrc:1012
msgctxt "FMT_AUTHOR_NAME"
msgid "Name"
msgstr "Naam"
#. RCnZb
-#: sw/inc/strings.hrc:1012
+#: sw/inc/strings.hrc:1013
msgctxt "FMT_AUTHOR_SCUT"
msgid "Initials"
msgstr "Voorletters"
@@ -7756,49 +7762,49 @@ msgstr "Voorletters"
#. --------------------------------------------------------------------
#. Description: set variable
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1016
+#: sw/inc/strings.hrc:1017
msgctxt "FMT_SETVAR_SYS"
msgid "System"
msgstr "Stelsel"
#. qKXLW
-#: sw/inc/strings.hrc:1017
+#: sw/inc/strings.hrc:1018
msgctxt "FMT_SETVAR_TEXT"
msgid "Text"
msgstr "Teks"
#. E86ZD
-#: sw/inc/strings.hrc:1018
+#: sw/inc/strings.hrc:1019
msgctxt "FMT_GETVAR_NAME"
msgid "Name"
msgstr "Naam"
#. FB3Rp
-#: sw/inc/strings.hrc:1019
+#: sw/inc/strings.hrc:1020
msgctxt "FMT_GETVAR_TEXT"
msgid "Text"
msgstr "Teks"
#. KiBai
-#: sw/inc/strings.hrc:1020
+#: sw/inc/strings.hrc:1021
msgctxt "FMT_USERVAR_CMD"
msgid "Formula"
msgstr "Formule"
#. 9AsdS
-#: sw/inc/strings.hrc:1021
+#: sw/inc/strings.hrc:1022
msgctxt "FMT_USERVAR_TEXT"
msgid "Text"
msgstr "Teks"
#. GokUf
-#: sw/inc/strings.hrc:1022
+#: sw/inc/strings.hrc:1023
msgctxt "FMT_DBFLD_DB"
msgid "Database"
msgstr "Databasis"
#. UBADL
-#: sw/inc/strings.hrc:1023
+#: sw/inc/strings.hrc:1024
msgctxt "FMT_DBFLD_SYS"
msgid "System"
msgstr "Stelsel"
@@ -7807,19 +7813,19 @@ msgstr "Stelsel"
#. --------------------------------------------------------------------
#. Description: storage fields
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1027
+#: sw/inc/strings.hrc:1028
msgctxt "FMT_REG_AUTHOR"
msgid "Author"
msgstr "Outeur"
#. aqFVp
-#: sw/inc/strings.hrc:1028
+#: sw/inc/strings.hrc:1029
msgctxt "FMT_REG_TIME"
msgid "Time"
msgstr "Tyd"
#. FaZKx
-#: sw/inc/strings.hrc:1029
+#: sw/inc/strings.hrc:1030
msgctxt "FMT_REG_DATE"
msgid "Date"
msgstr "Datum"
@@ -7828,79 +7834,79 @@ msgstr "Datum"
#. --------------------------------------------------------------------
#. Description: formats references
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1033
+#: sw/inc/strings.hrc:1034
msgctxt "FMT_REF_TEXT"
msgid "Referenced text"
msgstr "Verwysde teks"
#. eeSAu
-#: sw/inc/strings.hrc:1034
+#: sw/inc/strings.hrc:1035
msgctxt "FMT_REF_PAGE"
msgid "Page number (unstyled)"
msgstr "Bladsy nommer (ongestileerd)"
#. MaB3q
-#: sw/inc/strings.hrc:1035
+#: sw/inc/strings.hrc:1036
msgctxt "FMT_REF_CHAPTER"
msgid "Chapter"
msgstr "Hoofstuk"
#. VBMno
-#: sw/inc/strings.hrc:1036
+#: sw/inc/strings.hrc:1037
msgctxt "FMT_REF_UPDOWN"
msgid "“Above”/“Below”"
msgstr "\"Bolangs\"/\"Onderlangs\""
#. 96emU
-#: sw/inc/strings.hrc:1037
+#: sw/inc/strings.hrc:1038
msgctxt "FMT_REF_PAGE_PGDSC"
msgid "Page number (styled)"
msgstr "Bladsy nommer (gestilleerd)"
#. CQitd
-#: sw/inc/strings.hrc:1038
+#: sw/inc/strings.hrc:1039
msgctxt "FMT_REF_ONLYNUMBER"
msgid "Category and Number"
msgstr "Kategorie en nommer"
#. BsvCn
-#: sw/inc/strings.hrc:1039
+#: sw/inc/strings.hrc:1040
msgctxt "FMT_REF_ONLYCAPTION"
msgid "Caption Text"
msgstr "Byskrifteks"
#. P7wiX
-#: sw/inc/strings.hrc:1040
+#: sw/inc/strings.hrc:1041
msgctxt "FMT_REF_ONLYSEQNO"
msgid "Numbering"
msgstr "Nommering"
#. QBGit
-#: sw/inc/strings.hrc:1041
+#: sw/inc/strings.hrc:1042
msgctxt "FMT_REF_NUMBER"
msgid "Number"
msgstr "Nommer"
#. CGkV7
-#: sw/inc/strings.hrc:1042
+#: sw/inc/strings.hrc:1043
msgctxt "FMT_REF_NUMBER_NO_CONTEXT"
msgid "Number (no context)"
msgstr "Nommer (geen konteks)"
#. XgSb3
-#: sw/inc/strings.hrc:1043
+#: sw/inc/strings.hrc:1044
msgctxt "FMT_REF_NUMBER_FULL_CONTEXT"
msgid "Number (full context)"
msgstr "Nommer (volledige konteks)"
#. zQTNF
-#: sw/inc/strings.hrc:1045
+#: sw/inc/strings.hrc:1046
msgctxt "FMT_REF_WITH_LOWERCASE_HU_ARTICLE"
msgid "Article a/az + "
msgstr "Artikel a/az + "
#. 97Vs7
-#: sw/inc/strings.hrc:1046
+#: sw/inc/strings.hrc:1047
msgctxt "FMT_REF_WITH_UPPERCASE_HU_ARTICLE"
msgid "Article A/Az + "
msgstr "Artikel A/Az + "
@@ -7909,31 +7915,31 @@ msgstr "Artikel A/Az + "
#. --------------------------------------------------------------------
#. Description: placeholder
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1050
+#: sw/inc/strings.hrc:1051
msgctxt "FMT_MARK_TEXT"
msgid "Text"
msgstr "Teks"
#. rAQoE
-#: sw/inc/strings.hrc:1051
+#: sw/inc/strings.hrc:1052
msgctxt "FMT_MARK_TABLE"
msgid "Table"
msgstr "Tabel"
#. biUa2
-#: sw/inc/strings.hrc:1052
+#: sw/inc/strings.hrc:1053
msgctxt "FMT_MARK_FRAME"
msgid "Frame"
msgstr "Raam"
#. 7mkZb
-#: sw/inc/strings.hrc:1053
+#: sw/inc/strings.hrc:1054
msgctxt "FMT_MARK_GRAFIC"
msgid "Image"
msgstr "Beeld"
#. GgbFY
-#: sw/inc/strings.hrc:1054
+#: sw/inc/strings.hrc:1055
msgctxt "FMT_MARK_OLE"
msgid "Object"
msgstr "Objek"
@@ -7942,1541 +7948,1541 @@ msgstr "Objek"
#. --------------------------------------------------------------------
#. Description: ExchangeStrings for Edit/NameFT
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1058
+#: sw/inc/strings.hrc:1059
msgctxt "STR_COND"
msgid "~Condition"
msgstr "~Voorwaarde"
#. X9cqJ
-#: sw/inc/strings.hrc:1059
+#: sw/inc/strings.hrc:1060
msgctxt "STR_TEXT"
msgid "Then, Else"
msgstr "Dan, Anders"
#. bo8yF
-#: sw/inc/strings.hrc:1060
+#: sw/inc/strings.hrc:1061
msgctxt "STR_DDE_CMD"
msgid "DDE Statement"
msgstr "DDE-stelling"
#. LixXA
-#: sw/inc/strings.hrc:1061
+#: sw/inc/strings.hrc:1062
msgctxt "STR_INSTEXT"
msgid "Hidden t~ext"
msgstr "Versteekte t~eks"
#. EX3bJ
-#: sw/inc/strings.hrc:1062
+#: sw/inc/strings.hrc:1063
msgctxt "STR_MACNAME"
msgid "~Macro name"
msgstr "~Makronaam"
#. dNZtd
-#: sw/inc/strings.hrc:1063
+#: sw/inc/strings.hrc:1064
msgctxt "STR_PROMPT"
msgid "~Reference"
msgstr "~Verwysing"
#. bfRPa
-#: sw/inc/strings.hrc:1064
+#: sw/inc/strings.hrc:1065
msgctxt "STR_COMBCHRS_FT"
msgid "Ch~aracters"
msgstr "K~arakters"
#. j2G5G
-#: sw/inc/strings.hrc:1065
+#: sw/inc/strings.hrc:1066
msgctxt "STR_OFFSET"
msgid "O~ffset"
msgstr "Regstelling"
#. vEgGo
-#: sw/inc/strings.hrc:1066
+#: sw/inc/strings.hrc:1067
msgctxt "STR_VALUE"
msgid "Value"
msgstr "Waarde"
#. YQesU
-#: sw/inc/strings.hrc:1067
+#: sw/inc/strings.hrc:1068
msgctxt "STR_FORMULA"
msgid "Formula"
msgstr "Formule"
#. Eq5xq
-#: sw/inc/strings.hrc:1068
+#: sw/inc/strings.hrc:1069
msgctxt "STR_CUSTOM_FIELD"
msgid "Custom"
msgstr "Doelgemaak"
#. 32NzA
-#: sw/inc/strings.hrc:1070
+#: sw/inc/strings.hrc:1071
msgctxt "STR_CUSTOM_LABEL"
msgid "[User]"
msgstr "[Gebruiker]"
#. dYQTU
-#: sw/inc/strings.hrc:1072
+#: sw/inc/strings.hrc:1073
msgctxt "STR_HDIST"
msgid "H. Pitch"
msgstr "H. Hoogte"
#. xELZY
-#: sw/inc/strings.hrc:1073
+#: sw/inc/strings.hrc:1074
msgctxt "STR_VDIST"
msgid "V. Pitch"
msgstr "V. Hoogte"
#. F9Ldz
-#: sw/inc/strings.hrc:1074
+#: sw/inc/strings.hrc:1075
msgctxt "STR_WIDTH"
msgid "Width"
msgstr "Wydte"
#. rdxcb
-#: sw/inc/strings.hrc:1075
+#: sw/inc/strings.hrc:1076
msgctxt "STR_HEIGHT"
msgid "Height"
msgstr "Hoogte"
#. DQm2h
-#: sw/inc/strings.hrc:1076
+#: sw/inc/strings.hrc:1077
msgctxt "STR_LEFT"
msgid "Left margin"
msgstr "Linkerkantlyn"
#. imDMU
-#: sw/inc/strings.hrc:1077
+#: sw/inc/strings.hrc:1078
msgctxt "STR_UPPER"
msgid "Top margin"
msgstr "Bokantlyn"
#. ayQss
-#: sw/inc/strings.hrc:1078
+#: sw/inc/strings.hrc:1079
msgctxt "STR_COLS"
msgid "Columns"
msgstr "Kolomme"
#. 3moLd
-#: sw/inc/strings.hrc:1079
+#: sw/inc/strings.hrc:1080
msgctxt "STR_ROWS"
msgid "Rows"
msgstr "Rye"
#. XWMSH
-#: sw/inc/strings.hrc:1081
+#: sw/inc/strings.hrc:1082
msgctxt "STR_WORDCOUNT_HINT"
msgid "Word and character count. Click to open Word Count dialog."
msgstr "Woord- en karaktertelling. Klik om die Woordtellingdialoog oop te maak."
#. nxGNq
-#: sw/inc/strings.hrc:1082
+#: sw/inc/strings.hrc:1083
msgctxt "STR_VIEWLAYOUT_ONE"
msgid "Single-page view"
msgstr "Enkelbladaansig"
#. 57ju6
-#: sw/inc/strings.hrc:1083
+#: sw/inc/strings.hrc:1084
msgctxt "STR_VIEWLAYOUT_MULTI"
msgid "Multiple-page view"
msgstr "Multibladaansig"
#. tbig8
-#: sw/inc/strings.hrc:1084
+#: sw/inc/strings.hrc:1085
msgctxt "STR_VIEWLAYOUT_BOOK"
msgid "Book view"
msgstr "Boekaansig"
#. xBHUG
-#: sw/inc/strings.hrc:1085
+#: sw/inc/strings.hrc:1086
msgctxt "STR_BOOKCTRL_HINT"
msgid "Page number in document. Click to open Go to Page dialog or right-click for bookmark list."
msgstr "Bladsynommer in dokument. Klik om die “Gaan na bladsy”-dialoog oop te maak, of klik regs vir boekmerklys."
#. XaF3v
-#: sw/inc/strings.hrc:1086
+#: sw/inc/strings.hrc:1087
msgctxt "STR_BOOKCTRL_HINT_EXTENDED"
msgid "Page number in document (Page number on printed document). Click to open Go to Page dialog."
msgstr "Bladsynommer in dokument (bladsynommer op gedrukte dokument). Klik om die “Gaan na bladsy”-dialoog oop te maak."
#. EWtd2
-#: sw/inc/strings.hrc:1087
+#: sw/inc/strings.hrc:1088
msgctxt "STR_TMPLCTRL_HINT"
msgid "Page Style. Right-click to change style or click to open Style dialog."
msgstr "Bladsystyl. Klik regs om die styl te verander of klik om die styldialoog oop te maak."
#. jQAym
#. Strings for textual attributes.
-#: sw/inc/strings.hrc:1090
+#: sw/inc/strings.hrc:1091
msgctxt "STR_DROP_OVER"
msgid "Drop Caps over"
msgstr "Hoofletters oor"
#. PLAVt
-#: sw/inc/strings.hrc:1091
+#: sw/inc/strings.hrc:1092
msgctxt "STR_DROP_LINES"
msgid "rows"
msgstr "rye"
#. sg6Za
-#: sw/inc/strings.hrc:1092
+#: sw/inc/strings.hrc:1093
msgctxt "STR_NO_DROP_LINES"
msgid "No Drop Caps"
msgstr "Geen vallende hoofletters"
#. gueRC
-#: sw/inc/strings.hrc:1093
+#: sw/inc/strings.hrc:1094
msgctxt "STR_NO_PAGEDESC"
msgid "No page break"
msgstr "Geen bladsybreuk"
#. G3CQN
-#: sw/inc/strings.hrc:1094
+#: sw/inc/strings.hrc:1095
msgctxt "STR_NO_MIRROR"
msgid "Don't mirror"
msgstr "Moenie weerspieël nie"
#. MVEk8
-#: sw/inc/strings.hrc:1095
+#: sw/inc/strings.hrc:1096
msgctxt "STR_VERT_MIRROR"
msgid "Flip vertically"
msgstr "Swaai vertikaal om"
#. Dns6t
-#: sw/inc/strings.hrc:1096
+#: sw/inc/strings.hrc:1097
msgctxt "STR_HORI_MIRROR"
msgid "Flip horizontal"
msgstr "Swaai horisontaal om"
#. ZUKCy
-#: sw/inc/strings.hrc:1097
+#: sw/inc/strings.hrc:1098
msgctxt "STR_BOTH_MIRROR"
msgid "Horizontal and Vertical Flip"
msgstr "Horisontale en vertikale omswaai"
#. LoQic
-#: sw/inc/strings.hrc:1098
+#: sw/inc/strings.hrc:1099
msgctxt "STR_MIRROR_TOGGLE"
msgid "+ mirror horizontal on even pages"
msgstr "+ horisontale weerspieëling op ewe bladsye"
#. kbnTf
-#: sw/inc/strings.hrc:1099
+#: sw/inc/strings.hrc:1100
msgctxt "STR_CHARFMT"
msgid "Character Style"
msgstr "Karakterstyl"
#. D99ZJ
-#: sw/inc/strings.hrc:1100
+#: sw/inc/strings.hrc:1101
msgctxt "STR_NO_CHARFMT"
msgid "No Character Style"
msgstr "Geen karakterstyl"
#. fzG3P
-#: sw/inc/strings.hrc:1101
+#: sw/inc/strings.hrc:1102
msgctxt "STR_FOOTER"
msgid "Footer"
msgstr "Voet"
#. 9RCsQ
-#: sw/inc/strings.hrc:1102
+#: sw/inc/strings.hrc:1103
msgctxt "STR_NO_FOOTER"
msgid "No footer"
msgstr "Geen voet"
#. zFTin
-#: sw/inc/strings.hrc:1103
+#: sw/inc/strings.hrc:1104
msgctxt "STR_HEADER"
msgid "Header"
msgstr "Kop"
#. PcYEB
-#: sw/inc/strings.hrc:1104
+#: sw/inc/strings.hrc:1105
msgctxt "STR_NO_HEADER"
msgid "No header"
msgstr "Geen kop"
#. 8Jgfg
-#: sw/inc/strings.hrc:1105
+#: sw/inc/strings.hrc:1106
msgctxt "STR_SURROUND_IDEAL"
msgid "Optimal"
msgstr "Optimaal"
#. HEuGy
-#: sw/inc/strings.hrc:1106
+#: sw/inc/strings.hrc:1107
msgctxt "STR_SURROUND_NONE"
msgid "None"
msgstr "Geen"
#. 4tA4q
-#: sw/inc/strings.hrc:1107
+#: sw/inc/strings.hrc:1108
msgctxt "STR_SURROUND_THROUGH"
msgid "Through"
msgstr "Deur"
#. ypvD6
-#: sw/inc/strings.hrc:1108
+#: sw/inc/strings.hrc:1109
msgctxt "STR_SURROUND_PARALLEL"
msgid "Parallel"
msgstr "Parallel"
#. hyEQ5
-#: sw/inc/strings.hrc:1109
+#: sw/inc/strings.hrc:1110
msgctxt "STR_SURROUND_LEFT"
msgid "Before"
msgstr "Voor"
#. bGBtQ
-#: sw/inc/strings.hrc:1110
+#: sw/inc/strings.hrc:1111
msgctxt "STR_SURROUND_RIGHT"
msgid "After"
msgstr "Daarna"
#. SrG3D
-#: sw/inc/strings.hrc:1111
+#: sw/inc/strings.hrc:1112
msgctxt "STR_SURROUND_ANCHORONLY"
msgid "(Anchor only)"
msgstr "(Slegs anker)"
#. 9Ywzb
-#: sw/inc/strings.hrc:1112
+#: sw/inc/strings.hrc:1113
msgctxt "STR_FRM_WIDTH"
msgid "Width:"
msgstr "Wydte:"
#. 2GYT7
-#: sw/inc/strings.hrc:1113
+#: sw/inc/strings.hrc:1114
msgctxt "STR_FRM_FIXEDHEIGHT"
msgid "Fixed height:"
msgstr "Vaste hoogte:"
#. QrFMi
-#: sw/inc/strings.hrc:1114
+#: sw/inc/strings.hrc:1115
msgctxt "STR_FRM_MINHEIGHT"
msgid "Min. height:"
msgstr "Min. hoogte:"
#. kLiYd
-#: sw/inc/strings.hrc:1115
+#: sw/inc/strings.hrc:1116
msgctxt "STR_FLY_AT_PARA"
msgid "to paragraph"
msgstr "aan paragraaf"
#. A8nAb
-#: sw/inc/strings.hrc:1116
+#: sw/inc/strings.hrc:1117
msgctxt "STR_FLY_AS_CHAR"
msgid "as character"
msgstr "as karakter"
#. Uszmm
-#: sw/inc/strings.hrc:1117
+#: sw/inc/strings.hrc:1118
msgctxt "STR_FLY_AT_CHAR"
msgid "to character"
msgstr "Na karakter"
#. hDUSa
-#: sw/inc/strings.hrc:1118
+#: sw/inc/strings.hrc:1119
msgctxt "STR_FLY_AT_PAGE"
msgid "to page"
msgstr "aan bladsy"
#. JMHRz
-#: sw/inc/strings.hrc:1119
+#: sw/inc/strings.hrc:1120
msgctxt "STR_POS_X"
msgid "X Coordinate:"
msgstr "X-koördinaat:"
#. oCZWW
-#: sw/inc/strings.hrc:1120
+#: sw/inc/strings.hrc:1121
msgctxt "STR_POS_Y"
msgid "Y Coordinate:"
msgstr "Y-koördinaat:"
#. YNKE6
-#: sw/inc/strings.hrc:1121
+#: sw/inc/strings.hrc:1122
msgctxt "STR_VERT_TOP"
msgid "at top"
msgstr "bo"
#. GPTAu
-#: sw/inc/strings.hrc:1122
+#: sw/inc/strings.hrc:1123
msgctxt "STR_VERT_CENTER"
msgid "Centered vertically"
msgstr "Vertikaal gesentreer"
#. fcpTS
-#: sw/inc/strings.hrc:1123
+#: sw/inc/strings.hrc:1124
msgctxt "STR_VERT_BOTTOM"
msgid "at bottom"
msgstr "onder"
#. 37hos
-#: sw/inc/strings.hrc:1124
+#: sw/inc/strings.hrc:1125
msgctxt "STR_LINE_TOP"
msgid "Top of line"
msgstr "Bokant van reël"
#. MU7hC
-#: sw/inc/strings.hrc:1125
+#: sw/inc/strings.hrc:1126
msgctxt "STR_LINE_CENTER"
msgid "Line centered"
msgstr "Reël gesentreer"
#. ZvEq7
-#: sw/inc/strings.hrc:1126
+#: sw/inc/strings.hrc:1127
msgctxt "STR_LINE_BOTTOM"
msgid "Bottom of line"
msgstr "Onderkant van reël"
#. jypsG
-#: sw/inc/strings.hrc:1127
+#: sw/inc/strings.hrc:1128
msgctxt "STR_REGISTER_ON"
msgid "Page line-spacing"
msgstr "Bladsy lyn-spasiëring"
#. Cui3U
-#: sw/inc/strings.hrc:1128
+#: sw/inc/strings.hrc:1129
msgctxt "STR_REGISTER_OFF"
msgid "Not page line-spacing"
msgstr "Nie-bladsy lynspasiëring"
#. 4RL9X
-#: sw/inc/strings.hrc:1129
+#: sw/inc/strings.hrc:1130
msgctxt "STR_HORI_RIGHT"
msgid "at the right"
msgstr "regs"
#. wzGK7
-#: sw/inc/strings.hrc:1130
+#: sw/inc/strings.hrc:1131
msgctxt "STR_HORI_CENTER"
msgid "Centered horizontally"
msgstr "Horisontaal gesentreer"
#. ngRmB
-#: sw/inc/strings.hrc:1131
+#: sw/inc/strings.hrc:1132
msgctxt "STR_HORI_LEFT"
msgid "at the left"
msgstr "links"
#. JyHkM
-#: sw/inc/strings.hrc:1132
+#: sw/inc/strings.hrc:1133
msgctxt "STR_HORI_INSIDE"
msgid "inside"
msgstr "binnekant"
#. iXSZZ
-#: sw/inc/strings.hrc:1133
+#: sw/inc/strings.hrc:1134
msgctxt "STR_HORI_OUTSIDE"
msgid "outside"
msgstr "buitekant"
#. kDY9Z
-#: sw/inc/strings.hrc:1134
+#: sw/inc/strings.hrc:1135
msgctxt "STR_HORI_FULL"
msgid "Full width"
msgstr "Volle breedte"
#. Hvn8D
-#: sw/inc/strings.hrc:1135
+#: sw/inc/strings.hrc:1136
msgctxt "STR_COLUMNS"
msgid "Columns"
msgstr "Kolomme"
#. 6j6TA
-#: sw/inc/strings.hrc:1136
+#: sw/inc/strings.hrc:1137
msgctxt "STR_LINE_WIDTH"
msgid "Separator Width:"
msgstr "Wydte van skeisimbool:"
#. dvdDt
-#: sw/inc/strings.hrc:1137
+#: sw/inc/strings.hrc:1138
msgctxt "STR_MAX_FTN_HEIGHT"
msgid "Max. footnote area:"
msgstr "Maks. voetnoot-area:"
#. BWqF3
-#: sw/inc/strings.hrc:1138
+#: sw/inc/strings.hrc:1139
msgctxt "STR_EDIT_IN_READONLY"
msgid "Editable in read-only document"
msgstr "Redigeerbaar in leesalleen-dokument"
#. SCL5F
-#: sw/inc/strings.hrc:1139
+#: sw/inc/strings.hrc:1140
msgctxt "STR_LAYOUT_SPLIT"
msgid "Split"
msgstr "Verdeel"
#. CFmBk
-#: sw/inc/strings.hrc:1140
+#: sw/inc/strings.hrc:1141
msgctxt "STR_NUMRULE_ON"
msgid "List Style: (%LISTSTYLENAME)"
msgstr "Lys Styl: (%LISTSTYLENAME)"
#. HvZBm
-#: sw/inc/strings.hrc:1141
+#: sw/inc/strings.hrc:1142
msgctxt "STR_NUMRULE_OFF"
msgid "List Style: (None)"
msgstr "Lys Styl: (Geen)"
#. QDaFk
-#: sw/inc/strings.hrc:1142
+#: sw/inc/strings.hrc:1143
msgctxt "STR_CONNECT1"
msgid "linked to "
msgstr "geskakel met "
#. rWmT8
-#: sw/inc/strings.hrc:1143
+#: sw/inc/strings.hrc:1144
msgctxt "STR_CONNECT2"
msgid "and "
msgstr "en "
#. H2Kwq
-#: sw/inc/strings.hrc:1144
+#: sw/inc/strings.hrc:1145
msgctxt "STR_LINECOUNT"
msgid "Count lines"
msgstr "Tel reëls"
#. yjSiJ
-#: sw/inc/strings.hrc:1145
+#: sw/inc/strings.hrc:1146
msgctxt "STR_DONTLINECOUNT"
msgid "don't count lines"
msgstr "moenie reëls tel nie"
#. HE4BV
-#: sw/inc/strings.hrc:1146
+#: sw/inc/strings.hrc:1147
msgctxt "STR_LINCOUNT_START"
msgid "restart line count with: "
msgstr "herbegin reëltelling by: "
#. 7Q8qC
-#: sw/inc/strings.hrc:1147
+#: sw/inc/strings.hrc:1148
msgctxt "STR_LUMINANCE"
msgid "Brightness: "
msgstr "Helderheid: "
#. sNxPE
-#: sw/inc/strings.hrc:1148
+#: sw/inc/strings.hrc:1149
msgctxt "STR_CHANNELR"
msgid "Red: "
msgstr "Rooi: "
#. u73NC
-#: sw/inc/strings.hrc:1149
+#: sw/inc/strings.hrc:1150
msgctxt "STR_CHANNELG"
msgid "Green: "
msgstr "Groen: "
#. qQsPp
-#: sw/inc/strings.hrc:1150
+#: sw/inc/strings.hrc:1151
msgctxt "STR_CHANNELB"
msgid "Blue: "
msgstr "Blou: "
#. BS4nZ
-#: sw/inc/strings.hrc:1151
+#: sw/inc/strings.hrc:1152
msgctxt "STR_CONTRAST"
msgid "Contrast: "
msgstr "Kontras: "
#. avJBK
-#: sw/inc/strings.hrc:1152
+#: sw/inc/strings.hrc:1153
msgctxt "STR_GAMMA"
msgid "Gamma: "
msgstr "Gamma: "
#. HQCJZ
-#: sw/inc/strings.hrc:1153
+#: sw/inc/strings.hrc:1154
msgctxt "STR_TRANSPARENCY"
msgid "Transparency: "
msgstr "Deursigtigheid: "
#. 5jDK3
-#: sw/inc/strings.hrc:1154
+#: sw/inc/strings.hrc:1155
msgctxt "STR_INVERT"
msgid "Invert"
msgstr "Keer om"
#. DVSAx
-#: sw/inc/strings.hrc:1155
+#: sw/inc/strings.hrc:1156
msgctxt "STR_INVERT_NOT"
msgid "do not invert"
msgstr "moenie omkeer nie"
#. Z7tXB
-#: sw/inc/strings.hrc:1156
+#: sw/inc/strings.hrc:1157
msgctxt "STR_DRAWMODE"
msgid "Graphics mode: "
msgstr "Grafikamodus: "
#. RXuUF
-#: sw/inc/strings.hrc:1157
+#: sw/inc/strings.hrc:1158
msgctxt "STR_DRAWMODE_STD"
msgid "Standard"
msgstr "Standaard"
#. kbALJ
-#: sw/inc/strings.hrc:1158
+#: sw/inc/strings.hrc:1159
msgctxt "STR_DRAWMODE_GREY"
msgid "Grayscales"
msgstr "Grys skale"
#. eSHEj
-#: sw/inc/strings.hrc:1159
+#: sw/inc/strings.hrc:1160
msgctxt "STR_DRAWMODE_BLACKWHITE"
msgid "Black & White"
msgstr "Swart-en-wit"
#. tABTr
-#: sw/inc/strings.hrc:1160
+#: sw/inc/strings.hrc:1161
msgctxt "STR_DRAWMODE_WATERMARK"
msgid "Watermark"
msgstr "Watermerk"
#. 8SwC3
-#: sw/inc/strings.hrc:1161
+#: sw/inc/strings.hrc:1162
msgctxt "STR_ROTATION"
msgid "Rotation"
msgstr "Rotasie"
#. hWEeF
-#: sw/inc/strings.hrc:1162
+#: sw/inc/strings.hrc:1163
msgctxt "STR_GRID_NONE"
msgid "No grid"
msgstr "Geen rooster"
#. HEuEv
-#: sw/inc/strings.hrc:1163
+#: sw/inc/strings.hrc:1164
msgctxt "STR_GRID_LINES_ONLY"
msgid "Grid (lines only)"
msgstr "Rooster (slegs reëls)"
#. VFgMq
-#: sw/inc/strings.hrc:1164
+#: sw/inc/strings.hrc:1165
msgctxt "STR_GRID_LINES_CHARS"
msgid "Grid (lines and characters)"
msgstr "Rooster (reëls en karakters)"
#. VRJrB
-#: sw/inc/strings.hrc:1165
+#: sw/inc/strings.hrc:1166
msgctxt "STR_FOLLOW_TEXT_FLOW"
msgid "Follow text flow"
msgstr "Volg teksvloei"
#. Sb3Je
-#: sw/inc/strings.hrc:1166
+#: sw/inc/strings.hrc:1167
msgctxt "STR_DONT_FOLLOW_TEXT_FLOW"
msgid "Do not follow text flow"
msgstr "Moenie teksvloei volg nie"
#. yXFKP
-#: sw/inc/strings.hrc:1167
+#: sw/inc/strings.hrc:1168
msgctxt "STR_CONNECT_BORDER_ON"
msgid "Merge borders"
msgstr "Voeg rande saam"
#. vwHbS
-#: sw/inc/strings.hrc:1168
+#: sw/inc/strings.hrc:1169
msgctxt "STR_CONNECT_BORDER_OFF"
msgid "Do not merge borders"
msgstr "Moenie rande saamvoeg nie"
#. 3874B
-#: sw/inc/strings.hrc:1170
+#: sw/inc/strings.hrc:1171
msgctxt "ST_TBL"
msgid "Table"
msgstr "Tabel"
#. T9JAj
-#: sw/inc/strings.hrc:1171
+#: sw/inc/strings.hrc:1172
msgctxt "ST_FRM"
msgid "Frame"
msgstr "Raam"
#. Fsnm6
-#: sw/inc/strings.hrc:1172
+#: sw/inc/strings.hrc:1173
msgctxt "ST_PGE"
msgid "Page"
msgstr "Bladsy"
#. pKFCz
-#: sw/inc/strings.hrc:1173
+#: sw/inc/strings.hrc:1174
msgctxt "ST_DRW"
msgid "Drawing"
msgstr "Tekening"
#. amiSY
-#: sw/inc/strings.hrc:1174
+#: sw/inc/strings.hrc:1175
msgctxt "ST_CTRL"
msgid "Control"
msgstr "Beheer"
#. GEw9u
-#: sw/inc/strings.hrc:1175
+#: sw/inc/strings.hrc:1176
msgctxt "ST_REG"
msgid "Section"
msgstr "Afdeling"
#. bEiyL
-#: sw/inc/strings.hrc:1176
+#: sw/inc/strings.hrc:1177
msgctxt "ST_BKM"
msgid "Bookmark"
msgstr "Boekmerk"
#. 6gXCo
-#: sw/inc/strings.hrc:1177
+#: sw/inc/strings.hrc:1178
msgctxt "ST_GRF"
msgid "Graphics"
msgstr "Grafika"
#. d5eSc
-#: sw/inc/strings.hrc:1178
+#: sw/inc/strings.hrc:1179
msgctxt "ST_OLE"
msgid "OLE object"
msgstr "OLE-objek"
#. h5QQ8
-#: sw/inc/strings.hrc:1179
+#: sw/inc/strings.hrc:1180
msgctxt "ST_OUTL"
msgid "Headings"
msgstr "Opskrifte"
#. Cbktp
-#: sw/inc/strings.hrc:1180
+#: sw/inc/strings.hrc:1181
msgctxt "ST_SEL"
msgid "Selection"
msgstr "Seleksie"
#. nquvS
-#: sw/inc/strings.hrc:1181
+#: sw/inc/strings.hrc:1182
msgctxt "ST_FTN"
msgid "Footnote"
msgstr "Voetnoot"
#. GpAUo
-#: sw/inc/strings.hrc:1182
+#: sw/inc/strings.hrc:1183
msgctxt "ST_MARK"
msgid "Reminder"
msgstr "Herinnering"
#. nDFKa
-#: sw/inc/strings.hrc:1183
+#: sw/inc/strings.hrc:1184
msgctxt "ST_POSTIT"
msgid "Comment"
msgstr "Opmerking"
#. qpbDE
-#: sw/inc/strings.hrc:1184
+#: sw/inc/strings.hrc:1185
msgctxt "ST_SRCH_REP"
msgid "Repeat search"
msgstr "Herhaal soektog"
#. ipxfH
-#: sw/inc/strings.hrc:1185
+#: sw/inc/strings.hrc:1186
msgctxt "ST_INDEX_ENTRY"
msgid "Index entry"
msgstr "Indeksinskrywing"
#. sfmff
-#: sw/inc/strings.hrc:1186
+#: sw/inc/strings.hrc:1187
msgctxt "ST_TABLE_FORMULA"
msgid "Table formula"
msgstr "Tabelformule"
#. DtkuT
-#: sw/inc/strings.hrc:1187
+#: sw/inc/strings.hrc:1188
msgctxt "ST_TABLE_FORMULA_ERROR"
msgid "Wrong table formula"
msgstr "Verkeerde tabelformule"
#. A6Vgk
-#: sw/inc/strings.hrc:1188
+#: sw/inc/strings.hrc:1189
msgctxt "ST_RECENCY"
msgid "Recency"
msgstr "Onlangsheid"
#. pCp7u
-#: sw/inc/strings.hrc:1189
+#: sw/inc/strings.hrc:1190
msgctxt "ST_FIELD"
msgid "Field"
msgstr "Veld"
#. LYuHA
-#: sw/inc/strings.hrc:1190
+#: sw/inc/strings.hrc:1191
msgctxt "ST_FIELD_BYTYPE"
msgid "Field by type"
msgstr "Veld volgens Tipe"
#. ECFxw
#. Strings for the quickhelp of the View-PgUp/Down-Buttons
-#: sw/inc/strings.hrc:1192
+#: sw/inc/strings.hrc:1193
msgctxt "STR_IMGBTN_TBL_DOWN"
msgid "Next table"
msgstr "Volgende tabel"
#. yhnpi
-#: sw/inc/strings.hrc:1193
+#: sw/inc/strings.hrc:1194
msgctxt "STR_IMGBTN_FRM_DOWN"
msgid "Next frame"
msgstr "Volgende raam"
#. M4BCA
-#: sw/inc/strings.hrc:1194
+#: sw/inc/strings.hrc:1195
msgctxt "STR_IMGBTN_PGE_DOWN"
msgid "Next page"
msgstr "Volgende bladsy"
#. UWeq4
-#: sw/inc/strings.hrc:1195
+#: sw/inc/strings.hrc:1196
msgctxt "STR_IMGBTN_DRW_DOWN"
msgid "Next drawing"
msgstr "Volgende tekening"
#. ZVCrD
-#: sw/inc/strings.hrc:1196
+#: sw/inc/strings.hrc:1197
msgctxt "STR_IMGBTN_CTRL_DOWN"
msgid "Next control"
msgstr "Volgende kontrole"
#. NGAqr
-#: sw/inc/strings.hrc:1197
+#: sw/inc/strings.hrc:1198
msgctxt "STR_IMGBTN_REG_DOWN"
msgid "Next section"
msgstr "Volgende afdeling"
#. Mwcvm
-#: sw/inc/strings.hrc:1198
+#: sw/inc/strings.hrc:1199
msgctxt "STR_IMGBTN_BKM_DOWN"
msgid "Next bookmark"
msgstr "Volgende boekmerk"
#. xbxDs
-#: sw/inc/strings.hrc:1199
+#: sw/inc/strings.hrc:1200
msgctxt "STR_IMGBTN_GRF_DOWN"
msgid "Next graphic"
msgstr "Volgende grafika"
#. 4ovAF
-#: sw/inc/strings.hrc:1200
+#: sw/inc/strings.hrc:1201
msgctxt "STR_IMGBTN_OLE_DOWN"
msgid "Next OLE object"
msgstr "Volgende OLE-objek"
#. YzK6w
-#: sw/inc/strings.hrc:1201
+#: sw/inc/strings.hrc:1202
msgctxt "STR_IMGBTN_OUTL_DOWN"
msgid "Next heading"
msgstr "Volgende opskrif"
#. skdRc
-#: sw/inc/strings.hrc:1202
+#: sw/inc/strings.hrc:1203
msgctxt "STR_IMGBTN_SEL_DOWN"
msgid "Next selection"
msgstr "Volgende seleksie"
#. RBFga
-#: sw/inc/strings.hrc:1203
+#: sw/inc/strings.hrc:1204
msgctxt "STR_IMGBTN_FTN_DOWN"
msgid "Next footnote"
msgstr "Volgende voetnoot"
#. GNLrx
-#: sw/inc/strings.hrc:1204
+#: sw/inc/strings.hrc:1205
msgctxt "STR_IMGBTN_MARK_DOWN"
msgid "Next Reminder"
msgstr "Volgende herinnering"
#. mFCfp
-#: sw/inc/strings.hrc:1205
+#: sw/inc/strings.hrc:1206
msgctxt "STR_IMGBTN_POSTIT_DOWN"
msgid "Next Comment"
msgstr "Volgende opmerking"
#. gbnwp
-#: sw/inc/strings.hrc:1206
+#: sw/inc/strings.hrc:1207
msgctxt "STR_IMGBTN_SRCH_REP_DOWN"
msgid "Continue search forward"
msgstr "Soek verder vorentoe"
#. TXYkA
-#: sw/inc/strings.hrc:1207
+#: sw/inc/strings.hrc:1208
msgctxt "STR_IMGBTN_INDEX_ENTRY_DOWN"
msgid "Next index entry"
msgstr "Volgende indeksinskrywing"
#. EyvbV
-#: sw/inc/strings.hrc:1208
+#: sw/inc/strings.hrc:1209
msgctxt "STR_IMGBTN_TBL_UP"
msgid "Previous table"
msgstr "Vorige tabel"
#. cC5vJ
-#: sw/inc/strings.hrc:1209
+#: sw/inc/strings.hrc:1210
msgctxt "STR_IMGBTN_FRM_UP"
msgid "Previous frame"
msgstr "Vorige raam"
#. eQPFD
-#: sw/inc/strings.hrc:1210
+#: sw/inc/strings.hrc:1211
msgctxt "STR_IMGBTN_PGE_UP"
msgid "Previous page"
msgstr "Vorige bladsy"
#. p5jbU
-#: sw/inc/strings.hrc:1211
+#: sw/inc/strings.hrc:1212
msgctxt "STR_IMGBTN_DRW_UP"
msgid "Previous drawing"
msgstr "Vorige tekening"
#. 2WMmZ
-#: sw/inc/strings.hrc:1212
+#: sw/inc/strings.hrc:1213
msgctxt "STR_IMGBTN_CTRL_UP"
msgid "Previous control"
msgstr "Vorige kontrole"
#. 6uGDP
-#: sw/inc/strings.hrc:1213
+#: sw/inc/strings.hrc:1214
msgctxt "STR_IMGBTN_REG_UP"
msgid "Previous section"
msgstr "Vorige afdeling"
#. YYCtk
-#: sw/inc/strings.hrc:1214
+#: sw/inc/strings.hrc:1215
msgctxt "STR_IMGBTN_BKM_UP"
msgid "Previous bookmark"
msgstr "Vorige boekmerk"
#. nFLdX
-#: sw/inc/strings.hrc:1215
+#: sw/inc/strings.hrc:1216
msgctxt "STR_IMGBTN_GRF_UP"
msgid "Previous graphic"
msgstr "Vorige grafika"
#. VuxvB
-#: sw/inc/strings.hrc:1216
+#: sw/inc/strings.hrc:1217
msgctxt "STR_IMGBTN_OLE_UP"
msgid "Previous OLE object"
msgstr "Vorige OLE-objek"
#. QSuct
-#: sw/inc/strings.hrc:1217
+#: sw/inc/strings.hrc:1218
msgctxt "STR_IMGBTN_OUTL_UP"
msgid "Previous heading"
msgstr "Vorige opskrif"
#. CzLBr
-#: sw/inc/strings.hrc:1218
+#: sw/inc/strings.hrc:1219
msgctxt "STR_IMGBTN_SEL_UP"
msgid "Previous selection"
msgstr "Vorige seleksie"
#. B7PoL
-#: sw/inc/strings.hrc:1219
+#: sw/inc/strings.hrc:1220
msgctxt "STR_IMGBTN_FTN_UP"
msgid "Previous footnote"
msgstr "Vorige voetnoot"
#. AgtLD
-#: sw/inc/strings.hrc:1220
+#: sw/inc/strings.hrc:1221
msgctxt "STR_IMGBTN_MARK_UP"
msgid "Previous Reminder"
msgstr "Vorige herinnering"
#. GJQ6F
-#: sw/inc/strings.hrc:1221
+#: sw/inc/strings.hrc:1222
msgctxt "STR_IMGBTN_POSTIT_UP"
msgid "Previous Comment"
msgstr "Vorige opmerking"
#. GWnfD
-#: sw/inc/strings.hrc:1222
+#: sw/inc/strings.hrc:1223
msgctxt "STR_IMGBTN_SRCH_REP_UP"
msgid "Continue search backwards"
msgstr "Soek verder agtertoe"
#. uDtcG
-#: sw/inc/strings.hrc:1223
+#: sw/inc/strings.hrc:1224
msgctxt "STR_IMGBTN_INDEX_ENTRY_UP"
msgid "Previous index entry"
msgstr "Vorige indeksinskrywing"
#. VR6DX
-#: sw/inc/strings.hrc:1224
+#: sw/inc/strings.hrc:1225
msgctxt "STR_IMGBTN_TBLFML_UP"
msgid "Previous table formula"
msgstr "Vorige tabelformule"
#. GqESF
-#: sw/inc/strings.hrc:1225
+#: sw/inc/strings.hrc:1226
msgctxt "STR_IMGBTN_TBLFML_DOWN"
msgid "Next table formula"
msgstr "Volgende tabelformule"
#. gBgxo
-#: sw/inc/strings.hrc:1226
+#: sw/inc/strings.hrc:1227
msgctxt "STR_IMGBTN_TBLFML_ERR_UP"
msgid "Previous faulty table formula"
msgstr "Vorige foutiewe tabelformule"
#. UAon9
-#: sw/inc/strings.hrc:1227
+#: sw/inc/strings.hrc:1228
msgctxt "STR_IMGBTN_TBLFML_ERR_DOWN"
msgid "Next faulty table formula"
msgstr "Volgende foutiewe tabelformule"
#. L2Apv
-#: sw/inc/strings.hrc:1228
+#: sw/inc/strings.hrc:1229
msgctxt "STR_IMGBTN_RECENCY_UP"
msgid "Go back"
msgstr "Gaan terug"
#. jCsGs
-#: sw/inc/strings.hrc:1229
+#: sw/inc/strings.hrc:1230
msgctxt "STR_IMGBTN_RECENCY_DOWN"
msgid "Go forward"
msgstr "Gaan vooruit"
#. o3BBz
-#: sw/inc/strings.hrc:1230
+#: sw/inc/strings.hrc:1231
msgctxt "STR_IMGBTN_FIELD_UP"
msgid "Previous field"
msgstr "Vorige veld"
#. bQ33Z
-#: sw/inc/strings.hrc:1231
+#: sw/inc/strings.hrc:1232
msgctxt "STR_IMGBTN_FIELD_DOWN"
msgid "Next field"
msgstr "Volgende Veld"
#. bhUaK
-#: sw/inc/strings.hrc:1232
+#: sw/inc/strings.hrc:1233
msgctxt "STR_IMGBTN_FIELD_BYTYPE_UP"
msgid "Previous '%FIELDTYPE' field"
msgstr "Vorige veld '%FIELDTYPE'"
#. A8HWi
-#: sw/inc/strings.hrc:1233
+#: sw/inc/strings.hrc:1234
msgctxt "STR_IMGBTN_FIELD_BYTYPE_DOWN"
msgid "Next '%FIELDTYPE' field"
msgstr "Volgende veld '%FIELDTYPE'"
#. hSYa3
-#: sw/inc/strings.hrc:1235
+#: sw/inc/strings.hrc:1236
msgctxt "STR_REDLINE_INSERT"
msgid "Inserted"
msgstr "Ingevoeg"
#. LnFkq
-#: sw/inc/strings.hrc:1236
+#: sw/inc/strings.hrc:1237
msgctxt "STR_REDLINE_DELETE"
msgid "Deleted"
msgstr "Geskrap"
#. cTNEn
-#: sw/inc/strings.hrc:1237
+#: sw/inc/strings.hrc:1238
msgctxt "STR_REDLINE_FORMAT"
msgid "Formatted"
msgstr "Geformateer"
#. YWr7C
-#: sw/inc/strings.hrc:1238
+#: sw/inc/strings.hrc:1239
msgctxt "STR_REDLINE_TABLE"
msgid "Table changed"
msgstr "Tabel het verander"
#. 6xVDN
-#: sw/inc/strings.hrc:1239
+#: sw/inc/strings.hrc:1240
msgctxt "STR_REDLINE_FMTCOLL"
msgid "Applied Paragraph Styles"
msgstr "Toegepaste paragraafstyle"
#. 32AND
-#: sw/inc/strings.hrc:1240
+#: sw/inc/strings.hrc:1241
msgctxt "STR_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr "Paragraafformatering het verander"
#. wLDkj
-#: sw/inc/strings.hrc:1241
+#: sw/inc/strings.hrc:1242
msgctxt "STR_REDLINE_TABLE_ROW_INSERT"
msgid "Row Inserted"
msgstr "Ry ingevoeg"
#. Eb5Gb
-#: sw/inc/strings.hrc:1242
+#: sw/inc/strings.hrc:1243
msgctxt "STR_REDLINE_TABLE_ROW_DELETE"
msgid "Row Deleted"
msgstr "Ry geskrap"
#. i5ZJt
-#: sw/inc/strings.hrc:1243
+#: sw/inc/strings.hrc:1244
msgctxt "STR_REDLINE_TABLE_CELL_INSERT"
msgid "Cell Inserted"
msgstr "Sel ingevoeg"
#. 4gE3z
-#: sw/inc/strings.hrc:1244
+#: sw/inc/strings.hrc:1245
msgctxt "STR_REDLINE_TABLE_CELL_DELETE"
msgid "Cell Deleted"
msgstr "Ry geskrap"
#. DRCyp
-#: sw/inc/strings.hrc:1245
+#: sw/inc/strings.hrc:1246
msgctxt "STR_ENDNOTE"
msgid "Endnote: "
msgstr "Eindnoot: "
#. qpW2q
-#: sw/inc/strings.hrc:1246
+#: sw/inc/strings.hrc:1247
msgctxt "STR_FTNNOTE"
msgid "Footnote: "
msgstr "Voetnoot: "
#. 3RFUd
-#: sw/inc/strings.hrc:1247
+#: sw/inc/strings.hrc:1248
msgctxt "STR_SMARTTAG_CLICK"
msgid "%s-click to open Smart Tag menu"
msgstr "[%s+Kliek], om die 'Smart Tag' kieslys oop te maak"
#. QCD36
-#: sw/inc/strings.hrc:1248
+#: sw/inc/strings.hrc:1249
msgctxt "STR_HEADER_TITLE"
msgid "Header (%1)"
msgstr "Kop (%1)"
#. AYjgB
-#: sw/inc/strings.hrc:1249
+#: sw/inc/strings.hrc:1250
msgctxt "STR_FIRST_HEADER_TITLE"
msgid "First Page Header (%1)"
msgstr "Eerste bladsykop (%1)"
#. qVX2k
-#: sw/inc/strings.hrc:1250
+#: sw/inc/strings.hrc:1251
msgctxt "STR_LEFT_HEADER_TITLE"
msgid "Left Page Header (%1)"
msgstr "Linkerbladsykop (%1)"
#. DSg3b
-#: sw/inc/strings.hrc:1251
+#: sw/inc/strings.hrc:1252
msgctxt "STR_RIGHT_HEADER_TITLE"
msgid "Right Page Header (%1)"
msgstr "Regterbladsykop (%1)"
#. 6GzuM
-#: sw/inc/strings.hrc:1252
+#: sw/inc/strings.hrc:1253
msgctxt "STR_FOOTER_TITLE"
msgid "Footer (%1)"
msgstr "Voet (%1)"
#. FDVNH
-#: sw/inc/strings.hrc:1253
+#: sw/inc/strings.hrc:1254
msgctxt "STR_FIRST_FOOTER_TITLE"
msgid "First Page Footer (%1)"
msgstr "Eerste bladsyvoet (%1)"
#. SL7r3
-#: sw/inc/strings.hrc:1254
+#: sw/inc/strings.hrc:1255
msgctxt "STR_LEFT_FOOTER_TITLE"
msgid "Left Page Footer (%1)"
msgstr "Linkerbladsyvoet (%1)"
#. CBvih
-#: sw/inc/strings.hrc:1255
+#: sw/inc/strings.hrc:1256
msgctxt "STR_RIGHT_FOOTER_TITLE"
msgid "Right Page Footer (%1)"
msgstr "Regterbladsyvoet (%1)"
#. s8v3h
-#: sw/inc/strings.hrc:1256
+#: sw/inc/strings.hrc:1257
msgctxt "STR_DELETE_HEADER"
msgid "Delete Header..."
msgstr "Skrap kop..."
#. wL3Fr
-#: sw/inc/strings.hrc:1257
+#: sw/inc/strings.hrc:1258
msgctxt "STR_FORMAT_HEADER"
msgid "Format Header..."
msgstr "Formateer kop..."
#. DrAUe
-#: sw/inc/strings.hrc:1258
+#: sw/inc/strings.hrc:1259
msgctxt "STR_DELETE_FOOTER"
msgid "Delete Footer..."
msgstr "Skrap voet..."
#. 9Xgou
-#: sw/inc/strings.hrc:1259
+#: sw/inc/strings.hrc:1260
msgctxt "STR_FORMAT_FOOTER"
msgid "Format Footer..."
msgstr "Formateer voet..."
#. ApT5B
-#: sw/inc/strings.hrc:1261
+#: sw/inc/strings.hrc:1262
msgctxt "STR_UNFLOAT_TABLE"
msgid "Un-float Table"
msgstr "Onbeweeglike Tabel"
#. wVAZJ
-#: sw/inc/strings.hrc:1263
+#: sw/inc/strings.hrc:1264
msgctxt "STR_PAGE_BREAK_BUTTON"
msgid "Edit page break"
msgstr "Redigeer bladsybreuk"
#. uvDKE
-#: sw/inc/strings.hrc:1265
+#: sw/inc/strings.hrc:1266
msgctxt "STR_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "Beeldlêer kan nie oopgemaak word nie"
#. iJuAv
-#: sw/inc/strings.hrc:1266
+#: sw/inc/strings.hrc:1267
msgctxt "STR_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr "Beeldlêer kan nie gelees word nie"
#. Bwwho
-#: sw/inc/strings.hrc:1267
+#: sw/inc/strings.hrc:1268
msgctxt "STR_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr "Onbekende beeldformaat"
#. bfog5
-#: sw/inc/strings.hrc:1268
+#: sw/inc/strings.hrc:1269
msgctxt "STR_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr "Hierdie beeldlêerweergawe word nie ondersteun nie"
#. xy4Vm
-#: sw/inc/strings.hrc:1269
+#: sw/inc/strings.hrc:1270
msgctxt "STR_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr "Beeldfilter nie gevind nie"
#. tEqyq
-#: sw/inc/strings.hrc:1270
+#: sw/inc/strings.hrc:1271
msgctxt "STR_GRFILTER_TOOBIG"
msgid "Not enough memory to insert the image."
msgstr "Nie genoeg geheue om die beeld in te voeg nie."
#. 5ihue
-#: sw/inc/strings.hrc:1271
+#: sw/inc/strings.hrc:1272
msgctxt "STR_INSERT_GRAPHIC"
msgid "Insert Image"
msgstr "Voeg beeld in"
#. GWzLN
-#: sw/inc/strings.hrc:1272
+#: sw/inc/strings.hrc:1273
msgctxt "STR_REDLINE_COMMENT"
msgid "Comment: "
msgstr "Opmerking: "
#. CoJc8
-#: sw/inc/strings.hrc:1273
+#: sw/inc/strings.hrc:1274
msgctxt "STR_REDLINE_INSERTED"
msgid "Insertion"
msgstr "Invoeging"
#. dfMEF
-#: sw/inc/strings.hrc:1274
+#: sw/inc/strings.hrc:1275
msgctxt "STR_REDLINE_DELETED"
msgid "Deletion"
msgstr "Skrapping"
#. NytQQ
-#: sw/inc/strings.hrc:1275
+#: sw/inc/strings.hrc:1276
msgctxt "STR_REDLINE_AUTOFMT"
msgid "AutoCorrect"
msgstr "Outokorrigeer"
#. YRAQL
-#: sw/inc/strings.hrc:1276
+#: sw/inc/strings.hrc:1277
msgctxt "STR_REDLINE_FORMATTED"
msgid "Formats"
msgstr "Formate"
#. ELCVU
-#: sw/inc/strings.hrc:1277
+#: sw/inc/strings.hrc:1278
msgctxt "STR_REDLINE_TABLECHG"
msgid "Table Changes"
msgstr "Tabelveranderinge"
#. PzfQF
-#: sw/inc/strings.hrc:1278
+#: sw/inc/strings.hrc:1279
msgctxt "STR_REDLINE_FMTCOLLSET"
msgid "Applied Paragraph Styles"
msgstr "Toegepaste paragraafstyle"
#. sgEbW
-#: sw/inc/strings.hrc:1279
+#: sw/inc/strings.hrc:1280
msgctxt "STR_PAGE"
msgid "Page "
msgstr "Bladsy "
#. 3DpEx
-#: sw/inc/strings.hrc:1280
+#: sw/inc/strings.hrc:1281
msgctxt "STR_PAGE_COUNT"
msgid "Page %1 of %2"
msgstr "Bladsy %1 van %2"
#. HSbzS
-#: sw/inc/strings.hrc:1281
+#: sw/inc/strings.hrc:1282
msgctxt "STR_PAGE_COUNT_CUSTOM"
msgid "Page %1 of %2 (Page %3)"
msgstr "Bladsy %1 van %2 (bladsy %3)"
#. a7tDc
-#: sw/inc/strings.hrc:1282
+#: sw/inc/strings.hrc:1283
msgctxt "STR_PAGE_COUNT_PRINTED"
msgid "Page %1 of %2 (Page %3 of %4 to print)"
msgstr "Bladsy %1 van %2 (Bladsy %3 van %4 vir drukwerk)"
#. KjML8
#. Strings for gallery/background
-#: sw/inc/strings.hrc:1284
+#: sw/inc/strings.hrc:1285
msgctxt "STR_SWBG_PARAGRAPH"
msgid "Paragraph"
msgstr "Paragraaf"
#. aAtmp
-#: sw/inc/strings.hrc:1285
+#: sw/inc/strings.hrc:1286
msgctxt "STR_SWBG_GRAPHIC"
msgid "Image"
msgstr "Beeld"
#. UBDMK
-#: sw/inc/strings.hrc:1286
+#: sw/inc/strings.hrc:1287
msgctxt "STR_SWBG_OLE"
msgid "OLE object"
msgstr "OLE-objek"
#. xEWbo
-#: sw/inc/strings.hrc:1287
+#: sw/inc/strings.hrc:1288
msgctxt "STR_SWBG_FRAME"
msgid "Frame"
msgstr "Raam"
#. hfJns
-#: sw/inc/strings.hrc:1288
+#: sw/inc/strings.hrc:1289
msgctxt "STR_SWBG_TABLE"
msgid "Table"
msgstr "Tabel"
#. GRqNY
-#: sw/inc/strings.hrc:1289
+#: sw/inc/strings.hrc:1290
msgctxt "STR_SWBG_TABLE_ROW"
msgid "Table row"
msgstr "Tabelry"
#. CDQY4
-#: sw/inc/strings.hrc:1290
+#: sw/inc/strings.hrc:1291
msgctxt "STR_SWBG_TABLE_CELL"
msgid "Table cell"
msgstr "Tabelsel"
#. 2Db9T
-#: sw/inc/strings.hrc:1291
+#: sw/inc/strings.hrc:1292
msgctxt "STR_SWBG_PAGE"
msgid "Page"
msgstr "Bladsy"
#. 63FuG
-#: sw/inc/strings.hrc:1292
+#: sw/inc/strings.hrc:1293
msgctxt "STR_SWBG_HEADER"
msgid "Header"
msgstr "Kop"
#. aDuAY
-#: sw/inc/strings.hrc:1293
+#: sw/inc/strings.hrc:1294
msgctxt "STR_SWBG_FOOTER"
msgid "Footer"
msgstr "Voet"
#. uAp9i
#. End: strings for gallery/background
-#: sw/inc/strings.hrc:1296
+#: sw/inc/strings.hrc:1297
msgctxt "STR_WRITER_WEBDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION HTML Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION-HTML-dokument"
#. y2GBv
-#: sw/inc/strings.hrc:1298
+#: sw/inc/strings.hrc:1299
msgctxt "STR_TITLE"
msgid "Title"
msgstr "Titel"
#. AipGR
-#: sw/inc/strings.hrc:1299
+#: sw/inc/strings.hrc:1300
msgctxt "STR_ALPHA"
msgid "Separator"
msgstr "Skeier"
#. CoSEf
-#: sw/inc/strings.hrc:1300
+#: sw/inc/strings.hrc:1301
msgctxt "STR_LEVEL"
msgid "Level "
msgstr "Vlak "
#. JdTF4
-#: sw/inc/strings.hrc:1301
+#: sw/inc/strings.hrc:1302
msgctxt "STR_FILE_NOT_FOUND"
msgid "The file, \"%1\" in the \"%2\" path could not be found."
msgstr "Die lêer “%1” in die “%2” pad kon nie gevind word nie."
#. zRWDZ
-#: sw/inc/strings.hrc:1302
+#: sw/inc/strings.hrc:1303
msgctxt "STR_USER_DEFINED_INDEX"
msgid "User-Defined Index"
msgstr "Gebruikergedefinieerde indeks"
#. t5uWs
-#: sw/inc/strings.hrc:1303
+#: sw/inc/strings.hrc:1304
msgctxt "STR_NOSORTKEY"
msgid "<None>"
msgstr "<geen>"
#. vSSnJ
-#: sw/inc/strings.hrc:1304
+#: sw/inc/strings.hrc:1305
msgctxt "STR_NO_CHAR_STYLE"
msgid "<None>"
msgstr "<geen>"
#. NSx98
-#: sw/inc/strings.hrc:1305
+#: sw/inc/strings.hrc:1306
msgctxt "STR_DELIM"
msgid "S"
msgstr "S"
#. hK8CX
-#: sw/inc/strings.hrc:1306
+#: sw/inc/strings.hrc:1307
msgctxt "STR_TOKEN_ENTRY_NO"
msgid "E#"
msgstr "H#"
#. 8EgTx
-#: sw/inc/strings.hrc:1307
+#: sw/inc/strings.hrc:1308
msgctxt "STR_TOKEN_ENTRY"
msgid "E"
msgstr "E"
#. gxt8B
-#: sw/inc/strings.hrc:1308
+#: sw/inc/strings.hrc:1309
msgctxt "STR_TOKEN_TAB_STOP"
msgid "T"
msgstr "T"
#. pGAb4
-#: sw/inc/strings.hrc:1309
+#: sw/inc/strings.hrc:1310
msgctxt "STR_TOKEN_PAGE_NUMS"
msgid "#"
msgstr "#"
#. teDm3
-#: sw/inc/strings.hrc:1310
+#: sw/inc/strings.hrc:1311
msgctxt "STR_TOKEN_CHAPTER_INFO"
msgid "CI"
msgstr "HI"
#. XWaFn
-#: sw/inc/strings.hrc:1311
+#: sw/inc/strings.hrc:1312
msgctxt "STR_TOKEN_LINK_START"
msgid "LS"
msgstr "BH"
#. xp6D6
-#: sw/inc/strings.hrc:1312
+#: sw/inc/strings.hrc:1313
msgctxt "STR_TOKEN_LINK_END"
msgid "LE"
msgstr "LE"
#. AogDK
-#: sw/inc/strings.hrc:1313
+#: sw/inc/strings.hrc:1314
msgctxt "STR_TOKEN_AUTHORITY"
msgid "A"
msgstr "A"
#. 5A4jw
-#: sw/inc/strings.hrc:1314
+#: sw/inc/strings.hrc:1315
msgctxt "STR_TOKEN_HELP_ENTRY_NO"
msgid "Chapter number"
msgstr "Hoofstuknommer"
#. FH365
-#: sw/inc/strings.hrc:1315
+#: sw/inc/strings.hrc:1316
msgctxt "STR_TOKEN_HELP_ENTRY"
msgid "Entry"
msgstr "Inskrywing"
#. xZjtZ
-#: sw/inc/strings.hrc:1316
+#: sw/inc/strings.hrc:1317
msgctxt "STR_TOKEN_HELP_TAB_STOP"
msgid "Tab stop"
msgstr "Inkeep"
#. aXW8y
-#: sw/inc/strings.hrc:1317
+#: sw/inc/strings.hrc:1318
msgctxt "STR_TOKEN_HELP_TEXT"
msgid "Text"
msgstr "Teks"
#. MCUd2
-#: sw/inc/strings.hrc:1318
+#: sw/inc/strings.hrc:1319
msgctxt "STR_TOKEN_HELP_PAGE_NUMS"
msgid "Page number"
msgstr "Bladsynommer"
#. pXqw3
-#: sw/inc/strings.hrc:1319
+#: sw/inc/strings.hrc:1320
msgctxt "STR_TOKEN_HELP_CHAPTER_INFO"
msgid "Chapter info"
msgstr "Hoofstukinligting"
#. DRBSD
-#: sw/inc/strings.hrc:1320
+#: sw/inc/strings.hrc:1321
msgctxt "STR_TOKEN_HELP_LINK_START"
msgid "Hyperlink start"
msgstr "Begin van hiperskakel"
#. Ytn5g
-#: sw/inc/strings.hrc:1321
+#: sw/inc/strings.hrc:1322
msgctxt "STR_TOKEN_HELP_LINK_END"
msgid "Hyperlink end"
msgstr "Einde van hiperskakel"
#. hRo3J
-#: sw/inc/strings.hrc:1322
+#: sw/inc/strings.hrc:1323
msgctxt "STR_TOKEN_HELP_AUTHORITY"
msgid "Bibliography entry: "
msgstr "Bibliografie-inskrywing: "
#. ZKG5v
-#: sw/inc/strings.hrc:1323
+#: sw/inc/strings.hrc:1324
msgctxt "STR_CHARSTYLE"
msgid "Character Style: "
msgstr "Karakterstyl: "
#. d9BES
-#: sw/inc/strings.hrc:1324
+#: sw/inc/strings.hrc:1325
msgctxt "STR_STRUCTURE"
msgid "Structure text"
msgstr "Teks Struktuur"
#. kwoGP
-#: sw/inc/strings.hrc:1325
+#: sw/inc/strings.hrc:1326
msgctxt "STR_ADDITIONAL_ACCNAME_STRING1"
msgid "Press Ctrl+Alt+A to move focus for more operations"
msgstr "Druk Ctrl+Alt+A om fokus te skuif vir meer bewerkings"
#. Avm9y
-#: sw/inc/strings.hrc:1326
+#: sw/inc/strings.hrc:1327
msgctxt "STR_ADDITIONAL_ACCNAME_STRING2"
msgid "Press left or right arrow to choose the structure controls"
msgstr "Druk linker- of regterpyltjie om die struktuurkontroles te kies"
#. 59eRi
-#: sw/inc/strings.hrc:1327
+#: sw/inc/strings.hrc:1328
msgctxt "STR_ADDITIONAL_ACCNAME_STRING3"
msgid "Press Ctrl+Alt+B to move focus back to the current structure control"
msgstr "Druk Ctrl+Alt+B om fokus terug te skuif na die huidige struktuurkontrole"
#. 8AagG
-#: sw/inc/strings.hrc:1328
+#: sw/inc/strings.hrc:1329
msgctxt "STR_AUTOMARK_TYPE"
msgid "Selection file for the alphabetical index (*.sdi)"
msgstr "Keuringslêer vir indeks (* .sdi)"
@@ -9485,259 +9491,259 @@ msgstr "Keuringslêer vir indeks (* .sdi)"
#. -----------------------------------------------------------------------
#. Description: character alignment for frmsh.cxx - context menu
#. -----------------------------------------------------------------------
-#: sw/inc/strings.hrc:1333
+#: sw/inc/strings.hrc:1334
msgctxt "STR_FRMUI_TOP_BASE"
msgid "Base line at ~top"
msgstr "Basislyn ~bo"
#. 5GiEA
-#: sw/inc/strings.hrc:1334
+#: sw/inc/strings.hrc:1335
msgctxt "STR_FRMUI_BOTTOM_BASE"
msgid "~Base line at bottom"
msgstr "~Basislyn onder"
#. sdyVF
-#: sw/inc/strings.hrc:1335
+#: sw/inc/strings.hrc:1336
msgctxt "STR_FRMUI_CENTER_BASE"
msgid "Base line ~centered"
msgstr "~Gesentreerde basislyn"
#. NAXyZ
-#: sw/inc/strings.hrc:1336
+#: sw/inc/strings.hrc:1337
msgctxt "STR_FRMUI_OLE_INSERT"
msgid "Insert object"
msgstr "Voeg objek in"
#. 5C6Rc
-#: sw/inc/strings.hrc:1337
+#: sw/inc/strings.hrc:1338
msgctxt "STR_FRMUI_OLE_EDIT"
msgid "Edit object"
msgstr "Redigeer objek"
#. 3QFYB
-#: sw/inc/strings.hrc:1338
+#: sw/inc/strings.hrc:1339
msgctxt "STR_FRMUI_COLL_HEADER"
msgid " (Template: "
msgstr " (Sjabloon: "
#. oUhnK
-#: sw/inc/strings.hrc:1339
+#: sw/inc/strings.hrc:1340
msgctxt "STR_FRMUI_BORDER"
msgid "Borders"
msgstr "Rande"
#. T2SH2
-#: sw/inc/strings.hrc:1340
+#: sw/inc/strings.hrc:1341
msgctxt "STR_FRMUI_PATTERN"
msgid "Background"
msgstr "Agtergrond"
#. K6Yvs
-#: sw/inc/strings.hrc:1342
+#: sw/inc/strings.hrc:1343
msgctxt "STR_TEXTCOLL_HEADER"
msgid "(Paragraph Style: "
msgstr "(Paragraafstyl: "
#. Fsanh
-#: sw/inc/strings.hrc:1343
+#: sw/inc/strings.hrc:1344
msgctxt "STR_ILLEGAL_PAGENUM"
msgid "Page numbers cannot be applied to the current page. Even numbers can be used on left pages, odd numbers on right pages."
msgstr "Bladsynommers kan nie op die huidige bladsy toegepas word nie. Ewe getalle kan op linkerbladsye gebruik word en onewe getalle op regterbladsye."
#. VZnJf
-#: sw/inc/strings.hrc:1345
+#: sw/inc/strings.hrc:1346
msgctxt "STR_WRITER_GLOBALDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Master Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION-meesterdokument"
#. kWe9j
-#: sw/inc/strings.hrc:1347
+#: sw/inc/strings.hrc:1348
msgctxt "STR_QUERY_CONNECT"
msgid "A file connection will delete the contents of the current section. Connect anyway?"
msgstr "’n Lêerkoppeling sal die inhoud van die huidige afdeling skrap. Nogtans koppel?"
#. dLuAF
-#: sw/inc/strings.hrc:1348
+#: sw/inc/strings.hrc:1349
msgctxt "STR_WRONG_PASSWORD"
msgid "The password entered is invalid."
msgstr "Die getikte wagwoord is ongeldig."
#. oUR7Y
-#: sw/inc/strings.hrc:1349
+#: sw/inc/strings.hrc:1350
msgctxt "STR_WRONG_PASSWD_REPEAT"
msgid "The password has not been set."
msgstr "Die wagwoord is nie gestel nie."
#. GBVqD
-#: sw/inc/strings.hrc:1351
+#: sw/inc/strings.hrc:1352
msgctxt "STR_HYP_OK"
msgid "Hyphenation completed"
msgstr "Woordafbreking klaar"
#. rZBXF
-#: sw/inc/strings.hrc:1352
+#: sw/inc/strings.hrc:1353
msgctxt "STR_LANGSTATUS_NONE"
msgid "None (Do not check spelling)"
msgstr "Geen (moenie spelling kontroleer nie)"
#. Z8EjG
-#: sw/inc/strings.hrc:1353
+#: sw/inc/strings.hrc:1354
msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE"
msgid "Reset to Default Language"
msgstr "Stel terug na verstektaal"
#. YEXdS
-#: sw/inc/strings.hrc:1354
+#: sw/inc/strings.hrc:1355
msgctxt "STR_LANGSTATUS_MORE"
msgid "More..."
msgstr "Meer..."
#. QecQ3
-#: sw/inc/strings.hrc:1355
+#: sw/inc/strings.hrc:1356
msgctxt "STR_IGNORE_SELECTION"
msgid "~Ignore"
msgstr "~Ignoreer"
#. aaiBM
-#: sw/inc/strings.hrc:1356
+#: sw/inc/strings.hrc:1357
msgctxt "STR_EXPLANATION_LINK"
msgid "Explanations..."
msgstr "Verduidelikings..."
#. kSDGu
-#: sw/inc/strings.hrc:1358
+#: sw/inc/strings.hrc:1359
msgctxt "STR_QUERY_SPECIAL_FORCED"
msgid "Check special regions is deactivated. Check anyway?"
msgstr "Kontrole van spesiale streke is gedeaktiveer. Kontroleer in elk geval?"
#. KiAdJ
-#: sw/inc/strings.hrc:1359
+#: sw/inc/strings.hrc:1360
msgctxt "STR_NO_MERGE_ENTRY"
msgid "Could not merge documents."
msgstr "Kon nie dokumente saamvoeg nie."
#. FqsCt
-#: sw/inc/strings.hrc:1360
+#: sw/inc/strings.hrc:1361
msgctxt "STR_NO_BASE_FOR_MERGE"
msgid "%PRODUCTNAME Base component is absent, and it is required to use Mail Merge."
msgstr "Die %PRODUCTNAME Base-komponent ontbreek en is nodig om massapos te gebruik."
#. wcuf4
-#: sw/inc/strings.hrc:1361
+#: sw/inc/strings.hrc:1362
msgctxt "STR_ERR_SRCSTREAM"
msgid "The source cannot be loaded."
msgstr "Die bron kan nie gelaai word nie."
#. K9qMS
-#: sw/inc/strings.hrc:1362
+#: sw/inc/strings.hrc:1363
msgctxt "STR_ERR_NO_FAX"
msgid "No fax printer has been set under Tools/Options/%1/Print."
msgstr "Geen faksdrukker is onder Nutsgoed/Opsies/%1/Druk gestel nie."
#. XWQ8w
-#: sw/inc/strings.hrc:1363
+#: sw/inc/strings.hrc:1364
msgctxt "STR_WEBOPTIONS"
msgid "HTML document"
msgstr "HTML-dokument"
#. qVZBx
-#: sw/inc/strings.hrc:1364
+#: sw/inc/strings.hrc:1365
msgctxt "STR_TEXTOPTIONS"
msgid "Text document"
msgstr "Teksdokument"
#. qmmPU
-#: sw/inc/strings.hrc:1365
+#: sw/inc/strings.hrc:1366
msgctxt "STR_SCAN_NOSOURCE"
msgid "Source not specified."
msgstr "Bron nie gespesifiseer nie."
#. 2LgDJ
-#: sw/inc/strings.hrc:1366
+#: sw/inc/strings.hrc:1367
msgctxt "STR_NUM_LEVEL"
msgid "Level "
msgstr "Vlak "
#. AcAD8
-#: sw/inc/strings.hrc:1367
+#: sw/inc/strings.hrc:1368
msgctxt "STR_NUM_OUTLINE"
msgid "Outline "
msgstr "Skema "
#. DE9FZ
-#: sw/inc/strings.hrc:1368
+#: sw/inc/strings.hrc:1369
msgctxt "STR_EDIT_FOOTNOTE"
msgid "Edit Footnote/Endnote"
msgstr "Redigeer voetnoot/eindnoot"
#. EzBCZ
-#: sw/inc/strings.hrc:1369
+#: sw/inc/strings.hrc:1370
msgctxt "STR_NB_REPLACED"
msgid "Search key replaced XX times."
msgstr "Soeksleutel is XX maal vervang."
#. fgywB
-#: sw/inc/strings.hrc:1370
+#: sw/inc/strings.hrc:1371
msgctxt "STR_SRCVIEW_ROW"
msgid "Row "
msgstr "Ry "
#. GUc4a
-#: sw/inc/strings.hrc:1371
+#: sw/inc/strings.hrc:1372
msgctxt "STR_SRCVIEW_COL"
msgid "Column "
msgstr "Kolom "
#. yMyuo
-#: sw/inc/strings.hrc:1372
+#: sw/inc/strings.hrc:1373
msgctxt "STR_SAVEAS_SRC"
msgid "~Export source..."
msgstr "~Voer bron uit..."
#. ywFCb
-#: sw/inc/strings.hrc:1373
+#: sw/inc/strings.hrc:1374
msgctxt "STR_SAVEACOPY_SRC"
msgid "~Export copy of source..."
msgstr "~Voer kopie van bron uit..."
#. BT3M3
-#: sw/inc/strings.hrc:1375
+#: sw/inc/strings.hrc:1376
msgctxt "ST_CONTINUE"
msgid "~Continue"
msgstr "~Gaan voort"
#. ZR9aw
-#: sw/inc/strings.hrc:1376
+#: sw/inc/strings.hrc:1377
msgctxt "ST_SENDINGTO"
msgid "Sending to: %1"
msgstr "Stuur aan: %1"
#. YCNYb
-#: sw/inc/strings.hrc:1377
+#: sw/inc/strings.hrc:1378
msgctxt "ST_COMPLETED"
msgid "Successfully sent"
msgstr "Suksesvol vesend"
#. fmHmE
-#: sw/inc/strings.hrc:1378
+#: sw/inc/strings.hrc:1379
msgctxt "ST_FAILED"
msgid "Sending failed"
msgstr "Stuur het misluk"
#. yAAPM
-#: sw/inc/strings.hrc:1380
+#: sw/inc/strings.hrc:1381
msgctxt "STR_SENDER_TOKENS"
msgid "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
msgstr "MAATSKAPPY;CR;VOORNAAM; ;VAN;CR;ADRES;CR;STAD; ;PROV; ;POSKODE;CR;LAND;CR;"
#. mWrXk
-#: sw/inc/strings.hrc:1382
+#: sw/inc/strings.hrc:1383
msgctxt "STR_TBL_FORMULA"
msgid "Text formula"
msgstr "Teksformule"
#. RmBFW
-#: sw/inc/strings.hrc:1384
+#: sw/inc/strings.hrc:1385
msgctxt "STR_DROP_DOWN_EMPTY_LIST"
msgid "No Item specified"
msgstr "Geen Item gespesifiseer"
@@ -9746,7 +9752,7 @@ msgstr "Geen Item gespesifiseer"
#. --------------------------------------------------------------------
#. Description: Classification strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1390
+#: sw/inc/strings.hrc:1391
msgctxt "STR_CLASSIFICATION_LEVEL_CHANGED"
msgid "Document classification has changed because a paragraph classification level is higher"
msgstr "Die dokumentklassifikasie het verander omdat ’n paragraafklassifikasievlak hoër is"
@@ -9755,121 +9761,121 @@ msgstr "Die dokumentklassifikasie het verander omdat ’n paragraafklassifikasie
#. --------------------------------------------------------------------
#. Description: Paragraph Signature
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1395
+#: sw/inc/strings.hrc:1396
msgctxt "STR_VALID"
msgid " Valid "
msgstr " Geldig "
#. xAKRC
-#: sw/inc/strings.hrc:1396
+#: sw/inc/strings.hrc:1397
msgctxt "STR_INVALID"
msgid "Invalid"
msgstr "Ongeldig"
#. pDAHz
-#: sw/inc/strings.hrc:1397
+#: sw/inc/strings.hrc:1398
msgctxt "STR_INVALID_SIGNATURE"
msgid "Invalid Signature"
msgstr "Ongeldige handtekening"
#. etEEx
-#: sw/inc/strings.hrc:1398
+#: sw/inc/strings.hrc:1399
msgctxt "STR_SIGNED_BY"
msgid "Signed-by"
msgstr "Onderteken deur"
#. BK7ub
-#: sw/inc/strings.hrc:1399
+#: sw/inc/strings.hrc:1400
msgctxt "STR_PARAGRAPH_SIGNATURE"
msgid "Paragraph Signature"
msgstr "Paragraafhandtekening"
#. kZKCf
-#: sw/inc/strings.hrc:1401
+#: sw/inc/strings.hrc:1402
msgctxt "labeldialog|cards"
msgid "Business Cards"
msgstr "Visitekaartjies"
#. ECFij
-#: sw/inc/strings.hrc:1403
+#: sw/inc/strings.hrc:1404
msgctxt "STR_MAILCONFIG_DLG_TITLE"
msgid "Email settings"
msgstr "E-Pos-Instellings"
#. PwrB9
-#: sw/inc/strings.hrc:1405
+#: sw/inc/strings.hrc:1406
msgctxt "optredlinepage|insertedpreview"
msgid "Insert"
msgstr "Voeg in"
#. NL48o
-#: sw/inc/strings.hrc:1406
+#: sw/inc/strings.hrc:1407
msgctxt "optredlinepage|deletedpreview"
msgid "Delete"
msgstr "Skrap"
#. PW4Bz
-#: sw/inc/strings.hrc:1407
+#: sw/inc/strings.hrc:1408
msgctxt "optredlinepage|changedpreview"
msgid "Attributes"
msgstr "Attribute"
#. yfgiq
-#: sw/inc/strings.hrc:1409
+#: sw/inc/strings.hrc:1410
msgctxt "createautomarkdialog|searchterm"
msgid "Search term"
msgstr "Soekterm"
#. fhLzk
-#: sw/inc/strings.hrc:1410
+#: sw/inc/strings.hrc:1411
msgctxt "createautomarkdialog|alternative"
msgid "Alternative entry"
msgstr "Alternatiewe inskrywing"
#. gD4D3
-#: sw/inc/strings.hrc:1411
+#: sw/inc/strings.hrc:1412
msgctxt "createautomarkdialog|key1"
msgid "1st key"
msgstr "1e sleutel"
#. BFszo
-#: sw/inc/strings.hrc:1412
+#: sw/inc/strings.hrc:1413
msgctxt "createautomarkdialog|key2"
msgid "2nd key"
msgstr "2e sleutel"
#. EoAB8
-#: sw/inc/strings.hrc:1413
+#: sw/inc/strings.hrc:1414
msgctxt "createautomarkdialog|comment"
msgid "Comment"
msgstr "Opmerking"
#. Shstx
-#: sw/inc/strings.hrc:1414
+#: sw/inc/strings.hrc:1415
msgctxt "createautomarkdialog|casesensitive"
msgid "Match case"
msgstr "Selfde kas"
#. 8Cjvb
-#: sw/inc/strings.hrc:1415
+#: sw/inc/strings.hrc:1416
msgctxt "createautomarkdialog|wordonly"
msgid "Word only"
msgstr "Slegs woord"
#. zD8rb
-#: sw/inc/strings.hrc:1416
+#: sw/inc/strings.hrc:1417
msgctxt "createautomarkdialog|yes"
msgid "Yes"
msgstr "Ja"
#. 4tTop
-#: sw/inc/strings.hrc:1417
+#: sw/inc/strings.hrc:1418
msgctxt "createautomarkdialog|no"
msgid "No"
msgstr "Nee"
#. KhKwa
-#: sw/inc/strings.hrc:1419
+#: sw/inc/strings.hrc:1420
msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Doelgemaak"
@@ -10366,8 +10372,14 @@ msgctxt "asciifilterdialog|includebom"
msgid "Include byte-order mark"
msgstr "Sluit greepordemerk (BOM) in"
+#. 9E8VF
+#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:291
+msgctxt "asciifilterdialog|extended_tip|includebom"
+msgid "For Unicode character set only, a byte order mark (BOM) is a sequence of bytes used to indicate Unicode encoding of a text file."
+msgstr "Alleenlik vir Unicode karakters, is 'n greep orde merk (BOM) 'n reeks van grepe wat Unicode enkodering vir 'n tekslêer aandui."
+
#. B2ofV
-#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:304
+#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:309
msgctxt "asciifilterdialog|label1"
msgid "Properties"
msgstr "Eienskappe"
@@ -19814,44 +19826,50 @@ msgctxt "mmresultsavedialog|extended_tip|individualrb"
msgid "Saves the merged document as a separate file for each recipient. The file names of the documents are constructed from the name that you enter, followed by an underscore, and the number of the current record."
msgstr "Stoor die pos samevoegingsdokument as 'n aparte lêer vir elke ontvanger. Die lêernaam word gevorm uit die naam wat u ingevoer het, gevolg deur 'n onderstreep en die nommer van die huidige datarekord."
+#. g3Knf
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:157
+msgctxt "mmresultsavedialog|label2"
+msgid "Save As Options"
+msgstr "Stoor as Opsies"
+
#. xRGbs
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:159
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:191
msgctxt "mmresultsavedialog|fromrb"
msgid "_From"
msgstr "_Vanaf"
#. gvAQf
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:170
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:202
msgctxt "mmresultsavedialog|extended_tip|fromrb"
msgid "Selects a range of records starting at the record number in the From box and ending at the record number in the To box."
msgstr "Selekteer 'n reeks van rekords beginnende by die rekord nommer in die \"Vanaf\"-veld en eindigende met die rekord nommer in die \"Tot by\"-veld."
#. LGEwR
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:183
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:215
msgctxt "mmresultsavedialog|toft"
msgid "_To"
msgstr "_tot by"
#. XML8V
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:205
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:238
msgctxt "mmresultsavedialog|extended_tip|from"
msgid "Enter the number of the first record to include in the mail merge."
msgstr "Voer in die eerste rekord se nommer wat in die reeksbrief opgeneem sal word."
#. dAWiB
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:224
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:258
msgctxt "mmresultsavedialog|extended_tip|to"
msgid "Enter the number of the last record to include in the mail merge."
msgstr "Voer in die laaste rekord se nommer wat in die reeksbrief opgeneem sal word."
-#. g3Knf
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:245
-msgctxt "mmresultsavedialog|label2"
-msgid "Save As Options"
-msgstr "Stoor as Opsies"
+#. VibGJ
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:273
+msgctxt "mmresultsavedialog|FromToRange"
+msgid "Range"
+msgstr "Reeks"
#. 2BCiE
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:267
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:295
msgctxt "mmresultsavedialog|extended_tip|MMResultSaveDialog"
msgid "Save the mail merge output to file."
msgstr "Stoor die saamgevoegde e-pos-uitvoer in 'n lêer."
@@ -20217,7 +20235,7 @@ msgid "Transfer Status"
msgstr "Oordrag Status"
#. c2i5B
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:26
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:20
msgctxt "navigatorcontextmenu|STR_SEND_OUTLINE_TO_CLIPBOARD_ENTRY"
msgid "Send Outline to Clipboard"
msgstr "Stuur buitelyn na Knipbord"
@@ -20229,143 +20247,215 @@ msgid "Go to"
msgstr "Gaan na"
#. VCmAZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:49
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:43
msgctxt "navigatorcontextmenu|STR_SELECT"
msgid "Select"
msgstr "Selekteer"
#. dajzZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:57
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:51
msgctxt "navigatorcontextmenu|STR_DELETE"
msgid "Delete"
msgstr "Verwyder"
#. CQSp3
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:66
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:60
msgctxt "navigatorcontextmenu|STR_PROMOTE_CHAPTER"
msgid "Promote Chapter"
msgstr "Promoveer Hoofstuk"
#. ikRHB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:75
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:69
msgctxt "navigatorcontextmenu|STR_DEMOTE_CHAPTER"
msgid "Demote Chapter"
msgstr "Demoveer Hoofstuk"
#. MhtFa
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:84
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:78
msgctxt "navigatorcontextmenu|STR_PROMOTE_LEVEL"
msgid "Promote Level"
msgstr "Promoveer Vlak"
#. dUM5D
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:93
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:87
msgctxt "navigatorcontextmenu|STR_DEMOTE_LEVEL"
msgid "Demote Level"
msgstr "Demoveer Vlak"
#. tukRq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:102
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:96
msgctxt "navigatorcontextmenu|STR_REMOVE_INDEX"
msgid "_Remove Index"
msgstr "Verwyder Indeks"
#. C4355
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:110
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:104
msgctxt "navigatorcontextmenu|STR_UPDATE"
msgid "_Update"
msgstr "Bywerk"
#. BtCca
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:118
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:112
msgctxt "navigatorcontextmenu|STR_EDIT_ENTRY"
msgid "Edit..."
msgstr "Redigeer..."
#. BYyhD
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:126
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:120
msgctxt "navigatorcontextmenu|STR_REMOVE_TBL_PROTECTION"
msgid "_Unprotect"
msgstr "Beskerming Ophef"
#. 6KWWG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:134
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:128
msgctxt "navigatorcontextmenu|STR_READONLY_IDX"
msgid "Read-_only"
msgstr "Lees Alleen"
#. BUQRq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:142
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:136
msgctxt "navigatorcontextmenu|STR_DELETE_ENTRY"
msgid "_Delete"
msgstr "_Skrap"
#. CUqD5
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:151
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:145
msgctxt "navigatorcontextmenu|STR_RENAME"
msgid "_Rename..."
msgstr "Hernoem"
#. U5nAb
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:159
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:153
msgctxt "navigatorcontextmenu|STR_POSTIT_SHOW"
msgid "Show All"
msgstr "Vertoon Alles"
#. E2wWp
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:167
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:161
msgctxt "navigatorcontextmenu|STR_POSTIT_HIDE"
msgid "Hide All"
msgstr "Verberg Alles"
#. aDRke
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:175
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:169
msgctxt "navigatorcontextmenu|STR_POSTIT_DELETE"
msgid "Delete All"
msgstr "Verwyder Alles"
#. YBipC
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:189
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:183
msgctxt "navigatorcontextmenu|STR_OUTLINE_CONTENT"
msgid "Outline Folding"
msgstr "Skema Invou"
-#. EBK2E
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:209
-msgctxt "navigatorcontextmenu|STR_OUTLINE_TRACKING"
-msgid "Outline Tracking"
-msgstr "Buitelyn Volg"
-
#. cECoG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:223
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:203
msgctxt "navigatorcontextmenu|STR_OUTLINE_LEVEL"
msgid "Outline Level"
msgstr "Skemavlak"
+#. EBK2E
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:217
+msgctxt "navigatorcontextmenu|STR_OUTLINE_TRACKING"
+msgid "Outline Tracking"
+msgstr "Buitelyn Volg"
+
#. fZEEr
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:237
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:231
msgctxt "navigatorcontextmenu|STR_TABLE_TRACKING"
msgid "Table Tracking"
-msgstr ""
+msgstr "Tabel Nasporing"
#. 7oCFa
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:245
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:239
msgctxt "navigatorcontextmenu|STR_SECTION_TRACKING"
msgid "Section Tracking"
+msgstr "Seksie Nasporing"
+
+#. YmjQf
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:247
+msgctxt "navigatorcontextmenu|STR_FRAME_TRACKING"
+msgid "Frame Tracking"
+msgstr ""
+
+#. vhxX5
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:255
+msgctxt "navigatorcontextmenu|STR_IMAGE_TRACKING"
+msgid "Image Tracking"
+msgstr ""
+
+#. mcYqZ
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:263
+msgctxt "navigatorcontextmenu|STR_OLE_OBJECT_TRACKING"
+msgid "OLE Object Tracking"
+msgstr ""
+
+#. DRaED
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:271
+msgctxt "navigatorcontextmenu|STR_BOOKMARK_TRACKING"
+msgid "Bookmark Tracking"
+msgstr ""
+
+#. vpLmh
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:279
+msgctxt "navigatorcontextmenu|STR_HYPERLINK_TRACKING"
+msgid "Hyperlink Tracking"
+msgstr ""
+
+#. EvBzN
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:287
+msgctxt "navigatorcontextmenu|STR_REFERENCE_TRACKING"
+msgid "Reference Tracking"
+msgstr ""
+
+#. M8Bes
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:295
+msgctxt "navigatorcontextmenu|STR_INDEX_TRACKING"
+msgid "Index Tracking"
+msgstr ""
+
+#. KBFwM
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:303
+msgctxt "navigatorcontextmenu|STR_COMMENT_TRACKING"
+msgid "Comment Tracking"
+msgstr ""
+
+#. oGavB
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:311
+msgctxt "navigatorcontextmenu|STR_DRAWING_OBJECT_TRACKING"
+msgid "Drawing Object Tracking"
+msgstr ""
+
+#. w8FTW
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:319
+msgctxt "navigatorcontextmenu|STR_FIELD_TRACKING"
+msgid "Field Tracking"
+msgstr ""
+
+#. BoCeZ
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:327
+msgctxt "navigatorcontextmenu|STR_FOOTNOTE_TRACKING"
+msgid "Footnote Tracking"
msgstr ""
#. GyAcG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:253
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:341
msgctxt "navigatorcontextmenu|STR_DRAGMODE"
msgid "Drag Mode"
msgstr "Sleep Modus"
#. Zehx2
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:267
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:355
msgctxt "navigatorcontextmenu|STR_DISPLAY"
msgid "Display"
msgstr "Vertoon"
+#. bgZoy
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:375
+msgctxt "navigatorcontextmenu|STR_COLLAPSE_ALL_CATEGORIES"
+msgid "Collapse All Categories"
+msgstr ""
+
#. ba8wC
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:18
msgctxt "navigatorpanel|hyperlink"
diff --git a/source/af/vcl/messages.po b/source/af/vcl/messages.po
index 8a476eb5808..0b0234a47f4 100644
--- a/source/af/vcl/messages.po
+++ b/source/af/vcl/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-10 23:12+0200\n"
+"POT-Creation-Date: 2021-10-20 13:09+0200\n"
"PO-Revision-Date: 2021-09-14 10:10+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/af/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1547709865.000000\n"
#. k5jTM
@@ -1963,529 +1963,529 @@ msgid "_Print"
msgstr "_Druk"
#. M3L4L
-#: vcl/uiconfig/ui/printdialog.ui:157
+#: vcl/uiconfig/ui/printdialog.ui:160
msgctxt "printdialog|printpreview"
msgid "Print preview"
msgstr "Druk Voorskou"
#. 67YPm
-#: vcl/uiconfig/ui/printdialog.ui:163
+#: vcl/uiconfig/ui/printdialog.ui:166
msgctxt "printdialog|extended_tip|preview"
msgid "The preview shows how each sheet of paper will look. You can browse through all sheets of paper with the buttons below the preview."
msgstr "Die voorskou wys hoe elke papierbladsy gaan lyk. U kan deur al die bladsye deurblaai met die knoppies onder die voorskou."
#. dQEY8
-#: vcl/uiconfig/ui/printdialog.ui:193
+#: vcl/uiconfig/ui/printdialog.ui:196
msgctxt "printdialog|previewbox"
msgid "Pre_view"
msgstr "Voorskou"
#. EpB5H
-#: vcl/uiconfig/ui/printdialog.ui:202
+#: vcl/uiconfig/ui/printdialog.ui:205
msgctxt "printdialog|extended_tip|previewbox"
msgid "Turn on or off display of the print preview."
msgstr "Skakel aan/af die voorskou van die drukwerk."
#. SbgFv
-#: vcl/uiconfig/ui/printdialog.ui:232
+#: vcl/uiconfig/ui/printdialog.ui:235
msgctxt "printdialog|firstpage"
msgid "First page"
msgstr "Eerste Bladsy"
#. GVGSq
-#: vcl/uiconfig/ui/printdialog.ui:236
+#: vcl/uiconfig/ui/printdialog.ui:239
msgctxt "printdialog|extended_tip|btnFirst"
msgid "Shows preview of the first page."
msgstr "Vertoon 'n voorskou van die eerste bladsy."
#. ebceU
-#: vcl/uiconfig/ui/printdialog.ui:251
+#: vcl/uiconfig/ui/printdialog.ui:254
msgctxt "printdialog|backward"
msgid "Previous page"
msgstr "Vorige bladsy"
#. uS5Ka
-#: vcl/uiconfig/ui/printdialog.ui:255
+#: vcl/uiconfig/ui/printdialog.ui:258
msgctxt "printdialog|extended_tip|backward"
msgid "Shows preview of the previous page."
msgstr "Vertoon die voorskou van die vorige bladsy."
#. c7uMG
-#: vcl/uiconfig/ui/printdialog.ui:274
+#: vcl/uiconfig/ui/printdialog.ui:277
msgctxt "printdialog|extended_tip|pageedit"
msgid "Enter the number of page to be shown in the preview."
msgstr "Tik die nommer in die bladsy om in die voorskou te vertoon."
#. yyFVV
-#: vcl/uiconfig/ui/printdialog.ui:288
+#: vcl/uiconfig/ui/printdialog.ui:291
msgctxt "printdialog|totalnumpages"
msgid "/ %n"
msgstr "/ %n"
#. CZQLF
-#: vcl/uiconfig/ui/printdialog.ui:301
+#: vcl/uiconfig/ui/printdialog.ui:304
msgctxt "printdialog|forward"
msgid "Next page"
msgstr "Volgende bladsy"
#. emK9r
-#: vcl/uiconfig/ui/printdialog.ui:305
+#: vcl/uiconfig/ui/printdialog.ui:308
msgctxt "printdialog|extended_tip|forward"
msgid "Shows preview of the next page."
msgstr "Gee 'n voorskou van die volgende bladsy."
#. Aq6Gv
-#: vcl/uiconfig/ui/printdialog.ui:320
+#: vcl/uiconfig/ui/printdialog.ui:323
msgctxt "printdialog|lastpage"
msgid "Last page"
msgstr "Laaste bladsy"
#. RwCmD
-#: vcl/uiconfig/ui/printdialog.ui:324
+#: vcl/uiconfig/ui/printdialog.ui:327
msgctxt "printdialog|extended_tip|btnLast"
msgid "Shows preview of the last page."
msgstr "Vertoon 'n voorskou van die laaste bladsy."
#. PD6Aj
-#: vcl/uiconfig/ui/printdialog.ui:400
+#: vcl/uiconfig/ui/printdialog.ui:403
msgctxt "printdialog|extended_tip|printersbox"
msgid "The list box shows the installed printers. Click the printer to use for the current print job. Click the Properties button to change some of the printer properties."
msgstr "Die lys toon die geïnstalleerde drukkers. Klik op die drukker wat u vir die huidige druktaak wil gebruik. Klik op die Eienskappe-knoppie om sommige drukker eienskappe te verander."
#. qgQDX
-#: vcl/uiconfig/ui/printdialog.ui:419
+#: vcl/uiconfig/ui/printdialog.ui:422
msgctxt "printdialog|labelstatus"
msgid "Status:"
msgstr "Status:"
#. dyo2j
-#: vcl/uiconfig/ui/printdialog.ui:434
+#: vcl/uiconfig/ui/printdialog.ui:437
msgctxt "printdialog|status"
msgid "Default Printer"
msgstr "Verstek drukker"
#. McZgQ
-#: vcl/uiconfig/ui/printdialog.ui:440
+#: vcl/uiconfig/ui/printdialog.ui:443
msgctxt "printdialog|extended_tip|status"
msgid "Shows the availability of the selected printer."
msgstr "Toon die beskikbaarheid van die huidige drukker."
#. oBACQ
-#: vcl/uiconfig/ui/printdialog.ui:452
+#: vcl/uiconfig/ui/printdialog.ui:455
msgctxt "printdialog|setup"
msgid "Properties..."
msgstr "Eienskappe..."
#. 89CRC
-#: vcl/uiconfig/ui/printdialog.ui:459
+#: vcl/uiconfig/ui/printdialog.ui:462
msgctxt "printdialog|extended_tip|setup"
msgid "Opens the Printer Properties dialog. The printer properties vary according to the printer that you select."
msgstr "Maak die dialoogvenster \"Printer Properties\" oop. Die drukker-eienskappe wissel afhangend van die drukker gekies."
#. AJGau
-#: vcl/uiconfig/ui/printdialog.ui:483
+#: vcl/uiconfig/ui/printdialog.ui:486
msgctxt "printdialog|labelprinter"
msgid "Printer"
msgstr "Drukker"
#. AyxGJ
-#: vcl/uiconfig/ui/printdialog.ui:521
+#: vcl/uiconfig/ui/printdialog.ui:524
msgctxt "printdialog|rbAllPages"
msgid "_All pages"
msgstr "_Al die Bladsye"
#. AQ7Ms
-#: vcl/uiconfig/ui/printdialog.ui:532
+#: vcl/uiconfig/ui/printdialog.ui:535
msgctxt "printdialog|extended_tip|rbAllPages"
msgid "Prints the entire document."
msgstr "Druk die hele dokument."
#. pYtbq
-#: vcl/uiconfig/ui/printdialog.ui:543
+#: vcl/uiconfig/ui/printdialog.ui:546
msgctxt "printdialog|rbPageRange"
msgid "_Pages:"
msgstr "_Bladsye:"
#. azXfE
-#: vcl/uiconfig/ui/printdialog.ui:555
+#: vcl/uiconfig/ui/printdialog.ui:558
msgctxt "printdialog|extended_tip|rbRangePages"
msgid "Prints only the pages or slides that you specify in the Pages box."
msgstr "Druk slegs die bladsye of transparante wat u in die bladsye-vakkie spesifiseer."
#. 786QC
-#: vcl/uiconfig/ui/printdialog.ui:571
+#: vcl/uiconfig/ui/printdialog.ui:574
msgctxt "printdialog|pagerange"
msgid "e.g.: 1, 3-5, 7, 9"
msgstr "bv.: 1, 3-5, 7, 9"
#. FTtLK
-#: vcl/uiconfig/ui/printdialog.ui:574
+#: vcl/uiconfig/ui/printdialog.ui:577
msgctxt "printdialog|extended_tip|pagerange"
msgid "To print a range of pages, use a format like 3-6. To print single pages, use a format like 7;9;11. You can print a combination of page ranges and single pages, by using a format like 3-6;8;10;12."
msgstr "Om byvoorbeeld 'n reeks bladsye te druk, voer 3-6 in. Gebruik byvoorbeeld 7; 9; 11 om individuele bladsye te druk. U kan 'n kombinasie van bladsyreekse en enkele bladsye druk deur byvoorbeeld 3-6; 8; 10; 12 in te voer."
#. Z5kiB
-#: vcl/uiconfig/ui/printdialog.ui:585
+#: vcl/uiconfig/ui/printdialog.ui:588
msgctxt "printdialog|rbRangeSelection"
msgid "_Selection"
msgstr "_Seleksie"
#. CJ2E7
-#: vcl/uiconfig/ui/printdialog.ui:595
+#: vcl/uiconfig/ui/printdialog.ui:598
msgctxt "printdialog|extended_tip|rbRangeSelection"
msgid "Prints only the selected area(s) or object(s) in the current document."
msgstr "Druk slegs die geselekteerde area(s) of objek(te) in die huidige dokument."
#. UKYwM
-#: vcl/uiconfig/ui/printdialog.ui:609
+#: vcl/uiconfig/ui/printdialog.ui:612
msgctxt "printdialog|includeevenodd"
msgid "Include:"
msgstr "Sluit In:"
#. XmeFL
-#: vcl/uiconfig/ui/printdialog.ui:626
+#: vcl/uiconfig/ui/printdialog.ui:629
msgctxt "printdialog|liststore3"
msgid "Odd and Even Pages"
msgstr "Onewe en ewe Bladsye"
#. 49y67
-#: vcl/uiconfig/ui/printdialog.ui:627
+#: vcl/uiconfig/ui/printdialog.ui:630
msgctxt "printdialog|liststore3"
msgid "Odd Pages"
msgstr "Onewe Bladsye"
#. 6CkPE
-#: vcl/uiconfig/ui/printdialog.ui:628
+#: vcl/uiconfig/ui/printdialog.ui:631
msgctxt "printdialog|liststore3"
msgid "Even Pages"
msgstr "Ewe Bladsye"
#. ZeA37
-#: vcl/uiconfig/ui/printdialog.ui:632
+#: vcl/uiconfig/ui/printdialog.ui:635
msgctxt "printdialog|extended_tip|evenoddbox"
msgid "Select the subset of pages to print."
msgstr "Spesifiseer die bladsye om te druk."
#. wn2kB
-#: vcl/uiconfig/ui/printdialog.ui:663
+#: vcl/uiconfig/ui/printdialog.ui:666
msgctxt "printdialog|fromwhich"
msgid "_From which print:"
msgstr "_Druk vanaf:"
#. Cuc2u
-#: vcl/uiconfig/ui/printdialog.ui:688
+#: vcl/uiconfig/ui/printdialog.ui:691
msgctxt "printdialog|labelpapersides"
msgid "Paper _sides:"
msgstr "_Bladsy kante:"
#. SYxRJ
-#: vcl/uiconfig/ui/printdialog.ui:704
+#: vcl/uiconfig/ui/printdialog.ui:707
msgctxt "printdialog|liststore4"
msgid "Print on one side (simplex)"
msgstr "Druk op een kant (simpleks)"
#. hCZPg
-#: vcl/uiconfig/ui/printdialog.ui:705
+#: vcl/uiconfig/ui/printdialog.ui:708
msgctxt "printdialog|liststore4"
msgid "Print on both sides (duplex long edge)"
msgstr "Druk op beide kante (Dupleks, beide Kante)"
#. iqr9C
-#: vcl/uiconfig/ui/printdialog.ui:706
+#: vcl/uiconfig/ui/printdialog.ui:709
msgctxt "printdialog|liststore4"
msgid "Print on both sides (duplex short edge)"
msgstr "Druk op beide kante (dupleks kort sye)"
#. CKpgL
-#: vcl/uiconfig/ui/printdialog.ui:710
+#: vcl/uiconfig/ui/printdialog.ui:713
msgctxt "printdialog|extended_tip|sidesbox"
msgid "If the printer is capable of duplex printing it's possible to choose between using only one side of the paper or both."
msgstr "Sou die drukker in staat wees om aan beide kante te druk, is dit moontlik om te kies tussen een- of dubbel-kant drukwerk."
#. AVv6D
-#: vcl/uiconfig/ui/printdialog.ui:724
+#: vcl/uiconfig/ui/printdialog.ui:727
msgctxt "printdialog|labelcopies"
msgid "_Number of copies:"
msgstr "_Aantal Kopieë:"
#. NwD7S
-#: vcl/uiconfig/ui/printdialog.ui:747
+#: vcl/uiconfig/ui/printdialog.ui:750
msgctxt "printdialog|extended_tip|copycount"
msgid "Enter the number of copies that you want to print."
msgstr "Voer die aantal kopieë in wat gedruk moet word."
#. BT4nY
-#: vcl/uiconfig/ui/printdialog.ui:761
+#: vcl/uiconfig/ui/printdialog.ui:764
msgctxt "printdialog|cbPrintOrder"
msgid "Order:"
msgstr "Ry volgorde:"
#. vwjVt
-#: vcl/uiconfig/ui/printdialog.ui:774
+#: vcl/uiconfig/ui/printdialog.ui:777
msgctxt "printdialog|reverseorder"
msgid "Print in _reverse order"
msgstr "Druk in omgekeerde orde"
#. svd2Q
-#: vcl/uiconfig/ui/printdialog.ui:783
+#: vcl/uiconfig/ui/printdialog.ui:786
msgctxt "printdialog|extended_tip|reverseorder"
msgid "Check to print pages in reverse order."
msgstr "Merk die vakkie om bladsye in omgekeerde volgorde te druk."
#. G6QEr
-#: vcl/uiconfig/ui/printdialog.ui:800
+#: vcl/uiconfig/ui/printdialog.ui:803
msgctxt "printdialog|collate"
msgid "_Collate"
msgstr "_Sorteer-orde"
#. kR6bA
-#: vcl/uiconfig/ui/printdialog.ui:808
+#: vcl/uiconfig/ui/printdialog.ui:811
msgctxt "printdialog|extended_tip|collate"
msgid "Preserves the page order of the original document."
msgstr "Behou die bladsy volgorde van die oorspronklike dokument."
#. GZrpG
-#: vcl/uiconfig/ui/printdialog.ui:838
+#: vcl/uiconfig/ui/printdialog.ui:841
msgctxt "printdialog|singlejobs"
msgid "Create separate print jobs for collated output"
msgstr "Skep afsonderlike druk take vir saamgestelde uitvoer"
#. X4Am9
-#: vcl/uiconfig/ui/printdialog.ui:846
+#: vcl/uiconfig/ui/printdialog.ui:849
msgctxt "printdialog|extended_tip|collate"
msgid "Check to not rely on the printer to create collated copies but create a print job for each copy instead."
msgstr "Merk om nie op die drukker staat te maak vir die skepping van saamgestelde kopieë, eerder dat u 'n druktaak vir elke kopie skep."
#. 2MdHu
-#: vcl/uiconfig/ui/printdialog.ui:867
+#: vcl/uiconfig/ui/printdialog.ui:870
msgctxt "printdialog|rangeexpander"
msgid "_More"
msgstr "_Meer"
#. ehfCG
-#: vcl/uiconfig/ui/printdialog.ui:883
+#: vcl/uiconfig/ui/printdialog.ui:886
msgctxt "printdialog|label2"
msgid "Range and Copies"
msgstr "Omvang en kopieë"
#. CBLet
-#: vcl/uiconfig/ui/printdialog.ui:922
+#: vcl/uiconfig/ui/printdialog.ui:925
msgctxt "printdialog|labelorientation"
msgid "Orientation:"
msgstr "Oriëntasie:"
#. U4byk
-#: vcl/uiconfig/ui/printdialog.ui:937
+#: vcl/uiconfig/ui/printdialog.ui:940
msgctxt "printdialog|labelsize"
msgid "Paper size:"
msgstr "Papier grootte:"
#. X9iBj
-#: vcl/uiconfig/ui/printdialog.ui:954
+#: vcl/uiconfig/ui/printdialog.ui:957
msgctxt "printdialog|liststore3"
msgid "Automatic"
msgstr "Outomaties"
#. vaWZE
-#: vcl/uiconfig/ui/printdialog.ui:955
+#: vcl/uiconfig/ui/printdialog.ui:958
msgctxt "printdialog|liststore3"
msgid "Portrait"
msgstr "Portret"
#. Qnpje
-#: vcl/uiconfig/ui/printdialog.ui:956
+#: vcl/uiconfig/ui/printdialog.ui:959
msgctxt "printdialog|liststore3"
msgid "Landscape"
msgstr "Landskap"
#. PkAo9
-#: vcl/uiconfig/ui/printdialog.ui:960
+#: vcl/uiconfig/ui/printdialog.ui:963
msgctxt "printdialog|extended_tip|pageorientationbox"
msgid "Select the orientation of the paper."
msgstr "Kies die papieroriëntasie."
#. DSFv2
-#: vcl/uiconfig/ui/printdialog.ui:976
+#: vcl/uiconfig/ui/printdialog.ui:979
msgctxt "printdialog|extended_tip|papersizebox"
msgid "Set the paper size you would like to use. The preview will show how the document would look on a paper of the given size."
msgstr "Stel die papier grootte wat u verkies. Die voorskou toon hoe die dokument gaan lyk op die gekose papiergrootte."
#. EZdsx
-#: vcl/uiconfig/ui/printdialog.ui:1011
+#: vcl/uiconfig/ui/printdialog.ui:1014
msgctxt "printdialog|pagespersheetbtn"
msgid "Pages per sheet:"
msgstr "Bladsye per vel:"
#. ok8Lw
-#: vcl/uiconfig/ui/printdialog.ui:1025
+#: vcl/uiconfig/ui/printdialog.ui:1028
msgctxt "printdialog|extended_tip|pagespersheetbtn"
msgid "Print multiple pages per sheet of paper."
msgstr "Druk meerdere bladsye op een vel papier."
#. DKP5g
-#: vcl/uiconfig/ui/printdialog.ui:1066
+#: vcl/uiconfig/ui/printdialog.ui:1069
msgctxt "printdialog|liststore1"
msgid "Custom"
msgstr "Doelgemaak"
#. duVEo
-#: vcl/uiconfig/ui/printdialog.ui:1073
+#: vcl/uiconfig/ui/printdialog.ui:1076
msgctxt "printdialog|extended_tip|pagespersheetbox"
msgid "Select how many pages to print per sheet of paper."
msgstr "Kies hoeveel bladsye om te druk per vel papier."
#. 65WWt
-#: vcl/uiconfig/ui/printdialog.ui:1086
+#: vcl/uiconfig/ui/printdialog.ui:1089
msgctxt "printdialog|pagespersheettxt"
msgid "Pages:"
msgstr "Bladsye:"
#. X8bjE
-#: vcl/uiconfig/ui/printdialog.ui:1106
+#: vcl/uiconfig/ui/printdialog.ui:1109
msgctxt "printdialog|extended_tip|pagerows"
msgid "Select number of rows."
msgstr "Selekteer die aantal rye."
#. DM5aX
-#: vcl/uiconfig/ui/printdialog.ui:1118
+#: vcl/uiconfig/ui/printdialog.ui:1121
msgctxt "printdialog|by"
msgid "by"
msgstr "by"
#. Z2EDz
-#: vcl/uiconfig/ui/printdialog.ui:1137
+#: vcl/uiconfig/ui/printdialog.ui:1140
msgctxt "printdialog|extended_tip|pagecols"
msgid "Select number of columns."
msgstr "Selekteer die aantal kolomme."
#. szcD7
-#: vcl/uiconfig/ui/printdialog.ui:1149
+#: vcl/uiconfig/ui/printdialog.ui:1152
msgctxt "printdialog|pagemargintxt1"
msgid "Margin:"
msgstr "Kantlyn:"
#. QxE58
-#: vcl/uiconfig/ui/printdialog.ui:1168
+#: vcl/uiconfig/ui/printdialog.ui:1171
msgctxt "printdialog|extended_tip|pagemarginsb"
msgid "Select margin between individual pages on each sheet of paper."
msgstr "Selekteer die marge tussen individuele bladsye op 'n vel papier."
#. iGg2m
-#: vcl/uiconfig/ui/printdialog.ui:1181
+#: vcl/uiconfig/ui/printdialog.ui:1184
msgctxt "printdialog|pagemargintxt2"
msgid "between pages"
msgstr "tussen bladsye"
#. oryuw
-#: vcl/uiconfig/ui/printdialog.ui:1192
+#: vcl/uiconfig/ui/printdialog.ui:1195
msgctxt "printdialog|sheetmargintxt1"
msgid "Distance:"
msgstr "Afstand:"
#. EDFnW
-#: vcl/uiconfig/ui/printdialog.ui:1211
+#: vcl/uiconfig/ui/printdialog.ui:1214
msgctxt "printdialog|extended_tip|sheetmarginsb"
msgid "Select margin between the printed pages and paper edge."
msgstr "Selekteer die marge tussen gedrukte bladsye en papierrand."
#. XhfvB
-#: vcl/uiconfig/ui/printdialog.ui:1224
+#: vcl/uiconfig/ui/printdialog.ui:1227
msgctxt "printdialog|sheetmargintxt2"
msgid "to sheet border"
msgstr "na kant van papier"
#. AGWe3
-#: vcl/uiconfig/ui/printdialog.ui:1237
+#: vcl/uiconfig/ui/printdialog.ui:1240
msgctxt "printdialog|labelorder"
msgid "Order:"
msgstr "Volgorde:"
#. psAku
-#: vcl/uiconfig/ui/printdialog.ui:1254
+#: vcl/uiconfig/ui/printdialog.ui:1257
msgctxt "printdialog|liststore2"
msgid "Left to right, then down"
msgstr "Links na regs, dan af"
#. fnfLt
-#: vcl/uiconfig/ui/printdialog.ui:1255
+#: vcl/uiconfig/ui/printdialog.ui:1258
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then right"
msgstr "Bo na onder, dan regs"
#. y6nZE
-#: vcl/uiconfig/ui/printdialog.ui:1256
+#: vcl/uiconfig/ui/printdialog.ui:1259
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then left"
msgstr "Bo na onder, dan links"
#. PteTg
-#: vcl/uiconfig/ui/printdialog.ui:1257
+#: vcl/uiconfig/ui/printdialog.ui:1260
msgctxt "printdialog|liststore2"
msgid "Right to left, then down"
msgstr "Regs na links, dan af"
#. DvF8r
-#: vcl/uiconfig/ui/printdialog.ui:1261
+#: vcl/uiconfig/ui/printdialog.ui:1264
msgctxt "printdialog|extended_tip|orderbox"
msgid "Select order in which pages are to be printed."
msgstr "Selekter die volgorde waarin bladsye gedruk word."
#. QG59F
-#: vcl/uiconfig/ui/printdialog.ui:1273
+#: vcl/uiconfig/ui/printdialog.ui:1276
msgctxt "printdialog|bordercb"
msgid "Draw a border around each page"
msgstr "Teken ’n raam rondom elke bladsy"
#. 8aAGu
-#: vcl/uiconfig/ui/printdialog.ui:1282
+#: vcl/uiconfig/ui/printdialog.ui:1285
msgctxt "printdialog|extended_tip|bordercb"
msgid "Check to draw a border around each page."
msgstr "Merk die vakkie vir omranding van elke bladsy."
#. Yo4xV
-#: vcl/uiconfig/ui/printdialog.ui:1294
+#: vcl/uiconfig/ui/printdialog.ui:1297
msgctxt "printdialog|brochure"
msgid "Brochure"
msgstr "Brosjure"
#. 3zcKq
-#: vcl/uiconfig/ui/printdialog.ui:1304
+#: vcl/uiconfig/ui/printdialog.ui:1307
msgctxt "printdialog|extended_tip|brochure"
msgid "Select to print the document in brochure format."
msgstr "Spesifiseer om die dokument te druk in brosjure formaat."
#. JMA7A
-#: vcl/uiconfig/ui/printdialog.ui:1327
+#: vcl/uiconfig/ui/printdialog.ui:1330
msgctxt "printdialog|collationpreview"
msgid "Collation preview"
msgstr "Sorteer orde voorskou"
#. dePkB
-#: vcl/uiconfig/ui/printdialog.ui:1332
+#: vcl/uiconfig/ui/printdialog.ui:1335
msgctxt "printdialog|extended_tip|orderpreview"
msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look."
msgstr "Wysig die bladsyrangskikking soos dit op elke blad gedruk moet word. Die voorskou toon die finale bladuitleg."
#. fCjdq
-#: vcl/uiconfig/ui/printdialog.ui:1354
+#: vcl/uiconfig/ui/printdialog.ui:1357
msgctxt "printdialog|layoutexpander"
msgid "M_ore"
msgstr "M_eer"
#. rCBA5
-#: vcl/uiconfig/ui/printdialog.ui:1370
+#: vcl/uiconfig/ui/printdialog.ui:1373
msgctxt "printdialog|label3"
msgid "Page Layout"
msgstr "Bladuitleg"
#. A2iC5
-#: vcl/uiconfig/ui/printdialog.ui:1393
+#: vcl/uiconfig/ui/printdialog.ui:1396
msgctxt "printdialog|generallabel"
msgid "General"
msgstr "Algemeen"
#. CzGM4
-#: vcl/uiconfig/ui/printdialog.ui:1447
+#: vcl/uiconfig/ui/printdialog.ui:1450
msgctxt "printdialog|extended_tip|PrintDialog"
msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document."
msgstr "Druk die huidige: hele dokument of seleksie- of gespesifiseerde-bladsy(/)e. U kan ook die drukopsies vir die huidige dokument spesifiseer."
diff --git a/source/am/basic/messages.po b/source/am/basic/messages.po
index a16d1a9ea75..09ff711345d 100644
--- a/source/am/basic/messages.po
+++ b/source/am/basic/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-09-20 13:02+0200\n"
-"PO-Revision-Date: 2021-01-25 14:03+0000\n"
+"PO-Revision-Date: 2021-10-09 20:01+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/basicmessages/am/>\n"
"Language: am\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.8.1\n"
"X-POOTLE-MTIME: 1558283735.000000\n"
#. CacXi
@@ -900,3 +900,5 @@ msgid ""
"$ERR\n"
"Additional information: $MSG"
msgstr ""
+"$ERR\n"
+"ተጨማሪ መረጃ: $MSG"
diff --git a/source/am/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po b/source/am/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po
index 07ffc42af99..746fffaf4cc 100644
--- a/source/am/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po
+++ b/source/am/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-11 18:38+0200\n"
+"POT-Creation-Date: 2021-10-20 13:07+0200\n"
"PO-Revision-Date: 2016-05-01 16:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -26,12 +26,12 @@ msgctxt ""
msgid "Firebird Embedded"
msgstr "Firebird ተጣብቋል"
-#. 3davX
+#. ZVyum
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
".Drivers.Installed.sdbc:firebird:*\n"
"DriverTypeDisplayName\n"
"value.text"
-msgid "Firebird File"
-msgstr "የ Firebird ፋይል"
+msgid "Firebird External"
+msgstr ""
diff --git a/source/am/extensions/messages.po b/source/am/extensions/messages.po
index e3b0076daab..f108305b25c 100644
--- a/source/am/extensions/messages.po
+++ b/source/am/extensions/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-10 23:11+0200\n"
-"PO-Revision-Date: 2021-09-12 07:36+0000\n"
+"POT-Creation-Date: 2021-10-20 13:07+0200\n"
+"PO-Revision-Date: 2021-10-12 09:36+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/extensionsmessages/am/>\n"
"Language: am\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1558548713.000000\n"
#. cBx8W
@@ -3863,7 +3863,7 @@ msgstr "በ ተጠቃሚ-የሚወሰነ ሜዳ _3"
#: extensions/uiconfig/sbibliography/ui/generalpage.ui:881
msgctxt "generalpage|localurl"
msgid "Local copy"
-msgstr ""
+msgstr "የ አካባቢ ኮፒ"
#. ddQ5G
#: extensions/uiconfig/sbibliography/ui/generalpage.ui:915
@@ -4079,7 +4079,7 @@ msgstr "በ ተጠቃሚው-የሚወሰነ ሜዳ _5"
#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:955
msgctxt "mappingdialog|label33"
msgid "Local copy"
-msgstr ""
+msgstr "የ አካባቢ ኮፒ"
#. wkCw6
#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:1051
@@ -4178,91 +4178,163 @@ msgid "Scanner"
msgstr "ማሰሻ"
#. 8aFBr
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:66
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:78
msgctxt "sanedialog|deviceInfoButton"
msgid "About Dev_ice"
msgstr "ስለ አካ_ሎች"
+#. 3aG8b
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:85
+msgctxt "sanedialog|extended_tip|deviceInfoButton"
+msgid "Displays a popup window with information obtained from the scanner driver."
+msgstr ""
+
#. 3EeXn
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:80
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:97
msgctxt "sanedialog|previewButton"
msgid "Create Previe_w"
msgstr "መፍጠሪያ ቅድመ_እይታ"
+#. FPGEB
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:104
+msgctxt "sanedialog|extended_tip|previewButton"
+msgid "Scans and displays the document in the preview area."
+msgstr ""
+
#. ihLsf
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:94
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:116
msgctxt "sanedialog|scanButton"
msgid "_Scan"
msgstr "_ማሰሻ"
+#. a4hC3
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:123
+msgctxt "sanedialog|extended_tip|ok"
+msgid "Scans an image, and then inserts the result into the document and closes the dialog."
+msgstr ""
+
#. gFREe
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:160
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:187
msgctxt "sanedialog|label3"
msgid "_Left:"
msgstr "በ _ግራ:"
#. ErDB4
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:174
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:201
msgctxt "sanedialog|label4"
msgid "To_p:"
msgstr "ከ_ላይ:"
#. bSfBR
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:188
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:215
msgctxt "sanedialog|label5"
msgid "_Right:"
msgstr "በ _ቀኝ:"
#. NGDq3
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:202
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:229
msgctxt "sanedialog|label6"
msgid "_Bottom:"
msgstr "ከ _ታች:"
+#. nu6SM
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:249
+msgctxt "sanedialog|extended_tip|topSpinbutton"
+msgid "Set the top margin of the scan area."
+msgstr ""
+
+#. oDppB
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:268
+msgctxt "sanedialog|extended_tip|rightSpinbutton"
+msgid "Set the right margin of the scan area."
+msgstr ""
+
+#. EdgNn
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:287
+msgctxt "sanedialog|extended_tip|bottomSpinbutton"
+msgid "Set the bottom margin of the scan area."
+msgstr ""
+
+#. L7tZS
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:306
+msgctxt "sanedialog|extended_tip|leftSpinbutton"
+msgid "Set the left margin of the scan area."
+msgstr ""
+
#. YfU4m
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:274
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:321
msgctxt "sanedialog|label1"
msgid "Scan Area"
msgstr "ቦታ ማሰሻ"
+#. wECiq
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:366
+msgctxt "sanedialog|extended_tip|preview"
+msgid "Displays a preview of the scanned image. The preview area contains eight handles. Drag the handles to adjust the scan area or enter a value in the corresponding margin spin box."
+msgstr ""
+
#. FZ7Vw
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:327
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:379
msgctxt "sanedialog|label2"
msgid "Preview"
msgstr "ቅድመ እይታ"
#. EiiLN
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:361
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:413
msgctxt "sanedialog|label7"
msgid "Device _used"
msgstr "_የተጠቀሙበት አካል"
#. W6hNP
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:375
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:427
msgctxt "sanedialog|label8"
msgid "Resolution [_DPI]"
msgstr "ሪዞሊሽን [_ነበኢ]"
+#. diRy3
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:444
+msgctxt "sanedialog|extended_tip|deviceCombobox"
+msgid "Displays a list of available scanners detected in your system."
+msgstr ""
+
+#. nBuc6
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:466
+msgctxt "sanedialog|extended_tip|reslCombobox"
+msgid "Select the resolution in dots per inch for the scan job."
+msgstr ""
+
#. t3Tuq
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:430
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:492
msgctxt "sanedialog|advancedCheckbutton"
msgid "Show advanced options"
msgstr "የረቀቁ ምርጫዎች ማሳያ"
+#. yXnEA
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:500
+msgctxt "sanedialog|extended_tip|advancedcheckbutton"
+msgid "Mark this checkbox to display more configuration options for the scanner device."
+msgstr ""
+
#. gneMZ
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:460
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:527
msgctxt "sanedialog|label10"
msgid "Options:"
msgstr "ምርጫዎች:"
+#. 4FHyM
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:569
+msgctxt "sanedialog\\extended_tip|optionSvTreeListBox"
+msgid "Displays the list of available scanner driver advanced options. Double click an option to display its contents just below."
+msgstr ""
+
#. VDQay
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:536
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:607
msgctxt "sanedialog|optionsButton"
msgid "Se_t"
msgstr "ማሰና_ጃ"
#. bNTfS
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:609
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:680
msgctxt "sanedialog|vectorLabel"
msgid "Vector element"
msgstr "Vector element"
diff --git a/source/am/fpicker/messages.po b/source/am/fpicker/messages.po
index 9556097195a..1e284d4b909 100644
--- a/source/am/fpicker/messages.po
+++ b/source/am/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
"PO-Revision-Date: 2021-01-25 14:03+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/fpickermessages/am/>\n"
@@ -222,49 +222,49 @@ msgid "_Open"
msgstr "_መክፈቻ"
#. JnE2t
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:548
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:551
msgctxt "explorerfiledialog|play"
msgid "_Play"
msgstr "_ማጫወቻ"
#. dWNqZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:586
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:589
msgctxt "explorerfiledialog|file_name_label"
msgid "File _name:"
msgstr "የ ፋይሉ _ስም:"
#. 9cjFB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:612
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:615
msgctxt "explorerfiledialog|file_type_label"
msgid "File _type:"
msgstr "የ ፋይሉ _አይነት:"
#. quCXH
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:676
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:679
msgctxt "explorerfiledialog|readonly"
msgid "_Read-only"
msgstr "ለ _ማንበብ-ብቻ"
#. hm2xy
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:699
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:702
msgctxt "explorerfiledialog|password"
msgid "Save with password"
msgstr "በ መግቢያ ቃል ማስቀመጫ"
#. 8EYcB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:712
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:715
msgctxt "explorerfiledialog|extension"
msgid "_Automatic file name extension"
msgstr "_ራሱ በራሱ የፋይል ተቀጥያዎችን መሰየሚያ"
#. 2CgAZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:725
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:728
msgctxt "explorerfiledialog|options"
msgid "Edit _filter settings"
msgstr "ማረሚያ የ _ማጣሪያ ማሰናጃዎች"
#. 6XqLj
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:752
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:755
msgctxt "explorerfiledialog|gpgencrypt"
msgid "Encrypt with GPG key"
msgstr "በ GPG ቁልፍ መመስጠሪያ"
@@ -323,68 +323,62 @@ msgctxt "remotefilesdialog|open"
msgid "_Open"
msgstr "_መክፈቻ"
-#. kKETY
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:157
-msgctxt "remotefilesdialog|save"
-msgid "_Save"
-msgstr "_ማስቀመጫ"
-
#. uGwr4
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:186
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:175
msgctxt "remotefilesdialog|label1"
msgid "Service:"
msgstr "ግልጋሎት:"
#. cwNkT
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:214
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:203
msgctxt "remotefilesdialog|add_service_btn"
msgid "_Manage services"
msgstr "የ ግልጋሎት አስተዳዳሪ"
#. Jnndg
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:264
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:253
msgctxt "remotefilesdialog|list_view|tooltip_text"
msgid "List view"
msgstr "ዝርዝር መመልከቻ"
#. xxBtB
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:279
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:268
msgctxt "remotefilesdialog|icon_view|tooltip_text"
msgid "Icon view"
msgstr "ምልክት መመልከቻ"
#. 6CiqC
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:295
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:284
msgctxt "remotefilesdialog|new_folder|tooltip_text"
msgid "Create New Folder"
msgstr "አዲስ ፎልደር መፍጠሪያ"
#. aXDaC
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:400
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:389
msgctxt "remotefilesdialog|name"
msgid "Name"
msgstr "ስም"
#. qRHnF
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:420
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:409
msgctxt "remotefilesdialog|size"
msgid "Size"
msgstr "መጠን"
#. qeF3r
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:434
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:423
msgctxt "remotefilesdialog|date"
msgid "Date modified"
msgstr "ቀን ተሻሽሏል"
#. cGNWD
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:508
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:499
msgctxt "remotefilesdialog|filterLabel"
msgid "Filter"
msgstr "ማጣሪያ"
#. rCVer
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:522
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:513
msgctxt "remotefilesdialog|nameLabel"
msgid "File name"
msgstr "የ ፋይሉ ስም"
diff --git a/source/am/framework/messages.po b/source/am/framework/messages.po
index 3a055b8a771..a8a3556b5bd 100644
--- a/source/am/framework/messages.po
+++ b/source/am/framework/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-06-11 17:08+0200\n"
-"PO-Revision-Date: 2021-06-13 09:18+0000\n"
+"PO-Revision-Date: 2021-10-24 05:36+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/frameworkmessages/am/>\n"
"Language: am\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.6.2\n"
+"X-Generator: Weblate 4.8.1\n"
"X-POOTLE-MTIME: 1508611040.000000\n"
#. 5dTDC
@@ -50,7 +50,7 @@ msgstr "እቃ መደርደሪያ ~ማስተካከያ..."
#: framework/inc/strings.hrc:29
msgctxt "STR_TOOLBAR_UNDOCK_TOOLBAR"
msgid "U~ndock Toolbar"
-msgstr "የ እቃ መደርደሪያ ማ~ውረጃ"
+msgstr "የ እቃ መደርደሪያ ማ~ባረሪያ"
#. 7GcGg
#: framework/inc/strings.hrc:30
@@ -154,7 +154,7 @@ msgstr "~እንደ ነበር መመለሻ"
#: framework/inc/strings.hrc:44
msgctxt "STR_LOCK_TOOLBARS"
msgid "~Lock Toolbars"
-msgstr "እቃ መደርደሪያ ~መቂፊያ"
+msgstr "እቃ መደርደሪያ ~መቆለፊያ"
#. ntyDa
#: framework/inc/strings.hrc:45
diff --git a/source/am/helpcontent2/source/auxiliary.po b/source/am/helpcontent2/source/auxiliary.po
index fc308cef81e..cf7c18c14eb 100644
--- a/source/am/helpcontent2/source/auxiliary.po
+++ b/source/am/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-10 23:11+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
"PO-Revision-Date: 2020-02-01 14:30+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://weblate.documentfoundation.org/projects/libo_help-master/auxiliary/am/>\n"
@@ -304,6 +304,15 @@ msgctxt ""
msgid "Protection"
msgstr "መጠበቂያ"
+#. m2Dpj
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"0815\n"
+"node.text"
+msgid "Writing Calc Macros"
+msgstr ""
+
#. Q59GN
#: scalc.tree
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/sbasic/guide.po b/source/am/helpcontent2/source/text/sbasic/guide.po
index eef474683ae..fa79de8fa64 100644
--- a/source/am/helpcontent2/source/text/sbasic/guide.po
+++ b/source/am/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-20 13:02+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
"PO-Revision-Date: 2018-07-04 23:04+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1249,6 +1249,348 @@ msgctxt ""
msgid "On the dialog, drag the button to the size you want."
msgstr "በሚፈልጉት መጠን ልክ ከንግግሩ ላይ ቁልፉን ይጎትቱ"
+#. fRi68
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"tit\n"
+"help.text"
+msgid "Reading and Writing values to Ranges"
+msgstr ""
+
+#. 3hH3s
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"hd_id461623364876507\n"
+"help.text"
+msgid "<variable id=\"title\"><link href=\"text/sbasic/guide/read_write_values.xhp\" name=\"ReadWriteValues_h1\">Reading and Writing values to Ranges</link></variable>"
+msgstr ""
+
+#. ZKUBE
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id781633210592228\n"
+"help.text"
+msgid "Macros in %PRODUCTNAME Calc often need to read and write values from/to sheets. This help page describes the various approaches to accessing sheets and ranges to read or write their values."
+msgstr ""
+
+#. D4ZJu
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id191633214565965\n"
+"help.text"
+msgid "All examples presented in this page can be implemented both in Basic and Python."
+msgstr ""
+
+#. LfNCy
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"hd_id331633213558740\n"
+"help.text"
+msgid "Accessing a Single Cell"
+msgstr ""
+
+#. A5M3f
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id731633213581386\n"
+"help.text"
+msgid "The example below enters the numeric value 123 into cell \"A1\" of the current sheet."
+msgstr ""
+
+#. G6yWX
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id131633213887433\n"
+"help.text"
+msgid "The same can be accomplished with Python:"
+msgstr ""
+
+#. CDmg6
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id861633214219511\n"
+"help.text"
+msgid "Note that in the previous examples the cell is accessed using its range name \"A1\". It is also possible to access cells using indices as though the sheet were a matrix where columns and rows are indexed starting from zero."
+msgstr ""
+
+#. Jja4D
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id161633214461067\n"
+"help.text"
+msgid "This can be done using the <literal>getCellByPosition(colIndex, rowIndex)</literal> method, that takes in a column and a row index. The example below in Basic changes the text value in cell \"C1\" (column 2, row 0)."
+msgstr ""
+
+#. 5tsZR
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id221633214713436\n"
+"help.text"
+msgid "This example can also be implemented in Python as follows:"
+msgstr ""
+
+#. h6eq5
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id101633215142970\n"
+"help.text"
+msgid "The main difference between Python and Basic scripts lies on how to get access to the sheet object by using the <literal>XSCRIPTCONTEXT</literal> context variable. After that, all methods and properties are identical in Basic and Python."
+msgstr ""
+
+#. PmETF
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"hd_id411633215666257\n"
+"help.text"
+msgid "Values, Strings and Formulas"
+msgstr ""
+
+#. MBHDg
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id861633215682610\n"
+"help.text"
+msgid "Calc cells can have three types of values: numeric, strings and formulas. Each type has its own set and get methods:"
+msgstr ""
+
+#. RXE76
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id191633215791905\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. rYCuZ
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id181633215791905\n"
+"help.text"
+msgid "Numeric"
+msgstr ""
+
+#. ywHfC
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id961633215932180\n"
+"help.text"
+msgid "Text"
+msgstr ""
+
+#. KH9Ya
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id651633215984116\n"
+"help.text"
+msgid "Formula"
+msgstr ""
+
+#. nGhov
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id21633215845395\n"
+"help.text"
+msgid "Dates and currency values are considered as numeric values in Calc."
+msgstr ""
+
+#. t87Qx
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id221633216111353\n"
+"help.text"
+msgid "The following example enters numeric values into cells \"A1\" and \"A2\" and inserts a formula in cell \"A3\" that returns the multiplication of these values."
+msgstr ""
+
+#. r6BG6
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"hd_id321633216630043\n"
+"help.text"
+msgid "Accessing Ranges in Different Sheets"
+msgstr ""
+
+#. TFU8U
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id371633216672570\n"
+"help.text"
+msgid "The previous examples used only the active sheet to perform operations. It is possible to access cell ranges in different sheets by their indices or names."
+msgstr ""
+
+#. c3yhF
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id861633216843382\n"
+"help.text"
+msgid "The example below enters a numeric value into cell \"A1\" of the sheet named \"Sheet2\"."
+msgstr ""
+
+#. GpnNS
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id611633217090743\n"
+"help.text"
+msgid "This example can also be implemented in Python as follows:"
+msgstr ""
+
+#. xGQ3k
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id631633217279518\n"
+"help.text"
+msgid "Sheets can also be accessed using zero-based indices indicating which sheet considering the order they appear in the Calc file."
+msgstr ""
+
+#. tSo3e
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id291633264880172\n"
+"help.text"
+msgid "In Basic, instead of using the <literal>getByName</literal> method, use <literal>Sheets(sheetIndex)</literal> as shown next:"
+msgstr ""
+
+#. svDuj
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id891633265000047\n"
+"help.text"
+msgid "This can be done in a similar fashion in Python:"
+msgstr ""
+
+#. 6qHAn
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"hd_id451633265241066\n"
+"help.text"
+msgid "Using the ScriptForge Library"
+msgstr ""
+
+#. 8CkSe
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id731633265268585\n"
+"help.text"
+msgid "The Calc service of the ScriptForge library can be used to get and set cell values as follows:"
+msgstr ""
+
+#. DCJ2E
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id551633265526538\n"
+"help.text"
+msgid "' Loads the ScriptForge library"
+msgstr ""
+
+#. hgDyM
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id581633265527001\n"
+"help.text"
+msgid "' Gets access to the current Calc document"
+msgstr ""
+
+#. Gw4KG
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id751633265527427\n"
+"help.text"
+msgid "' Sets the value of cells A1 and A2"
+msgstr ""
+
+#. VUWVE
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id781633267324929\n"
+"help.text"
+msgid "The <literal>setValue</literal> method can be used to set both numeric and text values. To set a cell formula, use the <literal>setFormula</literal> method."
+msgstr ""
+
+#. jPRii
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id251633265634883\n"
+"help.text"
+msgid "With the Calc service, getting and setting cell values can be done with a single line of code. The example below gets the value from cell \"A1\" and shows it on a message box."
+msgstr ""
+
+#. NzUg4
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id521633608223310\n"
+"help.text"
+msgid "The ScriptForge library also makes it simpler to access ranges in different sheets, as demonstrated in the example below:"
+msgstr ""
+
+#. CCeEh
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"bas_id521633608366292\n"
+"help.text"
+msgid "' Gets cell \"A1\" from the sheet named \"Sheet1\""
+msgstr ""
+
+#. qUTqA
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"bas_id661633608366484\n"
+"help.text"
+msgid "' Gets cell \"B3\" from the sheet named \"Sheet2\""
+msgstr ""
+
+#. mCX5W
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"bas_id501633608516381\n"
+"help.text"
+msgid "' Places the result into cell \"A1\" of sheet \"Report\""
+msgstr ""
+
+#. ZdkEz
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id431633266057163\n"
+"help.text"
+msgid "The examples above can also be implemented in Python as follows:"
+msgstr ""
+
#. ayg6P
#: sample_code.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/sbasic/python.po b/source/am/helpcontent2/source/text/sbasic/python.po
index 57a0c0ab703..b3951c7b4d6 100644
--- a/source/am/helpcontent2/source/text/sbasic/python.po
+++ b/source/am/helpcontent2/source/text/sbasic/python.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-27 19:09+0200\n"
+"POT-Creation-Date: 2021-10-25 12:48+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -580,13 +580,13 @@ msgctxt ""
msgid "Monitoring Document Events"
msgstr ""
-#. SZGH4
+#. VwSwW
#: python_document_events.xhp
msgctxt ""
"python_document_events.xhp\n"
"N0530\n"
"help.text"
-msgid "Monitoring is illustrated herewith for Basic and Python languages using object-oriented programming. Assigning <literal>OnLoad</literal> script, to the <emph>Open Document</emph> event, suffices to initiate and terminate document event monitoring. <menuitem>Tools - Customize</menuitem> menu <menuitem>Events</menuitem> tab is used to assign either scripts."
+msgid "Monitoring is illustrated herewith for Basic and Python languages using object-oriented programming. Assigning <literal>OnLoad</literal> script, to the <menuitem>Open Document</menuitem> event, suffices to initiate and terminate document event monitoring. <menuitem>Tools - Customize</menuitem> menu <menuitem>Events</menuitem> tab is used to assign either scripts."
msgstr ""
#. KgWvt
@@ -625,13 +625,13 @@ msgctxt ""
msgid "Events monitoring starts from object instantiation and ultimately stops when Python releases the object. Raised events are reported using <literal>Access2Base</literal> console."
msgstr ""
-#. D2HXF
+#. mCDwK
#: python_document_events.xhp
msgctxt ""
"python_document_events.xhp\n"
"N0534\n"
"help.text"
-msgid "<literal>OnLoad</literal> and <literal>OnUnload</literal> events can be used to respectively set and unset Python programs path. They are described as <emph>Open document</emph> and <emph>Document closed</emph>."
+msgid "<literal>OnLoad</literal> and <literal>OnUnload</literal> events can be used to respectively set and unset Python programs path. They are described as <menuitem>Open document</menuitem> and <menuitem>Document closed</menuitem>."
msgstr ""
#. AdYNb
@@ -805,6 +805,15 @@ msgctxt ""
msgid "def OnLoad(*args): # 'Open Document' event"
msgstr ""
+#. PmjAB
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0602\n"
+"help.text"
+msgid "listener = UiDocument() # Initiates listening"
+msgstr ""
+
#. CkJg4
#: python_document_events.xhp
msgctxt ""
@@ -868,6 +877,15 @@ msgctxt ""
msgid "\"\"\" Display console content/dialog \"\"\""
msgstr ""
+#. mPJ3B
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0638\n"
+"help.text"
+msgid "''' Grab application-based Basic script '''"
+msgstr ""
+
#. 2dfeg
#: python_document_events.xhp
msgctxt ""
@@ -877,13 +895,13 @@ msgctxt ""
msgid "Mind the misspelled <literal>documentEventOccured</literal> method that inherits a typo from %PRODUCTNAME Application Programming Interface (API)."
msgstr ""
-#. CuAga
+#. qNVD4
#: python_document_events.xhp
msgctxt ""
"python_document_events.xhp\n"
"N0648\n"
"help.text"
-msgid "<emph>Start application</emph> and <emph>Close application</emph> events can respectively be used to set and to unset Python path for user scripts or %PRODUCTNAME scripts. In a similar fashion, document based Python libraries or modules can be loaded and released using <emph>Open document</emph> and <emph>Document closed</emph> events. Refer to <link href=\"text/sbasic/python/python_import.xhp\" name=\"Importing Python Modules\">Importing Python Modules</link> for more information."
+msgid "<menuitem>Start application</menuitem> and <menuitem>Close application</menuitem> events can respectively be used to set and to unset Python path for user scripts or %PRODUCTNAME scripts. In a similar fashion, document based Python libraries or modules can be loaded and released using <menuitem>Open document</menuitem> and <menuitem>Document closed</menuitem> events. Refer to <link href=\"text/sbasic/python/python_import.xhp\" name=\"Importing Python Modules\">Importing Python Modules</link> for more information."
msgstr ""
#. 8pHCg
@@ -3505,38 +3523,110 @@ msgctxt ""
msgid "The Python interactive console, also known as Python interpreter or Python shell, provides programmers with a quick way to execute commands and try out and test code without creating a file. UNO objects introspection as well as %PRODUCTNAME Python modules documentation can be obtained from the terminal."
msgstr ""
-#. MZodx
+#. kFpxo
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"par_id851633601202270\n"
+"help.text"
+msgid "From a full-featured %PRODUCTNAME installed package, use either Basic or Python:"
+msgstr ""
+
+#. 5HhXz
#: python_shell.xhp
msgctxt ""
"python_shell.xhp\n"
"N0121\n"
"help.text"
-msgid "Using a Basic macro:"
+msgid "Using a Basic macro"
msgstr ""
-#. vXGF7
+#. KhWLk
#: python_shell.xhp
msgctxt ""
"python_shell.xhp\n"
"N0127\n"
"help.text"
-msgid "Using a Python macro:"
+msgid "Using a Python macro"
msgstr ""
-#. oBg3T
+#. 3FCJH
#: python_shell.xhp
msgctxt ""
"python_shell.xhp\n"
"N0141\n"
"help.text"
-msgid "Usage:"
+msgid "Example output"
msgstr ""
-#. EzwwC
+#. MxDtE
#: python_shell.xhp
msgctxt ""
"python_shell.xhp\n"
"N0142\n"
"help.text"
-msgid "<image src=\"media/helpimg/python/python_shell.png\" id=\"N0143\"><alt id=\"N0144\">Python Interactive Console</alt></image>"
+msgid "<image src=\"media/helpimg/python/python_interactive_console.png\" id=\"N0143\"><alt id=\"N0143\">Python Interactive Console</alt></image>"
+msgstr ""
+
+#. fk6sx
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"hd_id381633446811095\n"
+"help.text"
+msgid "Using the Terminal"
+msgstr ""
+
+#. CNFdD
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"par_id801633601715910\n"
+"help.text"
+msgid "From a %PRODUCTNAME copy included in a GNU/Linux platform, use the terminal as shown:"
+msgstr ""
+
+#. vWPwe
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"par_id531633444780190\n"
+"help.text"
+msgid "<literal>whereis</literal> or <literal>type</literal> terminal commands help locate Python interactive console:"
+msgstr ""
+
+#. 8Ei5d
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"hd_id311633513620803\n"
+"help.text"
+msgid "Alternative console"
+msgstr ""
+
+#. d8DCA
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"par_id81632760673283\n"
+"help.text"
+msgid "Use <link href=\"https://extensions.libreoffice.org/extensions/apso-alternative-script-organizer-for-Python\" name=\"APSO extension\">APSO extension</link> console as an alternative:"
+msgstr ""
+
+#. 6h9CS
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"N0144\n"
+"help.text"
+msgid "<image src=\"media/helpimg/python/python_shell.png\" id=\"N0144\"><alt id=\"N0144\">APSO console</alt></image>"
+msgstr ""
+
+#. DNr5W
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"par_id351633599611244\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03/sf_exception.html?#PythonShell\" name=\"PythonShell method\"><literal>PythonShell</literal></link> function in <link href=\"text/sbasic/shared/03/sf_exception.html\" name=\"ScriptForge.Exception service\"><literal>ScriptForge.Exception</literal></link> service"
msgstr ""
diff --git a/source/am/helpcontent2/source/text/sbasic/shared.po b/source/am/helpcontent2/source/text/sbasic/shared.po
index d16d8e3c30d..7fa8d93a24e 100644
--- a/source/am/helpcontent2/source/text/sbasic/shared.po
+++ b/source/am/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-04 19:51+0200\n"
+"POT-Creation-Date: 2021-10-25 12:48+0200\n"
"PO-Revision-Date: 2018-10-21 20:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16621,13 +16621,13 @@ msgctxt ""
msgid "MsgBox Right(\"00\" & lHour , 2) & \":\"& Right(\"00\" & lMin , 2) & \":\" & Right(\"00\" & lSec , 2), 0, \"The time is\""
msgstr ""
-#. CWMJG
+#. oYudq
#: 03030303.xhp
msgctxt ""
"03030303.xhp\n"
"par_id491610993401822\n"
"help.text"
-msgid "The <literal>Timer</literal> function measures time in seconds. To measure time in milliseconds use the <embedvar href=\"text/sbasic/shared/03/sf_timer.xhp#TimerService\"/>."
+msgid "The <literal>Timer</literal> function measures time in seconds. To measure time in milliseconds use the <link href=\"text/sbasic/shared/03/sf_timer.xhp\" name=\"Timer_link\">Timer service</link> available in the <literal>ScriptForge</literal> library."
msgstr ""
#. ATnCy
@@ -24586,14 +24586,14 @@ msgctxt ""
msgid "<bookmark_value>Type statement</bookmark_value>"
msgstr "<bookmark_value>የ አይነት አረፍተ ነገር</bookmark_value>"
-#. aKHFj
+#. pipio
#: 03090413.xhp
msgctxt ""
"03090413.xhp\n"
"hd_id3153311\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">የ አረፍተ ነገር አይነት</link>"
+msgid "<variable id=\"Type_h1\"><link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link></variable>"
+msgstr ""
#. TYvyD
#: 03090413.xhp
@@ -27799,14 +27799,14 @@ msgctxt ""
msgid "<bookmark_value>IsObject function</bookmark_value>"
msgstr "<bookmark_value>እቃ ነው ተግባር</bookmark_value>"
-#. 9oZFD
+#. MF9nS
#: 03102800.xhp
msgctxt ""
"03102800.xhp\n"
-"hd_id3149346\n"
+"hd_id51633474369322\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03102800.xhp\" name=\"IsObject Function\">IsObject Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03102800.xhp\" name=\"IsObject Function\">እቃ ነው ተግባር</link>"
+msgid "<variable id=\"IsObject_h1\"><link href=\"text/sbasic/shared/03102800.xhp\" name=\"IsObject Function\">IsObject Function</link></variable>"
+msgstr ""
#. AyVCR
#: 03102800.xhp
@@ -27817,67 +27817,13 @@ msgctxt ""
msgid "Tests if a variable is an object, as opposed to primitive data types such as dates, numbers, texts. The function returns <literal>True</literal> if the variable is an object, otherwise it returns <literal>False</literal>."
msgstr ""
-#. gBKMV
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"hd_id3149234\n"
-"help.text"
-msgid "Syntax:"
-msgstr "አገባብ:"
-
-#. C8wfe
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"par_id3154285\n"
-"help.text"
-msgid "IsObject(var)"
-msgstr ""
-
-#. ni2zH
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"hd_id3148685\n"
-"help.text"
-msgid "Return value:"
-msgstr "ይመልሳል ዋጋ:"
-
-#. 4SsCT
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"par_id3156024\n"
-"help.text"
-msgid "Boolean"
-msgstr ""
-
-#. rEmQA
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"hd_id3148947\n"
-"help.text"
-msgid "Parameters:"
-msgstr "ደንቦች:"
-
-#. JBB4B
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"par_id3148552\n"
-"help.text"
-msgid "<emph>var:</emph> Any variable that you want to test."
-msgstr ""
-
-#. SPGXx
+#. jCmJE
#: 03102800.xhp
msgctxt ""
"03102800.xhp\n"
"par_id891575896963115\n"
"help.text"
-msgid "The following objects return <literal>True</literal>:"
+msgid "This function returns <literal>True</literal> for the following object types:"
msgstr ""
#. CBoWs
@@ -27934,6 +27880,24 @@ msgctxt ""
msgid "Data structures return <literal>True</literal> even when empty. Object defined variables return <literal>True</literal> even if uninitialized."
msgstr ""
+#. 4SsCT
+#: 03102800.xhp
+msgctxt ""
+"03102800.xhp\n"
+"par_id3156024\n"
+"help.text"
+msgid "Boolean"
+msgstr ""
+
+#. rTuwL
+#: 03102800.xhp
+msgctxt ""
+"03102800.xhp\n"
+"par_id3148552\n"
+"help.text"
+msgid "<emph>var:</emph> The variable to be tested."
+msgstr ""
+
#. yHDkt
#: 03102800.xhp
msgctxt ""
@@ -28888,14 +28852,14 @@ msgctxt ""
msgid "Set Statement"
msgstr "አረፍተ ነገር ማሰናጃ"
-#. GzHJQ
+#. zHGh5
#: 03103700.xhp
msgctxt ""
"03103700.xhp\n"
"bm_id3154422\n"
"help.text"
-msgid "<bookmark_value>Set statement</bookmark_value> <bookmark_value>New keyword</bookmark_value> <bookmark_value>Nothing object</bookmark_value>"
-msgstr ""
+msgid "<bookmark_value>Set statement</bookmark_value> <bookmark_value>Nothing object</bookmark_value>"
+msgstr "<bookmark_value>የ ስብስብ አረፍተ ነገር</bookmark_value> <bookmark_value>ምንም እቃ የለም</bookmark_value>"
#. MT9CF
#: 03103700.xhp
@@ -29761,23 +29725,32 @@ msgctxt ""
msgid "<bookmark_value>EqualUnoObjects function</bookmark_value>"
msgstr "<bookmark_value>EqualUnoObjects ተግባር</bookmark_value>"
-#. rqXey
+#. DxBM3
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
-"hd_id3149205\n"
+"hd_id791633472607429\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03104600.xhp\" name=\"EqualUnoObjects Function\">EqualUnoObjects Function</link>"
+msgid "<variable id=\"EqualUnoObjects_h1\"><link href=\"text/sbasic/shared/03104600.xhp\" name=\"EqualUnoObjects Function\">EqualUnoObjects Function</link></variable>"
msgstr ""
-#. wrfhm
+#. Gc4cj
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
"par_id3145090\n"
"help.text"
-msgid "Returns True if the two specified Basic Uno objects represent the same Uno object instance."
-msgstr "ይመልሳል እውነት ሁለቱ የ ተወሰኑት Basic Uno እቃዎች የሚወክሉት ተመሳሳይ Uno እቃ ከሆነ"
+msgid "Returns <emph>True</emph> if the two specified Basic variables represent the same Uno object instance."
+msgstr ""
+
+#. 9Zx4W
+#: 03104600.xhp
+msgctxt ""
+"03104600.xhp\n"
+"par_id61633530293311\n"
+"help.text"
+msgid "<emph>oObj1, oObj2:</emph> the variables to be tested."
+msgstr ""
#. NqNdq
#: 03104600.xhp
@@ -29788,23 +29761,23 @@ msgctxt ""
msgid "Bool"
msgstr "ቡል"
-#. eQEDj
+#. NvGLb
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
-"par_id3156024\n"
+"par_id771633473462939\n"
"help.text"
-msgid "' Copy of objects -> same instance"
-msgstr "' የ እቃዎች ኮፒ -> ተመሳሳይ ሁኔታ"
+msgid "The example below returns <emph>True</emph> because both <literal>oDoc</literal> and <literal>ThisComponent</literal> are references to the same object:"
+msgstr ""
-#. kTNQT
+#. 5QGLx
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
-"par_id3153525\n"
+"par_id181633473874216\n"
"help.text"
-msgid "' Copy of structs as value -> new instance"
-msgstr "' ኮፒ ማድረጊያ አካሉን እንደ ዋጋ -> አዲስ ሁኔታ"
+msgid "The example below returns <emph>False</emph> because the assignment creates a copy of the original object. Hence <literal>Struct1</literal> and <literal>Struct2</literal> refer to different object instances."
+msgstr ""
#. hQzux
#: 03104700.xhp
@@ -30364,13 +30337,13 @@ msgctxt ""
msgid "Use the <emph>Chr$</emph> function to send special control sequences to a printer or to another output source. You can also use it to insert quotation marks in a string expression."
msgstr "ይጠቀሙ የ <emph>Chr$</emph> ተግባር የ ተለየ መቆጣጠሪያ ቅደም ተከተል ለ ማተሚያ ወይንም ለ ሌላ ውጤት ምንጭ: እርስዎ እንዲሁም መጠቀም ይችላሉ ለ ማስገባት የ ጥቅስ ምልክት በ ሀረግ መግለጫ ውስጥ"
-#. Yy5Eh
+#. 36Hj5
#: 03120102.xhp
msgctxt ""
"03120102.xhp\n"
-"par_id111552916434071\n"
+"par_id81634652871848\n"
"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#err6\"/>, when VBA compatibility mode is enabled and expression is greater than 255."
+msgid "An overflow error will occur when VBA compatibility mode is enabled and the expression value is greater than 255."
msgstr ""
#. vHwsG
@@ -32650,14 +32623,14 @@ msgctxt ""
msgid "Split (Text As String, delimiter, number)"
msgstr "መክፈያ (ጽሁፍ እንደ ሀረግ: ምልክት: ቁጥር)"
-#. BNdCD
+#. dBAZR
#: 03120314.xhp
msgctxt ""
"03120314.xhp\n"
"par_id3154285\n"
"help.text"
-msgid "String"
-msgstr "ሐረግ"
+msgid "With Option VBASupport 1: String, with Option VBASupport 0: Variant/String"
+msgstr ""
#. PRupM
#: 03120314.xhp
@@ -35404,14 +35377,14 @@ msgctxt ""
msgid "<bookmark_value>CreateObject function</bookmark_value>"
msgstr "<bookmark_value>እቃ መፍጠሪያ ተግባር</bookmark_value>"
-#. GkTQC
+#. QpKCT
#: 03132400.xhp
msgctxt ""
"03132400.xhp\n"
"par_idN10580\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03132400.xhp\">CreateObject Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03132400.xhp\">እቃ መፍጠሪያ ተግባር</link>"
+msgid "<variable id=\"CreateObject_h1\"><link href=\"text/sbasic/shared/03132400.xhp\">CreateObject Function</link></variable>"
+msgstr ""
#. PAXDf
#: 03132400.xhp
@@ -35431,14 +35404,14 @@ msgctxt ""
msgid "This method creates instances of the type that is passed as parameter."
msgstr "ይህ ዘዴ ይፈጥራል ለ አይነት እንደ ደንብ ያለፈውን"
-#. mNxwL
+#. SHgqs
#: 03132400.xhp
msgctxt ""
"03132400.xhp\n"
-"par_idN105A6\n"
+"par_id191633632167310\n"
"help.text"
-msgid "oObj = CreateObject( type )"
-msgstr "oእቃ = እቃ መፍጠሪያ( አይነት )"
+msgid "<emph>type:</emph> the type of the object to be created, as a string."
+msgstr ""
#. Gthw7
#: 03132500.xhp
@@ -37465,50 +37438,95 @@ msgctxt ""
msgid "Round Function [VBA]"
msgstr "የ ክብ ተግባር [VBA]"
-#. 66dvh
+#. zEB5S
#: 03170000.xhp
msgctxt ""
"03170000.xhp\n"
"bm_id3150499\n"
"help.text"
-msgid "<bookmark_value>Round function</bookmark_value>"
-msgstr "<bookmark_value>የ ክብ ተግባር</bookmark_value>"
+msgid "<bookmark_value>Round function (VBA)</bookmark_value>"
+msgstr ""
-#. FPUAv
+#. oVQUL
#: 03170000.xhp
msgctxt ""
"03170000.xhp\n"
"hd_id3150499\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03170000.xhp\" name=\"Round Function [VBA]\">Round Function [VBA]</link>"
-msgstr "<link href=\"text/sbasic/shared/03170000.xhp\" name=\"Round Function [VBA]\">የ ክብ ተግባር [VBA]</link>"
+msgid "<variable id=\"Round_VBA_h1\"><link href=\"text/sbasic/shared/03170000.xhp\" name=\"Round Function [VBA]\">Round Function [VBA]</link></variable>"
+msgstr ""
-#. PGShA
+#. B6tFP
#: 03170000.xhp
msgctxt ""
"03170000.xhp\n"
"par_id3151384\n"
"help.text"
-msgid "The Round function returns a number rounded to a specified number of digits."
-msgstr "የ ማጠጋጊያ ተግባር የሚመልሰው ቁጥር በ ተወሰነው ቁጥር አሀዝ የ ተጠጋጋውን ቁጥር ነው"
+msgid "Rounds a numeric value to a specified number of decimal digits."
+msgstr ""
+
+#. yUTFN
+#: 03170000.xhp
+msgctxt ""
+"03170000.xhp\n"
+"par_id741634154499890\n"
+"help.text"
+msgid "This function implements the rounding rule known as \"round-to-even\". With this rule, whenever the difference between the number to be rounded and its nearest integer is equal to 0.5, the number is rounded to the nearest even number. See the examples <link href=\"text/sbasic/shared/03170000.xhp#round_example\" name=\"round_ex_link\">below</link> to learn more about this rule."
+msgstr ""
+
+#. DfnHz
+#: 03170000.xhp
+msgctxt ""
+"03170000.xhp\n"
+"par_id691634217736290\n"
+"help.text"
+msgid "Beware that VBA's <literal>Round</literal> function works differently than %PRODUCTNAME Calc's <literal>Round</literal> function. In Calc, if the difference between the number to be rounded and the nearest integer is exactly 0.5, then the number is rounded up. Hence, in Calc the number 2.5 is rounded to 3 whereas using VBA's <literal>Round</literal> function the value 2.5 is rounded to 2 due to the \"round-to-even\" rule."
+msgstr ""
-#. hbUFX
+#. GSzGj
#: 03170000.xhp
msgctxt ""
"03170000.xhp\n"
"par_id240720170117391741\n"
"help.text"
-msgid "<emph>expression</emph>: Required. The numeric expression to be rounded."
-msgstr "<emph>መግለጫ</emph>: ለሚጠጋጋው የ ቁጥር መግለጫ ያስፈልጋል"
+msgid "<emph>expression</emph>: The numeric expression to be rounded."
+msgstr ""
-#. gAZc7
+#. 9E33v
#: 03170000.xhp
msgctxt ""
"03170000.xhp\n"
"par_id240720170117395610\n"
"help.text"
-msgid "<emph>numdecimalplaces</emph>: Optional. Specifies how many places to the right of the decimal are included in the rounding. Default is 0."
-msgstr "<emph>የ ዴሲማል ቁጥር ቦታ</emph>: ከ ዴሲማል በኋላ በ ቀኝ በኩል ምን ያህል ቦታ የሚጠጋጋው እንደሚካተት መወሰኛ: ነባር 0 ነው"
+msgid "<emph>numdecimalplaces</emph>: Optional argument that specifies the number of decimal digits in the resulting rounded value. The default value is 0."
+msgstr ""
+
+#. oSEiU
+#: 03170000.xhp
+msgctxt ""
+"03170000.xhp\n"
+"par_id541634154843718\n"
+"help.text"
+msgid "The following examples illustrate the \"round-to-even\" rule:"
+msgstr ""
+
+#. 4DLZC
+#: 03170000.xhp
+msgctxt ""
+"03170000.xhp\n"
+"bas_id651634154984931\n"
+"help.text"
+msgid "' Rounding to the nearest integer (decimalplaces = 0)"
+msgstr ""
+
+#. DQwkT
+#: 03170000.xhp
+msgctxt ""
+"03170000.xhp\n"
+"bas_id651634157812537\n"
+"help.text"
+msgid "' Rounding with 2 decimal digits (decimalplaces = 2)"
+msgstr ""
#. g7CVV
#: 03170000.xhp
@@ -40165,6 +40183,375 @@ msgctxt ""
msgid "BasicCodeStubs"
msgstr ""
+#. vSapF
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"tit\n"
+"help.text"
+msgid "Collection Object"
+msgstr ""
+
+#. 5of5h
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"bm_id3149205\n"
+"help.text"
+msgid "<bookmark_value>Collection Object</bookmark_value> <bookmark_value>Collection;Count</bookmark_value>"
+msgstr ""
+
+#. 68sg6
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"hd_id791633472607429\n"
+"help.text"
+msgid "<variable id=\"Collection_h1\"><link href=\"text/sbasic/shared/collection.xhp\" name=\"New_Operator\">Collection Object</link></variable>"
+msgstr ""
+
+#. 7xSei
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id581633961735332\n"
+"help.text"
+msgid "Collections can be used to store items of different types. Each item can be accessed by its index or by an optional key associated with it."
+msgstr ""
+
+#. 9b4kg
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id131633961959816\n"
+"help.text"
+msgid "A <literal>Collection</literal> object has the following methods:"
+msgstr ""
+
+#. XoLQr
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id331633962000259\n"
+"help.text"
+msgid "<emph>Add:</emph> inserts a new item into the collection. Optionally a string value can be defined as the key to the item."
+msgstr ""
+
+#. ddAGy
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id181633962000767\n"
+"help.text"
+msgid "<emph>Count:</emph> returns the number of items in the collection."
+msgstr ""
+
+#. ad7qY
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id521633962001072\n"
+"help.text"
+msgid "<emph>Item:</emph> returns the item in the collection by passing its index or key."
+msgstr ""
+
+#. GX6nx
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id981633962001272\n"
+"help.text"
+msgid "<emph>Remove:</emph> removes the specified item from the collection by its index or key."
+msgstr ""
+
+#. yyWx7
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id221633976539661\n"
+"help.text"
+msgid "Items in a Collection can be accessed either by their indices (as in a 1-based single-dimensional Array) or by their associated keys."
+msgstr ""
+
+#. PheLX
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id811634214809970\n"
+"help.text"
+msgid "The <link href=\"text/sbasic/shared/03/sf_dictionary.xhp\" name=\"SFDic_link\"><literal>ScriptForge Dictionary</literal></link> service extends the <literal>Collection</literal> object by providing supplemental features as key retrieval and replacement, as well as import/export to Array objects and JSON strings."
+msgstr ""
+
+#. pJAht
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"hd_id51633962353863\n"
+"help.text"
+msgid "Creating a Collection"
+msgstr ""
+
+#. 28i8B
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id491633962366024\n"
+"help.text"
+msgid "To create a <literal>Collection</literal> use the <literal>New</literal> keyword. The following example creates a <literal>Collection</literal> object and populates it with three items:"
+msgstr ""
+
+#. 8hHmz
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"hd_id421633962742512\n"
+"help.text"
+msgid "Adding Items"
+msgstr ""
+
+#. G49p7
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"bm_id591633974561425\n"
+"help.text"
+msgid "<bookmark_value>Collection;Add</bookmark_value>"
+msgstr ""
+
+#. 3qnWY
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id261633962766238\n"
+"help.text"
+msgid "The <literal>Add</literal> method can be used to add new items into the <literal>Collection</literal> object."
+msgstr ""
+
+#. htAaY
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id501633974650241\n"
+"help.text"
+msgid "<emph>item:</emph> the item to be added to the <literal>Collection</literal>. May be of any type."
+msgstr ""
+
+#. DUGrx
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id181633974650705\n"
+"help.text"
+msgid "<emph>key:</emph> string value used as the unique key used to identify this value."
+msgstr ""
+
+#. yoEzK
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id391633974651050\n"
+"help.text"
+msgid "<emph>before, after:</emph> optional keyword argument that indicates where the new item will be placed in the <literal>Collection</literal>. Only one of the arguments <literal>before</literal> or <literal>after</literal> can be specified to determine the index or key before which (or after which) the new item is to be placed."
+msgstr ""
+
+#. xcdEF
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id211633962988398\n"
+"help.text"
+msgid "The example below adds two elements into a <literal>Collection</literal>. The first has a key associated with it, whereas the second does not."
+msgstr ""
+
+#. ZKBEQ
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id71633963110632\n"
+"help.text"
+msgid "The <literal>Add</literal> method also supports keyword arguments:"
+msgstr ""
+
+#. ZhTZb
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id941633963225913\n"
+"help.text"
+msgid "Keys must be unique in a <literal>Collection</literal> object. Comparison between keys is <emph>case-insensitive</emph>. Adding duplicated keys will result in a runtime error."
+msgstr ""
+
+#. NVgmj
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id891633975568372\n"
+"help.text"
+msgid "The example below illustrates how to use the <literal>Before</literal> and <literal>After</literal> keyword arguments to determine the position of the item that is being added."
+msgstr ""
+
+#. WxjE9
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id121633976325472\n"
+"help.text"
+msgid "Items in a <literal>Collection</literal> object are assigned an integer index value that starts at 1 and corresponds to the order in which they were added."
+msgstr ""
+
+#. 2Lrc6
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"hd_id141633977141797\n"
+"help.text"
+msgid "Accessing Items"
+msgstr ""
+
+#. DDdKC
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"bm_id481633977601834\n"
+"help.text"
+msgid "<bookmark_value>Collection;Item</bookmark_value>"
+msgstr ""
+
+#. MquEn
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id431633977156315\n"
+"help.text"
+msgid "Use the <literal>Item</literal> method to access a given item by its index or key."
+msgstr ""
+
+#. DCFTg
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id261633976447187\n"
+"help.text"
+msgid "<emph>index:</emph> an integer value specifying the index of the item to be returned."
+msgstr ""
+
+#. mqA85
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id51633976782487\n"
+"help.text"
+msgid "<emph>key:</emph> a string value specifying the key of the item to be returned."
+msgstr ""
+
+#. egnJW
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"hd_id651633976030220\n"
+"help.text"
+msgid "Removing Items"
+msgstr ""
+
+#. BdBa3
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"bm_id311633977567197\n"
+"help.text"
+msgid "<bookmark_value>Collection;Remove</bookmark_value>"
+msgstr ""
+
+#. Wteju
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id391633976125206\n"
+"help.text"
+msgid "Use the <literal>Remove</literal> method to delete items from a <literal>Collection</literal> object."
+msgstr ""
+
+#. sHVAN
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id121633976268027\n"
+"help.text"
+msgid "Items can be removed either by their indices or key values."
+msgstr ""
+
+#. o9Eyd
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id261633976447289\n"
+"help.text"
+msgid "<emph>index:</emph> an integer value specifying the index of the item to be removed."
+msgstr ""
+
+#. 8TMiC
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id51633976782455\n"
+"help.text"
+msgid "<emph>key:</emph> a string value specifying the key of the item to be removed."
+msgstr ""
+
+#. WpHmn
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"hd_id491633978085731\n"
+"help.text"
+msgid "Iterating Over all Items"
+msgstr ""
+
+#. FVzmC
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id91633978099143\n"
+"help.text"
+msgid "It is possible to use a <literal>For Each ... Next</literal> statement to iterate over all items in a <literal>Collection</literal>."
+msgstr ""
+
+#. EWDWE
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"hd_id191634215349347\n"
+"help.text"
+msgid "Clearing a Collection"
+msgstr ""
+
+#. V4EZw
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id891634215363485\n"
+"help.text"
+msgid "To remove all items from a <literal>Collection</literal> object call the <literal>Remove</literal> method for each item, as illustrated in the example below:"
+msgstr ""
+
+#. tUMtQ
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"bas_id681634215646028\n"
+"help.text"
+msgid "' Create a sample Collection with two entries"
+msgstr ""
+
+#. Yy5nP
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"bas_id391634215647196\n"
+"help.text"
+msgid "' Removes all items in the collection"
+msgstr ""
+
#. gvH3T
#: compatibilitymode.xhp
msgctxt ""
@@ -40345,13 +40732,13 @@ msgctxt ""
msgid "<variable id=\"compatiblestatement\"><link href=\"text/sbasic/shared/compatible.xhp\" name=\"compatible\">Option Compatible Statement</link></variable>"
msgstr ""
-#. qCdkp
+#. 6HFov
#: compatible.xhp
msgctxt ""
"compatible.xhp\n"
"N0106\n"
"help.text"
-msgid "<literal>Option Compatible</literal> turns on the VBA-compatible Basic compiler mode at the module level."
+msgid "<literal>Option Compatible</literal> extends %PRODUCTNAME Basic compiler and runtime, allowing supplemental language constructs to Basic."
msgstr ""
#. SNhhH
@@ -41038,6 +41425,78 @@ msgctxt ""
msgid "<image src=\"media/helpimg/sbasic/char_fragment.svg\" id=\"img_id4157296484514\"><alt id=\"alt_id15152796484516\">type declaration characters</alt></image>"
msgstr ""
+#. tYUK6
+#: is_keyword.xhp
+msgctxt ""
+"is_keyword.xhp\n"
+"tit\n"
+"help.text"
+msgid "Is Operator"
+msgstr ""
+
+#. xvBgn
+#: is_keyword.xhp
+msgctxt ""
+"is_keyword.xhp\n"
+"bm_id3149205\n"
+"help.text"
+msgid "<bookmark_value>Is Operator</bookmark_value>"
+msgstr ""
+
+#. 7otAB
+#: is_keyword.xhp
+msgctxt ""
+"is_keyword.xhp\n"
+"hd_id791633472607429\n"
+"help.text"
+msgid "<variable id=\"IsOperator_h1\"><link href=\"text/sbasic/shared/is_keyword.xhp\" name=\"Is_Operator\">Is Operator</link></variable>"
+msgstr ""
+
+#. mwGMA
+#: is_keyword.xhp
+msgctxt ""
+"is_keyword.xhp\n"
+"par_id3145090\n"
+"help.text"
+msgid "Tests if two Basic variables refer to the same object instance."
+msgstr ""
+
+#. HTVQA
+#: is_keyword.xhp
+msgctxt ""
+"is_keyword.xhp\n"
+"par_id441633531311929\n"
+"help.text"
+msgid "If <literal>oObj1</literal> and <literal>oObj2</literal> are references to the same object instance, the result will be <emph>True</emph>."
+msgstr ""
+
+#. akugg
+#: is_keyword.xhp
+msgctxt ""
+"is_keyword.xhp\n"
+"par_id771633473462939\n"
+"help.text"
+msgid "The example below first defines a new type <literal>Student</literal>. Calling <literal>TestObjects</literal> creates the object <literal>oStudent1</literal> as a new object of this type."
+msgstr ""
+
+#. mAAho
+#: is_keyword.xhp
+msgctxt ""
+"is_keyword.xhp\n"
+"par_id841633532400710\n"
+"help.text"
+msgid "The assignment <literal>oStudent2 = oStudent1</literal> actually copies the reference to the same object. Hence the result of applying the <literal>Is</literal> operator is <emph>True</emph>."
+msgstr ""
+
+#. mvVuR
+#: is_keyword.xhp
+msgctxt ""
+"is_keyword.xhp\n"
+"par_id181633473874216\n"
+"help.text"
+msgid "The example below returns <emph>False</emph> because <literal>oStudent1</literal> and <literal>oStudent2</literal> are references to two different object instances, each created with the <literal>New</literal> operator."
+msgstr ""
+
#. onSEk
#: keys.xhp
msgctxt ""
@@ -41344,6 +41803,87 @@ msgctxt ""
msgid "%PRODUCTNAME installs a set of Basic macro libraries that can be accessed from your Basic macros."
msgstr ""
+#. 44MBv
+#: new_keyword.xhp
+msgctxt ""
+"new_keyword.xhp\n"
+"tit\n"
+"help.text"
+msgid "New Operator"
+msgstr ""
+
+#. 8iBmc
+#: new_keyword.xhp
+msgctxt ""
+"new_keyword.xhp\n"
+"bm_id3149205\n"
+"help.text"
+msgid "<bookmark_value>New Operator</bookmark_value>"
+msgstr ""
+
+#. T3AA8
+#: new_keyword.xhp
+msgctxt ""
+"new_keyword.xhp\n"
+"hd_id791633472607429\n"
+"help.text"
+msgid "<variable id=\"NewOperator_h1\"><link href=\"text/sbasic/shared/new_keyword.xhp\" name=\"New_Operator\">New Operator</link></variable>"
+msgstr ""
+
+#. BWufp
+#: new_keyword.xhp
+msgctxt ""
+"new_keyword.xhp\n"
+"par_id3145090\n"
+"help.text"
+msgid "Use the <literal>New</literal> operator to instantiate objects of user-defined types, as well as Uno services, structs and enumerations."
+msgstr ""
+
+#. uDGEZ
+#: new_keyword.xhp
+msgctxt ""
+"new_keyword.xhp\n"
+"par_id831633630704012\n"
+"help.text"
+msgid "The <literal>New</literal> operator can be used either during variable declaration or in an assignment operation."
+msgstr ""
+
+#. r6osC
+#: new_keyword.xhp
+msgctxt ""
+"new_keyword.xhp\n"
+"par_id621633630563936\n"
+"help.text"
+msgid "The following example uses the <literal>New</literal> operator to create an instance of the <literal>PropertyValue</literal> Uno struct."
+msgstr ""
+
+#. nPNvc
+#: new_keyword.xhp
+msgctxt ""
+"new_keyword.xhp\n"
+"bas_id631633630856218\n"
+"help.text"
+msgid "' Instantiating the object during variable declaration"
+msgstr ""
+
+#. Ts8iC
+#: new_keyword.xhp
+msgctxt ""
+"new_keyword.xhp\n"
+"bas_id11633631135918\n"
+"help.text"
+msgid "' The same can be accomplished with an assignment"
+msgstr ""
+
+#. 6RJcJ
+#: new_keyword.xhp
+msgctxt ""
+"new_keyword.xhp\n"
+"par_id971633631328827\n"
+"help.text"
+msgid "The example below creates a new type <literal>Student</literal> and instantiates an object of this type:"
+msgstr ""
+
#. r4nQn
#: partition.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/sbasic/shared/03.po b/source/am/helpcontent2/source/text/sbasic/shared/03.po
index 80d9ef2b340..9083ccc54ee 100644
--- a/source/am/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/am/helpcontent2/source/text/sbasic/shared/03.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-04 19:51+0200\n"
+"POT-Creation-Date: 2021-10-25 12:48+0200\n"
"PO-Revision-Date: 2018-07-12 14:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -160,13 +160,13 @@ msgctxt ""
msgid "<variable id=\"ScriptForge_lib\"><link href=\"text/sbasic/shared/03/lib_ScriptForge.xhp\" name=\"ScriptForge library\">The <literal>ScriptForge</literal> Library</link></variable>"
msgstr ""
-#. yE8bw
+#. Poeai
#: lib_ScriptForge.xhp
msgctxt ""
"lib_ScriptForge.xhp\n"
"bm_id491529070339774\n"
"help.text"
-msgid "<bookmark_value>BASIC ScriptForge library</bookmark_value> <bookmark_value>Python scriptforge module</bookmark_value>"
+msgid "<bookmark_value>BASIC ScriptForge library</bookmark_value> <bookmark_value>Python scriptforge module</bookmark_value>"
msgstr ""
#. BtMUU
@@ -178,13 +178,13 @@ msgctxt ""
msgid "ScriptForge libraries build up an extensible collection of macro scripting resources for %PRODUCTNAME to be invoked from Basic macros or Python scripts."
msgstr ""
-#. YwSXj
+#. eotwE
#: lib_ScriptForge.xhp
msgctxt ""
"lib_ScriptForge.xhp\n"
"par_id1001623412767893\n"
"help.text"
-msgid "To learn more about how to create and execute Python scripts using the <literal>ScriptForge</literal> library, read the <embedvar href=\"text/sbasic/shared/03/sf_intro.xhp#title\"/> help page."
+msgid "To learn more about how to create and execute Python scripts using the <literal>ScriptForge</literal> library, read the help page <link href=\"text/sbasic/shared/03/sf_intro.xhp\" name=\"sfintro_link\">Creating Python Scripts with ScriptForge</link>."
msgstr ""
#. wKZM6
@@ -9106,13 +9106,13 @@ msgctxt ""
msgid "Keys and items can be retrieved, counted, updated, and much more."
msgstr ""
-#. HnBYG
+#. LtaTT
#: sf_dictionary.xhp
msgctxt ""
"sf_dictionary.xhp\n"
"par_id971582884636922\n"
"help.text"
-msgid "%PRODUCTNAME Basic <literal>Collection</literal> object does not support the retrieval of the keys. <br/>Additionally its items contain only primitive Basic data types such as dates, text, numbers, and the like."
+msgid "The Dictionary service is similar to the built-in %PRODUCTNAME Basic <literal>Collection</literal> object, however with more features. For example, <literal>Collection</literal> objects do not support the retrieval of keys. Moreover, Dictionaries provide additional capabilities as replacing keys, testing if a specific key already exists and converting the Dictionary into an Array object or JSON string."
msgstr ""
#. RkMHR
@@ -15775,13 +15775,13 @@ msgctxt ""
msgid "<emph>Debugging:</emph> Whenever an error occurs in Python scripts that use <literal>ScriptForge</literal>, the error message provided by the Python execution stack displays the line of code that triggered the error. In Basic error messages do not display this information."
msgstr ""
-#. ZzngK
+#. cPtYB
#: sf_intro.xhp
msgctxt ""
"sf_intro.xhp\n"
"par_id31623411828158\n"
"help.text"
-msgid "Visit <embedvar href=\"text/sbasic/python/main0000.xhp#pythonscriptshelp\"/> for more information on Python scripting using %PRODUCTNAME."
+msgid "Visit <link href=\"text/sbasic/python/main0000.xhp#\" name=\"pyscripts_link\">%PRODUCTNAME Python Scripts Help</link> for more information on Python scripting using %PRODUCTNAME."
msgstr ""
#. CZiTF
@@ -17620,13 +17620,13 @@ msgctxt ""
msgid "ScriptForge.Session service"
msgstr ""
-#. c4YAM
+#. DxnDG
#: sf_session.xhp
msgctxt ""
"sf_session.xhp\n"
"hd_id901582814720985\n"
"help.text"
-msgid "<variable id=\"SessionService\"><link href=\"text/sbasic/shared/03/sf_session.xhp\" name=\"Session service\"><literal>ScriptForge</literal>.<literal>Session</literal> service</link></variable>"
+msgid "<variable id=\"SessionService\"><link href=\"text/sbasic/shared/03/sf_session.xhp\" name=\"Session service\"><literal>ScriptForge.Session</literal> service</link></variable>"
msgstr ""
#. yTgFK
@@ -18025,13 +18025,13 @@ msgctxt ""
msgid "Consider the Python function <literal>odd_integers</literal> defined below that creates a list with odd integer values between <literal>v1</literal> and <literal>v2</literal>. Suppose this function is stored in a file named <emph>my_macros.py</emph> in your user scripts folder."
msgstr ""
-#. CHr5n
+#. o6DUm
#: sf_session.xhp
msgctxt ""
"sf_session.xhp\n"
"par_id751626817335715\n"
"help.text"
-msgid "Read the help page <embedvar href=\"text/sbasic/python/python_locations.xhp#pythonlocations1\"/> to learn more about where Python scripts can be stored."
+msgid "Read the help page <link href=\"text/sbasic/python/python_locations.xhp\" name=\"pylocation_link\">Python Scripts Organization and Location</link> to learn more about where Python scripts can be stored."
msgstr ""
#. vqBm9
diff --git a/source/am/helpcontent2/source/text/scalc.po b/source/am/helpcontent2/source/text/scalc.po
index 71f03c818d8..9ed74cb78ee 100644
--- a/source/am/helpcontent2/source/text/scalc.po
+++ b/source/am/helpcontent2/source/text/scalc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-04 19:51+0200\n"
+"POT-Creation-Date: 2021-10-25 12:48+0200\n"
"PO-Revision-Date: 2021-01-25 14:07+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_help-master/textscalc/am/>\n"
@@ -745,14 +745,14 @@ msgctxt ""
msgid "<variable id=\"main0200\"><link href=\"text/scalc/main0200.xhp\" name=\"Toolbars\">Toolbars</link></variable>"
msgstr "<variable id=\"main0200\"><link href=\"text/scalc/main0200.xhp\" name=\"Toolbars\">እቃ መደርደሪያ</link></variable>"
-#. tdJRk
+#. yvzAm
#: main0200.xhp
msgctxt ""
"main0200.xhp\n"
"par_id3148798\n"
"help.text"
-msgid "This submenu lists the toolbars that are available in spreadsheets.<embedvar href=\"text/shared/00/00000007.xhp#symbolleistenneu\"/>"
-msgstr "ይህ ንዑስ ዝርዝር የ ያዛቸው ዝርዝር የ እቃ መደርደሪያ ለ ሰንጠረዥ ዝግጁ ናቸው<embedvar href=\"text/shared/00/00000007.xhp#symbolleistenneu\"/>"
+msgid "This submenu lists the toolbars that are available in spreadsheets. This overview describes the default toolbar configuration for %PRODUCTNAME."
+msgstr ""
#. XUCUB
#: main0202.xhp
diff --git a/source/am/helpcontent2/source/text/scalc/01.po b/source/am/helpcontent2/source/text/scalc/01.po
index 584025ac901..53020ec7f32 100644
--- a/source/am/helpcontent2/source/text/scalc/01.po
+++ b/source/am/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-04 19:51+0200\n"
+"POT-Creation-Date: 2021-10-25 12:48+0200\n"
"PO-Revision-Date: 2020-12-31 12:36+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/am/>\n"
@@ -15667,13 +15667,13 @@ msgctxt ""
msgid "Array Functions"
msgstr "ተግባሮች ማዘጋጃ"
-#. U7gUU
+#. BB9Ze
#: 04060107.xhp
msgctxt ""
"04060107.xhp\n"
"bm_id3147273\n"
"help.text"
-msgid "<bookmark_value>matrices; functions</bookmark_value><bookmark_value>Function Wizard; arrays</bookmark_value><bookmark_value>array formulas</bookmark_value><bookmark_value>inline array constants</bookmark_value><bookmark_value>formulas; arrays</bookmark_value><bookmark_value>functions; array functions</bookmark_value><bookmark_value>editing; array formulas</bookmark_value><bookmark_value>copying; array formulas</bookmark_value><bookmark_value>adjusting array ranges</bookmark_value><bookmark_value>calculating; conditional calculations</bookmark_value><bookmark_value>matrices; calculations</bookmark_value><bookmark_value>conditional calculations with arrays</bookmark_value><bookmark_value>implicit array handling</bookmark_value><bookmark_value>forced array handling</bookmark_value>"
+msgid "<bookmark_value>matrices; functions</bookmark_value><bookmark_value>Function Wizard; arrays</bookmark_value><bookmark_value>array formulas</bookmark_value><bookmark_value>inline array constants</bookmark_value><bookmark_value>formulas; arrays</bookmark_value><bookmark_value>functions; array functions</bookmark_value><bookmark_value>editing; array formulas</bookmark_value><bookmark_value>copying; array formulas</bookmark_value><bookmark_value>deleting; array formulas</bookmark_value><bookmark_value>adjusting array ranges</bookmark_value><bookmark_value>calculating; conditional calculations</bookmark_value><bookmark_value>matrices; calculations</bookmark_value><bookmark_value>conditional calculations with arrays</bookmark_value><bookmark_value>implicit array handling</bookmark_value><bookmark_value>forced array handling</bookmark_value>"
msgstr ""
#. ALUph
@@ -15856,14 +15856,14 @@ msgctxt ""
msgid "Array formulas appear in braces in $[officename] Calc. You cannot create array formulas by manually entering the braces."
msgstr "የ መቀመሪያ ማዘጋጃ የሚታየው በ ድጋፎች ውስጥ ነው በ $[officename] ሰንጠረዥ ውስጥ: እርስዎ መፍጠር አይችሉም የ መቀመሪያ ማዘጋጃ በ እጅ በ ማስገባት ድጋፎች"
-#. 6GZXu
+#. 6zGAy
#: 04060107.xhp
msgctxt ""
"04060107.xhp\n"
"par_id3154342\n"
"help.text"
-msgid "The cells in a results array are automatically protected against changes. However, you can edit or copy the array formula by selecting the entire array cell range."
-msgstr "ክፍሎች በ ውጤት ማዘጋጃ ውስጥ ራሱ በራሱ ከ መቀየር ይጠበቃል: ነገር ግን እርስዎ ማረም ወይንም ኮፒ ማድረግ ይችላሉ የ መቀመሪያ ማዘጋጃ በ መምረጥ ጠቅላላ የ ክፍሉን መጠን"
+msgid "The cells in a results array are automatically protected against changes. However, you can edit, delete or copy the array formula by selecting the entire array cell range."
+msgstr ""
#. 2tDZj
#: 04060107.xhp
@@ -16009,13 +16009,13 @@ msgctxt ""
msgid "Editing Array Formulas"
msgstr "የ መቀመሪያ ማዘጋጃ ማረሚያ"
-#. cT3G3
+#. Qi4kV
#: 04060107.xhp
msgctxt ""
"04060107.xhp\n"
"par_id3149241\n"
"help.text"
-msgid "Select the cell range or array containing the array formula. To select the whole array, position the cell cursor inside the array range, then press <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline><emph> + /</emph>, where <emph>/</emph> is the <emph>Division</emph> key on the numeric keypad."
+msgid "Select the cell range or array containing the array formula. To select the whole array, position the cell cursor inside the array range, then press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> + <keycode>/</keycode>, where <keycode>/</keycode> is the division key on the numeric keypad."
msgstr ""
#. BzLzG
@@ -16045,6 +16045,33 @@ msgctxt ""
msgid "You can format the separate parts of an array. For example, you can change the font color. Select a cell range and then change the attribute you want."
msgstr "እርስዎ ማቅረብ ይችላሉ የ ተለየ ክፍል በ ማዘጋጃ ውስጥ: ለምሳሌ: እርስዎ የ ፊደል ቀለም መቀየር ይችላሉ: የ ክፍል መጠን ይምረጡ እና ከዛ ይቀይሩ እርስዎ የሚፈልጉትን ባህሪ"
+#. Tes4E
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"hd_id541633516074226\n"
+"help.text"
+msgid "Deleting Array Formulae"
+msgstr ""
+
+#. adAax
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id681633516103267\n"
+"help.text"
+msgid "Select the cell range or array containing the array formula. To select the whole array, position the cell cursor inside the array range, then press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> + <keycode>/</keycode>, where <keycode>/</keycode> is the division key on the numeric keypad."
+msgstr ""
+
+#. 5xB8E
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id61633516164519\n"
+"help.text"
+msgid "Press <keycode>Delete</keycode> to delete the array contents, including the array formula, or press <keycode>Backspace</keycode> and this brings up the <link href=\"text/scalc/01/02150000.xhp\" name=\"delete contents\">Delete Contents</link> dialog box. Select <emph>Formula</emph> or <emph>Delete All</emph> and click <emph>OK</emph>."
+msgstr ""
+
#. dEcVJ
#: 04060107.xhp
msgctxt ""
@@ -20266,69 +20293,6 @@ msgctxt ""
msgid "Beware that Calc's AutoCorrect function may modify double quotation marks. AutoCorrect should not change the double quotation marks within formula cells but may change those used in non-formula cells containing text. For example, if you copy a string that is surrounded by some other form of typographical double quotation marks, such as the left double quotation mark (U+201C) and the right double quotation mark (U+201D), and then paste into a formula cell, an error may result. Open the <emph>Double Quotes</emph> area of the <menuitem>Tools - AutoCorrect Options - Localized Options</menuitem> dialog to set the characters used to automatically correct the start and end typographical double quotation marks. Uncheck the <menuitem>Replace</menuitem> toggle button to disable the feature."
msgstr ""
-#. Gmvo8
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"bm_id3149384\n"
-"help.text"
-msgid "<bookmark_value>ARABIC function</bookmark_value>"
-msgstr "<bookmark_value>የ አረብኛ ተግባር</bookmark_value>"
-
-#. SyuhN
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3149384\n"
-"help.text"
-msgid "ARABIC"
-msgstr "ARABIC"
-
-#. 6Kjyp
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3153558\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ARABISCH\">Calculates the value of a Roman number. The value range must be between 0 and 3999.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ARABISCH\">የ ሮማውያን ቁጥር ዋጋ ማስሊያ: የ ዋጋው መጠን በ 0 እና 3999 መከከል መሆን አለበት </ahelp>"
-
-#. cwSkH
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3155523\n"
-"help.text"
-msgid "ARABIC(\"Text\")"
-msgstr "አረብኛ(\"ጽሁፍ\")"
-
-#. AQA5o
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3151193\n"
-"help.text"
-msgid "<emph>Text</emph> is the text that represents a Roman number."
-msgstr "<emph>ጽሁፍ</emph> ጽሁፍ ነው የ ሮማውያን ቁጥር የሚወክለው"
-
-#. dVD9Z
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3154621\n"
-"help.text"
-msgid "<item type=\"input\">=ARABIC(\"MXIV\")</item> returns 1014"
-msgstr "<item type=\"input\">=አረብኛ(\"MXIV\")</item> ይመልሳል 1014"
-
-#. g4sEa
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3147553\n"
-"help.text"
-msgid "<item type=\"input\">=ARABIC(\"MMII\")</item> returns 2002"
-msgstr "<item type=\"input\">=አረብኛ(\"MMII\")</item> ይመልሳል 2002"
-
#. teACB
#: 04060110.xhp
msgctxt ""
@@ -22264,114 +22228,6 @@ msgctxt ""
msgid "<item type=\"input\">RIGHTB(\"office\";3)</item> returns \"ice\" (3 non-DBCS characters each consisting of 1 byte)."
msgstr "<item type=\"input\">በ ቀኝ ባይት(\"ቢሮ\";3)</item> ይመልሳል \"ice\" (3 ምንም-ድርብ ባይት ባህሪ እያንዳንዱ የያዘ 1 ባይት ባህሪዎች)."
-#. 84zEq
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"bm_id3153534\n"
-"help.text"
-msgid "<bookmark_value>ROMAN function</bookmark_value>"
-msgstr "<bookmark_value>የ ሮማን ተግባር</bookmark_value>"
-
-#. 25vky
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3153534\n"
-"help.text"
-msgid "ROMAN"
-msgstr "ሮማን"
-
-#. r5V5K
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3151256\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ROEMISCH\">Converts a number into a Roman numeral. The value range must be between 0 and 3999, the modes can be integers from 0 to 4.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ROEMISCH\">ቁጥር ወደ ሮማውያን ቁጥር መቀየሪያ: የ ዋጋው መጠን በ 0 እና 3999, መካከል መሆን አለበት: ዘዴዎቹ መሆን ይችላሉ ኢንቲጀር ከ 0 እስከ 4.</ahelp> ድረስ"
-
-#. RdCBS
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3150593\n"
-"help.text"
-msgid "ROMAN(Number [; Mode])"
-msgstr ""
-
-#. 4rcTC
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3156139\n"
-"help.text"
-msgid "<emph>Number</emph> is the number that is to be converted into a Roman numeral."
-msgstr "<emph>ቁጥር</emph> ቁጥር ነው ወደ ሮማውያን ቁጥር የሚቀየረው"
-
-#. HEZFy
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3153318\n"
-"help.text"
-msgid "<emph>Mode</emph> (optional) indicates the degree of simplification. The higher the value, the greater is the simplification of the Roman number."
-msgstr "<emph>ዘዴ </emph> (በ ምርጫ) የሚያሳየው የ ቀላልነቱን ደረጃ ነው: ዋጋው ከፍ ባለ ቁጥር የ ሮማውያን ቁጥር እየቀለለ ይሄዳል"
-
-#. Huw7f
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3151371\n"
-"help.text"
-msgid "<item type=\"input\">=ROMAN(999)</item> returns CMXCIX"
-msgstr "<item type=\"input\">=ሮማን(999)</item> ይመልሳል CMXCIX"
-
-#. ACRz3
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3153938\n"
-"help.text"
-msgid "<item type=\"input\">=ROMAN(999;0)</item> returns CMXCIX"
-msgstr "<item type=\"input\">=ሮማን(999;0)</item> ይመልሳል CMXCIX"
-
-#. mtbzC
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3148412\n"
-"help.text"
-msgid "<item type=\"input\">=ROMAN (999;1)</item> returns LMVLIV"
-msgstr "<item type=\"input\">=ሮማን (999;1)</item> ይመልሳል LMVLIV"
-
-#. 8GQP5
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3155421\n"
-"help.text"
-msgid "<item type=\"input\">=ROMAN(999;2)</item> returns XMIX"
-msgstr "<item type=\"input\">=ሮማን(999;2)</item> ይመልሳል XMIX"
-
-#. d8sji
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3149235\n"
-"help.text"
-msgid "<item type=\"input\">=ROMAN(999;3)</item> returns VMIV"
-msgstr "<item type=\"input\">=ሮማን(999;3)</item> ይመልሳል VMIV"
-
-#. yDGse
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3150624\n"
-"help.text"
-msgid "<item type=\"input\">=ROMAN(999;4)</item> returns IM"
-msgstr "<item type=\"input\">=ሮማን(999;4)</item> ይመልሳል IM"
-
#. q3uLN
#: 04060110.xhp
msgctxt ""
@@ -44260,13 +44116,13 @@ msgctxt ""
msgid "In the <emph>Formatting</emph> toolbar, click:"
msgstr ""
-#. sq4wv
+#. BCsAA
#: 05060000.xhp
msgctxt ""
"05060000.xhp\n"
"par_id521632804983642\n"
"help.text"
-msgid "<image id=\"img_id811632804983642\" src=\"cmd/sc_togglemergecells.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id921632804983642\">Icon</alt> </image>"
+msgid "<image id=\"img_id811632804983642\" src=\"cmd/sc_togglemergecells.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id921632804983642\">Icon Merge and Center Cells</alt></image>"
msgstr ""
#. 86yef
@@ -55906,6 +55762,96 @@ msgctxt ""
msgid "<link href=\"text/shared/optionen/01060500.xhp#hd_id3156199\">Automatically find column and row labels</link>"
msgstr "<link href=\"text/shared/optionen/01060500.xhp#hd_id3156199\">ራሱ በራሱ የ አምድ እና የ ረድፍ ምልክቶች ፈልጎ ማግኛ</link>"
+#. czFkz
+#: func_arabic.xhp
+msgctxt ""
+"func_arabic.xhp\n"
+"tit\n"
+"help.text"
+msgid "ARABIC Function"
+msgstr ""
+
+#. ze8wK
+#: func_arabic.xhp
+msgctxt ""
+"func_arabic.xhp\n"
+"bm_id831542233029549\n"
+"help.text"
+msgid "<bookmark_value>ARABIC function</bookmark_value> <bookmark_value>text functions;convert roman numbers</bookmark_value>"
+msgstr ""
+
+#. BNUYi
+#: func_arabic.xhp
+msgctxt ""
+"func_arabic.xhp\n"
+"hd_id881628776094597\n"
+"help.text"
+msgid "<variable id=\"Arabic_h1\"><link href=\"text/scalc/01/func_arabic.xhp\" name=\"function ARABIC\">ARABIC</link></variable>"
+msgstr ""
+
+#. xPXrU
+#: func_arabic.xhp
+msgctxt ""
+"func_arabic.xhp\n"
+"par_id541542230672101\n"
+"help.text"
+msgid "<variable id=\"func_arabic_desc\"><ahelp hid=\".\">Returns the numeric value corresponding to a Roman number expressed as text.</ahelp></variable>"
+msgstr ""
+
+#. 2UE9g
+#: func_arabic.xhp
+msgctxt ""
+"func_arabic.xhp\n"
+"par_id151634221012221\n"
+"help.text"
+msgid "The largest Roman number that can be converted is MMMCMXCIX (or one of its simplified versions), which is equivalent to 3999."
+msgstr ""
+
+#. AueXr
+#: func_arabic.xhp
+msgctxt ""
+"func_arabic.xhp\n"
+"par_id701542231253817\n"
+"help.text"
+msgid "<input>ARABIC(Text)</input>"
+msgstr ""
+
+#. sWMEb
+#: func_arabic.xhp
+msgctxt ""
+"func_arabic.xhp\n"
+"par_id621542232197446\n"
+"help.text"
+msgid "<emph>Text</emph>: text representing a Roman number."
+msgstr ""
+
+#. WcE8r
+#: func_arabic.xhp
+msgctxt ""
+"func_arabic.xhp\n"
+"par_id451628776707264\n"
+"help.text"
+msgid "<input>=ARABIC(\"MXIV\")</input> returns the numeric value 1014."
+msgstr ""
+
+#. hDmDF
+#: func_arabic.xhp
+msgctxt ""
+"func_arabic.xhp\n"
+"par_id101628778036375\n"
+"help.text"
+msgid "<input>=ARABIC(\"MMII\")</input> returns the numeric value 2002."
+msgstr ""
+
+#. XAwC8
+#: func_arabic.xhp
+msgctxt ""
+"func_arabic.xhp\n"
+"par_id101628778036134\n"
+"help.text"
+msgid "<input>=ARABIC(\"\")</input> returns 0."
+msgstr ""
+
#. y9q7t
#: func_averageif.xhp
msgctxt ""
@@ -63538,13 +63484,13 @@ msgctxt ""
msgid "The output number is formatted as a valid floating point value and shown using the current cell's number format."
msgstr ""
-#. 2Ditv
+#. CdgXz
#: func_numbervalue.xhp
msgctxt ""
"func_numbervalue.xhp\n"
"par_id351625601754290\n"
"help.text"
-msgid "Refer to the <embedvar href=\"text/shared/01/05020300.xhp#NumbersLink\"/> help page to learn how to change the format of numbers in a cell."
+msgid "Refer to the <link href=\"text/shared/01/05020300.xhp\" name=\"num_format_link\">Numbers / Format</link> help page to learn how to change the format of numbers in a cell."
msgstr ""
#. vEdwF
@@ -64564,6 +64510,132 @@ msgctxt ""
msgid "Refer to the <link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/REPLACEB\" name=\"REPLACEB_Wiki\">REPLACEB</link> wiki page for more details about this function."
msgstr ""
+#. FuCCt
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"tit\n"
+"help.text"
+msgid "ROMAN Function"
+msgstr ""
+
+#. JqcvP
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"bm_id831542233029549\n"
+"help.text"
+msgid "<bookmark_value>ROMAN function</bookmark_value> <bookmark_value>text functions;convert to roman numbers</bookmark_value>"
+msgstr ""
+
+#. uXEPr
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"hd_id881628776094597\n"
+"help.text"
+msgid "<variable id=\"Roman_h1\"><link href=\"text/scalc/01/func_roman.xhp\" name=\"function ROMAN\">ROMAN</link></variable>"
+msgstr ""
+
+#. pdMgk
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"par_id541542230672101\n"
+"help.text"
+msgid "<variable id=\"func_roman_desc\"><ahelp hid=\".\">Converts a number into a Roman numeral. The value range must be between 0 and 3999. A simplification mode can be specified in the range from 0 to 4.</ahelp></variable>"
+msgstr ""
+
+#. tRsoC
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"par_id701542231253817\n"
+"help.text"
+msgid "<input>ROMAN(Number [; Mode])</input>"
+msgstr ""
+
+#. rz4bH
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"par_id621542232197446\n"
+"help.text"
+msgid "<emph>Number</emph>: the number that is to be converted into a Roman numeral."
+msgstr ""
+
+#. bfvWL
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"par_id621542232197337\n"
+"help.text"
+msgid "<emph>Mode</emph>: optional value ranging between 0 to 4 that indicates the degree of simplification to be used in the conversion. The higher the value, the greater is the simplification of the Roman number."
+msgstr ""
+
+#. BBUCq
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"par_id451628776707264\n"
+"help.text"
+msgid "<input>=ROMAN(999)</input> returns \"CMXCIX\" (uses simplification mode equal to zero, which is the default)."
+msgstr ""
+
+#. mBktA
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"par_id101628778036375\n"
+"help.text"
+msgid "<input>=ROMAN(999;0)</input> returns \"CMXCIX\"."
+msgstr ""
+
+#. fGqPj
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"par_id101628778036134\n"
+"help.text"
+msgid "<input>=ROMAN(999;1)</input> returns \"LMVLIV\"."
+msgstr ""
+
+#. qBbFo
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"par_id101628778036278\n"
+"help.text"
+msgid "<input>=ROMAN(999;2)</input> returns \"XMIX\"."
+msgstr ""
+
+#. AY5jP
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"par_id101628778036364\n"
+"help.text"
+msgid "<input>=ROMAN(999;3)</input> returns \"VMIV\"."
+msgstr ""
+
+#. B2aqT
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"par_id101628778036008\n"
+"help.text"
+msgid "<input>=ROMAN(999;4)</input> returns \"IM\"."
+msgstr ""
+
+#. CBuwx
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"par_id101628778036019\n"
+"help.text"
+msgid "<input>=ROMAN(0)</input> returns \"\" (empty text)."
+msgstr ""
+
#. E7heY
#: func_roundsig.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/scalc/guide.po b/source/am/helpcontent2/source/text/scalc/guide.po
index 979947d83a0..ded4777686b 100644
--- a/source/am/helpcontent2/source/text/scalc/guide.po
+++ b/source/am/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-04 19:51+0200\n"
+"POT-Creation-Date: 2021-10-25 12:48+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"
@@ -9079,14 +9079,14 @@ msgctxt ""
msgid "Converting Text to Numbers"
msgstr "ጽሁፎችን ወደ ቁጥር መቀየሪያ"
-#. AzAoQ
+#. dP2GC
#: numbers_text.xhp
msgctxt ""
"numbers_text.xhp\n"
"bm_id3145068\n"
"help.text"
-msgid "<bookmark_value>formats; text as numbers</bookmark_value> <bookmark_value>time format conversion</bookmark_value> <bookmark_value>date formats;conversion</bookmark_value> <bookmark_value>converting;text, into numbers</bookmark_value>"
-msgstr "<bookmark_value>አቀራረብ: ጽሁፍ እንደ ቁጥር</bookmark_value> <bookmark_value>የ ሰአት አቀራረብ መቀየሪያ</bookmark_value> <bookmark_value>የ ቀን አቀራረብ: መቀየሪያ</bookmark_value> <bookmark_value>መቀየሪያ: ጽሁፍ ወደ ቁጥር</bookmark_value>"
+msgid "<bookmark_value>formats; text as numbers</bookmark_value> <bookmark_value>time format conversion</bookmark_value> <bookmark_value>date formats;conversion</bookmark_value> <bookmark_value>converting;text, into numbers</bookmark_value>"
+msgstr ""
#. pqhdm
#: numbers_text.xhp
@@ -9313,13 +9313,13 @@ msgctxt ""
msgid "Changing the default text to number conversion settings"
msgstr ""
-#. FrQEr
+#. p9t4t
#: numbers_text.xhp
msgctxt ""
"numbers_text.xhp\n"
"par_id111567772433803\n"
"help.text"
-msgid "The text to number conversion can be customized in the <embedvar href=\"text/shared/optionen/detailedcalculation.xhp#detailed_heading\" markup=\"ignore\"/> option."
+msgid "The text to number conversion can be customized in the <link href=\"text/shared/optionen/detailedcalculation.xhp\" name=\"detailed_link\">Detailed Calculation Settings</link> option."
msgstr ""
#. WE8wt
@@ -10726,13 +10726,13 @@ msgctxt ""
msgid "Select the range of values from which duplicate values are to be removed. The values have to be arranged in a single column."
msgstr ""
-#. XvTTj
+#. 7fDQ9
#: remove_duplicates.xhp
msgctxt ""
"remove_duplicates.xhp\n"
"par_id31630021517873\n"
"help.text"
-msgid "Go to <menuitem>Data - More Filters - Standard Filter</menuitem>. This opens the <embedvar href=\"text/shared/02/12090100.xhp#StandardFilter_h1\"/> dialog."
+msgid "Go to <menuitem>Data - More Filters - Standard Filter</menuitem>. This opens the <link href=\"text/shared/02/12090100.xhp\" name=\"std_dialog_link\"> Standard Filter</link> dialog."
msgstr ""
#. EVEzq
@@ -12067,13 +12067,13 @@ msgctxt ""
msgid "Merge and Unmerge Cells"
msgstr ""
-#. AEABz
+#. FFV5z
#: table_cellmerge.xhp
msgctxt ""
"table_cellmerge.xhp\n"
"bm_id501632012952361\n"
"help.text"
-msgid "<bookmark_value>merge/merging cells</bookmark_value> <bookmark_value>unmerge/unmerging cells</bookmark_value> <bookmark_value>split/splitting cells</bookmark_value>"
+msgid "<bookmark_value>merge/merging cells</bookmark_value> <bookmark_value>unmerge/unmerging cells</bookmark_value> <bookmark_value>split/splitting cells</bookmark_value>"
msgstr ""
#. BAqR3
@@ -12148,22 +12148,22 @@ msgctxt ""
msgid "Or, in the <emph>Properties</emph> sidebar mark the <emph>Merge Cells</emph> checkbox."
msgstr ""
-#. dzAEu
+#. fAjCD
#: table_cellmerge.xhp
msgctxt ""
"table_cellmerge.xhp\n"
"par_id3154020\n"
"help.text"
-msgid "Or, choose <embedvar href=\"text/scalc/01/05060000.xhp#format_mergecells_menu\"/><menuitem>Merge Cells</menuitem>"
+msgid "Or, choose <menuitem>Format - Merge and Unmerge Cells - Merge Cells</menuitem>"
msgstr ""
-#. DbZBM
+#. 6VxQA
#: table_cellmerge.xhp
msgctxt ""
"table_cellmerge.xhp\n"
"par_id6424146\n"
"help.text"
-msgid "Or, choose <embedvar href=\"text/scalc/01/05060000.xhp#format_mergecells_menu\"/><menuitem>Merge and Center Cells</menuitem>"
+msgid "Or, choose <menuitem>Format - Merge and Unmerge Cells - Merge and Center Cells</menuitem>"
msgstr ""
#. sHLpi
@@ -12220,22 +12220,22 @@ msgctxt ""
msgid "Or, in the <emph>Properties</emph> sidebar clear the <emph>Merge Cells</emph> checkbox."
msgstr ""
-#. zBdRG
+#. uiNiD
#: table_cellmerge.xhp
msgctxt ""
"table_cellmerge.xhp\n"
"par_id9493087\n"
"help.text"
-msgid "Or, choose <embedvar href=\"text/scalc/01/05060000.xhp#format_mergecells_menu\"/><menuitem>Unmerge Cells</menuitem>."
+msgid "Or, choose <menuitem>Format - Merge and Unmerge Cells - Unmerge Cells</menuitem>."
msgstr ""
-#. YC7sa
+#. HJEzN
#: table_cellmerge.xhp
msgctxt ""
"table_cellmerge.xhp\n"
"par_id561632820960500\n"
"help.text"
-msgid "Or, toggle <embedvar href=\"text/scalc/01/05060000.xhp#format_mergecells_menu\"/><menuitem>Merge and Center Cells</menuitem>"
+msgid "Or, toggle <menuitem>Format - Merge and Unmerge Cells - Merge and Center Cells</menuitem>"
msgstr ""
#. u5xXE
diff --git a/source/am/helpcontent2/source/text/sdatabase.po b/source/am/helpcontent2/source/text/sdatabase.po
index 3154c082dc4..0ddf1bf3cae 100644
--- a/source/am/helpcontent2/source/text/sdatabase.po
+++ b/source/am/helpcontent2/source/text/sdatabase.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-04 19:51+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
"PO-Revision-Date: 2021-01-25 14:07+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_help-master/textsdatabase/am/>\n"
@@ -7566,76 +7566,76 @@ msgctxt ""
msgid "If you open the Database Wizard to create a database file for an existing database connection, there may be more steps to specify paths, authentication information, and more."
msgstr ""
-#. wFFQE
+#. A9JMA
#: dabawiz00.xhp
msgctxt ""
"dabawiz00.xhp\n"
"par_idN105F2\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02text.xhp\">Set up text file connection</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02text.xhp\">Set up text file connection</link>"
msgstr ""
-#. 73X5w
+#. FWLbE
#: dabawiz00.xhp
msgctxt ""
"dabawiz00.xhp\n"
"par_idN10601\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02access.xhp\">Set up Microsoft Access connection</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02access.xhp\">Set up Microsoft Access connection</link>"
msgstr ""
-#. ckemB
+#. LE9Go
#: dabawiz00.xhp
msgctxt ""
"dabawiz00.xhp\n"
"par_idN1062E\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02ado.xhp\">Set up ADO connection</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02ado.xhp\">Set up ADO connection</link>"
msgstr ""
-#. bbTEe
+#. BU6uL
#: dabawiz00.xhp
msgctxt ""
"dabawiz00.xhp\n"
"par_idN1070F\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02dbase.xhp\">Set up dBASE connection</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02dbase.xhp\">Set up dBASE connection</link>"
msgstr ""
-#. mM3XM
+#. TBaXt
#: dabawiz00.xhp
msgctxt ""
"dabawiz00.xhp\n"
"par_idN1063D\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02jdbc.xhp\">Set up JDBC connection</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02jdbc.xhp\">Set up JDBC connection</link>"
msgstr ""
-#. EB2yp
+#. F3Gju
#: dabawiz00.xhp
msgctxt ""
"dabawiz00.xhp\n"
"par_idN1064C\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02oracle.xhp\">Set up Oracle database connection</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02oracle.xhp\">Set up Oracle database connection</link>"
msgstr ""
-#. sSrMX
+#. atGau
#: dabawiz00.xhp
msgctxt ""
"dabawiz00.xhp\n"
"par_idN1066A\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02odbc.xhp\">ODBC settings</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02odbc.xhp\">ODBC settings</link>"
msgstr ""
-#. Jht8w
+#. wGT7W
#: dabawiz00.xhp
msgctxt ""
"dabawiz00.xhp\n"
"par_idN10679\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02spreadsheet.xhp\">Set up Spreadsheet connection</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02spreadsheet.xhp\">Set up Spreadsheet connection</link>"
msgstr ""
#. menWz
@@ -7809,22 +7809,22 @@ msgctxt ""
msgid "The next wizard page is one of the following pages:"
msgstr ""
-#. vaBGS
+#. 9fLay
#: dabawiz01.xhp
msgctxt ""
"dabawiz01.xhp\n"
"par_idN1061C\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02text.xhp\">Set up text file connection</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02text.xhp\">Set up text file connection</link>"
msgstr ""
-#. NEWQn
+#. DeFrC
#: dabawiz01.xhp
msgctxt ""
"dabawiz01.xhp\n"
"par_idN1062B\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02access.xhp\">Set up Microsoft Access or Microsoft Access 2007 connection</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02access.xhp\">Set up Microsoft Access or Microsoft Access 2007 connection</link>"
msgstr ""
#. NCWx8
@@ -7836,49 +7836,1516 @@ msgctxt ""
msgid "<link href=\"text/shared/explorer/database/dabawiz02ldap.xhp\">Set up LDAP connection</link>"
msgstr ""
-#. 29mSc
+#. 6qgTE
#: dabawiz01.xhp
msgctxt ""
"dabawiz01.xhp\n"
"par_idN10658\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02ado.xhp\">Set up ADO connection</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02ado.xhp\">Set up ADO connection</link>"
msgstr ""
-#. sUX3D
+#. oiGwh
#: dabawiz01.xhp
msgctxt ""
"dabawiz01.xhp\n"
"par_idN10667\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02jdbc.xhp\">Set up JDBC connection</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02jdbc.xhp\">Set up JDBC connection</link>"
msgstr ""
-#. BRUYG
+#. N55Na
#: dabawiz01.xhp
msgctxt ""
"dabawiz01.xhp\n"
"par_idN10676\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02oracle.xhp\">Set up Oracle database connection</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02oracle.xhp\">Set up Oracle database connection</link>"
msgstr ""
-#. JtGv6
+#. c4YLM
#: dabawiz01.xhp
msgctxt ""
"dabawiz01.xhp\n"
"par_idN10694\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02odbc.xhp\">ODBC settings</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02odbc.xhp\">ODBC settings</link>"
msgstr ""
-#. A69nZ
+#. zpfrv
#: dabawiz01.xhp
msgctxt ""
"dabawiz01.xhp\n"
"par_idN106A3\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02spreadsheet.xhp\">Set up Spreadsheet connection</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02spreadsheet.xhp\">Set up Spreadsheet connection</link>"
+msgstr ""
+
+#. SJaiE
+#: dabawiz02.xhp
+msgctxt ""
+"dabawiz02.xhp\n"
+"tit\n"
+"help.text"
+msgid "Save and proceed"
+msgstr ""
+
+#. Hjhen
+#: dabawiz02.xhp
+msgctxt ""
+"dabawiz02.xhp\n"
+"par_idN10544\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/dabawiz02.xhp\">Save and proceed</link>"
+msgstr ""
+
+#. CECqo
+#: dabawiz02.xhp
+msgctxt ""
+"dabawiz02.xhp\n"
+"par_idN10554\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies whether you want to register the database, open the database for editing, or insert a new table.</ahelp>"
+msgstr ""
+
+#. v3hCS
+#: dabawiz02.xhp
+msgctxt ""
+"dabawiz02.xhp\n"
+"par_idN10557\n"
+"help.text"
+msgid "Yes, register the Database for me"
+msgstr ""
+
+#. 6iEY2
+#: dabawiz02.xhp
+msgctxt ""
+"dabawiz02.xhp\n"
+"par_idN105B4\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select to register the database within your user copy of %PRODUCTNAME. After registering, the database is displayed in the <emph>View - Data Sources</emph> window. You must register a database to be able to insert the database fields in a document (Insert - Field - More Fields) or in a mail merge.</ahelp>"
+msgstr ""
+
+#. BDPbo
+#: dabawiz02.xhp
+msgctxt ""
+"dabawiz02.xhp\n"
+"par_idN105B7\n"
+"help.text"
+msgid "No, do not register the database"
+msgstr ""
+
+#. PHFCG
+#: dabawiz02.xhp
+msgctxt ""
+"dabawiz02.xhp\n"
+"par_idN105BB\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select to keep the database information only within the created database file.</ahelp>"
+msgstr ""
+
+#. xJFV8
+#: dabawiz02.xhp
+msgctxt ""
+"dabawiz02.xhp\n"
+"par_idN1055B\n"
+"help.text"
+msgid "Open the database for editing"
+msgstr ""
+
+#. 2oDVV
+#: dabawiz02.xhp
+msgctxt ""
+"dabawiz02.xhp\n"
+"par_idN105C6\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select to display the database file, where you can edit the database structure.</ahelp>"
+msgstr ""
+
+#. uUaJe
+#: dabawiz02.xhp
+msgctxt ""
+"dabawiz02.xhp\n"
+"par_idN1055F\n"
+"help.text"
+msgid "Create tables using the table wizard"
+msgstr ""
+
+#. F4TTD
+#: dabawiz02.xhp
+msgctxt ""
+"dabawiz02.xhp\n"
+"par_idN105D1\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select to call the <link href=\"text/shared/explorer/database/tablewizard00.xhp\">Table Wizard</link> after the Database Wizard is finished.</ahelp>"
+msgstr ""
+
+#. YnZ24
+#: dabawiz02access.xhp
+msgctxt ""
+"dabawiz02access.xhp\n"
+"tit\n"
+"help.text"
+msgid "Microsoft Access Connection"
+msgstr ""
+
+#. uUAxL
+#: dabawiz02access.xhp
+msgctxt ""
+"dabawiz02access.xhp\n"
+"bm_id2755516\n"
+"help.text"
+msgid "<bookmark_value>Access databases (base)</bookmark_value><bookmark_value>Microsoft Office;Access databases (base)</bookmark_value>"
+msgstr ""
+
+#. iPpLv
+#: dabawiz02access.xhp
+msgctxt ""
+"dabawiz02access.xhp\n"
+"par_idN1053D\n"
+"help.text"
+msgid "<variable id=\"access\"><link href=\"text/sdatabase/dabawiz02access.xhp\">Microsoft Access Connection</link></variable>"
+msgstr ""
+
+#. eMbAE
+#: dabawiz02access.xhp
+msgctxt ""
+"dabawiz02access.xhp\n"
+"par_idN10541\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies the settings for importing a database file in Microsoft Access or Access 2007 format.</ahelp>"
+msgstr ""
+
+#. FJFQi
+#: dabawiz02access.xhp
+msgctxt ""
+"dabawiz02access.xhp\n"
+"par_id1142772\n"
+"help.text"
+msgid "See also the English Wiki page <link href=\"https://wiki.documentfoundation.org/MSA-Base_Faq\" name=\"wiki.documentfoundation.org MS Access Base FAQ\">https://wiki.documentfoundation.org/MSA-Base_Faq</link>."
+msgstr ""
+
+#. 7vvBT
+#: dabawiz02access.xhp
+msgctxt ""
+"dabawiz02access.xhp\n"
+"par_idN10544\n"
+"help.text"
+msgid "Microsoft Access database file"
+msgstr ""
+
+#. 5nSHE
+#: dabawiz02access.xhp
+msgctxt ""
+"dabawiz02access.xhp\n"
+"par_idN10548\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies the path to the database file.</ahelp>"
+msgstr ""
+
+#. cKU7v
+#: dabawiz02access.xhp
+msgctxt ""
+"dabawiz02access.xhp\n"
+"par_idN1054B\n"
+"help.text"
+msgid "Browse"
+msgstr ""
+
+#. k4EM5
+#: dabawiz02access.xhp
+msgctxt ""
+"dabawiz02access.xhp\n"
+"par_idN1054F\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click to open a file selection dialog.</ahelp>"
+msgstr ""
+
+#. gjtnv
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"tit\n"
+"help.text"
+msgid "ADO Connection"
+msgstr ""
+
+#. jJtjy
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"bm_id7565233\n"
+"help.text"
+msgid "<bookmark_value>ADO databases (Base)</bookmark_value><bookmark_value>MS ADO interface (Base)</bookmark_value><bookmark_value>databases;ADO (Base)</bookmark_value>"
+msgstr ""
+
+#. 9Yxn5
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN1054C\n"
+"help.text"
+msgid "<variable id=\"ado\"><link href=\"text/sdatabase/dabawiz02ado.xhp\">ADO Connection</link></variable>"
+msgstr ""
+
+#. Gi6xc
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN10550\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies the options for adding an ADO (Microsoft ActiveX Data Objects) database.</ahelp>"
+msgstr ""
+
+#. pGwdA
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN10565\n"
+"help.text"
+msgid "The ADO interface is a Microsoft Windows proprietary container for connecting to databases."
+msgstr ""
+
+#. mVEj7
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN10568\n"
+"help.text"
+msgid "$[officename] requires the Microsoft Data Access Components (MDAC) to use the ADO interface. Microsoft Windows 2000 and XP include these components by default."
+msgstr ""
+
+#. CWQxx
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN1056B\n"
+"help.text"
+msgid "Data source URL"
+msgstr ""
+
+#. dEHxg
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN1056F\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the data source URL.</ahelp>"
+msgstr ""
+
+#. AS8Ye
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN10572\n"
+"help.text"
+msgid "Example URLs"
+msgstr ""
+
+#. DGA9a
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN10576\n"
+"help.text"
+msgid "To connect to an Access 2000 file, use the format:"
+msgstr ""
+
+#. EYrtv
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN10579\n"
+"help.text"
+msgid "PROVIDER=Microsoft.Jet.OLEDB.4.0;DATA SOURCE=c:\\Access\\nwind2000.mdb"
+msgstr ""
+
+#. JrQva
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN1057C\n"
+"help.text"
+msgid "To connect with a name to a catalog on a Microsoft SQL server that has a name turner, enter:"
+msgstr ""
+
+#. HeHcf
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN1057F\n"
+"help.text"
+msgid "PROVIDER=sqloledb;DATA SOURCE=turner;INITIAL CATALOG=First"
+msgstr ""
+
+#. eqFwU
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN10582\n"
+"help.text"
+msgid "To access an ODBC driver as a provider:"
+msgstr ""
+
+#. cibKq
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN10585\n"
+"help.text"
+msgid "DSN=SQLSERVER"
+msgstr ""
+
+#. FFdf5
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN10588\n"
+"help.text"
+msgid "Browse"
+msgstr ""
+
+#. xmZQB
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN1058C\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click to open a database selection dialog.</ahelp>"
+msgstr ""
+
+#. Bi3az
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN10596\n"
+"help.text"
+msgid "A user name can have a maximum of 18 characters."
+msgstr ""
+
+#. iifVJ
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN10599\n"
+"help.text"
+msgid "A password must contain 3 to 18 characters."
+msgstr ""
+
+#. mxSCU
+#: dabawiz02dbase.xhp
+msgctxt ""
+"dabawiz02dbase.xhp\n"
+"tit\n"
+"help.text"
+msgid "dBASE Connection"
+msgstr ""
+
+#. vDDMj
+#: dabawiz02dbase.xhp
+msgctxt ""
+"dabawiz02dbase.xhp\n"
+"par_idN1054A\n"
+"help.text"
+msgid "<variable id=\"dbase\"><link href=\"text/sdatabase/dabawiz02dbase.xhp\">dBASE Connection</link></variable>"
+msgstr ""
+
+#. 3rzAr
+#: dabawiz02dbase.xhp
+msgctxt ""
+"dabawiz02dbase.xhp\n"
+"par_idN10556\n"
+"help.text"
+msgid "Path to the dBASE files"
+msgstr ""
+
+#. 9qfqi
+#: dabawiz02dbase.xhp
+msgctxt ""
+"dabawiz02dbase.xhp\n"
+"par_idN1055A\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the path to the dBASE *.dbf files.</ahelp>"
+msgstr ""
+
+#. JtErQ
+#: dabawiz02dbase.xhp
+msgctxt ""
+"dabawiz02dbase.xhp\n"
+"par_idN10571\n"
+"help.text"
+msgid "Browse"
+msgstr ""
+
+#. VHbhH
+#: dabawiz02dbase.xhp
+msgctxt ""
+"dabawiz02dbase.xhp\n"
+"par_idN10575\n"
+"help.text"
+msgid "<ahelp hid=\".\">Open a path selection dialog.</ahelp>"
+msgstr ""
+
+#. n9AxK
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"tit\n"
+"help.text"
+msgid "JDBC Connection"
+msgstr ""
+
+#. BSPeu
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"bm_id3726920\n"
+"help.text"
+msgid "<bookmark_value>JDBC; databases (Base)</bookmark_value><bookmark_value>databases; JDBC (Base)</bookmark_value>"
+msgstr ""
+
+#. nSDvF
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN105FC\n"
+"help.text"
+msgid "<variable id=\"jdbc\"><link href=\"text/sdatabase/dabawiz02jdbc.xhp\">JDBC Connection</link></variable>"
+msgstr ""
+
+#. 4vvDv
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN10600\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies the options to access a <link href=\"text/shared/00/00000005.xhp#jdbc\" name=\"JDBC\">JDBC</link> database.</ahelp>"
+msgstr ""
+
+#. MAM5R
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN10623\n"
+"help.text"
+msgid "JDBC Examples"
+msgstr ""
+
+#. FAkVF
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN10627\n"
+"help.text"
+msgid "<item type=\"productname\">You can use a JDBC driver class to connect to a JDBC database from %PRODUCTNAME</item>. The driver class is provided by the database manufacturer. Two examples of JDBC databases are Oracle and MySQL."
+msgstr ""
+
+#. ehUZi
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN1062D\n"
+"help.text"
+msgid "The driver classes must be added to %PRODUCTNAME in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME - Advanced</menuitem>."
+msgstr ""
+
+#. KTrhC
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN10634\n"
+"help.text"
+msgid "Oracle database"
+msgstr ""
+
+#. Br2JC
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN10638\n"
+"help.text"
+msgid "You can use a JDBC driver to access an Oracle database from Solaris or Linux. To access the database from Windows, you need an ODBC driver."
+msgstr ""
+
+#. pei94
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN1064B\n"
+"help.text"
+msgid "On UNIX, ensure that the Oracle database client is installed with JDBC support. The JDBC driver class for the Solaris Oracle client version 8.x is located in the <Oracle client>/product/jdbc/lib/classes111.zip directory. You can also download the latest version from the Oracle web site."
+msgstr ""
+
+#. DifQh
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN10661\n"
+"help.text"
+msgid "In the <emph>Data source URL</emph> box, enter the location of the Oracle database server. The syntax of the URL depends on the database type. See the documentation that came with the JDBC driver for more information."
+msgstr ""
+
+#. BBFrJ
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN10668\n"
+"help.text"
+msgid "For an Oracle database, the syntax of the URL is:"
+msgstr ""
+
+#. 7tbob
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN1066B\n"
+"help.text"
+msgid "oracle:thin:@hostname:port:database_name"
+msgstr ""
+
+#. RiDDR
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN10674\n"
+"help.text"
+msgid "hostname is the name of the machine that runs the Oracle database. You can also replace hostname with the IP address of the server."
+msgstr ""
+
+#. sFfhQ
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN10678\n"
+"help.text"
+msgid "port is the port where the Oracle database listens. Ask your database administrator for the correct port address."
+msgstr ""
+
+#. GDkVv
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN1067C\n"
+"help.text"
+msgid "database_name is the name of the Oracle database. Ask your database administrator for the correct name."
+msgstr ""
+
+#. aQiqR
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN1067F\n"
+"help.text"
+msgid "MySQL database"
+msgstr ""
+
+#. FEV5u
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN10683\n"
+"help.text"
+msgid "The driver for the MySQL database is available on the MySQL web site."
+msgstr ""
+
+#. p2v67
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN10689\n"
+"help.text"
+msgid "The syntax for a MySQL database is:"
+msgstr ""
+
+#. wEDsL
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN1068C\n"
+"help.text"
+msgid "mysql://hostname:port/database_name"
+msgstr ""
+
+#. m5Kcx
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN10695\n"
+"help.text"
+msgid "<ahelp hid=\".\">hostname is the name of the machine that runs the MySQL database.</ahelp> You can also replace hostname with the IP address of the server."
+msgstr ""
+
+#. LCpew
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN10699\n"
+"help.text"
+msgid "port is the default port for MySQL databases, namely 3306."
+msgstr ""
+
+#. q2DuM
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN1069D\n"
+"help.text"
+msgid "database_name is the name of the database."
+msgstr ""
+
+#. YYgSg
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN106A0\n"
+"help.text"
+msgid "Data source URL"
+msgstr ""
+
+#. EcdaK
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN106A4\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the URL for the database. For example, for the MySQL JDBC driver, enter \"mysql://<Servername>/<name of the database>\". For more information on the JDBC driver, consult the documentation that came with the driver.</ahelp>"
+msgstr ""
+
+#. eVBSr
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN106BB\n"
+"help.text"
+msgid "JDBC Driver Class"
+msgstr ""
+
+#. vFsoP
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN106BF\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the name of the JDBC driver.</ahelp>"
+msgstr ""
+
+#. VHjhA
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_id7953733\n"
+"help.text"
+msgid "Before you can use a JDBC driver, you need to add its class path. Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME - Advanced</menuitem>, and click the <widget>Class Path</widget> button. After you add the path information, restart %PRODUCTNAME."
+msgstr ""
+
+#. f8fUr
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN106CE\n"
+"help.text"
+msgid "Test Class"
+msgstr ""
+
+#. 8VBbq
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN106E4\n"
+"help.text"
+msgid "<ahelp hid=\".\">Tests the connection with the current settings.</ahelp>"
+msgstr ""
+
+#. FGezr
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN106E7\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/dabawiz03auth.xhp\">Authentication</link>"
+msgstr ""
+
+#. Y4EFA
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"tit\n"
+"help.text"
+msgid "MariaDB and MySQL Connection"
+msgstr ""
+
+#. bVNAZ
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"bm_id861587404584956\n"
+"help.text"
+msgid "<bookmark_value>MariaDB settings (Base)</bookmark_value><bookmark_value>MySQL settings (Base)</bookmark_value>"
+msgstr ""
+
+#. MseiS
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"par_idN10549\n"
+"help.text"
+msgid "<variable id=\"mysql\"><link href=\"text/sdatabase/dabawiz02mysql.xhp\">MariaDB and MySQL Connection</link></variable>"
+msgstr ""
+
+#. 5FPU6
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"par_idN1054D\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies the options for MariaDB and MySQL databases.</ahelp>"
+msgstr ""
+
+#. Bmcwo
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"hd_id661587405298284\n"
+"help.text"
+msgid "Direct Connection for MariaDB and MySQL databases"
+msgstr ""
+
+#. vd9VD
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"hd_id321587405303769\n"
+"help.text"
+msgid "Database name"
+msgstr ""
+
+#. 6LAsi
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"par_id371587405314376\n"
+"help.text"
+msgid "Enter the name of the MariaDB or MySQL database. Ask your database administrator for the correct name."
+msgstr ""
+
+#. jbdZp
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"hd_id561587405334695\n"
+"help.text"
+msgid "Server URL"
+msgstr ""
+
+#. SshYk
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"par_id521587405341138\n"
+"help.text"
+msgid "Enter the URL for the database server. This is the name of the machine that runs the MariaDB or MySQL database. You can also replace hostname with the IP address of the server."
+msgstr ""
+
+#. MZQiq
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"hd_id171587405349438\n"
+"help.text"
+msgid "Port number"
+msgstr ""
+
+#. J2SR3
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"par_id1001587405358390\n"
+"help.text"
+msgid "Enter the port number for the database server. Ask your database administrator for the correct port address. The default port number for MySQL or MariaDB databases is 3306."
+msgstr ""
+
+#. ovKhU
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"hd_id121587407845730\n"
+"help.text"
+msgid "Named Pipe"
+msgstr ""
+
+#. Rq89B
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"par_id941587407987180\n"
+"help.text"
+msgid "If the MariaDB or MySQL database is to be accessed by a named pipe, enter its name."
+msgstr ""
+
+#. wF6bj
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"hd_id161587405553671\n"
+"help.text"
+msgid "Socket"
+msgstr ""
+
+#. e8DB2
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"par_id161587405561472\n"
+"help.text"
+msgid "If the MariaDB or MySQL database is to be accessed by a socket, enter the socket ID."
+msgstr ""
+
+#. fpBNu
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"par_idN10562\n"
+"help.text"
+msgid "Connect using ODBC (Open Database Connectivity)"
+msgstr ""
+
+#. E7sE2
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"par_idN10566\n"
+"help.text"
+msgid "<ahelp hid=\".\">Connects to an existing ODBC data source that was set on a system level.</ahelp>"
+msgstr ""
+
+#. AXrwJ
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"par_idN10569\n"
+"help.text"
+msgid "Connect using JDBC (Java Database Connectivity)"
+msgstr ""
+
+#. i9TrE
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"par_idN1056D\n"
+"help.text"
+msgid "<ahelp hid=\".\">Connects to an existing JDBC data source that was set on a system level.</ahelp>"
+msgstr ""
+
+#. FUG3D
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"par_idN10570\n"
+"help.text"
+msgid "The next wizard page depends on your choice of ODBC or JDBC:"
+msgstr ""
+
+#. VYcYK
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"par_idN10573\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/dabawiz02odbc.xhp\">ODBC Connection</link>"
+msgstr ""
+
+#. DABkC
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"par_idN10582\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/dabawiz02jdbc.xhp\">JDBC Connection</link>"
+msgstr ""
+
+#. ujaGF
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"par_idN10591\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/dabawiz03auth.xhp\">Authentication</link>"
+msgstr ""
+
+#. HF588
+#: dabawiz02odbc.xhp
+msgctxt ""
+"dabawiz02odbc.xhp\n"
+"tit\n"
+"help.text"
+msgid "ODBC Connection"
+msgstr ""
+
+#. sGNau
+#: dabawiz02odbc.xhp
+msgctxt ""
+"dabawiz02odbc.xhp\n"
+"bm_id3149031\n"
+"help.text"
+msgid "<bookmark_value>ODBC;database (Base)</bookmark_value><bookmark_value>databases;ODBC (Base)</bookmark_value>"
+msgstr ""
+
+#. SNzJc
+#: dabawiz02odbc.xhp
+msgctxt ""
+"dabawiz02odbc.xhp\n"
+"par_idN1053D\n"
+"help.text"
+msgid "<variable id=\"odbc\"><link href=\"text/sdatabase/dabawiz02odbc.xhp\">ODBC Connection</link></variable>"
+msgstr ""
+
+#. nb3Qq
+#: dabawiz02odbc.xhp
+msgctxt ""
+"dabawiz02odbc.xhp\n"
+"par_idN10541\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies the settings for <link href=\"text/shared/00/00000005.xhp#odbc\" name=\"ODBC\">ODBC</link> databases.</ahelp>"
+msgstr ""
+
+#. WhLBW
+#: dabawiz02odbc.xhp
+msgctxt ""
+"dabawiz02odbc.xhp\n"
+"par_id8856776\n"
+"help.text"
+msgid "To edit or add records to a database table in $[officename], the table must have a unique index field."
+msgstr ""
+
+#. xs2Yc
+#: dabawiz02odbc.xhp
+msgctxt ""
+"dabawiz02odbc.xhp\n"
+"par_id8034302\n"
+"help.text"
+msgid "On Solaris and Linux platforms, try to use a JDBC driver instead of an ODBC driver. See http://www.unixodbc.org for an ODBC implementation on Solaris or Linux."
+msgstr ""
+
+#. PxZ9T
+#: dabawiz02odbc.xhp
+msgctxt ""
+"dabawiz02odbc.xhp\n"
+"par_id8560136\n"
+"help.text"
+msgid "To connect to a Microsoft Access database on Windows, use the ADO or Access database interface, rather than ODBC."
+msgstr ""
+
+#. vme6U
+#: dabawiz02odbc.xhp
+msgctxt ""
+"dabawiz02odbc.xhp\n"
+"par_id2082583\n"
+"help.text"
+msgid "Drivers for ODBC are supplied and supported by the manufacturer of the database. $[officename] only supports the ODBC 3 standard."
+msgstr ""
+
+#. wCexE
+#: dabawiz02odbc.xhp
+msgctxt ""
+"dabawiz02odbc.xhp\n"
+"par_idN10552\n"
+"help.text"
+msgid "Name of the ODBC database"
+msgstr ""
+
+#. eubaF
+#: dabawiz02odbc.xhp
+msgctxt ""
+"dabawiz02odbc.xhp\n"
+"par_idN10556\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the path to the database file.</ahelp>"
+msgstr ""
+
+#. 7KKFy
+#: dabawiz02odbc.xhp
+msgctxt ""
+"dabawiz02odbc.xhp\n"
+"par_idN10559\n"
+"help.text"
+msgid "Browse"
+msgstr ""
+
+#. CSCAZ
+#: dabawiz02odbc.xhp
+msgctxt ""
+"dabawiz02odbc.xhp\n"
+"par_idN1055D\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click to open an ODBC data source selection dialog:</ahelp>"
+msgstr ""
+
+#. 48ubg
+#: dabawiz02odbc.xhp
+msgctxt ""
+"dabawiz02odbc.xhp\n"
+"par_idN10560\n"
+"help.text"
+msgid "Choose a data source"
+msgstr ""
+
+#. FhAAU
+#: dabawiz02odbc.xhp
+msgctxt ""
+"dabawiz02odbc.xhp\n"
+"par_idN10564\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select a data source to which you want to connect using ODBC. Then click <emph>OK</emph>.</ahelp>"
+msgstr ""
+
+#. WaAZB
+#: dabawiz02odbc.xhp
+msgctxt ""
+"dabawiz02odbc.xhp\n"
+"par_idN10567\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/dabawiz03auth.xhp\">Authentication</link>"
+msgstr ""
+
+#. RL7sk
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"tit\n"
+"help.text"
+msgid "Oracle Database Connection"
+msgstr ""
+
+#. 8H3zh
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"bm_id5900753\n"
+"help.text"
+msgid "<bookmark_value>Oracle databases (base)</bookmark_value>"
+msgstr ""
+
+#. W6aaT
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN105A4\n"
+"help.text"
+msgid "Oracle Database Connection"
+msgstr ""
+
+#. DbqoE
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN105A8\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies the options to access an Oracle database.</ahelp>"
+msgstr ""
+
+#. FMq7o
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN105BD\n"
+"help.text"
+msgid "Oracle database"
+msgstr ""
+
+#. 8qHyA
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN105C1\n"
+"help.text"
+msgid "You can use a JDBC driver to access an Oracle database from Solaris or Linux. To access the database from Windows, you need an ODBC driver."
+msgstr ""
+
+#. sSDYq
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN105D4\n"
+"help.text"
+msgid "On UNIX, ensure that the Oracle database client is installed with JDBC support. The JDBC driver class for the Solaris Oracle client version 8.x is located in the <Oracle client>/product/jdbc/lib/classes111.zip directory. You can also download the latest version of the driver from the Oracle web site."
+msgstr ""
+
+#. 5rxmX
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN10608\n"
+"help.text"
+msgid "Name of the Oracle database"
+msgstr ""
+
+#. DxYWQ
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN1060C\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the name of the Oracle database. Ask your database administrator for the correct name.</ahelp>"
+msgstr ""
+
+#. WKBSR
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN1060F\n"
+"help.text"
+msgid "Server URL"
+msgstr ""
+
+#. vXDGs
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN10613\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the URL for the database server. This is the name of the machine that runs the Oracle database. You can also replace hostname with the IP address of the server.</ahelp>"
+msgstr ""
+
+#. EEESV
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN10616\n"
+"help.text"
+msgid "Port number"
+msgstr ""
+
+#. PBuEW
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN1061A\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the port number for the database server. Ask your database administrator for the correct port address.</ahelp>"
+msgstr ""
+
+#. rYRxW
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN1061D\n"
+"help.text"
+msgid "Oracle JDBC Driver Class"
+msgstr ""
+
+#. ouDxa
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN10621\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the name of the JDBC driver.</ahelp>"
+msgstr ""
+
+#. JumUz
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN10630\n"
+"help.text"
+msgid "Test Class"
+msgstr ""
+
+#. NdF7k
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN10634\n"
+"help.text"
+msgid "<ahelp hid=\".\">Tests the connection with the current settings.</ahelp>"
+msgstr ""
+
+#. UwteE
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN10637\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/dabawiz03auth.xhp\">Authentication</link>"
+msgstr ""
+
+#. XoiBM
+#: dabawiz02spreadsheet.xhp
+msgctxt ""
+"dabawiz02spreadsheet.xhp\n"
+"tit\n"
+"help.text"
+msgid "Spreadsheet Database Connection"
+msgstr ""
+
+#. cwGbM
+#: dabawiz02spreadsheet.xhp
+msgctxt ""
+"dabawiz02spreadsheet.xhp\n"
+"par_idN1053A\n"
+"help.text"
+msgid "Set up Spreadsheet connection"
+msgstr ""
+
+#. fZnvG
+#: dabawiz02spreadsheet.xhp
+msgctxt ""
+"dabawiz02spreadsheet.xhp\n"
+"par_idN1053E\n"
+"help.text"
+msgid "Location and file name"
+msgstr ""
+
+#. 6TKT4
+#: dabawiz02spreadsheet.xhp
+msgctxt ""
+"dabawiz02spreadsheet.xhp\n"
+"par_idN10542\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the path and file name to the spreadsheet file.</ahelp>"
+msgstr ""
+
+#. XtNjY
+#: dabawiz02spreadsheet.xhp
+msgctxt ""
+"dabawiz02spreadsheet.xhp\n"
+"par_idN10545\n"
+"help.text"
+msgid "Browse"
+msgstr ""
+
+#. JfUMC
+#: dabawiz02spreadsheet.xhp
+msgctxt ""
+"dabawiz02spreadsheet.xhp\n"
+"par_idN10549\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click to open a file selection dialog.</ahelp>"
+msgstr ""
+
+#. JAmAi
+#: dabawiz02spreadsheet.xhp
+msgctxt ""
+"dabawiz02spreadsheet.xhp\n"
+"par_idN1054C\n"
+"help.text"
+msgid "Password required"
+msgstr ""
+
+#. 3HzmH
+#: dabawiz02spreadsheet.xhp
+msgctxt ""
+"dabawiz02spreadsheet.xhp\n"
+"par_idN10550\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select to request a password from the user of the database document.</ahelp>"
+msgstr ""
+
+#. xngE4
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"tit\n"
+"help.text"
+msgid "Text File Connection"
+msgstr ""
+
+#. dfWU7
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"bm_id2517166\n"
+"help.text"
+msgid "<bookmark_value>tables in databases;importing text formats (Base)</bookmark_value><bookmark_value>text databases (Base)</bookmark_value>"
+msgstr ""
+
+#. htUUB
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN1054F\n"
+"help.text"
+msgid "Set up a connection to text files"
+msgstr ""
+
+#. MD2eT
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN10553\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies the settings for importing a database in text format.</ahelp>"
+msgstr ""
+
+#. 6yKNw
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN10568\n"
+"help.text"
+msgid "In a text format database, data is stored in an unformatted ASCII file, where each record comprises a row. The data fields are divided by separators. Text in the data fields is divided by quotation marks."
+msgstr ""
+
+#. puYrF
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN1056B\n"
+"help.text"
+msgid "Path to text files"
+msgstr ""
+
+#. LkFcD
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN1056F\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the path to the text file or files. If you just want one text file, you can use any extension of the file name. If you enter a folder name, the text files in that folder must have the extension *.csv to be recognized as files of the text database.</ahelp>"
+msgstr ""
+
+#. DwHAY
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN10572\n"
+"help.text"
+msgid "Browse"
+msgstr ""
+
+#. tU8mG
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN10576\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click to open a file selection dialog.</ahelp>"
+msgstr ""
+
+#. MmGr4
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN10616\n"
+"help.text"
+msgid "Plain text files (*.txt)"
+msgstr ""
+
+#. ztjWn
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN1061A\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click to access txt files.</ahelp>"
+msgstr ""
+
+#. E5S76
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN10643\n"
+"help.text"
+msgid "'Comma separated value' files (*.csv)"
+msgstr ""
+
+#. 2fDr2
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN10647\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click to access csv files.</ahelp>"
+msgstr ""
+
+#. EVBCK
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN10666\n"
+"help.text"
+msgid "Custom"
+msgstr ""
+
+#. 3Z5fx
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN1066A\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click to access custom files. Enter the extension in the text box.</ahelp>"
+msgstr ""
+
+#. rts2F
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN10581\n"
+"help.text"
+msgid "Field separator"
+msgstr ""
+
+#. 3G6QU
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN10585\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter or select the character that separates data fields in the text file.</ahelp>"
+msgstr ""
+
+#. 8rxWL
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN1059C\n"
+"help.text"
+msgid "Text separator"
+msgstr ""
+
+#. ejFpV
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN105A0\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter or select the character that identifies a text field in the text file.</ahelp> You cannot use the same character as the field separator."
+msgstr ""
+
+#. rSTcV
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN105B8\n"
+"help.text"
+msgid "Decimal separator"
+msgstr ""
+
+#. apBAu
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN105BC\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter or select the character that is used as a decimal separator in the text file, for example, a period (0.5) or a comma (0,5).</ahelp>"
+msgstr ""
+
+#. CyhGN
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN105D3\n"
+"help.text"
+msgid "Thousands separator"
+msgstr ""
+
+#. 6TTiq
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN105D7\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter or select the character that is used as a thousands separator in the text file, for example a comma (1,000), or a period (1.000).</ahelp>"
msgstr ""
#. YSNPt
@@ -7962,13 +9429,13 @@ msgctxt ""
msgid "<ahelp hid=\".\">Check if the configured connection can be used to access the database.</ahelp>"
msgstr ""
-#. 9d4Bh
+#. dF4Mp
#: dabawiz03auth.xhp
msgctxt ""
"dabawiz03auth.xhp\n"
"par_idN1054F\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02.xhp\">Save and proceed</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02.xhp\">Save and proceed</link>"
msgstr ""
#. cLmBi
diff --git a/source/am/helpcontent2/source/text/sdraw.po b/source/am/helpcontent2/source/text/sdraw.po
index 5b8fcc8b896..a3da726debf 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: 2021-09-20 13:03+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+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"
@@ -1168,15 +1168,6 @@ msgctxt ""
msgid "<link href=\"text/sdraw/01/page_properties.xhp\" name=\"Properties\">Properties</link>"
msgstr "<link href=\"text/sdraw/01/page_properties.xhp\" name=\"Properties\">ባህሪዎች</link>"
-#. ESkBn
-#: main_page.xhp
-msgctxt ""
-"main_page.xhp\n"
-"hd_id371566154570590\n"
-"help.text"
-msgid "Master Page"
-msgstr ""
-
#. 2pA94
#: main_page.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/sdraw/00.po b/source/am/helpcontent2/source/text/sdraw/00.po
index 1a8dc872b08..730fe1a6f4d 100644
--- a/source/am/helpcontent2/source/text/sdraw/00.po
+++ b/source/am/helpcontent2/source/text/sdraw/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-03 12:42+0100\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
"PO-Revision-Date: 2019-11-13 12:53+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://vm137.documentfoundation.org/projects/libo_help-master/textsdraw00/am/>\n"
@@ -79,6 +79,15 @@ msgctxt ""
msgid "<variable id=\"seitenvorlage\">Choose <menuitem>Page - Master Page</menuitem> </variable>"
msgstr ""
+#. DjtXM
+#: page_menu.xhp
+msgctxt ""
+"page_menu.xhp\n"
+"par_id911634055593609\n"
+"help.text"
+msgid "<variable id=\"loadpagedesign\">Choose <menuitem>Page - Master Page - Load</menuitem></variable>"
+msgstr ""
+
#. paRMk
#: page_menu.xhp
msgctxt ""
@@ -97,13 +106,13 @@ msgctxt ""
msgid "On the <emph>Insert</emph> bar, click"
msgstr ""
-#. Ldrnc
+#. kCGEr
#: page_menu.xhp
msgctxt ""
"page_menu.xhp\n"
"par_id351556823072396\n"
"help.text"
-msgid "<image id=\"img_id381556823072396\" src=\"cmd/sc_insertpage.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id381556823072396\">Icon</alt></image>"
+msgid "<image id=\"img_id381556823072396\" src=\"cmd/sc_insertpage.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id381556823072396\">Icon New Page</alt></image>"
msgstr ""
#. xbkHm
diff --git a/source/am/helpcontent2/source/text/sdraw/01.po b/source/am/helpcontent2/source/text/sdraw/01.po
index 52033a5f71a..466f683ac76 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: 2021-06-24 12:51+0200\n"
+"POT-Creation-Date: 2021-10-25 12:48+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"
@@ -601,13 +601,13 @@ msgctxt ""
msgid "The previous text box objects are deleted after consolidation."
msgstr ""
-#. 6AkKv
+#. bGEES
#: consolidatetext.xhp
msgctxt ""
"consolidatetext.xhp\n"
"par_id531623515498932\n"
"help.text"
-msgid "Consolidation of lists requires attention to restore the list layout that has been affected by the position of the punctuation. This includes the case of numbering of style \"1.\", where he resulting list items are split after the dot."
+msgid "Consolidation of lists requires attention to restore the list layout that has been affected by the position of the punctuation. This includes the case of numbering of style \"1.\", where the resulting list items are split after the dot."
msgstr ""
#. VwP6B
diff --git a/source/am/helpcontent2/source/text/shared/00.po b/source/am/helpcontent2/source/text/shared/00.po
index 4e1d5bd4b03..879e63fe765 100644
--- a/source/am/helpcontent2/source/text/shared/00.po
+++ b/source/am/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-20 13:03+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
"PO-Revision-Date: 2018-11-17 21:27+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -6118,6 +6118,24 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/charset\">Specifies the character set of the file for export or import.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/charset\">የ ባህሪ ማሰናጃ መግለጫ ለ ፋይል ማምጫ ወይንም መላኪያ </ahelp>"
+#. G7B9v
+#: 00000215.xhp
+msgctxt ""
+"00000215.xhp\n"
+"hd_id911633520416200\n"
+"help.text"
+msgid "Include byte-order mark"
+msgstr ""
+
+#. 5G2v5
+#: 00000215.xhp
+msgctxt ""
+"00000215.xhp\n"
+"par_id211633520423767\n"
+"help.text"
+msgid "For Unicode character set only, a byte order mark (BOM) is a sequence of bytes used to indicate Unicode encoding of a text file. The presence of the UTF-8 BOM is optional and may cause problems with some software, especially legacy software not designed to handle UTF-8."
+msgstr ""
+
#. PSvbB
#: 00000215.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/01.po b/source/am/helpcontent2/source/text/shared/01.po
index 90e5b09bcce..6510f9388c7 100644
--- a/source/am/helpcontent2/source/text/shared/01.po
+++ b/source/am/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-04 19:51+0200\n"
+"POT-Creation-Date: 2021-10-25 12:48+0200\n"
"PO-Revision-Date: 2020-03-18 16:16+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Amharic <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/am/>\n"
@@ -14929,6 +14929,204 @@ msgctxt ""
msgid "<variable id=\"quellaus\"><ahelp hid=\".uno:TwainSelect\" visibility=\"visible\">Selects the scanner that you want to use.</ahelp></variable>"
msgstr "<variable id=\"quellaus\"><ahelp hid=\".uno:TwainSelect\" visibility=\"visible\">መጠቀም የሚፈልጉትን ማሰሻ ይምረጡ</ahelp></variable>"
+#. AJ5Lv
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"par_id661633376449596\n"
+"help.text"
+msgid "The dialog displays settings for the selected scanner and the scan job."
+msgstr ""
+
+#. t6BMj
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"hd_id721633369239013\n"
+"help.text"
+msgid "Sources"
+msgstr ""
+
+#. GvcAB
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"par_id361633369288384\n"
+"help.text"
+msgid "Displays a list of available scanners detected in your system. Click on a scanner in the list and press <emph>Select</emph> to open the scanner configuration dialog. The configuration dialog depends on the scanner driver installed."
+msgstr ""
+
+#. Caooc
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"hd_id511633368095174\n"
+"help.text"
+msgid "Scan Area"
+msgstr ""
+
+#. vYcZn
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"hd_id991633368100151\n"
+"help.text"
+msgid "Left, right, top, bottom"
+msgstr ""
+
+#. mncAH
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"par_id561633368111347\n"
+"help.text"
+msgid "Set the margins of the scan area."
+msgstr ""
+
+#. wmUp5
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"hd_id81633368116162\n"
+"help.text"
+msgid "Preview"
+msgstr ""
+
+#. GFTiz
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"par_id811633368127119\n"
+"help.text"
+msgid "Displays a preview of the scanned image. The preview area contains eight handles. Drag the handles to adjust the scan area or enter a value in the corresponding margin spin box."
+msgstr ""
+
+#. SQG8n
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"hd_id181633369359784\n"
+"help.text"
+msgid "Device used"
+msgstr ""
+
+#. vtMfF
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"par_id311633371297646\n"
+"help.text"
+msgid "Select the scanner device in the list of devices detected by your system."
+msgstr ""
+
+#. PAHaK
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"hd_id161633369549370\n"
+"help.text"
+msgid "Resolution [DPI]"
+msgstr ""
+
+#. jTyuD
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"par_id401633369701424\n"
+"help.text"
+msgid "Select the resolution in dots per inch for the scan job. The available resolutions depends on the scanner driver."
+msgstr ""
+
+#. F5SoB
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"hd_id351633369697474\n"
+"help.text"
+msgid "Show advanced options"
+msgstr ""
+
+#. Hj5EW
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"par_id771633369733491\n"
+"help.text"
+msgid "Mark this checkbox to display more configuration options for the scanner device. The set of options is displayed in the <emph>Options</emph> box and depends on the scanner driver."
+msgstr ""
+
+#. 6qqQP
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"hd_id461633370147200\n"
+"help.text"
+msgid "Options"
+msgstr ""
+
+#. JtCux
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"par_id761633371067498\n"
+"help.text"
+msgid "Displays the list of available scanner driver advanced options. Double click an option to display its contents just below. The option and its values depends on the scanner driver."
+msgstr ""
+
+#. DFbzA
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"hd_id461633371554790\n"
+"help.text"
+msgid "About Device"
+msgstr ""
+
+#. 2DSpo
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"par_id821633371816925\n"
+"help.text"
+msgid "Displays a popup window with information obtained from the scanner driver: device address, vendor, scanner model and type of scanner."
+msgstr ""
+
+#. HCSD9
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"hd_id971633371559920\n"
+"help.text"
+msgid "Create preview"
+msgstr ""
+
+#. T4Tgs
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"par_id431633375721518\n"
+"help.text"
+msgid "Scans and displays the document in the preview area. Use the <emph>Create Preview</emph> command to view a sample of the scanned document and set the scan job properties."
+msgstr ""
+
+#. YL3KE
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"hd_id151633371565195\n"
+"help.text"
+msgid "Scan"
+msgstr ""
+
+#. zWLcX
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"par_id851633375846639\n"
+"help.text"
+msgid "Scans an image, and then inserts the result into the document and closes the dialog."
+msgstr ""
+
#. qDEzX
#: 04060200.xhp
msgctxt ""
@@ -22327,13 +22525,13 @@ msgctxt ""
msgid "The <emph>Remove border</emph> option in the <emph>Adjacent Cells</emph> section determines if borders in the edges of the selected range are to be removed. Leave this option unchecked if edge borders should be left unchanged."
msgstr ""
-#. VPwsL
+#. PjDF8
#: 05030500.xhp
msgctxt ""
"05030500.xhp\n"
"par_id181630450040456\n"
"help.text"
-msgid "Read the help page <embedvar href=\"text/scalc/guide/borders.xhp#borders\"/> to learn more on how to define custom line arrangements."
+msgid "Read the help page <link href=\"text/scalc/guide/borders.xhp\">User Defined Borders in Cells</link> to learn more on how to define custom line arrangements."
msgstr ""
#. 2SFo2
@@ -24910,14 +25108,32 @@ msgctxt ""
msgid "<ahelp hid=\".\">Horizontally centers the selected objects. If only one object is selected in Draw or Impress, the center of the object is aligned to the horizontal center of the page.</ahelp>"
msgstr "<ahelp hid=\".\">የ ተመረጡትን እቃዎች በ አግድም መሀከል ያደርጋቸዋል: አንድ እቃ ብቻ ከ ተመረጠ በ መሳያ ወይንም በ ማስደነቂያ: የ እቃው መሀከል በ አግድም መሀከል ላይ ይሆናል በ ገጹ ውስጥ </ahelp>"
-#. cdt69
+#. KZbGT
#: 05070200.xhp
msgctxt ""
"05070200.xhp\n"
"par_id3144336\n"
"help.text"
-msgid "The vertical position of the selected objects is not affected by this command.<embedvar href=\"text/shared/01/05070100.xhp#mehrfachselektion\"/>"
-msgstr "ይህ ትእዛዝ በ ተመረጡት እቃዎች በ ቁመት ቦታ ላይ ምንም ተጽእኖ አይፈጥርም <embedvar href=\"text/shared/01/05070100.xhp#mehrfachselektion\"/>"
+msgid "The vertical position of the selected objects is not affected by this command."
+msgstr ""
+
+#. yXXeh
+#: 05070200.xhp
+msgctxt ""
+"05070200.xhp\n"
+"par_id891634662083611\n"
+"help.text"
+msgid "To align the individual objects in a group, choose <menuitem>Format - Group - Enter Group</menuitem> to enter the group, select the objects, right-click, and then choose an alignment option."
+msgstr ""
+
+#. FyxcB
+#: 05070200.xhp
+msgctxt ""
+"05070200.xhp\n"
+"par_id81634662074262\n"
+"help.text"
+msgid "To align the individual objects in a group, double-click to enter the group, select the objects, right-click, and then choose an alignment option."
+msgstr ""
#. xtqWj
#: 05070300.xhp
@@ -25306,13 +25522,13 @@ msgctxt ""
msgid "<variable id=\"verbindentext\"><ahelp hid=\".\">Combines the contents of the selected cells into a single cell, retaining the formatting of the first cell in the selection.</ahelp></variable>"
msgstr ""
-#. ip2CD
+#. Cb2xp
#: 05100100.xhp
msgctxt ""
"05100100.xhp\n"
"par_id461632808376973\n"
"help.text"
-msgid "Click and drag to select the cells to be merged then do one of the following:"
+msgid "Select the cells to be merged then do one of the following:"
msgstr ""
#. bJGUQ
@@ -25324,13 +25540,13 @@ msgctxt ""
msgid "In the <emph>Formatting</emph> toolbar, click:"
msgstr ""
-#. R8GWz
+#. kBxWW
#: 05100100.xhp
msgctxt ""
"05100100.xhp\n"
"par_id3154351\n"
"help.text"
-msgid "Or, right click the selection to open the context menu and choose <menuitem>Merge Cells</menuitem>.<br/>If <menuitem>Unmerge Cells</menuitem> is present instead then the cell selection contains merged cells and cannot be merged further."
+msgid "Or, right click the selection to open the context menu and choose <menuitem>Merge Cells</menuitem>. If <menuitem>Unmerge Cells</menuitem> is present instead then the cell selection contains merged cells and cannot be merged further."
msgstr ""
#. Fz6u9
@@ -25342,13 +25558,13 @@ msgctxt ""
msgid "Or, in the <emph>Properties</emph> sidebar mark the <emph>Merge Cells</emph> checkbox."
msgstr ""
-#. fsBRE
+#. CmQFq
#: 05100100.xhp
msgctxt ""
"05100100.xhp\n"
"par_id3154020\n"
"help.text"
-msgid "Or, choose <embedvar href=\"text/scalc/01/05060000.xhp#format_mergecells_menu\"/><menuitem>Merge Cells</menuitem>."
+msgid "Or, choose <menuitem>Format - Merge and Unmerge Cells - Merge Cells</menuitem>."
msgstr ""
#. tHAGa
@@ -25378,13 +25594,13 @@ msgctxt ""
msgid "Split Cells"
msgstr "ክፍሎች መክፈያ"
-#. njuVE
+#. i8VUj
#: 05100200.xhp
msgctxt ""
"05100200.xhp\n"
"bm_id501632012952361\n"
"help.text"
-msgid "<bookmark_value>unmerge/unmerging cells</bookmark_value> <bookmark_value>split/splitting cells</bookmark_value>"
+msgid "<bookmark_value>unmerge/unmerging cells</bookmark_value><bookmark_value>split/splitting cells</bookmark_value>"
msgstr ""
#. zDkKt
@@ -25396,13 +25612,13 @@ msgctxt ""
msgid "<variable id=\"unmergecells\"><link href=\"text/shared/01/05100200.xhp\" name=\"Unmerging Cells\">Unmerge Cells</link></variable>"
msgstr ""
-#. 3oTxu
+#. vXyfX
#: 05100200.xhp
msgctxt ""
"05100200.xhp\n"
"par_id871632385128307\n"
"help.text"
-msgid "<ahelp hid=\".\">Divides previously merged cells back to the original cells. If the original cells had content that was kept when merged that content is restored.</ahelp>"
+msgid "<ahelp hid=\".\">Divides previously merged cells back to the original cells. If the original cells had content that was kept when merged that content is restored.</ahelp>"
msgstr ""
#. qBugU
@@ -25423,13 +25639,13 @@ msgctxt ""
msgid "In the <emph>Formatting</emph> toolbar click:"
msgstr ""
-#. VvKDu
+#. SMhxF
#: 05100200.xhp
msgctxt ""
"05100200.xhp\n"
"par_id161632275254217\n"
"help.text"
-msgid "Or, right click the selection to open the context menu and choose <menuitem>Unmerge Cells</menuitem>.<br/>If <menuitem>Merge Cells</menuitem> is present instead then the cell selection does not contain any merged cells."
+msgid "Or, right click the selection to open the context menu and choose <menuitem>Unmerge Cells</menuitem>. If <menuitem>Merge Cells</menuitem> is present instead then the cell selection does not contain any merged cells."
msgstr ""
#. WLbsk
@@ -25441,13 +25657,13 @@ msgctxt ""
msgid "Or, in the <emph>Properties</emph> sidebar clear the <emph>Merge Cells</emph> checkbox."
msgstr ""
-#. BNuGm
+#. nnwCo
#: 05100200.xhp
msgctxt ""
"05100200.xhp\n"
"par_id381632805680565\n"
"help.text"
-msgid "Or, choose <embedvar href=\"text/scalc/01/05060000.xhp#format_mergecells_menu\"/><menuitem>Unmerge Cells</menuitem>"
+msgid "Or, choose <menuitem>Format - Merge and Unmerge Cells - Unmerge Cells</menuitem>"
msgstr ""
#. Tvbae
@@ -25468,22 +25684,22 @@ msgctxt ""
msgid "<variable id=\"teilentext\"><ahelp hid=\".\">Displays the Split Cells Dialog where the split can be defined as either horizontally or vertically and the number the each cell will be split into.</ahelp></variable>"
msgstr ""
-#. yAYPv
+#. aAHnr
#: 05100200.xhp
msgctxt ""
"05100200.xhp\n"
"par_id321632807186976\n"
"help.text"
-msgid "Do one of the following:<br/>"
+msgid "Do one of the following:"
msgstr ""
-#. KBJNC
+#. yzi5c
#: 05100200.xhp
msgctxt ""
"05100200.xhp\n"
"par_id3154024\n"
"help.text"
-msgid "Choose <emph>Table - Split Cells</emph>.<br/>"
+msgid "Choose <emph>Table - Split Cells</emph>."
msgstr ""
#. pNAsT
@@ -29401,14 +29617,14 @@ msgctxt ""
msgid "Position and Size (Text Box and Shape)"
msgstr ""
-#. rrFri
+#. tnQ2D
#: 05230100.xhp
msgctxt ""
"05230100.xhp\n"
"bm_id3154350\n"
"help.text"
-msgid "<bookmark_value>positioning;draw objects and controls</bookmark_value><bookmark_value>draw objects;positioning and resizing</bookmark_value><bookmark_value>controls; positions and sizes</bookmark_value><bookmark_value>sizes;draw objects</bookmark_value><bookmark_value>anchors;types/positions for draw objects</bookmark_value><bookmark_value>draw objects; anchoring</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>"
+msgid "<bookmark_value>positioning;draw objects and controls</bookmark_value> <bookmark_value>draw objects;positioning and resizing</bookmark_value> <bookmark_value>controls; positions and sizes</bookmark_value> <bookmark_value>sizes;draw objects</bookmark_value> <bookmark_value>anchors;types/positions for draw objects</bookmark_value> <bookmark_value>draw objects; anchoring</bookmark_value>"
+msgstr ""
#. p36co
#: 05230100.xhp
@@ -29779,13 +29995,13 @@ msgctxt ""
msgid "<variable id=\"AdaptNote\">Adapt is only available for Text Boxes. To adapt Shapes to text, use</variable> <menuitem>Format - Object - Text</menuitem>."
msgstr ""
-#. fqg3X
+#. EARC7
#: 05230100.xhp
msgctxt ""
"05230100.xhp\n"
"par_id591602522244128\n"
"help.text"
-msgid "<embedvar href=\"text/shared/01/05230100.xhp#AdaptNote\"/> <menuitem>Format - Text</menuitem>."
+msgid "Adapt is only available for Text Boxes. To adapt Shapes to text, use <menuitem>Format - Text</menuitem>."
msgstr ""
#. F5Va7
@@ -36934,13 +37150,13 @@ msgctxt ""
msgid "To apply an AutoCorrect rule, enter the predefined text in the document and press the <widget>Spacebar</widget>."
msgstr ""
-#. 3vHeN
+#. rBtji
#: 06040000.xhp
msgctxt ""
"06040000.xhp\n"
"par_id791632159942582\n"
"help.text"
-msgid "To turn off AutoCorrect in %PRODUCTNAME Writer choose <menuitem>Tools - AutoCorrect - While Typing</menuitem>. Refer to the help page <embedvar href=\"text/swriter/guide/auto_off.xhp#auto_off\"/> to learn more about deactivating AutoCorrect in %PRODUCTNAME Writer."
+msgid "To turn off AutoCorrect in %PRODUCTNAME Writer choose <menuitem>Tools - AutoCorrect - While Typing</menuitem>. Refer to the help page <link href=\"text/swriter/guide/auto_off.xhp\" name=\"auto_off_link1\">Turning Off AutoCorrect</link> to learn more about deactivating AutoCorrect in %PRODUCTNAME Writer."
msgstr ""
#. rqivx
@@ -36952,13 +37168,13 @@ msgctxt ""
msgid "To apply AutoCorrect to an entire text document, choose <menuitem>Tools - AutoCorrect - Apply</menuitem>."
msgstr ""
-#. cqbQV
+#. 9cDF3
#: 06040000.xhp
msgctxt ""
"06040000.xhp\n"
"par_id911632159367467\n"
"help.text"
-msgid "To turn off AutoCorrect in %PRODUCTNAME Calc, go to <menuitem>Tools - AutoCorrect Options</menuitem> and uncheck all items in the <emph>Options</emph> and <emph>Localized Options</emph> tabs. Refer to the help page <embedvar href=\"text/scalc/guide/auto_off.xhp#auto_off\"/> to learn more about deactivating AutoCorrect in %PRODUCTNAME Calc."
+msgid "To turn off AutoCorrect in %PRODUCTNAME Calc, go to <menuitem>Tools - AutoCorrect Options</menuitem> and uncheck all items in the <emph>Options</emph> and <emph>Localized Options</emph> tabs. Refer to the help page <link href=\"text/swriter/guide/auto_off.xhp\" name=\"auto_off_link2\">Turning Off AutoCorrect</link> to learn more about deactivating AutoCorrect in %PRODUCTNAME Calc."
msgstr ""
#. EmB5a
diff --git a/source/am/helpcontent2/source/text/shared/explorer/database.po b/source/am/helpcontent2/source/text/shared/explorer/database.po
index a7fb25baa21..224c83b1bf9 100644
--- a/source/am/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/am/helpcontent2/source/text/shared/explorer/database.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-04 19:51+0200\n"
+"POT-Creation-Date: 2021-10-25 12:49+0200\n"
"PO-Revision-Date: 2018-12-10 01:28+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1473 +16,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1544405296.000000\n"
-#. SJaiE
-#: dabawiz02.xhp
-msgctxt ""
-"dabawiz02.xhp\n"
-"tit\n"
-"help.text"
-msgid "Save and proceed"
-msgstr "ማስቀመጫ እና መቀጠያ"
-
-#. azKWk
-#: dabawiz02.xhp
-msgctxt ""
-"dabawiz02.xhp\n"
-"par_idN10544\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02.xhp\">Save and proceed</link>"
-msgstr "<link href=\"text/shared/explorer/database/dabawiz02.xhp\">ማስቀመጫ እና መቀጠያ</link>"
-
-#. CECqo
-#: dabawiz02.xhp
-msgctxt ""
-"dabawiz02.xhp\n"
-"par_idN10554\n"
-"help.text"
-msgid "<ahelp hid=\".\">Specifies whether you want to register the database, open the database for editing, or insert a new table.</ahelp>"
-msgstr "<ahelp hid=\".\">እርስዎ የ ዳታቤዝ መመዝገብ ይፈልጉ እንደሆን መወሰኛ: ይክፈቱ የ ዳታቤዝ ለ ማረም ወይንም አዲስ ሰንጠረዥ ያስገቡ </ahelp>"
-
-#. v3hCS
-#: dabawiz02.xhp
-msgctxt ""
-"dabawiz02.xhp\n"
-"par_idN10557\n"
-"help.text"
-msgid "Yes, register the Database for me"
-msgstr "አዎ ዳታቤዙን ለ እኔ መዝግብልኝ"
-
-#. 6iEY2
-#: dabawiz02.xhp
-msgctxt ""
-"dabawiz02.xhp\n"
-"par_idN105B4\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select to register the database within your user copy of %PRODUCTNAME. After registering, the database is displayed in the <emph>View - Data Sources</emph> window. You must register a database to be able to insert the database fields in a document (Insert - Field - More Fields) or in a mail merge.</ahelp>"
-msgstr "<ahelp hid=\".\">ይምረጡ ለ መመዝገብ የ ዳታቤዝ በ እርስዎ ኮፒ መጠቀሚያ ለ %PRODUCTNAME. ከ መዘገቡ በኋላ: የ ዳታቤዝ ይታያል በ <emph> መመልከቻ – ዳታ ምንጮች </emph> መስኮት ውስጥ: እርስዎ መመዝገብ አለብዎት የ ዳታቤዝ ለማስገባት የ ዳታቤዝ ሜዳዎች በ ሰነድ ውስጥ (ማስገቢያ - ሜዳዎች – ተጨማሪ ሜዳዎች) ወይንም በ ደብዳቤ ማዋሀጃ ውስጥ </ahelp>"
-
-#. BDPbo
-#: dabawiz02.xhp
-msgctxt ""
-"dabawiz02.xhp\n"
-"par_idN105B7\n"
-"help.text"
-msgid "No, do not register the database"
-msgstr "አይ ዳታቤዙን አትመዝግብ"
-
-#. PHFCG
-#: dabawiz02.xhp
-msgctxt ""
-"dabawiz02.xhp\n"
-"par_idN105BB\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select to keep the database information only within the created database file.</ahelp>"
-msgstr "<ahelp hid=\".\">ይምረጡ የ ዳታቤዝ መረጃ ብቻ በ ተፈጠረው የ ዳታቤዝ ፋይል ውስጥ ለ ማስቀመጥ </ahelp>"
-
-#. xJFV8
-#: dabawiz02.xhp
-msgctxt ""
-"dabawiz02.xhp\n"
-"par_idN1055B\n"
-"help.text"
-msgid "Open the database for editing"
-msgstr "ለማረም ዳታቤዝ መክፈቻ"
-
-#. 2oDVV
-#: dabawiz02.xhp
-msgctxt ""
-"dabawiz02.xhp\n"
-"par_idN105C6\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select to display the database file, where you can edit the database structure.</ahelp>"
-msgstr "<ahelp hid=\".\">ይምረጡ የ ዳታቤዝ ፋይል ለማሳየት: እርስዎ ማረም የሚችሉበት የ ዳታቤዝ አካል </ahelp>"
-
-#. uUaJe
-#: dabawiz02.xhp
-msgctxt ""
-"dabawiz02.xhp\n"
-"par_idN1055F\n"
-"help.text"
-msgid "Create tables using the table wizard"
-msgstr "የሰንጠረዥ አዋቂን በመጠቀም ሰንጠረዥ መፍጠሪያ"
-
-#. F4TTD
-#: dabawiz02.xhp
-msgctxt ""
-"dabawiz02.xhp\n"
-"par_idN105D1\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select to call the <link href=\"text/shared/explorer/database/tablewizard00.xhp\">Table Wizard</link> after the Database Wizard is finished.</ahelp>"
-msgstr "<ahelp hid=\".\">ይምረጡ ለ መጥራት የ <link href=\"text/shared/explorer/database/tablewizard00.xhp\">ሰንጠርዥ አዋቂን</link> የ ዳታቤዝ አዋቂው ከ ጨረሰ በኋላ</ahelp>"
-
-#. YnZ24
-#: dabawiz02access.xhp
-msgctxt ""
-"dabawiz02access.xhp\n"
-"tit\n"
-"help.text"
-msgid "Microsoft Access Connection"
-msgstr "የ Microsoft Access ግንኙነት"
-
-#. uUAxL
-#: dabawiz02access.xhp
-msgctxt ""
-"dabawiz02access.xhp\n"
-"bm_id2755516\n"
-"help.text"
-msgid "<bookmark_value>Access databases (base)</bookmark_value><bookmark_value>Microsoft Office;Access databases (base)</bookmark_value>"
-msgstr "<bookmark_value>መድረሻ ወደ ዳታቤዝ (ቤዝ)</bookmark_value><bookmark_value>Microsoft Office: መድረሻ ወደ ዳታቤዝ (ቤዝ)</bookmark_value>"
-
-#. unEfj
-#: dabawiz02access.xhp
-msgctxt ""
-"dabawiz02access.xhp\n"
-"par_idN1053D\n"
-"help.text"
-msgid "<variable id=\"access\"><link href=\"text/shared/explorer/database/dabawiz02access.xhp\">Microsoft Access Connection</link></variable>"
-msgstr "<variable id=\"access\"><link href=\"text/shared/explorer/database/dabawiz02access.xhp\">Microsoft Access ግንኙነት</link></variable>"
-
-#. eMbAE
-#: dabawiz02access.xhp
-msgctxt ""
-"dabawiz02access.xhp\n"
-"par_idN10541\n"
-"help.text"
-msgid "<ahelp hid=\".\">Specifies the settings for importing a database file in Microsoft Access or Access 2007 format.</ahelp>"
-msgstr "<ahelp hid=\".\">በ Microsoft Access or Access 2007 አቀራረብ የ ዳታቤዝ ለ ማምጣት ማሰናጃ ይወስኑ </ahelp>."
-
-#. FJFQi
-#: dabawiz02access.xhp
-msgctxt ""
-"dabawiz02access.xhp\n"
-"par_id1142772\n"
-"help.text"
-msgid "See also the English Wiki page <link href=\"https://wiki.documentfoundation.org/MSA-Base_Faq\" name=\"wiki.documentfoundation.org MS Access Base FAQ\">https://wiki.documentfoundation.org/MSA-Base_Faq</link>."
-msgstr "ይህን ይመልከቱ የ English Wiki page <link href=\"https://wiki.documentfoundation.org/MSA-Base_Faq\" name=\"wiki.documentfoundation.org MS Access Base FAQ\">https://wiki.documentfoundation.org/MSA-Base_Faq</link>."
-
-#. 7vvBT
-#: dabawiz02access.xhp
-msgctxt ""
-"dabawiz02access.xhp\n"
-"par_idN10544\n"
-"help.text"
-msgid "Microsoft Access database file"
-msgstr "የ Microsoft Access ዳታቤዝ ፋይል"
-
-#. 5nSHE
-#: dabawiz02access.xhp
-msgctxt ""
-"dabawiz02access.xhp\n"
-"par_idN10548\n"
-"help.text"
-msgid "<ahelp hid=\".\">Specifies the path to the database file.</ahelp>"
-msgstr "<ahelp hid=\".\">ወደ ዳታቤዝ ፋይል መንገድ መወሰኛ</ahelp>"
-
-#. cKU7v
-#: dabawiz02access.xhp
-msgctxt ""
-"dabawiz02access.xhp\n"
-"par_idN1054B\n"
-"help.text"
-msgid "Browse"
-msgstr "መቃኛ"
-
-#. k4EM5
-#: dabawiz02access.xhp
-msgctxt ""
-"dabawiz02access.xhp\n"
-"par_idN1054F\n"
-"help.text"
-msgid "<ahelp hid=\".\">Click to open a file selection dialog.</ahelp>"
-msgstr "<ahelp hid=\".\">ይጫኑ ለ መክፈት የ ፋይል ምርጫ ንግግር</ahelp>"
-
-#. gjtnv
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"tit\n"
-"help.text"
-msgid "ADO Connection"
-msgstr "የ ADO ግንኙነት"
-
-#. jJtjy
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"bm_id7565233\n"
-"help.text"
-msgid "<bookmark_value>ADO databases (Base)</bookmark_value><bookmark_value>MS ADO interface (Base)</bookmark_value><bookmark_value>databases;ADO (Base)</bookmark_value>"
-msgstr "<bookmark_value>ADO ዳታቤዞች (ቤዝ)</bookmark_value><bookmark_value>MS ADO interface (ቤዝ)</bookmark_value><bookmark_value>ዳታቤዞች: ADO (ቤዝ)</bookmark_value>"
-
-#. yRyA5
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN1054C\n"
-"help.text"
-msgid "<variable id=\"ado\"><link href=\"text/shared/explorer/database/dabawiz02ado.xhp\">ADO Connection</link></variable>"
-msgstr "<variable id=\"ado\"><link href=\"text/shared/explorer/database/dabawiz02ado.xhp\">ADO ግንኙነት</link></variable>"
-
-#. Gi6xc
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN10550\n"
-"help.text"
-msgid "<ahelp hid=\".\">Specifies the options for adding an ADO (Microsoft ActiveX Data Objects) database.</ahelp>"
-msgstr "<ahelp hid=\".\">የ ADO መጨመሪያ ምርጫ መወሰኛ (Microsoft ActiveX Data Objects) ዳታቤዝ </ahelp>"
-
-#. pGwdA
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN10565\n"
-"help.text"
-msgid "The ADO interface is a Microsoft Windows proprietary container for connecting to databases."
-msgstr "የ ADO ገጽታ የ Microsoft Windows proprietary ማጠራቀሚያ ነው ከ ዳታቤዝ ጋር ለ መገናኘት"
-
-#. mVEj7
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "$[officename] requires the Microsoft Data Access Components (MDAC) to use the ADO interface. Microsoft Windows 2000 and XP include these components by default."
-msgstr "$[officename] ይህ ያስፈልጋል የ Microsoft Data Access Components (MDAC) ይህን ለ መጠቀም ADO interface. Microsoft Windows 2000 and XP እነዚህን አካላቶች በ ነባር ያካትታል"
-
-#. CWQxx
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN1056B\n"
-"help.text"
-msgid "Data source URL"
-msgstr "የ ዳታ ምንጭ URL"
-
-#. dEHxg
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN1056F\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the data source URL.</ahelp>"
-msgstr "<ahelp hid=\".\">ያስገቡ የ ዳታ ምንጭ URL.</ahelp>"
-
-#. AS8Ye
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN10572\n"
-"help.text"
-msgid "Example URLs"
-msgstr "ምሳሌዎች URLs"
-
-#. DGA9a
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN10576\n"
-"help.text"
-msgid "To connect to an Access 2000 file, use the format:"
-msgstr "ለ መገናኘት ከ Access 2000 ፋይል ጋር አቀራረብ ይጠቀሙ:"
-
-#. EYrtv
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN10579\n"
-"help.text"
-msgid "PROVIDER=Microsoft.Jet.OLEDB.4.0;DATA SOURCE=c:\\Access\\nwind2000.mdb"
-msgstr "አቅራቢው=Microsoft.Jet.OLEDB.4.0;DATA SOURCE=c:\\Access\\nwind2000.mdb"
-
-#. JrQva
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN1057C\n"
-"help.text"
-msgid "To connect with a name to a catalog on a Microsoft SQL server that has a name turner, enter:"
-msgstr "ለ መገናኘት ከ ስም ጋር ወደ መዝገብ ውስጥ በ Microsoft SQL ሰርቨር turner ስም ያለው: ያስገቡ:"
-
-#. HeHcf
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN1057F\n"
-"help.text"
-msgid "PROVIDER=sqloledb;DATA SOURCE=turner;INITIAL CATALOG=First"
-msgstr "አቅራቢው=sqloledb;DATA SOURCE=turner;INITIAL CATALOG=First"
-
-#. eqFwU
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN10582\n"
-"help.text"
-msgid "To access an ODBC driver as a provider:"
-msgstr "ወደ ODBC driver ጋር ለ እንደ አቅራቢ መድረስ:"
-
-#. cibKq
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN10585\n"
-"help.text"
-msgid "DSN=SQLSERVER"
-msgstr "DSN=SQLSERVER"
-
-#. FFdf5
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN10588\n"
-"help.text"
-msgid "Browse"
-msgstr "መቃኛ"
-
-#. xmZQB
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN1058C\n"
-"help.text"
-msgid "<ahelp hid=\".\">Click to open a database selection dialog.</ahelp>"
-msgstr "<ahelp hid=\".\">ይጫኑ ለ መክፈት የ ዳታቤዝ ምርጫ ንግግር </ahelp>"
-
-#. Bi3az
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN10596\n"
-"help.text"
-msgid "A user name can have a maximum of 18 characters."
-msgstr "የ ተጠቃሚ ስም ከፍተኛው 18 ባህሪዎች ሊኖረው ይችላል"
-
-#. iifVJ
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN10599\n"
-"help.text"
-msgid "A password must contain 3 to 18 characters."
-msgstr "የ መግቢያ ቃል ከ 3 እስከ 18 ባህሪዎች መያዝ አለበት"
-
-#. mxSCU
-#: dabawiz02dbase.xhp
-msgctxt ""
-"dabawiz02dbase.xhp\n"
-"tit\n"
-"help.text"
-msgid "dBASE Connection"
-msgstr "የ ዳታቤዝ ግንኙነት"
-
-#. tp8Cf
-#: dabawiz02dbase.xhp
-msgctxt ""
-"dabawiz02dbase.xhp\n"
-"par_idN1054A\n"
-"help.text"
-msgid "<variable id=\"dbase\"><link href=\"text/shared/explorer/database/dabawiz02dbase.xhp\">dBASE Connection</link></variable>"
-msgstr "<variable id=\"dbase\"><link href=\"text/shared/explorer/database/dabawiz02dbase.xhp\">የ ዳታቤዝ ግንኙነት</link></variable>"
-
-#. 3rzAr
-#: dabawiz02dbase.xhp
-msgctxt ""
-"dabawiz02dbase.xhp\n"
-"par_idN10556\n"
-"help.text"
-msgid "Path to the dBASE files"
-msgstr "መንገድ ወደ የ ዳታቤዝ ፋይሎች"
-
-#. 9qfqi
-#: dabawiz02dbase.xhp
-msgctxt ""
-"dabawiz02dbase.xhp\n"
-"par_idN1055A\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the path to the dBASE *.dbf files.</ahelp>"
-msgstr "<ahelp hid=\".\">ያስገቡ መንገድ ወደ ዳታቤዝ *.dbf ፋይሎች.</ahelp>"
-
-#. JtErQ
-#: dabawiz02dbase.xhp
-msgctxt ""
-"dabawiz02dbase.xhp\n"
-"par_idN10571\n"
-"help.text"
-msgid "Browse"
-msgstr "መቃኛ"
-
-#. VHbhH
-#: dabawiz02dbase.xhp
-msgctxt ""
-"dabawiz02dbase.xhp\n"
-"par_idN10575\n"
-"help.text"
-msgid "<ahelp hid=\".\">Open a path selection dialog.</ahelp>"
-msgstr "<ahelp hid=\".\">መክፈቻ መንገድ ለ ምርጫ ንግግር </ahelp>"
-
-#. n9AxK
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"tit\n"
-"help.text"
-msgid "JDBC Connection"
-msgstr "የ JDBC ግንኙነት"
-
-#. BSPeu
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"bm_id3726920\n"
-"help.text"
-msgid "<bookmark_value>JDBC; databases (Base)</bookmark_value><bookmark_value>databases; JDBC (Base)</bookmark_value>"
-msgstr "<bookmark_value>JDBC: ዳታቤዝ (ቤዝ)</bookmark_value><bookmark_value>ዳታቤዝ: JDBC (ቤዝ)</bookmark_value>"
-
-#. DE8Po
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN105FC\n"
-"help.text"
-msgid "<variable id=\"jdbc\"><link href=\"text/shared/explorer/database/dabawiz02jdbc.xhp\">JDBC Connection</link></variable>"
-msgstr "<variable id=\"jdbc\"><link href=\"text/shared/explorer/database/dabawiz02jdbc.xhp\">የ JDBC ግንኙነት</link></variable>"
-
-#. 4vvDv
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN10600\n"
-"help.text"
-msgid "<ahelp hid=\".\">Specifies the options to access a <link href=\"text/shared/00/00000005.xhp#jdbc\" name=\"JDBC\">JDBC</link> database.</ahelp>"
-msgstr "<ahelp hid=\".\">ለ መድረስ ምርጫዎች መወሰኛ ለ <link href=\"text/shared/00/00000005.xhp#jdbc\" name=\"JDBC\">JDBC</link> ዳታቤዝ </ahelp>"
-
-#. MAM5R
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN10623\n"
-"help.text"
-msgid "JDBC Examples"
-msgstr "የ JDBC ምሳሌዎች"
-
-#. FAkVF
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN10627\n"
-"help.text"
-msgid "<item type=\"productname\">You can use a JDBC driver class to connect to a JDBC database from %PRODUCTNAME</item>. The driver class is provided by the database manufacturer. Two examples of JDBC databases are Oracle and MySQL."
-msgstr "<item type=\"productname\">እርስዎ መጠቀም ይችላሉ የ JDBC driver class ለ መገናኘት ወደ የ JDBC database ጋር ከ %PRODUCTNAME</item> የ driver class የሚቀርበው ከ ዳታቤዝ አምራቹ ጋር ነው: ሁለት ምሳሌዎች የ JDBC ዳታቤዞች Oracle እና MySQL ናቸው"
-
-#. ehUZi
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN1062D\n"
-"help.text"
-msgid "The driver classes must be added to %PRODUCTNAME in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME - Advanced</menuitem>."
-msgstr ""
-
-#. KTrhC
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN10634\n"
-"help.text"
-msgid "Oracle database"
-msgstr "የ Oracle ዳታቤዝ"
-
-#. Br2JC
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN10638\n"
-"help.text"
-msgid "You can use a JDBC driver to access an Oracle database from Solaris or Linux. To access the database from Windows, you need an ODBC driver."
-msgstr "እርስዎ መጠቀም ይችላሉ የ JDBC driver ለ መድረስ ወደ Oracle ለ መድረስ ከ Solaris ወይንም Linux. ለ መድረስ ወደ Windows, ለ እርስዎ ያስፈልጋል የ ODBC driver."
-
-#. pei94
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN1064B\n"
-"help.text"
-msgid "On UNIX, ensure that the Oracle database client is installed with JDBC support. The JDBC driver class for the Solaris Oracle client version 8.x is located in the <Oracle client>/product/jdbc/lib/classes111.zip directory. You can also download the latest version from the Oracle web site."
-msgstr "በ UNIX ውስጥ እርግጠኛ ይሁኑ የ Oracle database client መገጠሙን ከ JDBC support. ጋር The JDBC driver class for the Solaris Oracle client version 8.x is located in the <Oracle client>/product/jdbc/lib/classes111.zip directory. እርስዎ እንዲሁም ማውረድ ይችላሉ ዘመናዊውን እትም ከ Oracle web site. ውስጥ"
-
-#. DifQh
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN10661\n"
-"help.text"
-msgid "In the <emph>Data source URL</emph> box, enter the location of the Oracle database server. The syntax of the URL depends on the database type. See the documentation that came with the JDBC driver for more information."
-msgstr "ከ <emph>ዳታ ምንጭ URL</emph> ሳጥን ውስጥ: አካባቢውን ያስገቡ የ Oracle ዳታቤዝ ሰርቨር: አገባብ ለ URL እንደ ዳታቤዝ አይነት ይለያያል: አብሮት የ መጣውን ሰነድ ይመልከቱ ከ JDBC driver ጋር ለ በለጠ መረጃ"
-
-#. BBFrJ
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN10668\n"
-"help.text"
-msgid "For an Oracle database, the syntax of the URL is:"
-msgstr "ለ Oracle ዳታቤዝ: የ URL አገባብ ነው:"
-
-#. 7tbob
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN1066B\n"
-"help.text"
-msgid "oracle:thin:@hostname:port:database_name"
-msgstr "oracle:thin:@hostname:port:database_name"
-
-#. RiDDR
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN10674\n"
-"help.text"
-msgid "hostname is the name of the machine that runs the Oracle database. You can also replace hostname with the IP address of the server."
-msgstr "የ ጋባዥ ስም የ Oracle ዳታቤዝ የሚያስኬደው ኮምፒዩተር ስም ነው: እርስዎ ሊቀይሩት ይችላሉ የ ጋባዥ ስም በ IP address ለ ሰርቨሩ"
-
-#. sFfhQ
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN10678\n"
-"help.text"
-msgid "port is the port where the Oracle database listens. Ask your database administrator for the correct port address."
-msgstr "port is the port where the Oracle database listens. የ እርስዎን ዳታቤዝ አስተዳዳሪ ይጠይቁ ትክክለኛውን የ port አድራሻ"
-
-#. GDkVv
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN1067C\n"
-"help.text"
-msgid "database_name is the name of the Oracle database. Ask your database administrator for the correct name."
-msgstr "የ ዳታቤዝ_ስም የ Oracle ዳታቤዝ ስም ነው: እባክዎን የ እርስዎን ዳታቤዝ አስተዳዳሪ ትክክለኛውን ስም ይጠይቁ"
-
-#. aQiqR
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN1067F\n"
-"help.text"
-msgid "MySQL database"
-msgstr "የ MySQL ዳታቤዝ"
-
-#. FEV5u
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN10683\n"
-"help.text"
-msgid "The driver for the MySQL database is available on the MySQL web site."
-msgstr "The driver ለ MySQL ዳታቤዝ ዝግጁ ነው በ MySQL ድህረ ገጽ ውስጥ"
-
-#. p2v67
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN10689\n"
-"help.text"
-msgid "The syntax for a MySQL database is:"
-msgstr "ይህ አገባብ ነው ለ MySQL ዳታቤዝ:"
-
-#. wEDsL
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN1068C\n"
-"help.text"
-msgid "mysql://hostname:port/database_name"
-msgstr "mysql://hostname:port/database_name"
-
-#. m5Kcx
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN10695\n"
-"help.text"
-msgid "<ahelp hid=\".\">hostname is the name of the machine that runs the MySQL database.</ahelp> You can also replace hostname with the IP address of the server."
-msgstr "<ahelp hid=\".\">የ ጋባዥ ስም የ MySQL ዳታቤዝ የሚያስኬደው ኮምፒዩተር ስም ነው: </ahelp>እርስዎ ሊቀይሩት ይችላሉ የ ጋባዥ ስም በ IP address ለ ሰርቨሩ"
-
-#. LCpew
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN10699\n"
-"help.text"
-msgid "port is the default port for MySQL databases, namely 3306."
-msgstr "port ነባር port ነው ለ MySQL ዳታቤዝ: የ ተሰየመው 3306."
-
-#. q2DuM
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN1069D\n"
-"help.text"
-msgid "database_name is the name of the database."
-msgstr "የ ዳታቤዝ_ስም የ ዳታቤዝ ስም ነው"
-
-#. YYgSg
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN106A0\n"
-"help.text"
-msgid "Data source URL"
-msgstr "የ ዳታ ምንጭ URL"
-
-#. EcdaK
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN106A4\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the URL for the database. For example, for the MySQL JDBC driver, enter \"mysql://<Servername>/<name of the database>\". For more information on the JDBC driver, consult the documentation that came with the driver.</ahelp>"
-msgstr ""
-
-#. eVBSr
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN106BB\n"
-"help.text"
-msgid "JDBC Driver Class"
-msgstr "JDBC Driver Class"
-
-#. vFsoP
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN106BF\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the name of the JDBC driver.</ahelp>"
-msgstr "<ahelp hid=\".\">የ JDBC driver. ስም ያስገቡ</ahelp>"
-
-#. VHjhA
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_id7953733\n"
-"help.text"
-msgid "Before you can use a JDBC driver, you need to add its class path. Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME - Advanced</menuitem>, and click the <widget>Class Path</widget> button. After you add the path information, restart %PRODUCTNAME."
-msgstr ""
-
-#. f8fUr
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN106CE\n"
-"help.text"
-msgid "Test Class"
-msgstr "ክፍሎች መሞከሪያ"
-
-#. 8VBbq
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN106E4\n"
-"help.text"
-msgid "<ahelp hid=\".\">Tests the connection with the current settings.</ahelp>"
-msgstr "<ahelp hid=\".\">ግንኙነት መሞከሪያ በአሁኑ ማሰናጃ</ahelp>"
-
-#. FGezr
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN106E7\n"
-"help.text"
-msgid "<link href=\"text/sdatabase/dabawiz03auth.xhp\">Authentication</link>"
-msgstr ""
-
-#. Y4EFA
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"tit\n"
-"help.text"
-msgid "MariaDB and MySQL Connection"
-msgstr ""
-
-#. bVNAZ
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"bm_id861587404584956\n"
-"help.text"
-msgid "<bookmark_value>MariaDB settings (Base)</bookmark_value><bookmark_value>MySQL settings (Base)</bookmark_value>"
-msgstr ""
-
-#. f4CzF
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"par_idN10549\n"
-"help.text"
-msgid "<variable id=\"mysql\"><link href=\"text/shared/explorer/database/dabawiz02mysql.xhp\">MariaDB and MySQL Connection</link></variable>"
-msgstr ""
-
-#. 5FPU6
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"par_idN1054D\n"
-"help.text"
-msgid "<ahelp hid=\".\">Specifies the options for MariaDB and MySQL databases.</ahelp>"
-msgstr ""
-
-#. Bmcwo
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"hd_id661587405298284\n"
-"help.text"
-msgid "Direct Connection for MariaDB and MySQL databases"
-msgstr ""
-
-#. vd9VD
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"hd_id321587405303769\n"
-"help.text"
-msgid "Database name"
-msgstr ""
-
-#. 6LAsi
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"par_id371587405314376\n"
-"help.text"
-msgid "Enter the name of the MariaDB or MySQL database. Ask your database administrator for the correct name."
-msgstr ""
-
-#. jbdZp
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"hd_id561587405334695\n"
-"help.text"
-msgid "Server URL"
-msgstr ""
-
-#. SshYk
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"par_id521587405341138\n"
-"help.text"
-msgid "Enter the URL for the database server. This is the name of the machine that runs the MariaDB or MySQL database. You can also replace hostname with the IP address of the server."
-msgstr ""
-
-#. MZQiq
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"hd_id171587405349438\n"
-"help.text"
-msgid "Port number"
-msgstr ""
-
-#. J2SR3
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"par_id1001587405358390\n"
-"help.text"
-msgid "Enter the port number for the database server. Ask your database administrator for the correct port address. The default port number for MySQL or MariaDB databases is 3306."
-msgstr ""
-
-#. ovKhU
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"hd_id121587407845730\n"
-"help.text"
-msgid "Named Pipe"
-msgstr ""
-
-#. Rq89B
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"par_id941587407987180\n"
-"help.text"
-msgid "If the MariaDB or MySQL database is to be accessed by a named pipe, enter its name."
-msgstr ""
-
-#. wF6bj
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"hd_id161587405553671\n"
-"help.text"
-msgid "Socket"
-msgstr ""
-
-#. e8DB2
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"par_id161587405561472\n"
-"help.text"
-msgid "If the MariaDB or MySQL database is to be accessed by a socket, enter the socket ID."
-msgstr ""
-
-#. fpBNu
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"par_idN10562\n"
-"help.text"
-msgid "Connect using ODBC (Open Database Connectivity)"
-msgstr "ይህን በ መጠቀም ይገናኙ ODBC (Open Database Connectivity)"
-
-#. E7sE2
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"par_idN10566\n"
-"help.text"
-msgid "<ahelp hid=\".\">Connects to an existing ODBC data source that was set on a system level.</ahelp>"
-msgstr "<ahelp hid=\".\">ወደ ነበረው የ ODBC ዳታ ምንጭ ይገናኛል በ ስርአት ደረጃ ወደ ተሰናዳው </ahelp>"
-
-#. AXrwJ
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"par_idN10569\n"
-"help.text"
-msgid "Connect using JDBC (Java Database Connectivity)"
-msgstr "ይህን በ መጠቀም ተገናኝ JDBC (Java Database Connectivity)"
-
-#. i9TrE
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"par_idN1056D\n"
-"help.text"
-msgid "<ahelp hid=\".\">Connects to an existing JDBC data source that was set on a system level.</ahelp>"
-msgstr "<ahelp hid=\".\">ወደ ነበረው የ JDBC ዳታ ምንጭ ይገናኛል በ ስርአት ደረጃ ወደ ተሰናዳው </ahelp>"
-
-#. FUG3D
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"par_idN10570\n"
-"help.text"
-msgid "The next wizard page depends on your choice of ODBC or JDBC:"
-msgstr "የሚቀጥለው የ አዋቂ ገጽ የሚወሰነው እንደ እርስዎ የ ODBC ወይንም JDBC ምርጫ ነው:"
-
-#. aCA6C
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"par_idN10573\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02odbc.xhp\">ODBC Connection</link>"
-msgstr "<link href=\"text/shared/explorer/database/dabawiz02odbc.xhp\">የ ODBC ማሰናጃዎች</link>"
-
-#. BkeDx
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"par_idN10582\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02jdbc.xhp\">JDBC Connection</link>"
-msgstr "<link href=\"text/shared/explorer/database/dabawiz02jdbc.xhp\">የ JDBC ግንኙነት </link>"
-
-#. ujaGF
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"par_idN10591\n"
-"help.text"
-msgid "<link href=\"text/sdatabase/dabawiz03auth.xhp\">Authentication</link>"
-msgstr ""
-
-#. HF588
-#: dabawiz02odbc.xhp
-msgctxt ""
-"dabawiz02odbc.xhp\n"
-"tit\n"
-"help.text"
-msgid "ODBC Connection"
-msgstr "ODBC ግንኙነት"
-
-#. sGNau
-#: dabawiz02odbc.xhp
-msgctxt ""
-"dabawiz02odbc.xhp\n"
-"bm_id3149031\n"
-"help.text"
-msgid "<bookmark_value>ODBC;database (Base)</bookmark_value><bookmark_value>databases;ODBC (Base)</bookmark_value>"
-msgstr "<bookmark_value>ODBC: ዳታቤዝ (ቤዝ)</bookmark_value><bookmark_value>ዳታቤዝ: ODBC (ቤዝ)</bookmark_value>"
-
-#. iFxfY
-#: dabawiz02odbc.xhp
-msgctxt ""
-"dabawiz02odbc.xhp\n"
-"par_idN1053D\n"
-"help.text"
-msgid "<variable id=\"odbc\"><link href=\"text/shared/explorer/database/dabawiz02odbc.xhp\">ODBC Connection</link></variable>"
-msgstr "<variable id=\"odbc\"><link href=\"text/shared/explorer/database/dabawiz02odbc.xhp\">ODBC ግንኙነት</link></variable>"
-
-#. nb3Qq
-#: dabawiz02odbc.xhp
-msgctxt ""
-"dabawiz02odbc.xhp\n"
-"par_idN10541\n"
-"help.text"
-msgid "<ahelp hid=\".\">Specifies the settings for <link href=\"text/shared/00/00000005.xhp#odbc\" name=\"ODBC\">ODBC</link> databases.</ahelp>"
-msgstr "<ahelp hid=\".\">ማሰናጃ ይወስኑ ለ<link href=\"text/shared/00/00000005.xhp#odbc\" name=\"ODBC\">ODBC</link> ዳታቤዝ</ahelp>"
-
-#. WhLBW
-#: dabawiz02odbc.xhp
-msgctxt ""
-"dabawiz02odbc.xhp\n"
-"par_id8856776\n"
-"help.text"
-msgid "To edit or add records to a database table in $[officename], the table must have a unique index field."
-msgstr "መዝገቦች ለ መጨመር ወይንም ለማረም ወደ ዳታቤዝ ሰንጠረዥ ውስጥ በ $[officename] ሰንጠረዡ የ ተለየ የ ማውጫ ሜዳ እንዲኖረው ያስፈልጋል"
-
-#. xs2Yc
-#: dabawiz02odbc.xhp
-msgctxt ""
-"dabawiz02odbc.xhp\n"
-"par_id8034302\n"
-"help.text"
-msgid "On Solaris and Linux platforms, try to use a JDBC driver instead of an ODBC driver. See http://www.unixodbc.org for an ODBC implementation on Solaris or Linux."
-msgstr "በ Solaris እና Linux መድረኮች ውስጥ ይህን ይጠቀሙ የ JDBC driver ከ ODBC driver ይልቅ: ይህን ይመልከቱ http://www.unixodbc.org ለ ODBC መፈጸሚያ በ Solaris ወይንም Linux."
-
-#. PxZ9T
-#: dabawiz02odbc.xhp
-msgctxt ""
-"dabawiz02odbc.xhp\n"
-"par_id8560136\n"
-"help.text"
-msgid "To connect to a Microsoft Access database on Windows, use the ADO or Access database interface, rather than ODBC."
-msgstr "ለ መገናኘት ወደ Microsoft Access ዳታቤዝ ውስጥ በ Windows, ይህን ይጠቀሙ የ ADO ወይንም Access database interface, ከ ODBC ይልቅ"
-
-#. vme6U
-#: dabawiz02odbc.xhp
-msgctxt ""
-"dabawiz02odbc.xhp\n"
-"par_id2082583\n"
-"help.text"
-msgid "Drivers for ODBC are supplied and supported by the manufacturer of the database. $[officename] only supports the ODBC 3 standard."
-msgstr "Drivers ለ ODBC የሚቀርቡት እና የሚደገፉት ከ ዳታቤዝ አምራቹ ነው $[officename] የሚደግፈው የ ODBC 3 መደበኛ ብቻ ነው"
-
-#. wCexE
-#: dabawiz02odbc.xhp
-msgctxt ""
-"dabawiz02odbc.xhp\n"
-"par_idN10552\n"
-"help.text"
-msgid "Name of the ODBC database"
-msgstr "የ ODBC ዳታቤዝ ስም"
-
-#. eubaF
-#: dabawiz02odbc.xhp
-msgctxt ""
-"dabawiz02odbc.xhp\n"
-"par_idN10556\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the path to the database file.</ahelp>"
-msgstr "<ahelp hid=\".\">መንገድ ያስገቡ ወደ ዳታቤዝ ፋይል</ahelp>"
-
-#. 7KKFy
-#: dabawiz02odbc.xhp
-msgctxt ""
-"dabawiz02odbc.xhp\n"
-"par_idN10559\n"
-"help.text"
-msgid "Browse"
-msgstr "መቃኛ"
-
-#. CSCAZ
-#: dabawiz02odbc.xhp
-msgctxt ""
-"dabawiz02odbc.xhp\n"
-"par_idN1055D\n"
-"help.text"
-msgid "<ahelp hid=\".\">Click to open an ODBC data source selection dialog:</ahelp>"
-msgstr "<ahelp hid=\".\">ይጫኑ ለ መክፈት የ ODBC ዳታ ምንጭ ምርጫ ንግግር:</ahelp>"
-
-#. 48ubg
-#: dabawiz02odbc.xhp
-msgctxt ""
-"dabawiz02odbc.xhp\n"
-"par_idN10560\n"
-"help.text"
-msgid "Choose a data source"
-msgstr "የ ዳታ ምንጭ ይምረጡ"
-
-#. FhAAU
-#: dabawiz02odbc.xhp
-msgctxt ""
-"dabawiz02odbc.xhp\n"
-"par_idN10564\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select a data source to which you want to connect using ODBC. Then click <emph>OK</emph>.</ahelp>"
-msgstr "<ahelp hid=\".\">ይምረጡ የ ዳታ ምንጭ እርስዎ መገናኘት የሚፈልጉትን በ ODBC. እና ከዛ ይጫኑ <emph> እሺ </emph></ahelp>"
-
-#. WaAZB
-#: dabawiz02odbc.xhp
-msgctxt ""
-"dabawiz02odbc.xhp\n"
-"par_idN10567\n"
-"help.text"
-msgid "<link href=\"text/sdatabase/dabawiz03auth.xhp\">Authentication</link>"
-msgstr ""
-
-#. RL7sk
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"tit\n"
-"help.text"
-msgid "Oracle Database Connection"
-msgstr "የ Oracle ዳታቤዝ ግንኙነት"
-
-#. 8H3zh
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"bm_id5900753\n"
-"help.text"
-msgid "<bookmark_value>Oracle databases (base)</bookmark_value>"
-msgstr "<bookmark_value>Oracle የ ዳታቤዝ ግንኙነት (Base)</bookmark_value>"
-
-#. W6aaT
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN105A4\n"
-"help.text"
-msgid "Oracle Database Connection"
-msgstr "የ Oracle ዳታቤዝ ግንኙነት"
-
-#. DbqoE
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN105A8\n"
-"help.text"
-msgid "<ahelp hid=\".\">Specifies the options to access an Oracle database.</ahelp>"
-msgstr "<ahelp hid=\".\">ለ Oracle ዳታቤዝ ምርጫዎች መወሰኛ </ahelp>"
-
-#. FMq7o
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN105BD\n"
-"help.text"
-msgid "Oracle database"
-msgstr "የ Oracle ዳታቤዝ"
-
-#. 8qHyA
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN105C1\n"
-"help.text"
-msgid "You can use a JDBC driver to access an Oracle database from Solaris or Linux. To access the database from Windows, you need an ODBC driver."
-msgstr "እርስዎ መጠቀም ይችላሉ የ JDBC driver ለ መድረስ ወደ Oracle ለ መድረስ ከ Solaris ወይንም Linux. ለ መድረስ ወደ Windows, ለ እርስዎ ያስፈልጋል የ ODBC driver."
-
-#. sSDYq
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN105D4\n"
-"help.text"
-msgid "On UNIX, ensure that the Oracle database client is installed with JDBC support. The JDBC driver class for the Solaris Oracle client version 8.x is located in the <Oracle client>/product/jdbc/lib/classes111.zip directory. You can also download the latest version of the driver from the Oracle web site."
-msgstr "በ UNIX, እርግጠኛ ይሁኑ የ Oracle database client መገጠሙን ከ JDBC ድጋፍ ጋር: የ JDBC driver class ለ Solaris Oracle client version 8.x የሚገኘው በ <Oracle client>/product/jdbc/lib/classes111.zip ዳይሬክቶሪ ውስጥ ነው: እርስዎ እንዲሁም ማውረድ ይችላሉ ዘመናዊን driver እትም ከ Oracle ድህረ ገጽ ውስጥ"
-
-#. 5rxmX
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN10608\n"
-"help.text"
-msgid "Name of the Oracle database"
-msgstr "የ Oracle database ስም"
-
-#. DxYWQ
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN1060C\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the name of the Oracle database. Ask your database administrator for the correct name.</ahelp>"
-msgstr ""
-
-#. WKBSR
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN1060F\n"
-"help.text"
-msgid "Server URL"
-msgstr "የ ሰርቨር URL"
-
-#. vXDGs
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN10613\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the URL for the database server. This is the name of the machine that runs the Oracle database. You can also replace hostname with the IP address of the server.</ahelp>"
-msgstr ""
-
-#. EEESV
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN10616\n"
-"help.text"
-msgid "Port number"
-msgstr "የ Port ቁጥር"
-
-#. PBuEW
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN1061A\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the port number for the database server. Ask your database administrator for the correct port address.</ahelp>"
-msgstr ""
-
-#. rYRxW
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN1061D\n"
-"help.text"
-msgid "Oracle JDBC Driver Class"
-msgstr "Oracle JDBC Driver Class"
-
-#. ouDxa
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN10621\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the name of the JDBC driver.</ahelp>"
-msgstr ""
-
-#. JumUz
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN10630\n"
-"help.text"
-msgid "Test Class"
-msgstr "ክፍሎች መሞከሪያ"
-
-#. NdF7k
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN10634\n"
-"help.text"
-msgid "<ahelp hid=\".\">Tests the connection with the current settings.</ahelp>"
-msgstr "<ahelp hid=\".\">ግንኙነት መሞከሪያ በአሁኑ ማሰናጃ</ahelp>"
-
-#. UwteE
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN10637\n"
-"help.text"
-msgid "<link href=\"text/sdatabase/dabawiz03auth.xhp\">Authentication</link>"
-msgstr ""
-
-#. XoiBM
-#: dabawiz02spreadsheet.xhp
-msgctxt ""
-"dabawiz02spreadsheet.xhp\n"
-"tit\n"
-"help.text"
-msgid "Spreadsheet Database Connection"
-msgstr "የ ሰንጠረዥ ዳታቤዝ ግንኙነት"
-
-#. cwGbM
-#: dabawiz02spreadsheet.xhp
-msgctxt ""
-"dabawiz02spreadsheet.xhp\n"
-"par_idN1053A\n"
-"help.text"
-msgid "Set up Spreadsheet connection"
-msgstr "የ ሰንጠረዥ ግንኙነት ማሰናጃ"
-
-#. fZnvG
-#: dabawiz02spreadsheet.xhp
-msgctxt ""
-"dabawiz02spreadsheet.xhp\n"
-"par_idN1053E\n"
-"help.text"
-msgid "Location and file name"
-msgstr "የ ፋይል ስም እና አካባቢው"
-
-#. 6TKT4
-#: dabawiz02spreadsheet.xhp
-msgctxt ""
-"dabawiz02spreadsheet.xhp\n"
-"par_idN10542\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the path and file name to the spreadsheet file.</ahelp>"
-msgstr "<ahelp hid=\".\">ለ ሰንጠረዥ ፋይል የ ፋይል ስም እና መንገድ ያስገቡ </ahelp>"
-
-#. XtNjY
-#: dabawiz02spreadsheet.xhp
-msgctxt ""
-"dabawiz02spreadsheet.xhp\n"
-"par_idN10545\n"
-"help.text"
-msgid "Browse"
-msgstr "መቃኛ"
-
-#. JfUMC
-#: dabawiz02spreadsheet.xhp
-msgctxt ""
-"dabawiz02spreadsheet.xhp\n"
-"par_idN10549\n"
-"help.text"
-msgid "<ahelp hid=\".\">Click to open a file selection dialog.</ahelp>"
-msgstr "<ahelp hid=\".\">ይጫኑ ለ መክፈት የ ፋይል ምርጫ ንግግር</ahelp>"
-
-#. JAmAi
-#: dabawiz02spreadsheet.xhp
-msgctxt ""
-"dabawiz02spreadsheet.xhp\n"
-"par_idN1054C\n"
-"help.text"
-msgid "Password required"
-msgstr "የ መግቢያ ቃል ያስፈልጋል"
-
-#. 3HzmH
-#: dabawiz02spreadsheet.xhp
-msgctxt ""
-"dabawiz02spreadsheet.xhp\n"
-"par_idN10550\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select to request a password from the user of the database document.</ahelp>"
-msgstr "<ahelp hid=\".\">ይምረጡ ለ መጠየቅ የ መግቢያ ቃል ከ ተጠቃሚ ለ ዳታቤዝ ሰነድ </ahelp>"
-
-#. xngE4
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"tit\n"
-"help.text"
-msgid "Text File Connection"
-msgstr "የ ጽሁፍ ፋይል ግንኙነት"
-
-#. dfWU7
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"bm_id2517166\n"
-"help.text"
-msgid "<bookmark_value>tables in databases;importing text formats (Base)</bookmark_value><bookmark_value>text databases (Base)</bookmark_value>"
-msgstr "<bookmark_value>ሰንጠረዥ ከ ዳታቤዝ ውስጥ: ማምጫ በ ጽሁፍ አቀራረብ (ቤዝ)</bookmark_value><bookmark_value>ጽሁፍ ከ ዳታቤዝ ውስጥ (ቤዝ)</bookmark_value>"
-
-#. htUUB
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN1054F\n"
-"help.text"
-msgid "Set up a connection to text files"
-msgstr "ወደ ጽሁፍ ፋይሎች ግንኙነት ማሰናጃ"
-
-#. MD2eT
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN10553\n"
-"help.text"
-msgid "<ahelp hid=\".\">Specifies the settings for importing a database in text format.</ahelp>"
-msgstr "<ahelp hid=\".\">በ ጽሁፍ አቀራረብ የ ዳታቤዝ ለ ማምጣት ማሰናጃ ይወስኑ </ahelp>"
-
-#. 6yKNw
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "In a text format database, data is stored in an unformatted ASCII file, where each record comprises a row. The data fields are divided by separators. Text in the data fields is divided by quotation marks."
-msgstr "በ ጽሁፍ አቀራረብ ዳታቤዝ ውስጥ: ዳታ የሚጠረአቀመው በ ትክክል ያልቀረበ በ ASCII ፋይል ውስጥ ነው: እያንዳንዱ መዝገብ ረድፍ ይይዛል: የ ዳታ ሜዳዎች በ መለያያ ተከፋፍለዋል: ጽሁፍ ከ ዳታ ሜዳዎች ውስጥ በ ጥቅስ ምልክት መከበብ አለባቸው"
-
-#. puYrF
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN1056B\n"
-"help.text"
-msgid "Path to text files"
-msgstr "መንገድ ወደ ጽሁፍ ፋይል"
-
-#. LkFcD
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN1056F\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the path to the text file or files. If you just want one text file, you can use any extension of the file name. If you enter a folder name, the text files in that folder must have the extension *.csv to be recognized as files of the text database.</ahelp>"
-msgstr "<ahelp hid=\".\">ያስገቡ መንገድ ወደ ጽሁፍ ፋይሎች: እርስዎ የ ጽሁፍ ፋይል ከ ፈለጉ: እርስዎ መጠቀም ይችላሉ ማንኛውም ተጨማሪ ለ ፋይል ስም: እርስዎ ካስገቡ የ ፎልደር ስም: የ ጽሁፍ ፋይሎች በዛ ፎልደር ውስጥ ተጨማሪ ሊኖረው ይገባል *.csv እንደ ፋይሎች እንዲለይ በ ጽሁፍ ዳታቤዝ ውስጥ </ahelp>"
-
-#. DwHAY
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN10572\n"
-"help.text"
-msgid "Browse"
-msgstr "መቃኛ"
-
-#. tU8mG
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN10576\n"
-"help.text"
-msgid "<ahelp hid=\".\">Click to open a file selection dialog.</ahelp>"
-msgstr "<ahelp hid=\".\">ይጫኑ ለ መክፈት የ ፋይል ምርጫ ንግግር</ahelp>"
-
-#. MmGr4
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN10616\n"
-"help.text"
-msgid "Plain text files (*.txt)"
-msgstr "መደበኛ የ ጽሁፍ ፋይሎች (*.txt)"
-
-#. ztjWn
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN1061A\n"
-"help.text"
-msgid "<ahelp hid=\".\">Click to access txt files.</ahelp>"
-msgstr "<ahelp hid=\".\">ይጫኑ የ ጽሁፍ ፋይሎች ጋር ለ መድረስ </ahelp>"
-
-#. E5S76
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN10643\n"
-"help.text"
-msgid "'Comma separated value' files (*.csv)"
-msgstr "'በ ኮማ የ ተለያየ ዋጋ' ፋይሎች (*.csv)"
-
-#. 2fDr2
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN10647\n"
-"help.text"
-msgid "<ahelp hid=\".\">Click to access csv files.</ahelp>"
-msgstr "<ahelp hid=\".\">ይጫኑ የ csv ፋይሎች ጋር ለ መድረስ </ahelp>"
-
-#. EVBCK
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN10666\n"
-"help.text"
-msgid "Custom"
-msgstr "ማስተካከያ"
-
-#. 3Z5fx
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN1066A\n"
-"help.text"
-msgid "<ahelp hid=\".\">Click to access custom files. Enter the extension in the text box.</ahelp>"
-msgstr "<ahelp hid=\".\">ይጫኑ ፋይሎች ማስተካከያ ጋር ለመድረስ: ተጨማሪዎች ያስገቡ በ ጽሁፍ ሳጥን ውስጥ</ahelp>"
-
-#. rts2F
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN10581\n"
-"help.text"
-msgid "Field separator"
-msgstr "ሜዳ መለያያ"
-
-#. 3G6QU
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN10585\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter or select the character that separates data fields in the text file.</ahelp>"
-msgstr "<ahelp hid=\".\">ይምረጡ ወይንም ያስገቡ ባህሪዎች የሚለይ የ ዳታ ሜዳዎች ከ ጽሁፍ ፋይል ውስጥ </ahelp>"
-
-#. 8rxWL
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN1059C\n"
-"help.text"
-msgid "Text separator"
-msgstr "ጽሁፍ መለያያ"
-
-#. ejFpV
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN105A0\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter or select the character that identifies a text field in the text file.</ahelp> You cannot use the same character as the field separator."
-msgstr "<ahelp hid=\".\">ያስገቡ ወይንም ይምረጡ ባህሪዎች የሚለይ የ ጽሁፍ ሜዳ ከ ጽሁፍ ፋይል ውስጥ: </ahelp> እርስዎ ተመሳሳይ ባህሪ እንደ ሜዳ መለያያ መጠቀም አይችሉም"
-
-#. rSTcV
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN105B8\n"
-"help.text"
-msgid "Decimal separator"
-msgstr "የ ዴሲማል መለያያ"
-
-#. apBAu
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN105BC\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter or select the character that is used as a decimal separator in the text file, for example, a period (0.5) or a comma (0,5).</ahelp>"
-msgstr "<ahelp hid=\".\">ያስገቡ ወይንም ይምረጡ ባህሪዎች የ ዴሲማል መለያያ በ ጽሁፍ ፋይል ውስጥ: ለምሳሌ: ነጥብ (0.5) ወይንም ኮማ (0,5).</ahelp>"
-
-#. CyhGN
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN105D3\n"
-"help.text"
-msgid "Thousands separator"
-msgstr "ሺዎች መለያያ"
-
-#. 6TTiq
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN105D7\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter or select the character that is used as a thousands separator in the text file, for example a comma (1,000), or a period (1.000).</ahelp>"
-msgstr "<ahelp hid=\".\">ያስገቡ ወይንም ይምረጡ ባህሪዎች የ ሺዎች መለያያ በ ጽሁፍ ፋይል ውስጥ: ለምሳሌ: ኮማ (1,000) ወይንም ነጥብ (1.000).</ahelp>"
-
#. rw2xT
#: menubar.xhp
msgctxt ""
@@ -3913,14 +2446,14 @@ msgctxt ""
msgid "Report Builder"
msgstr "መግለጫ ገንቢ"
-#. 2cgJb
+#. Yyb28
#: rep_main.xhp
msgctxt ""
"rep_main.xhp\n"
"bm_id1614429\n"
"help.text"
-msgid "<bookmark_value>Report Builder</bookmark_value><bookmark_value>Oracle Report Builder</bookmark_value>"
-msgstr "<bookmark_value>መግለጫ ገንቢ</bookmark_value><bookmark_value>Oracle መግለጫ ገንቢ </bookmark_value>"
+msgid "<bookmark_value>Report Builder</bookmark_value> <bookmark_value>Oracle Report Builder</bookmark_value>"
+msgstr ""
#. 8XCCL
#: rep_main.xhp
@@ -4192,13 +2725,13 @@ msgctxt ""
msgid "After selecting the table, press the Tab key to leave the Content box."
msgstr "ሰንጠረዥ ከ መረጡ በኋላ: ይጫኑ Tab ቁልፍ ከ ይዞታ ሳጥን ውስጥ ለ መውጣት"
-#. 6vbRr
+#. TFFLy
#: rep_main.xhp
msgctxt ""
"rep_main.xhp\n"
"par_id2531815\n"
"help.text"
-msgid "The <embedvar href=\"text/shared/explorer/database/rep_insertfield.xhp#addfields\" markup=\"ignore\"/> window opens automatically and shows all fields of the selected table."
+msgid "The <link href=\"text/shared/explorer/database/rep_insertfield.xhp\" name=\"add_fields_link\">Add fields to report</link> window opens automatically and shows all fields of the selected table."
msgstr ""
#. vsFKB
@@ -4939,14 +3472,14 @@ msgctxt ""
msgid "Properties"
msgstr "ባህሪዎች"
-#. e5chy
+#. wAcV9
#: rep_prop.xhp
msgctxt ""
"rep_prop.xhp\n"
"hd_id8836939\n"
"help.text"
-msgid "<variable id=\"rep_prop\"><link href=\"text/shared/explorer/database/rep_prop.xhp\">Properties</link> </variable>"
-msgstr "<variable id=\"rep_prop\"><link href=\"text/shared/explorer/database/rep_prop.xhp\"> ባህሪዎች </link></variable>"
+msgid "<variable id=\"rep_prop\"><link href=\"text/shared/explorer/database/rep_prop.xhp\">Properties</link></variable>"
+msgstr ""
#. ro5Tm
#: rep_prop.xhp
@@ -4984,13 +3517,13 @@ msgctxt ""
msgid "Select a table from the Contents list, then press Tab or click outside the input box to leave the input box."
msgstr "ይምረጡ ሰንጠረዥ ከ ይዞታዎች ዝርዝር ውስጥ: እና ከዛ ይጫኑ Tab ወይንም ይጫኑ ከ ማስገቢያ ሳጥን ውጪ ከ ማስገቢያ ሳጥን ውስጥ ለ መውጣት"
-#. 9hPaG
+#. DZ342
#: rep_prop.xhp
msgctxt ""
"rep_prop.xhp\n"
"par_id3587145\n"
"help.text"
-msgid "<ahelp hid=\".\">The <embedvar href=\"text/shared/explorer/database/rep_insertfield.xhp#addfields\" markup=\"ignore\"/> window is shown automatically when you have selected a table in the Contents box and leave that box. You can also click the Add Field icon on the toolbar, or choose <item type=\"menuitem\">View - Add Field</item>.</ahelp>"
+msgid "<ahelp hid=\".\">The <link href=\"text/shared/explorer/database/rep_insertfield.xhp\" name=\"add_fields_link\">Add fields to report</link> window is shown automatically when you have selected a table in the Contents box and leave that box. You can also click the Add Field icon on the toolbar, or choose <item type=\"menuitem\">View - Add Field</item>.</ahelp>"
msgstr ""
#. 5BJS6
diff --git a/source/am/helpcontent2/source/text/shared/guide.po b/source/am/helpcontent2/source/text/shared/guide.po
index cc7e7ff800c..51a78f83046 100644
--- a/source/am/helpcontent2/source/text/shared/guide.po
+++ b/source/am/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-04 19:51+0200\n"
+"POT-Creation-Date: 2021-10-25 12:49+0200\n"
"PO-Revision-Date: 2018-12-09 17:46+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4048,13 +4048,31 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/convertfilters.xhp\" name=\"conversion filter names\">File Conversion Filter Names</link>"
msgstr ""
-#. G5KB2
+#. EoDwz
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
"par_id581554399002498\n"
"help.text"
-msgid "<variable id=\"variable name\"> <ahelp hid=\".\">Tables with filter names for command line document conversion.</ahelp> </variable>"
+msgid "<variable id=\"commandline_intro\"> <ahelp hid=\".\">Tables with filter names for <link href=\"text/shared/guide/start_parameters.xhp\" name=\"commandline\">command line</link> document conversion.</ahelp> </variable>"
+msgstr ""
+
+#. Whybs
+#: convertfilters.xhp
+msgctxt ""
+"convertfilters.xhp\n"
+"hd_id531633524464103\n"
+"help.text"
+msgid "Usage"
+msgstr ""
+
+#. vcWaC
+#: convertfilters.xhp
+msgctxt ""
+"convertfilters.xhp\n"
+"par_id801633524474460\n"
+"help.text"
+msgid "Filter names are used when importing and exporting files in alien formats and converting files formats through the <link href=\"text/shared/guide/start_parameters.xhp\" name=\"commandline\">command line</link>."
msgstr ""
#. QAzjK
@@ -4408,6 +4426,15 @@ msgctxt ""
msgid "Writer Layout XML"
msgstr ""
+#. nxmVA
+#: convertfilters.xhp
+msgctxt ""
+"convertfilters.xhp\n"
+"FilterName_writer_indexing_export\n"
+"help.text"
+msgid "Writer Indexing Export XML"
+msgstr ""
+
#. Va5zD
#: convertfilters.xhp
msgctxt ""
@@ -20464,13 +20491,13 @@ msgctxt ""
msgid "Open the document, entering the correct password. Choose <emph>File - Save As</emph> and clear the <emph>Save with password</emph> check box."
msgstr "መክፈቻ ሰነድ: ትክክለኛውን የ መግቢያ ቃል ሲያስገቡ: ይምረጡ <emph> ፋይል - ማስቀመጫ እንደ </emph> እና ያጽዱ <emph> በ መግቢያ ቃል ማስቀመጫ </emph> ሳጥን ውስጥ ምልክት ያድርጉ"
-#. FepzD
+#. mqKud
#: protection.xhp
msgctxt ""
"protection.xhp\n"
"par_id761632164002322\n"
"help.text"
-msgid "It is possible to use OpenPGP to define private and public keys to be used to encrypt %PRODUCTNAME documents. Read <embedvar href=\"text/shared/guide/openpgp.xhp#openpgph1\"/> to learn more on how to set up OpenPGP encryption keys."
+msgid "It is possible to use OpenPGP to define private and public keys to be used to encrypt %PRODUCTNAME documents. Read <link href=\"text/shared/guide/openpgp.xhp\" name=\"openpgp_link\">Encrypting Documents with OpenPGP</link> to learn more on how to set up OpenPGP encryption keys."
msgstr ""
#. HfUCF
@@ -21112,14 +21139,14 @@ msgctxt ""
msgid "Accepting or Rejecting Changes"
msgstr "ለውጦቹን እቀበላለሁ ወይም አልቀበልም"
-#. pqiWr
+#. yyZeG
#: redlining_accept.xhp
msgctxt ""
"redlining_accept.xhp\n"
"bm_id3150247\n"
"help.text"
-msgid "<bookmark_value>changes; accepting or rejecting</bookmark_value><bookmark_value>review function;accepting or rejecting changes</bookmark_value>"
-msgstr "<bookmark_value>ለውጦቹን: እቀበላለሁ ወይንም አልቀበልም</bookmark_value><bookmark_value>ክለሳ ተግባር: እቀበላለሁ ወይንም አልቀበልም ለውጦቹን </bookmark_value>"
+msgid "<bookmark_value>changes; accepting or rejecting</bookmark_value> <bookmark_value>review function;accepting or rejecting changes</bookmark_value>"
+msgstr ""
#. FTaFc
#: redlining_accept.xhp
@@ -21157,14 +21184,14 @@ msgctxt ""
msgid "When you edit a document in which others have made changes, you can accept or reject the changes individually or all together."
msgstr "እርስዎ ሰነድ በሚያርሙ ጊዜ ሌሎች ሰዎች ቀደም ብለው የለወጡትን: እርስዎ መቀበል ወይንም አለመቀበል ይችላሉ እያንዳንዱን ወይንም ሁሉንም ለውጦች ባጠቃላይ"
-#. XCt7P
+#. 5zm2G
#: redlining_accept.xhp
msgctxt ""
"redlining_accept.xhp\n"
"par_id3147008\n"
"help.text"
-msgid "If you have put multiple copies of the document in circulation, first merge these into one document (see <embedvar href=\"text/shared/guide/redlining_docmerge.xhp#redlining_docmerge\"/>)."
-msgstr "እርስዎ የ ሰነዱን በርካታ ኮፒዎች በ ስርጭት ላይ ካሉ መጀመሪያ እነዚህን ወደ አንድ ሰነድ ማዋሀድ ያስፈልጋል (ይመልከቱ <embedvar href=\"text/shared/guide/redlining_docmerge.xhp#redlining_docmerge\"/>)"
+msgid "If you have put multiple copies of the document in circulation, first merge these into one document (see <link href=\"text/shared/guide/redlining_docmerge.xhp\" name=\"redlining_docmerge_link\">Merging Versions</link>)."
+msgstr ""
#. Rk8jv
#: redlining_accept.xhp
@@ -22966,50 +22993,77 @@ msgctxt ""
msgid "Starting $[officename] Software From the Command Line"
msgstr "ማስጀመሪያ $[officename] ሶፍትዌር ከ ትእዛዝ መስመር"
-#. gqJUq
+#. 7E3QP
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3156152\n"
"help.text"
-msgid "Under Windows, select <emph>Run</emph> from the Windows Start menu, or open a shell under Linux, *BSD, or macOS platforms."
-msgstr "በ Windows ውስጥ: ይምረጡ <emph> ማስኬጃ </emph> ከ Windows ማስጀምሪያ ዝርዝር ውስጥ: ወይንም መክፈቻ በ shell በ Linux: *BSD, ወይንም በ Mac OS X ስርአት ውስጥ"
+msgid "Select <emph>Run</emph> from the Windows Start menu."
+msgstr ""
-#. bvyAG
+#. xf2BF
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3152472\n"
"help.text"
-msgid "Under Windows, type the following text in the <emph>Open </emph>text field and click <emph>OK</emph>."
-msgstr "በ Windows: ውስጥ: ይጻፉ የሚከተለውን ጽሁፍ በ <emph> መክፈቻ </emph> ጽሁፍ ሜዳ እና ይጫኑ <emph> እሺ </emph>"
+msgid "Type the following text in the <emph>Open</emph> text field and click <emph>OK</emph>."
+msgstr ""
-#. hm8EE
+#. nMQWE
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149669\n"
+"par_id3147561\n"
"help.text"
-msgid "Under UNIX-like systems, type the following line of text, then press <emph>Return</emph>:"
-msgstr "በ UNIX-like ስርአቶች ውስጥ: ይጻፉ የሚከተለውን መስመር ጽሁፍ: እና ከዛ ይጫኑ <emph> ማስገቢያ </emph>:"
+msgid "{install}\\program\\soffice.exe {parameter}"
+msgstr ""
-#. Q5DoA
+#. mmyAy
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147561\n"
+"par_id3153360\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter}</caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter}</caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter}</caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter}</caseinline></switchinline>"
+msgid "Replace <emph>{install}</emph> with the path to your installation of %PRODUCTNAME software (for example, <emph>C:\\Program Files\\%PRODUCTNAME</emph>"
+msgstr ""
-#. n4TUN
+#. x5jE9
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153360\n"
+"par_id3157152\n"
+"help.text"
+msgid "Open a shell under Linux, *BSD, or macOS platforms."
+msgstr ""
+
+#. LEs72
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3147669\n"
"help.text"
-msgid "Replace <emph>{install}</emph> with the path to your installation of $[officename] software (for example, <emph>C:\\Program Files\\Office</emph> in Windows, or <emph>~/office</emph> in UNIX)"
-msgstr "መቀየሪያ <emph>{install}</emph> በ እርስዎ መግጠሚያ መንገድ ለ $[officename] ሶፍትዌር (ለምሳሌ: <emph>C:\\Program Files\\Office</emph> ወይንም <emph>~/office</emph>በ UNIX))"
+msgid "Type the following line of text, then press <emph>Return</emph>:"
+msgstr ""
+
+#. smkWS
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3143561\n"
+"help.text"
+msgid "{install}/program/soffice {parameter}"
+msgstr ""
+
+#. BEAF7
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3157360\n"
+"help.text"
+msgid "Replace <emph>{install}</emph> with the path to your installation of %PRODUCTNAME software (for example, <emph>/opt/%PRODUCTNAME</emph> in UNIX)"
+msgstr ""
#. 4EMfS
#: start_parameters.xhp
@@ -23236,14 +23290,14 @@ msgctxt ""
msgid "Store soffice.bin pid to <emph>{file}</emph>."
msgstr "ማጠራቀሚያ soffice.bin pid ወደ <emph>{file}</emph>."
-#. KsDn3
+#. 8kbVi
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3146786\n"
"help.text"
-msgid "Sets the <emph>DISPLAY </emph>environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for $[officename] software on UNIX-like platforms."
-msgstr "የ <emph>ማሳያ </emph> ማሰናጃ ለ አካባቢ ተለዋዋጭ በ UNIX-like መድረኮች በ ዋጋ <emph>{ማሳያ}</emph> ውስጥ: ይህ ደንብ የ ተደገፈው በ ጽሁፍ ማስጀመሪያ ውስጥ ብቻ ነው: ለ $[officename] ሶፍትዌር በ UNIX-like መድረኮች"
+msgid "Sets the <emph>DISPLAY</emph> environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for $[officename] software on UNIX-like platforms."
+msgstr ""
#. 67rps
#: start_parameters.xhp
@@ -23695,23 +23749,14 @@ msgctxt ""
msgid "Opens and starts the following presentation documents of each immediately. Files are closed after the showing. Files other than Impress documents are opened in default mode , regardless of previous mode."
msgstr "የሚቀጥሉትን ማቅረቢያ ሰነዶች እያንዳንዱን ወዲያውኑ መክፈቻ እና ማስጀመሪያ: ፋይሎች ከ ታዩ በኋላ ይዘጋሉ: የ ማቅረቢያ ሰነዶች ያልሆኑ ሌሎች ፋይሎች በ ነባር ዘዴ ይከፈታሉ: ያለፈው ዘዴ ምንም ቢሆን"
-#. 7TVQD
-#: start_parameters.xhp
-msgctxt ""
-"start_parameters.xhp\n"
-"par_id315053p\n"
-"help.text"
-msgid "Batch convert files (implies --headless). If --outdir isn't specified, then current working directory is used as output_dir."
-msgstr "Batch ይቀይራል ፋይሎች (ይፈጽማል --ራስጌ የሌላቸው). ከሆነ የ --ውጤት ዳይሬክቶሪ ካልተወሰነ: እና ከዛ የ አሁኑ መስሪያ ዳይሬክቶሪ ከ መጠቀሙ በፊት እንደ ውጤት_ዳይሬክቶሪ"
-
-#. bcvZm
+#. N3vAB
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id2016120401222926\n"
"help.text"
-msgid "If --convert-to is used more than once, last value of OutputFileExtension[:OutputFilterName] is effective. If --outdir is used more than once, only its last value is effective. For example:"
-msgstr "ከሆነ --መቀየሪያ-ወደ ከ አንድ ጊዜ በላይ ተጠቅመውበታል: የ መጨረሻው ዋጋ የ ውጤት ፋይል ተጨማሪ[:የ ውጤት ፋይል ስም] ውጤታማ ይሆናል: ከሆነ --የ ውጤት ዳይሬክቶሪ ከ ተጠቀሙ ከ አንድ ጊዜ በክላይ: የ መጨረሻው ዋጋ ብቻ ነው ውጤታማ የሚሆነው: ለምሳሌ:"
+msgid "If --convert-to is used more than once, last value of OutputFileExtension[:OutputFilterName[:OutputFilterParams]] is effective. If --outdir is used more than once, only its last value is effective. For example:"
+msgstr ""
#. RYx7a
#: start_parameters.xhp
diff --git a/source/am/helpcontent2/source/text/shared/optionen.po b/source/am/helpcontent2/source/text/shared/optionen.po
index 254ba572b33..ec6e8a5ce62 100644
--- a/source/am/helpcontent2/source/text/shared/optionen.po
+++ b/source/am/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-20 13:03+0200\n"
+"POT-Creation-Date: 2021-10-25 12:49+0200\n"
"PO-Revision-Date: 2018-12-10 01:08+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12256,14 +12256,14 @@ msgctxt ""
msgid "Print"
msgstr "ማተሚያ"
-#. dpEFJ
+#. KfecA
#: 01070400.xhp
msgctxt ""
"01070400.xhp\n"
"bm_id3155450\n"
"help.text"
-msgid "<bookmark_value>printing; drawings defaults</bookmark_value><bookmark_value>drawings; printing defaults</bookmark_value><bookmark_value>pages;printing page names in presentations</bookmark_value><bookmark_value>printing; dates in presentations</bookmark_value><bookmark_value>dates; printing in presentations</bookmark_value><bookmark_value>times; inserting when printing presentations</bookmark_value><bookmark_value>printing; hidden pages of presentations</bookmark_value><bookmark_value>hidden pages; printing in presentations</bookmark_value><bookmark_value>printing; without scaling in presentations</bookmark_value><bookmark_value>scaling; when printing presentations</bookmark_value><bookmark_value>printing; fitting to pages in presentations</bookmark_value><bookmark_value>fitting to pages; print settings in presentations</bookmark_value><bookmark_value>printing; tiling pages in presentations</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><bookmark_value>የ ተደበቁ ገጾች: ማተሚያ በ ማቅረቢያዎች</bookmark_value><bookmark_value>ማተሚያ: ያለ መመጠኛ በ ማቅረቢያዎች</bookmark_value><bookmark_value>መመጠኛ: ማተሚያ በ ማቅረቢያዎች</bookmark_value><bookmark_value>ማተሚያ: በ ገጾች ልክ በ ማቅረቢያዎች</bookmark_value><bookmark_value>በ ገጾች ልክ በ: ማተሚያ ማሰናጃዎች በ ማቅረቢያዎች</bookmark_value><bookmark_value>ማተሚያ: መከመሪያ ገጾች በ ማቅረቢያዎች</bookmark_value>"
+msgid "<bookmark_value>printing; drawings defaults</bookmark_value> <bookmark_value>drawings; printing defaults</bookmark_value> <bookmark_value>pages;printing page names in presentations</bookmark_value> <bookmark_value>printing; dates in presentations</bookmark_value> <bookmark_value>dates; printing in presentations</bookmark_value> <bookmark_value>times; inserting when printing presentations</bookmark_value> <bookmark_value>printing; hidden pages of presentations</bookmark_value> <bookmark_value>hidden pages; printing in presentations</bookmark_value> <bookmark_value>printing; without scaling in presentations</bookmark_value> <bookmark_value>scaling; when printing presentations</bookmark_value> <bookmark_value>printing; fitting to pages in presentations</bookmark_value> <bookmark_value>fitting to pages; print settings in presentations</bookmark_value> <bookmark_value>printing; tiling pages in presentations</bookmark_value>"
+msgstr ""
#. iFJBG
#: 01070400.xhp
@@ -12382,14 +12382,14 @@ msgctxt ""
msgid "Quality"
msgstr "ጥራት"
-#. vYV69
+#. 8fAoE
#: 01070400.xhp
msgctxt ""
"01070400.xhp\n"
"par_id3147229\n"
"help.text"
-msgid "See also <embedvar href=\"text/shared/guide/print_blackwhite.xhp#print_blackwhite\"/>."
-msgstr "ይህን ይመልከቱ <embedvar href=\"text/shared/guide/print_blackwhite.xhp#print_blackwhite\"/>."
+msgid "See also <link href=\"text/shared/guide/print_blackwhite.xhp\" name=\"print_blackwhite_link\">Printing in Black and White</link>."
+msgstr ""
#. KK8qW
#: 01070400.xhp
@@ -15460,13 +15460,13 @@ msgctxt ""
msgid "Detailed Calculation"
msgstr ""
-#. n3FEk
+#. ELsuG
#: detailedcalculation.xhp
msgctxt ""
"detailedcalculation.xhp\n"
"bm_id3146799\n"
"help.text"
-msgid "<bookmark_value>string;conversion to number settings</bookmark_value><bookmark_value>string conversion to number options</bookmark_value><bookmark_value>string;conversion to date settings</bookmark_value><bookmark_value>string conversion to date options</bookmark_value><bookmark_value>string;conversion to reference settings</bookmark_value><bookmark_value>string conversion to reference options</bookmark_value><bookmark_value>string;setting in spreadsheet formulas</bookmark_value><bookmark_value>cell reference syntax in strings;Excel R1C1</bookmark_value><bookmark_value>cell reference syntax in strings;Excel A1</bookmark_value><bookmark_value>cell reference syntax in strings;Calc A1</bookmark_value><bookmark_value>Excel R1C1;cell reference syntax in strings</bookmark_value><bookmark_value>Excel A1;cell reference syntax in strings</bookmark_value><bookmark_value>Calc A1;cell reference syntax in strings</bookmark_value>"
+msgid "<bookmark_value>string;conversion to number settings</bookmark_value> <bookmark_value>string conversion to number options</bookmark_value> <bookmark_value>string;conversion to date settings</bookmark_value> <bookmark_value>string conversion to date options</bookmark_value> <bookmark_value>string;conversion to reference settings</bookmark_value> <bookmark_value>string conversion to reference options</bookmark_value> <bookmark_value>string;setting in spreadsheet formulas</bookmark_value> <bookmark_value>cell reference syntax in strings;Excel R1C1</bookmark_value> <bookmark_value>cell reference syntax in strings;Excel A1</bookmark_value> <bookmark_value>cell reference syntax in strings;Calc A1</bookmark_value> <bookmark_value>Excel R1C1;cell reference syntax in strings</bookmark_value> <bookmark_value>Excel A1;cell reference syntax in strings</bookmark_value> <bookmark_value>Calc A1;cell reference syntax in strings</bookmark_value>"
msgstr ""
#. jZZNb
@@ -15541,13 +15541,13 @@ msgctxt ""
msgid "<emph>Treat as zero:</emph> Any text found where numeric data is expected will be considered as a number of value zero. Example: <item type=\"input\">\"123.45\"</item> will map to zero, while <item type=\"input\">123.45</item> not."
msgstr ""
-#. XLNWu
+#. 8VbMZ
#: detailedcalculation.xhp
msgctxt ""
"detailedcalculation.xhp\n"
"par_id3067110\n"
"help.text"
-msgid "<emph>Convert only if unambiguous:</emph> If the text represents a valid and unambiguous numeric value, convert it. Example: <item type=\"input\">\"123.456\"</item> will generate a #VALUE! error because the text contains a separator, while <item type=\"input\">\"123456\"</item> will not.<br/>See <embedvar href=\"text/scalc/guide/numbers_text.xhp#numbers_text\" markup=\"ignore\"/> for details."
+msgid "<emph>Convert only if unambiguous:</emph> If the text represents a valid and unambiguous numeric value, convert it. Example: <item type=\"input\">\"123.456\"</item> will generate a #VALUE! error because the text contains a separator, while <item type=\"input\">\"123456\"</item> will not.<br/>See <link href=\"text/scalc/guide/numbers_text.xhp\" name=\"numbers_text_link\">Converting Text to Numbers</link> for details."
msgstr ""
#. Eo47W
diff --git a/source/am/helpcontent2/source/text/simpress/00.po b/source/am/helpcontent2/source/text/simpress/00.po
index 3aee9567666..efc9e91540e 100644
--- a/source/am/helpcontent2/source/text/simpress/00.po
+++ b/source/am/helpcontent2/source/text/simpress/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-20 13:03+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
"PO-Revision-Date: 2018-04-30 14:28+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1438,6 +1438,15 @@ msgctxt ""
msgid "<variable id=\"seitenvorlage\">Choose <menuitem>Slide - Change Slide Master</menuitem> </variable>"
msgstr ""
+#. E75uy
+#: slide_menu.xhp
+msgctxt ""
+"slide_menu.xhp\n"
+"par_id911634055593609\n"
+"help.text"
+msgid "<variable id=\"loadslidedesign\">Choose <menuitem>Slide - Change Slide Master - Load</menuitem></variable>"
+msgstr ""
+
#. Whnor
#: slide_menu.xhp
msgctxt ""
@@ -1456,13 +1465,13 @@ msgctxt ""
msgid "On the <emph>Presentation</emph> bar, click"
msgstr "በ <emph>ማቅረቢያው </emph> መደርደሪያ ላይ ይጫኑ"
-#. FMkRy
+#. gBMvH
#: slide_menu.xhp
msgctxt ""
"slide_menu.xhp\n"
"par_id3685251\n"
"help.text"
-msgid "<image id=\"img_id3183073\" src=\"cmd/sc_insertpage.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3183073\">Icon</alt></image>"
+msgid "<image id=\"img_id3183073\" src=\"cmd/sc_insertpage.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3183073\">Icon New slide</alt></image>"
msgstr ""
#. brVDD
diff --git a/source/am/helpcontent2/source/text/simpress/01.po b/source/am/helpcontent2/source/text/simpress/01.po
index 1164eb19dc0..cb969e7fa08 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: 2021-09-10 23:11+0200\n"
+"POT-Creation-Date: 2021-10-25 12:49+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"
@@ -3895,6 +3895,24 @@ msgctxt ""
msgid "Change Slide Master"
msgstr ""
+#. bBY5z
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"hd_id3164253\n"
+"help.text"
+msgid "<link href=\"text/simpress/01/05120000.xhp\" name=\"Change Slide Master\">Master Page</link>"
+msgstr ""
+
+#. Pz8J7
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"par_id3108485\n"
+"help.text"
+msgid "<variable id=\"masterpagetext\"><ahelp hid=\".uno:PresentationLayout\">Displays the <emph>Available Master Slides</emph> dialog, where you can select a layout scheme for the current page. Any objects in the page design are inserted behind objects in the current page.</ahelp></variable>"
+msgstr ""
+
#. Jg7LJ
#: 05120000.xhp
msgctxt ""
@@ -3976,114 +3994,24 @@ msgctxt ""
msgid "Load"
msgstr "መጫኛ"
-#. PJUGm
+#. wvNGM
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
-"par_id3156020\n"
-"help.text"
-msgid "<ahelp hid=\"modules/simpress/ui/slidedesigndialog/load\">Displays the <link href=\"text/simpress/01/05120100.xhp\" name=\"Load Master Slide\"><emph>Load Master Slide</emph></link> dialog, where you can select additional slide designs.</ahelp>"
-msgstr ""
-
-#. sQnAB
-#: 05120100.xhp
-msgctxt ""
-"05120100.xhp\n"
-"tit\n"
+"par_id3956020\n"
"help.text"
-msgid "Load Master Slide"
+msgid "<ahelp hid=\"modules/simpress/ui/slidedesigndialog/load\">Displays the <link href=\"text/swriter/01/05170000.xhp\" name=\"Load Master Slide\"><emph>Load Master Page</emph></link> dialog, where you can select additional page designs.</ahelp>"
msgstr ""
-#. cVSPz
-#: 05120100.xhp
+#. LZr7A
+#: 05120000.xhp
msgctxt ""
-"05120100.xhp\n"
-"hd_id3153728\n"
+"05120000.xhp\n"
+"par_id3156020\n"
"help.text"
-msgid "Load Master Slide"
+msgid "<ahelp hid=\"modules/simpress/ui/slidedesigndialog/load\">Displays the <link href=\"text/swriter/01/05170000.xhp\" name=\"Load Master Slide\"><emph>Load Master Slide</emph></link> dialog, where you can select additional slide designs.</ahelp>"
msgstr ""
-#. DB49E
-#: 05120100.xhp
-msgctxt ""
-"05120100.xhp\n"
-"par_id3150717\n"
-"help.text"
-msgid "Load additional slide designs for your presentation."
-msgstr "ተጨማሪ የ ተንሸራትች ንድፎች ለ እርስዎ ማቅረቢያዎች ይጫኑ"
-
-#. fs4kq
-#: 05120100.xhp
-msgctxt ""
-"05120100.xhp\n"
-"par_id3154016\n"
-"help.text"
-msgid "Select a design category, and then a template you want to apply."
-msgstr "የ ንድፍ ምድብ ይምረጡ እና ከዛ መፈጸሚያውን ቴምፕሌት"
-
-#. Mfa22
-#: 05120100.xhp
-msgctxt ""
-"05120100.xhp\n"
-"hd_id3150327\n"
-"help.text"
-msgid "Categories"
-msgstr "ምድቦች"
-
-#. Qjzs5
-#: 05120100.xhp
-msgctxt ""
-"05120100.xhp\n"
-"par_id3147338\n"
-"help.text"
-msgid "<ahelp hid=\"sfx/ui/loadtemplatedialog/categories\">Displays the available slide design categories.</ahelp>"
-msgstr "<ahelp hid=\"sfx/ui/loadtemplatedialog/categories\">ዝግጁ የሆኑ የተንሸራታች ንድፍ ምድቦችን ማሳያ</ahelp>"
-
-#. SFJp7
-#: 05120100.xhp
-msgctxt ""
-"05120100.xhp\n"
-"hd_id3155962\n"
-"help.text"
-msgid "Templates"
-msgstr "ቴምፕሌቶች"
-
-#. AgvvA
-#: 05120100.xhp
-msgctxt ""
-"05120100.xhp\n"
-"par_id3155337\n"
-"help.text"
-msgid "<ahelp hid=\"sfx/ui/loadtemplatedialog/templates\">Displays the templates for the selected design category.</ahelp>"
-msgstr "<ahelp hid=\"sfx/ui/loadtemplatedialog/templates\">ለ ተመረጠው የ ንድፍ ምድብ ቴምፕሌት ማሳያ</ahelp>"
-
-#. SL4AQ
-#: 05120100.xhp
-msgctxt ""
-"05120100.xhp\n"
-"hd_id3145791\n"
-"help.text"
-msgid "More>>"
-msgstr "ተጨማሪ >>"
-
-#. 3B6Mz
-#: 05120100.xhp
-msgctxt ""
-"05120100.xhp\n"
-"par_id3150344\n"
-"help.text"
-msgid "<ahelp hid=\"sfx/ui/loadtemplatedialog/expander\">Shows or hides a preview of a selected template.</ahelp>"
-msgstr "<ahelp hid=\"sfx/ui/loadtemplatedialog/expander\">የ ተመረጠውን ቴምፕሌት ቅድመ እይታ ማሳያ ወይንም መደበቂያ </ahelp>"
-
-#. PEjDN
-#: 05120100.xhp
-msgctxt ""
-"05120100.xhp\n"
-"par_id3159206\n"
-"help.text"
-msgid "Some templates may not contain visible text objects or drawing objects."
-msgstr "አንዳንድ ቴምፕሌቶች የሚታይ የ ጽሁፍ እቃዎች ወይንም መሳያ እቃዎች የላቸውም"
-
#. BLSEy
#: 05120500m.xhp
msgctxt ""
@@ -4633,14 +4561,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/connectortabpage/MTR_FLD_LINE_3\">Enter a skew value for Line 3.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/connectortabpage/MTR_FLD_LINE_3\">ያስገቡ የ ማዝመሚያ ዋጋ ለ መስመር 3.</ahelp>"
-#. 4z7yG
+#. 4DA83
#: 05170000.xhp
msgctxt ""
"05170000.xhp\n"
-"hd_id3145581\n"
+"hd_id291634825392062\n"
"help.text"
msgid "Line spacing"
-msgstr "የ መስመር ክፍተት"
+msgstr ""
#. t5Pe9
#: 05170000.xhp
@@ -4732,14 +4660,14 @@ msgctxt ""
msgid "Reset line skew"
msgstr "የ መስመር ማዝመሚያውን እንደ ነበር መመለሻ"
-#. WE2nx
+#. Y3yHa
#: 05170000.xhp
msgctxt ""
"05170000.xhp\n"
"par_id3159205\n"
"help.text"
-msgid "<ahelp hid=\".uno:NewRouting\">Resets the line skew values to the default.</ahelp><embedvar href=\"text/shared/00/00000001.xhp#kontext\"/>"
-msgstr "<ahelp hid=\".uno:NewRouting\">የ መስመር ማዝመሚያውን እንደ ነበር መመለሻ ወደ ነባሩ.</ahelp><embedvar href=\"text/shared/00/00000001.xhp#kontext\"/>"
+msgid "<ahelp hid=\".uno:NewRouting\">Resets the line skew values to the default.</ahelp> (This command is only accessible through the <link href=\"text/shared/00/00000005.xhp#contextmenu\" name=\"context menu\">context menu</link>)."
+msgstr ""
#. JLBKm
#: 05250000.xhp
@@ -7036,41 +6964,50 @@ msgctxt ""
msgid "Custom Slide Shows"
msgstr "ተንሸራታች ማሳያ ማስተካከያ"
-#. fdjRS
+#. 9BTtN
#: 06100000.xhp
msgctxt ""
"06100000.xhp\n"
"hd_id3154659\n"
"help.text"
-msgid "Custom Slide Shows"
-msgstr "ተንሸራታች ማሳያ ማስተካከያ"
+msgid "<variable id=\"CustomShow_h1\"><link href=\"text/simpress/01/06100000.xhp\" name=\"CustomShow_link\">Custom Slide Shows</link></variable>"
+msgstr ""
-#. CipVc
+#. EB558
#: 06100000.xhp
msgctxt ""
"06100000.xhp\n"
"par_id3149207\n"
"help.text"
-msgid "<variable id=\"indipraesent\"><ahelp hid=\".uno:CustomShowDialog\">Defines a custom slide show using slides within the current presentation. You can then pick slides to meet the needs of your audience. You can create as many custom slide shows as you want.</ahelp></variable>"
-msgstr "<variable id=\"indipraesent\"><ahelp hid=\".uno:CustomShowDialog\">የ ተንሸራታች ማሳያ ማስተካከያ መግለጫ: ተንሸራታች በ መጠቀም በ አሁኑ ተንሸራታች ውስጥ: እርስዎ ከዛ በኋላ ተንሸራታች መምረጥ ይችላሉ ተመልከቹ የሚፈልገውን: እርስዎ መፍጠር ይችላሉ የ ተንሸራታች ማሳያ ማስተካከያ እንደፈልጉ </ahelp></variable>"
+msgid "<variable id=\"indipraesent\"><ahelp hid=\".uno:CustomShowDialog\">Defines a custom slide show using slides within the current presentation. You can then pick slides to meet the needs of your audience. You can create as many custom slide shows as you want.</ahelp> </variable>"
+msgstr ""
-#. j9xFw
+#. YgWfS
+#: 06100000.xhp
+msgctxt ""
+"06100000.xhp\n"
+"par_id641634164174393\n"
+"help.text"
+msgid "Read the help page <link href=\"text/simpress/guide/individual.xhp#individual\">Creating a Custom Slide Show</link> to learn more about how to set up your own custom slide shows."
+msgstr ""
+
+#. JyjJt
#: 06100000.xhp
msgctxt ""
"06100000.xhp\n"
"hd_id3155530\n"
"help.text"
-msgid "Name of the presentation(s)"
-msgstr "ስም የማቅረቢያው(ዎቹ)"
+msgid "List of custom slide shows"
+msgstr ""
-#. TEnog
+#. 9WeMN
#: 06100000.xhp
msgctxt ""
"06100000.xhp\n"
"par_id3156449\n"
"help.text"
-msgid "<ahelp hid=\"modules/simpress/ui/customslideshows/customshowlist\">Lists the custom slide shows that are available.</ahelp>"
-msgstr "<ahelp hid=\"modules/simpress/ui/customslideshows/customshowlist\">ዝግጁ የሆኑ የ ተንሸራታች ማሳያ ዝርዝር ማስተካከያ</ahelp>"
+msgid "<ahelp hid=\"modules/simpress/ui/customslideshows/customshowlist\">Lists the custom slide shows that are available in the document.</ahelp>"
+msgstr ""
#. T3UBF
#: 06100000.xhp
@@ -7081,24 +7018,6 @@ msgctxt ""
msgid "To create a custom slide show, click <emph>New</emph>."
msgstr "ተንሸራታች ማሳያ ማስተካከያ ለ መፍጠር ይጫኑ <emph>አዲስ</emph>."
-#. BbVpd
-#: 06100000.xhp
-msgctxt ""
-"06100000.xhp\n"
-"hd_id3152899\n"
-"help.text"
-msgid "Use Custom Slide Show"
-msgstr "ተንሸራታች ማሳያ ማስተካከያ ይጠቀሙ"
-
-#. aajoE
-#: 06100000.xhp
-msgctxt ""
-"06100000.xhp\n"
-"par_id3149947\n"
-"help.text"
-msgid "<ahelp hid=\"modules/simpress/ui/customslideshows/usecustomshows\">Runs the custom slide show you selected when you click <emph>Start</emph>. Otherwise, the entire presentation is shown.</ahelp>"
-msgstr "<ahelp hid=\"modules/simpress/ui/customslideshows/usecustomshows\">እርስዎ የመረጡትን የ ተንሸራታች ማሳያ ማስተካከያ ማስኬጃ: እርስዎ ሲጫኑ <emph>ማስጀመሪያ</emph>. ያለበለዚያ ጠቅላላ ማቅረቢያው ይታያል</ahelp>"
-
#. tmqBb
#: 06100000.xhp
msgctxt ""
@@ -7108,14 +7027,14 @@ msgctxt ""
msgid "To run a custom slide show:"
msgstr "ተንሸራታች ማሳያ ማስተካከያ ለማስኬድ"
-#. 5B6tC
+#. KDQG6
#: 06100000.xhp
msgctxt ""
"06100000.xhp\n"
"par_id3153250\n"
"help.text"
-msgid "Click the show in the list and then select <emph>Use Custom Slide Show</emph>."
-msgstr "ይጫኑ ማሳያ ከ ዝርዝር ውስጥ እና ከዛ ይምረጡ <emph>ይጠቀሙ ተንሸራታች ማሳያ ማስተካከያ</emph>."
+msgid "Select a custom slide show from the list."
+msgstr ""
#. yFmBx
#: 06100000.xhp
@@ -7180,14 +7099,14 @@ msgctxt ""
msgid "Start"
msgstr "መጀመሪያ"
-#. VEuA7
+#. EKdWF
#: 06100000.xhp
msgctxt ""
"06100000.xhp\n"
"par_id3157907\n"
"help.text"
-msgid "<ahelp hid=\"modules/simpress/ui/customslideshows/startshow\">Runs the slide show. Ensure that <emph>Use Custom Slide Show</emph> is selected if you want to run a custom presentation.</ahelp>"
-msgstr "<ahelp hid=\"modules/simpress/ui/customslideshows/startshow\">ተንሻራታች ማሳያ ማስኬጃ: እርግጠኛ ይሁኑ <emph>ይጠቀሙ የ ተንሻራታች ማሳያ ማስተካከያ </emph> መመረጡን እርስዎ የ ተንሻራታች ማሳያ ማስተካከያ ማስኬድ ከ ፈለጉ</ahelp>"
+msgid "<ahelp hid=\"modules/simpress/ui/customslideshows/startshow\">Runs the selected custom slide show.</ahelp>"
+msgstr ""
#. u5kLV
#: 06100100.xhp
diff --git a/source/am/helpcontent2/source/text/simpress/guide.po b/source/am/helpcontent2/source/text/simpress/guide.po
index 31815f8b672..c7f47c31d32 100644
--- a/source/am/helpcontent2/source/text/simpress/guide.po
+++ b/source/am/helpcontent2/source/text/simpress/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-04 19:51+0200\n"
+"POT-Creation-Date: 2021-10-25 12:49+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"
@@ -5578,14 +5578,14 @@ msgctxt ""
msgid "Showing a Slide Show"
msgstr "ተንሸራታች ማሳያ በሚታይበት ጊዜ"
-#. uZqFT
+#. TxTxS
#: show.xhp
msgctxt ""
"show.xhp\n"
"bm_id5592516\n"
"help.text"
-msgid "<bookmark_value>running slide shows</bookmark_value><bookmark_value>showing;slide shows</bookmark_value><bookmark_value>slide shows; starting</bookmark_value><bookmark_value>presentations; starting</bookmark_value><bookmark_value>starting; slide shows</bookmark_value><bookmark_value>automatic slide shows</bookmark_value><bookmark_value>slide transitions;automatic</bookmark_value><bookmark_value>automatic slide transition</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><bookmark_value>ራሱ በራሱየ ተንሸራታች መሸጋገሪያ</bookmark_value>"
+msgid "<bookmark_value>running slide shows</bookmark_value> <bookmark_value>showing;slide shows</bookmark_value> <bookmark_value>slide shows; starting</bookmark_value> <bookmark_value>presentations; starting</bookmark_value> <bookmark_value>starting; slide shows</bookmark_value> <bookmark_value>automatic slide shows</bookmark_value> <bookmark_value>slide transitions;automatic</bookmark_value> <bookmark_value>automatic slide transition</bookmark_value>"
+msgstr ""
#. ZwZRH
#: show.xhp
@@ -5632,15 +5632,6 @@ msgctxt ""
msgid "Choose <emph>Slide Show - Slide Show</emph> to run the show."
msgstr "ይምረጡ <emph> ተንሸራታች ማሳያ - ተንሸራታች ማሳያ </emph> ማሳያውን ለማስኬድ"
-#. B2HtF
-#: show.xhp
-msgctxt ""
-"show.xhp\n"
-"par_id4199957\n"
-"help.text"
-msgid "If you want all shows to start from the current slide instead of the first slide, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress - General</emph> and click <emph>Always with current page</emph>."
-msgstr "ከ መጀመሪያው ተንሸራታች ይልቅ ሁሉም ተንሸራታች ከ አሁኑ ተንሸራታች ጀምሮ እንዲጀምር ከፈለጉ ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME ማስደነቂያ - ባጠቃላይ </emph> እና ይጫኑ <emph> ሁልጊዜ ከ አሁኑ ገጽ ጀምሮ </emph>"
-
#. RzXBe
#: show.xhp
msgctxt ""
@@ -5650,14 +5641,14 @@ msgctxt ""
msgid "Click to advance to the next effect or to the next slide."
msgstr "ይጫኑ ለ መቀጠል ወደ ሚቀጥለው ተንሸራታች ወይንም ወደ ሚቀጥለው ተፅእኖ"
-#. BDk6i
+#. dP9Vm
#: show.xhp
msgctxt ""
"show.xhp\n"
-"par_id8702658\n"
+"par_id391634159318692\n"
"help.text"
-msgid "Press <item type=\"keycode\">Esc</item> to abort the show before the end."
-msgstr "ይጫኑ <item type=\"keycode\"> መዝለያ </item> ትርኢቱ ከ መጨረሱ በፊት ለ ማቋረጥ"
+msgid "Press <keycode>Esc</keycode> to abort the slide show before its end."
+msgstr ""
#. yF4a5
#: show.xhp
@@ -5695,23 +5686,23 @@ msgctxt ""
msgid "Open the <emph>Slide Transition</emph> sidebar deck."
msgstr "መክፈቻ የ <emph>ተንሸራታች መሸጋገሪያ</emph> ከ ተንሸራታች መደርደሪያ ማሳረፊያ ውስጥ"
-#. vsNmF
+#. 9CjNM
#: show.xhp
msgctxt ""
"show.xhp\n"
"par_id9168980\n"
"help.text"
-msgid "In the <emph>Advance slide</emph> area, click <emph>Automatically after</emph>, and select a time duration."
-msgstr "በ <emph> ረቀቀ ተንሸራታች </emph> ቦታ ላይ: ይጭኑ <emph> ከ ራሱ በራሱ በኋላ </emph> እና ይምረጡ የ ጊዜ መጠን"
+msgid "In the <emph>Advance Slide</emph> area, click <emph>After</emph> and enter a time duration."
+msgstr ""
-#. u3a9a
+#. HfVRx
#: show.xhp
msgctxt ""
"show.xhp\n"
"par_id9766533\n"
"help.text"
-msgid "Click <emph>Apply to All Slides</emph>."
-msgstr "ይጫኑ <emph> ለሁሉም ተንሸራታቾች መፈጸሚያ </emph>"
+msgid "Click <emph>Apply Transition to All Slides</emph>."
+msgstr ""
#. yfpGu
#: show.xhp
@@ -5740,14 +5731,14 @@ msgctxt ""
msgid "Choose <emph>Slide Show - Slide Show Settings</emph>."
msgstr "ይምረጡ <emph> ተንሸራታች ማሳያ - ተንሸራታች ማሳያ ማሰናጃዎች </emph>"
-#. 5CqC5
+#. Nyapm
#: show.xhp
msgctxt ""
"show.xhp\n"
"par_id1336405\n"
"help.text"
-msgid "In the Type area, click <emph>Auto</emph> and select a pause time between shows."
-msgstr "በ መጻፊያው ቦታ ይጫኑ <emph>በራሱ</emph> እና ይምረጡ የ እረፍት ጊዜ ትርኢቱ በሚታይበት ጊዜ"
+msgid "In the <emph>Presentation Mode</emph> area, choose <emph>Loop and repeat after</emph> and set the duration of the pause between shows."
+msgstr ""
#. A4BCr
#: show.xhp
@@ -5767,15 +5758,6 @@ msgctxt ""
msgid "You can start %PRODUCTNAME from a command prompt, followed by the parameter <item type=\"literal\">-show</item> and an Impress filename. For example, to start the file <item type=\"literal\">filename.odp</item> from the command prompt, enter the following command:"
msgstr "እርስዎ መጀመር ይችላሉ %PRODUCTNAMEከ ትእዛዝ መስኮት ደንብ ውስጥ በ <item type=\"literal\">-ማሳያ </item> እና የ ማስደነቂያ ፋይል ስም: ለምሳሌ: ፋይል ለ ማስጀመር <item type=\"literal\"> የ ፋይል ስም.odp </item> ከ ትእዛዝ መስኮት ውስጥ: የሚቀጥለውን ትእዛዝ ያስገቡ:"
-#. bfcES
-#: show.xhp
-msgctxt ""
-"show.xhp\n"
-"par_id1502121\n"
-"help.text"
-msgid "<item type=\"literal\">soffice -show filename.odp</item>"
-msgstr "<item type=\"literal\">soffice -ማሳያ የ ፋይል ስም.odp</item>"
-
#. 7FZNV
#: show.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/swriter.po b/source/am/helpcontent2/source/text/swriter.po
index fbafd8df392..d1f80cb11ff 100644
--- a/source/am/helpcontent2/source/text/swriter.po
+++ b/source/am/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-10 23:11+0200\n"
+"POT-Creation-Date: 2021-10-25 12:49+0200\n"
"PO-Revision-Date: 2019-07-07 17:13+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2455,14 +2455,14 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/05060200.xhp\" name=\"Wrap Off\">Wrap Off</link>"
msgstr "<link href=\"text/swriter/01/05060200.xhp\" name=\"Wrap Off\">መጠቅለያው ጠፍቷል</link>"
-#. Vus62
+#. PJcEB
#: main0215.xhp
msgctxt ""
"main0215.xhp\n"
"par_id3147419\n"
"help.text"
-msgid "<embedvar href=\"text/swriter/01/05060200.xhp#keinumlauftext\"/>You can also choose this setting on the <emph>Wrap</emph> tab page."
-msgstr "<embedvar href=\"text/swriter/01/05060200.xhp#keinumlauftext\"/>እንዲሁም ይህን ማሰናጃ መምረጥ ይችላሉ የ <emph>መጠቅለያ</emph> tab ገጽ"
+msgid "You can also choose this setting on the <emph>Wrap</emph> tab page."
+msgstr ""
#. n8sCd
#: main0215.xhp
@@ -2473,14 +2473,14 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/05060200.xhp\" name=\"Wrap On\">Wrap On</link>"
msgstr "<link href=\"text/swriter/01/05060200.xhp\" name=\"Wrap On\">መጠቅለያው በርቷል</link>"
-#. cqLEM
+#. oCsKA
#: main0215.xhp
msgctxt ""
"main0215.xhp\n"
"par_id3153405\n"
"help.text"
-msgid "<embedvar href=\"text/swriter/01/05060200.xhp#seitenumlauftext\"/>This icon represents the <emph>Page Wrap</emph> option on the <emph>Wrap</emph> tab page."
-msgstr "<embedvar href=\"text/swriter/01/05060200.xhp#seitenumlauftext\"/>ይህ ምልክት የሚወክለው የ <emph>ገጽ መጠቅለያ </emph> ምርጫዎችን በ <emph>መጠቅለያ</emph> tab ገጽ ውስጥ"
+msgid "This icon represents the <emph>Page Wrap</emph> option on the <emph>Wrap</emph> tab page."
+msgstr ""
#. euDxv
#: main0215.xhp
@@ -2491,14 +2491,14 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/05060200.xhp\" name=\"Wrap Through\">Wrap Through</link>"
msgstr "<link href=\"text/swriter/01/05060200.xhp\" name=\"Wrap\">ጠቅላላ መጠቅለያ</link>"
-#. FMaCU
+#. 3UyQZ
#: main0215.xhp
msgctxt ""
"main0215.xhp\n"
"par_id3147799\n"
"help.text"
-msgid "<embedvar href=\"text/swriter/01/05060200.xhp#durchlauftext\"/>You can also define this setting on the <emph>Wrap</emph> tab page."
-msgstr "<embedvar href=\"text/swriter/01/05060200.xhp#durchlauftext\"/>እንዲሁም ይህን የ መግለጫ ማሰናጃ መምረጥ ይችላሉ የ <emph>መጠቅለያ</emph> tab ገጽ"
+msgid "You can also define this setting on the <emph>Wrap</emph> tab page."
+msgstr ""
#. UcRFJ
#: main0215.xhp
diff --git a/source/am/helpcontent2/source/text/swriter/00.po b/source/am/helpcontent2/source/text/swriter/00.po
index 24540694ec0..165879f503a 100644
--- a/source/am/helpcontent2/source/text/swriter/00.po
+++ b/source/am/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-04 19:51+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
"PO-Revision-Date: 2019-07-07 16:44+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2167,14 +2167,14 @@ msgctxt ""
msgid "On the <emph>Table</emph> bar, click"
msgstr ""
-#. JGqGG
+#. zy5vV
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3153996\n"
"help.text"
-msgid "<image id=\"img_id3154002\" src=\"cmd/sc_mergecells.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154002\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154002\" src=\"cmd/sc_mergecells.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154002\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3154002\" src=\"cmd/sc_mergecells.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154002\">Icon Merge Cells</alt></image>"
+msgstr ""
#. dpXBa
#: 00000405.xhp
@@ -2203,14 +2203,14 @@ msgctxt ""
msgid "On the <emph>Table</emph> bar, click"
msgstr ""
-#. 5TCpD
+#. 7E7fT
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3147270\n"
"help.text"
-msgid "<image id=\"img_id3147275\" src=\"cmd/sc_splitcell.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3147275\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147275\" src=\"cmd/sc_splitcell.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3147275\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3147275\" src=\"cmd/sc_splitcell.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147275\">Icon Unmerge Cells</alt></image>"
+msgstr ""
#. 7XaPo
#: 00000405.xhp
@@ -2284,14 +2284,14 @@ msgctxt ""
msgid "Open <emph>Optimize Size</emph> toolbar from <emph>Table</emph> bar, click"
msgstr ""
-#. 3UF7h
+#. cH2we
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3145222\n"
"help.text"
-msgid "<image id=\"img_id3145228\" src=\"cmd/sc_setoptimalrowheight.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145228\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145228\" src=\"cmd/sc_setoptimalrowheight.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145228\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3145228\" src=\"cmd/sc_setoptimalrowheight.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145228\">Icon Optimal Row Height</alt></image>"
+msgstr ""
#. fRVE5
#: 00000405.xhp
@@ -2320,14 +2320,14 @@ msgctxt ""
msgid "Open <emph>Optimize Size</emph> toolbar from <emph>Table</emph> bar, click"
msgstr ""
-#. PVPb8
+#. S6W6h
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3145297\n"
"help.text"
-msgid "<image id=\"img_id3155994\" src=\"cmd/sc_distributerows.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155994\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155994\" src=\"cmd/sc_distributerows.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155994\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3155994\" src=\"cmd/sc_distributerows.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155994\">Icon Distribute Rows Equally</alt></image>"
+msgstr ""
#. KuUhp
#: 00000405.xhp
@@ -2365,14 +2365,14 @@ msgctxt ""
msgid "On <emph>Table</emph> bar, click"
msgstr ""
-#. Na4rx
+#. UrDQE
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3147555\n"
"help.text"
-msgid "<image id=\"img_id3150361\" src=\"cmd/sc_deleterows.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150361\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150361\" src=\"cmd/sc_deleterows.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150361\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3150361\" src=\"cmd/sc_deleterows.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150361\">Icon Delete Row</alt></image>"
+msgstr ""
#. EfTgN
#: 00000405.xhp
@@ -2419,14 +2419,14 @@ msgctxt ""
msgid "Open <emph>Optimize Size</emph> toolbar from <emph>Table</emph> bar, click"
msgstr ""
-#. i89K7
+#. WzXMG
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3157881\n"
"help.text"
-msgid "<image id=\"img_id3157888\" src=\"cmd/sc_setoptimalcolumnwidthdirect.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3157888\">Icon</alt></image>"
-msgstr "<image id=\"img_id3157888\" src=\"cmd/sc_setoptimalcolumnwidthdirect.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3157888\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3157888\" src=\"cmd/sc_setoptimalcolumnwidthdirect.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3157888\">Icon Optimal Column Width</alt></image>"
+msgstr ""
#. iRYb5
#: 00000405.xhp
@@ -2455,14 +2455,14 @@ msgctxt ""
msgid "Open <emph>Optimize Size</emph> toolbar from <emph>Table</emph> bar, click"
msgstr ""
-#. V4Cqu
+#. EPNPB
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3145179\n"
"help.text"
-msgid "<image id=\"img_id3145186\" src=\"cmd/sc_distributecolumns.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145186\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145186\" src=\"cmd/sc_distributecolumns.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145186\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3145186\" src=\"cmd/sc_distributecolumns.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145186\">Icon Space Column Equally</alt></image>"
+msgstr ""
#. njBSt
#: 00000405.xhp
@@ -2509,14 +2509,14 @@ msgctxt ""
msgid "On <emph>Table</emph> bar, click"
msgstr ""
-#. e5L4N
+#. tY9nN
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3150279\n"
"help.text"
-msgid "<image id=\"img_id3150286\" src=\"cmd/sc_insertcolumns.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150286\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150286\" src=\"cmd/sc_insertcolumns.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150286\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3150286\" src=\"cmd/sc_insertcolumns.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150286\">Icon Insert Column</alt></image>"
+msgstr ""
#. jeDiz
#: 00000405.xhp
@@ -2527,14 +2527,14 @@ msgctxt ""
msgid "Insert Column"
msgstr "አምድ ማስገቢያ"
-#. yvgkg
+#. oB4az
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3150895\n"
"help.text"
-msgid "<image id=\"img_id3150902\" src=\"cmd/sc_insertrows.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150902\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150902\" src=\"cmd/sc_insertrows.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150902\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3150902\" src=\"cmd/sc_insertrows.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150902\">Icon Insert Row</alt></image>"
+msgstr ""
#. MFvHr
#: 00000405.xhp
@@ -2563,14 +2563,14 @@ msgctxt ""
msgid "On <emph>Table</emph> bar, click"
msgstr ""
-#. XqFzq
+#. dedvZ
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3153600\n"
"help.text"
-msgid "<image id=\"img_id3153607\" src=\"cmd/sc_deletecolumns.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153607\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153607\" src=\"cmd/sc_deletecolumns.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153607\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3153607\" src=\"cmd/sc_deletecolumns.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153607\">Icon Delete Column</alt></image>"
+msgstr ""
#. ro8Mr
#: 00000405.xhp
@@ -2590,13 +2590,13 @@ msgctxt ""
msgid "Choose <emph>Format - Frame and Object - Properties</emph>."
msgstr ""
-#. nsMFC
+#. TR376
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3151276\n"
"help.text"
-msgid "<image id=\"img_id3151283\" src=\"cmd/sc_framedialog.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151283\"> Icon Object Properties</alt></image>"
+msgid "<image id=\"img_id3151283\" src=\"cmd/sc_framedialog.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151283\">Icon Object Properties</alt></image>"
msgstr ""
#. vpeBB
@@ -2608,14 +2608,14 @@ msgctxt ""
msgid "Object Properties"
msgstr "የ እቃ ባህሪዎች"
-#. LVQCy
+#. x5EDg
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3152973\n"
"help.text"
-msgid "<image id=\"img_id3152980\" src=\"cmd/sc_framedialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152980\">Icon</alt></image>"
-msgstr "<image id=\"img_id3152980\" src=\"cmd/sc_framedialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152980\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3152980\" src=\"cmd/sc_framedialog.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152980\">Icon Frame Properties</alt></image>"
+msgstr ""
#. CZwgM
#: 00000405.xhp
diff --git a/source/am/helpcontent2/source/text/swriter/01.po b/source/am/helpcontent2/source/text/swriter/01.po
index 9ae0f4c6bd5..4ee86564451 100644
--- a/source/am/helpcontent2/source/text/swriter/01.po
+++ b/source/am/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-27 19:09+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
"PO-Revision-Date: 2018-12-09 17:43+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4462,14 +4462,14 @@ msgctxt ""
msgid "Insert Manual Break"
msgstr "መጨረሻ በ እጅ ማስገቢያ"
-#. DADdL
+#. FuBqy
#: 04010000.xhp
msgctxt ""
"04010000.xhp\n"
"hd_id3145827\n"
"help.text"
-msgid "Insert Manual Break"
-msgstr "መጨረሻ በ እጅ ማስገቢያ"
+msgid "<variable id=\"ManualBreak_h1\"><link href=\"text/swriter/01/04010000.xhp\" name=\"04010000_link\">Insert Manual Break</link></variable>"
+msgstr ""
#. BMEC5
#: 04010000.xhp
@@ -4597,6 +4597,15 @@ msgctxt ""
msgid "Select the page style for the page that follows the manual page break."
msgstr "አዲስ የ ገጽ ዘዴ ይምረጡ በ እጅ የ ገጽ መጨረሻን ለሚከተለው"
+#. VGFcT
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id71633464502255\n"
+"help.text"
+msgid "To switch between landscape and portrait orientation, choose the <emph>Default Page Style</emph> to apply portrait orientation or the <emph>Landscape</emph> style to apply landscape orientation."
+msgstr ""
+
#. iEpne
#: 04010000.xhp
msgctxt ""
@@ -24055,13 +24064,31 @@ msgctxt ""
msgid "Load Styles"
msgstr "ዘዴዎች መጫኛ"
-#. BFL9X
+#. NvMrU
#: 05170000.xhp
msgctxt ""
"05170000.xhp\n"
"hd_id3151242\n"
"help.text"
-msgid "<variable id=\"load_styles_header\"><link href=\"text/swriter/01/05170000.xhp\" name=\"Load Styles\">Load Styles</link></variable>"
+msgid "<switchinline select=\"appl\"> <caseinline select=\"IMPRESS\">Load Master Slide</caseinline> <caseinline select=\"DRAW\">Load Master Page</caseinline> <defaultinline><variable id=\"load_styles_header\"><link href=\"text/swriter/01/05170000.xhp\" name=\"Load Styles\">Load Styles</link></variable></defaultinline> </switchinline>"
+msgstr ""
+
+#. 27Nd8
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"par_id3150717\n"
+"help.text"
+msgid "Load additional slide designs for your presentation."
+msgstr ""
+
+#. 7mftZ
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"par_id2150717\n"
+"help.text"
+msgid "Load additional page designs for your drawing."
msgstr ""
#. FBAJG
@@ -24073,6 +24100,132 @@ msgctxt ""
msgid "<variable id=\"styles_text\"><ahelp hid=\".\">Imports formatting styles from another document or template into the current document.</ahelp></variable>"
msgstr ""
+#. UR6NA
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"hd_id3150327\n"
+"help.text"
+msgid "Categories"
+msgstr ""
+
+#. hfCSA
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"par_id3147338\n"
+"help.text"
+msgid "<ahelp hid=\"sfx/ui/loadtemplatedialog/categories\">Displays the available slide design categories.</ahelp>"
+msgstr ""
+
+#. WGb32
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"hd_id3155962\n"
+"help.text"
+msgid "Templates"
+msgstr ""
+
+#. MVgRk
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"par_id3155337\n"
+"help.text"
+msgid "<ahelp hid=\"sfx/ui/loadtemplatedialog/templates\">Displays the templates for the selected design category.</ahelp>"
+msgstr ""
+
+#. zu7wC
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"hd_id241634052550343\n"
+"help.text"
+msgid "Preview"
+msgstr ""
+
+#. VD5pq
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"par_id3150344\n"
+"help.text"
+msgid "<ahelp hid=\"sfx/ui/loadtemplatedialog/expander\">Shows or hides a preview of a selected master slide.</ahelp>"
+msgstr ""
+
+#. M5edi
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"par_id9159206\n"
+"help.text"
+msgid "Some master slides may not contain visible text objects or drawing objects."
+msgstr ""
+
+#. bFUri
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"hd_id3150427\n"
+"help.text"
+msgid "Categories"
+msgstr ""
+
+#. BhDDL
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"par_id3157338\n"
+"help.text"
+msgid "<ahelp hid=\"sfx/ui/loadtemplatedialog/categories\">Displays the available page design categories.</ahelp>"
+msgstr ""
+
+#. wYRwi
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"hd_id3155952\n"
+"help.text"
+msgid "Templates"
+msgstr ""
+
+#. hjKgq
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"par_id3155837\n"
+"help.text"
+msgid "<ahelp hid=\"sfx/ui/loadtemplatedialog/templates\">Displays the pages designs for the selected design category.</ahelp>"
+msgstr ""
+
+#. FLsVG
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"hd_id241634052520343\n"
+"help.text"
+msgid "Preview"
+msgstr ""
+
+#. APNcz
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"par_id315054\n"
+"help.text"
+msgid "<ahelp hid=\"sfx/ui/loadtemplatedialog/expander\">Shows or hides a preview of a selected page design.</ahelp>"
+msgstr ""
+
+#. fYaPW
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"par_id3159206\n"
+"help.text"
+msgid "Some page designs may not contain visible text objects or drawing objects."
+msgstr ""
+
#. uooXD
#: 05170000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/swriter/02.po b/source/am/helpcontent2/source/text/swriter/02.po
index 356d73b7ce8..3ff86f018de 100644
--- a/source/am/helpcontent2/source/text/swriter/02.po
+++ b/source/am/helpcontent2/source/text/swriter/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-10-25 12:49+0200\n"
"PO-Revision-Date: 2017-11-23 23:19+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -862,13 +862,13 @@ msgctxt ""
msgid "To remove the numbering restart, apply the command again in the paragraph where the numbering was restarted."
msgstr ""
-#. 7h49d
+#. 4Y7KE
#: 06140000.xhp
msgctxt ""
"06140000.xhp\n"
"par_id261616371203225\n"
"help.text"
-msgid "To restart numbering with a number greater than 1, right-click in the paragraph where you want to restart numbering, choose <menuitem>Paragraph - Paragraph - </menuitem><embedvar href=\"text/swriter/01/05030800.xhp#outlinelisth1\"/> tab, select <menuitem>Restart numbering at this paragraph</menuitem> and enter the start number in <menuitem>Start with</menuitem>."
+msgid "To restart numbering with a number greater than 1, right-click in the paragraph where you want to restart numbering, choose <menuitem>Paragraph - Paragraph - </menuitem><link href=\"text/swriter/01/05030800.xhp\" name=\"Numbering_link\">Outline & List</link> tab, select <menuitem>Restart numbering at this paragraph</menuitem> and enter the start number in <menuitem>Start with</menuitem>."
msgstr ""
#. qCdhk
diff --git a/source/am/helpcontent2/source/text/swriter/guide.po b/source/am/helpcontent2/source/text/swriter/guide.po
index c051b142c46..7672cae5603 100644
--- a/source/am/helpcontent2/source/text/swriter/guide.po
+++ b/source/am/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-27 19:09+0200\n"
+"POT-Creation-Date: 2021-10-25 12:49+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"
@@ -43,14 +43,41 @@ msgctxt ""
msgid "<variable id=\"anchor_object\"><link href=\"text/swriter/guide/anchor_object.xhp\" name=\"Positioning Objects\">Positioning Objects</link></variable>"
msgstr "<variable id=\"anchor_object\"><link href=\"text/swriter/guide/anchor_object.xhp\" name=\"Positioning Objects\">እቃዎችን ቦታ መስጫ</link></variable>"
-#. PYtpk
+#. ZQbRG
+#: anchor_object.xhp
+msgctxt ""
+"anchor_object.xhp\n"
+"par_id181634295881266\n"
+"help.text"
+msgid "An object, such as an image, is positioned within a document using anchors attached to other elements."
+msgstr ""
+
+#. rrmfz
+#: anchor_object.xhp
+msgctxt ""
+"anchor_object.xhp\n"
+"par_id41634291500513\n"
+"help.text"
+msgid "An anchor determines the reference point for an object. The reference point could be the page or frame where the object is, a paragraph, or even a character. An image always has an anchor and therefore a reference point."
+msgstr ""
+
+#. 2Bkvg
#: anchor_object.xhp
msgctxt ""
"anchor_object.xhp\n"
"par_id3147251\n"
"help.text"
-msgid "You can use anchors to position an object, graphic, or frame in a document. An anchored item remains in place, or moves when you modify the document. The following anchoring options are available:"
-msgstr "እቃ አንድ ቦታ ማስቆም ይችላሉ ንድፎች ወይንም ክፈፎች በ ሰነድ ውስጥ: አንዴ አንድ ቦታ በማስቆሚያ ካስቀመጡት በ ቦታው ይቆያል ወይንም ማንቀሳቀስ ይችላሉ ሰነዱን ሲያሻሽሉ: የሚቀጥሉት ማስቆሚያ ምርጫዎች ዝግጁ ናቸው:"
+msgid "An anchor moves with the element it is attached to as the document is edited. An object retains it's position relative to the reference point determined by it's anchor, such that, whenever the reference point moves or changes, the object moves relative to it."
+msgstr ""
+
+#. ELWph
+#: anchor_object.xhp
+msgctxt ""
+"anchor_object.xhp\n"
+"par_id441634291545244\n"
+"help.text"
+msgid "The following anchoring options are available:"
+msgstr ""
#. mWome
#: anchor_object.xhp
@@ -79,14 +106,14 @@ msgctxt ""
msgid "As character"
msgstr "እንደ ባህሪ"
-#. AbQya
+#. CjGAr
#: anchor_object.xhp
msgctxt ""
"anchor_object.xhp\n"
"par_id3151181\n"
"help.text"
-msgid "Anchors the selected item as a character in the current text. If the height of the selected item is greater than the current font size, the height of the line containing the item is increased."
-msgstr "የ ተመረጠውን እቃ እንደ ባህሪ ማስቆሚያ በ አሁኑ ጽሁፍ ውስጥ: የ ተመረጠው እቃ እርዝመት አሁን ካለው ፊደል መጠን ከ በለጠ እቃውን የ ያዘው መስመር እርዝመት ይጨመራል"
+msgid "Anchors the selected object as a character in the current text. If the height of the selected object is greater than the current font size, the height of the line containing the object is increased."
+msgstr ""
#. SNGPX
#: anchor_object.xhp
@@ -106,14 +133,23 @@ msgctxt ""
msgid "To character"
msgstr "ወደ ባህሪ"
-#. qoghU
+#. 7UsDq
#: anchor_object.xhp
msgctxt ""
"anchor_object.xhp\n"
"par_id3151235\n"
"help.text"
-msgid "Anchors the selected item to a character."
-msgstr "የ ተመረጠውን እቃ ወደ ባህሪ ማስቆሚያ"
+msgid "Anchors the selected object to the paragraph that contains the character to which the anchor is attached. The reference point for the object is the start of the paragraph that contains the character."
+msgstr ""
+
+#. Awa37
+#: anchor_object.xhp
+msgctxt ""
+"anchor_object.xhp\n"
+"par_id261634292505179\n"
+"help.text"
+msgid "For example, if you split the paragraph at a point before the anchor, the reference point moves to the start of the new paragraph and the object moves relative to that point. If you join the paragraph to the one before it, the reference point moves to the start of the combined paragraph and the object moves to a position relative to that."
+msgstr ""
#. ekiBZ
#: anchor_object.xhp
@@ -124,14 +160,14 @@ msgctxt ""
msgid "To paragraph"
msgstr "ወደ አንቀጽ"
-#. EYzAE
+#. F7oaB
#: anchor_object.xhp
msgctxt ""
"anchor_object.xhp\n"
"par_id3155094\n"
"help.text"
-msgid "Anchors the selected item to the current paragraph."
-msgstr "የ ተመረጠውን እቃ ወደ አሁኑ አንቀጽ ማስቆሚያ"
+msgid "Anchors the selected object to the current paragraph."
+msgstr ""
#. MWaB5
#: anchor_object.xhp
@@ -142,14 +178,14 @@ msgctxt ""
msgid "To page"
msgstr "ወደ ገጽ"
-#. i5YBs
+#. HnFeA
#: anchor_object.xhp
msgctxt ""
"anchor_object.xhp\n"
"par_id3155144\n"
"help.text"
-msgid "Anchors the selected item to the current page."
-msgstr "የ ተመረጠውን እቃ ወደ አሁኑ ገጽ ማስቆሚያ"
+msgid "Anchors the selected object to the current page."
+msgstr ""
#. ZEdjj
#: anchor_object.xhp
@@ -169,14 +205,14 @@ msgctxt ""
msgid "Anchors the selected item to the surrounding frame."
msgstr "የ ተመረጠውን እቃ በ ክፈፍ ዙሪያ ማስቆሚያ"
-#. C2FTe
+#. qbj2P
#: anchor_object.xhp
msgctxt ""
"anchor_object.xhp\n"
"par_id3145715\n"
"help.text"
-msgid "When you insert an object, graphic, or frame, an anchor icon appears where the item is anchored. You can position an anchored item by dragging the item to another location. To change the anchoring options of an item, right-click the item, and then choose an option from the <item type=\"menuitem\">Anchor</item> submenu."
-msgstr "እቃ በሚያስገቡበት ጊዜ ንድፎች ወይንም ክፈፍ የ መልሕቅ ምልክት ይታያል እቃው ባለበት አካባቢ እቃውን በመጎተት ወደ ሌላ ቦታ ማንቀሳቀስ ይችላሉ የ እቃውን ማስቆሚያ ምርጫዎች ለ መቀየር በ ቀኝ-ይጫኑ እቃው ላይ እና ከዛ ይምረጡ ምርጫውን ከ <item type=\"menuitem\"> መልሕቅ </item> ንዑስ ዝርዝር ውስጥ"
+msgid "When you insert an object, graphic, or frame, an anchor icon appears where the object is anchored. You can move an anchor or, keeping other object constraints in mind, position an object relative to the anchor's reference point by dragging the object. To change the anchoring options of an item, right-click the item, and then choose an option from the <item type=\"menuitem\">Anchor</item> submenu."
+msgstr ""
#. EkgCv
#: arrange_chapters.xhp
@@ -9898,14 +9934,14 @@ msgctxt ""
msgid "Using Styles From Another Document or Template"
msgstr "ከ ሌሎች ሰነዶች ወይንም ቴምፕሌቶች ዘዴዎችን መጠቀሚያ"
-#. PT73U
+#. Fudzg
#: load_styles.xhp
msgctxt ""
"load_styles.xhp\n"
"bm_id3145086\n"
"help.text"
-msgid "<bookmark_value>formatting styles; importing</bookmark_value> <bookmark_value>styles; importing from other files</bookmark_value> <bookmark_value>importing;styles from other files</bookmark_value> <bookmark_value>loading;styles from other files</bookmark_value>"
-msgstr "<bookmark_value>አቀራረብ ዘዴዎች: ማምጫ</bookmark_value> <bookmark_value>ዘዴዎች: ማምጫ ከ ሌሎች ፋይሎች</bookmark_value> <bookmark_value>ማምጫ: ዘዴዎች ከ ሌሎች ፋይሎች</bookmark_value> <bookmark_value>መጫኛ: ዘዴዎች ከ ሌሎች ፋይሎች</bookmark_value>"
+msgid "<bookmark_value>formatting styles; importing</bookmark_value> <bookmark_value>styles; importing from other files</bookmark_value> <bookmark_value>importing;styles from other files</bookmark_value> <bookmark_value>loading;styles from other files</bookmark_value>"
+msgstr ""
#. poRMw
#: load_styles.xhp
@@ -9952,14 +9988,14 @@ msgctxt ""
msgid "Choose <emph>View - Styles</emph> or"
msgstr "ይምረጡ <emph> መመልከቻ - ዘዴዎች </emph> ወይንም"
-#. 2YWVV
+#. ECJr5
#: load_styles.xhp
msgctxt ""
"load_styles.xhp\n"
"par_id441529889103330\n"
"help.text"
-msgid "<embedvar href=\"text/swriter/00/stylesmenu.xhp#sms\" markup=\"keep\"/> to open the <emph>Styles</emph> sidebar deck."
-msgstr "<embedvar href=\"text/swriter/00/stylesmenu.xhp#sms\" markup=\"keep\"/> ለ መክፈት የ <emph> ዘዴዎች </emph> የ ጎን መደርደሪያ ማሳረፊያ:"
+msgid "Choose <emph>Styles - Manage Styles</emph> or <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <emph>Styles</emph> sidebar deck."
+msgstr ""
#. mHDNg
#: load_styles.xhp
@@ -10510,14 +10546,14 @@ msgctxt ""
msgid "Adding Line Numbers"
msgstr "የ መስመር ቁጥሮች መጨመሪያ"
-#. BbESK
+#. DviqV
#: numbering_lines.xhp
msgctxt ""
"numbering_lines.xhp\n"
"bm_id3150101\n"
"help.text"
-msgid "<bookmark_value>line numbers</bookmark_value> <bookmark_value>text; line numbers</bookmark_value> <bookmark_value>paragraphs;line numbers</bookmark_value> <bookmark_value>lines of text; numbering</bookmark_value> <bookmark_value>numbering; lines</bookmark_value> <bookmark_value>numbers; line numbering</bookmark_value> <bookmark_value>marginal numbers on text pages</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>"
+msgid "<bookmark_value>line numbers</bookmark_value> <bookmark_value>text; line numbers</bookmark_value> <bookmark_value>paragraphs;line numbers</bookmark_value> <bookmark_value>lines of text; numbering</bookmark_value> <bookmark_value>numbering; lines</bookmark_value> <bookmark_value>numbers; line numbering</bookmark_value> <bookmark_value>marginal numbers on text pages</bookmark_value>"
+msgstr ""
#. qVEcP
#: numbering_lines.xhp
@@ -10609,14 +10645,14 @@ msgctxt ""
msgid "Select <emph>Show numbering</emph>."
msgstr "ይምረጡ <emph> ቁጥር መስጫ ማሳያ </emph>"
-#. tbCSy
+#. rCniA
#: numbering_lines.xhp
msgctxt ""
"numbering_lines.xhp\n"
"par_id3154248\n"
"help.text"
-msgid "Press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command+T</caseinline><defaultinline>F11</defaultinline></switchinline> to open the <emph>Styles</emph> window, and then click the <emph>Paragraph Styles</emph> icon."
-msgstr "ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ትእዛዝ+T </caseinline><defaultinline>F11</defaultinline></switchinline> ለ መክፈት የ <emph> ዘዴዎች </emph> መስኮት: እና ከዛ ይጫኑ የ <emph> አንቀጽ ዘዴዎች </emph> ምልክት"
+msgid "Press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command+T </caseinline><defaultinline>F11</defaultinline></switchinline> to open the <emph>Styles</emph> window, and then click the <emph>Paragraph Styles</emph> icon."
+msgstr ""
#. Fwn8P
#: numbering_lines.xhp
@@ -10780,13 +10816,13 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/06180000.xhp\" name=\"Tools - Line Numbering\">Tools - Line Numbering</link>"
msgstr "<link href=\"text/swriter/01/06180000.xhp\" name=\"Tools - Line Numbering\">መሳሪያዎች - መስመር ቁጥር መስጫ</link>"
-#. PG4ys
+#. RZff6
#: numbering_lines.xhp
msgctxt ""
"numbering_lines.xhp\n"
"par_id3153960\n"
"help.text"
-msgid "Format - Paragraph - <embedvar href=\"text/swriter/01/05030800.xhp#outlinelisth1\"/>"
+msgid "Format - Paragraph - <link href=\"text/swriter/01/05030800.xhp\" name=\"Numbering_link\">Outline & List</link>"
msgstr ""
#. foq8S
@@ -10942,14 +10978,14 @@ msgctxt ""
msgid "Inserting and Deleting Page Breaks"
msgstr "የ ገጽ መጨረሻ ማስገቢያ እና ማጥፊያ"
-#. jCD3e
+#. 2xdB8
#: page_break.xhp
msgctxt ""
"page_break.xhp\n"
"bm_id3155183\n"
"help.text"
-msgid "<bookmark_value>page breaks; inserting and deleting</bookmark_value> <bookmark_value>inserting; page breaks</bookmark_value> <bookmark_value>deleting;page breaks</bookmark_value> <bookmark_value>pages; inserting/deleting page breaks</bookmark_value> <bookmark_value>manual page breaks</bookmark_value> <bookmark_value>tables;deleting page breaks before</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>"
+msgid "<bookmark_value>inserting; page breaks</bookmark_value> <bookmark_value>deleting;page breaks</bookmark_value> <bookmark_value>pages; inserting/deleting page breaks</bookmark_value> <bookmark_value>manual page breaks</bookmark_value> <bookmark_value>tables;deleting page breaks before</bookmark_value>"
+msgstr ""
#. eCabG
#: page_break.xhp
@@ -11050,14 +11086,23 @@ msgctxt ""
msgid "Clear the <emph>Break</emph> check box."
msgstr "ማጽጃ የ <emph>መጨረሻ</emph> ምልክት ማድረጊያ ሳጥን"
-#. xYtzm
+#. TS5bX
#: page_break.xhp
msgctxt ""
"page_break.xhp\n"
-"par_id3154249\n"
+"hd_id151633462071702\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04010000.xhp\" name=\"Insert Break dialog\">Insert Break dialog</link>"
-msgstr "<link href=\"text/swriter/01/04010000.xhp\" name=\"Insert Break dialog\">የ መጨረሻ ንግግር ማስገቢያ</link>"
+msgid "To Quickly Switch Between Portrait and Landscape Page Layout"
+msgstr ""
+
+#. xLfpN
+#: page_break.xhp
+msgctxt ""
+"page_break.xhp\n"
+"par_id121633463140208\n"
+"help.text"
+msgid "Read the help page <link href=\"text/swriter/guide/pageorientation.xhp\" name=\"pageorientation_link\">Changing Page Orientation</link> to learn more about advanced configurations that can be defined concerning page orientation."
+msgstr ""
#. 5GEmu
#: pagebackground.xhp
@@ -11707,14 +11752,14 @@ msgctxt ""
msgid "Changing Page Orientation (Landscape or Portrait)"
msgstr "የ ገጽ አቀራረብ ለመቀየር (በመሬት አቀማመጥ ወይንም ምስል)"
-#. 3mWPy
+#. uj4MU
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"bm_id9683828\n"
"help.text"
-msgid "<bookmark_value>page styles;orientation/scope</bookmark_value> <bookmark_value>page formats; changing individual pages</bookmark_value> <bookmark_value>formatting; changing individual pages</bookmark_value> <bookmark_value>portrait and landscape</bookmark_value> <bookmark_value>landscape and portrait</bookmark_value> <bookmark_value>printing;portrait/landscape format</bookmark_value> <bookmark_value>orientation of pages</bookmark_value> <bookmark_value>paper orientation</bookmark_value> <bookmark_value>pages;orientation</bookmark_value> <bookmark_value>sideways orientation of pages</bookmark_value> <bookmark_value>scope of page styles</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> <bookmark_value>የ ወረቀት አቅጣጫ</bookmark_value> <bookmark_value>የ ገጾች: አቅጣጫ</bookmark_value> <bookmark_value>የ ጎን በኩል አቅጣጫ ለ ገጾች</bookmark_value> <bookmark_value>ክልል የ ገጽ ዘዴዎች</bookmark_value>"
+msgid "<bookmark_value>page styles;orientation/scope</bookmark_value> <bookmark_value>page formats; changing individual pages</bookmark_value> <bookmark_value>formatting; changing individual pages</bookmark_value> <bookmark_value>portrait and landscape</bookmark_value> <bookmark_value>landscape and portrait</bookmark_value> <bookmark_value>printing;portrait/landscape format</bookmark_value> <bookmark_value>orientation of pages</bookmark_value> <bookmark_value>paper orientation</bookmark_value> <bookmark_value>pages;orientation</bookmark_value> <bookmark_value>sideways orientation of pages</bookmark_value> <bookmark_value>scope of page styles</bookmark_value>"
+msgstr ""
#. ETQJ7
#: pageorientation.xhp
@@ -11923,6 +11968,69 @@ msgctxt ""
msgid "Now you have defined a proper page style with the name \"My Landscape\". To apply the new style, double-click the \"My Landscape\" page style in the <emph>Styles</emph> window. All pages in the current scope of page styles will be changed. If you defined the \"next style\" to be a different style, only the first page of the current scope of page styles will be changed."
msgstr "እርስዎ አሁን ገልጸዋል መደበኛ የ ገጽ ዘዴ የ ተሰየመ \"የ እኔ መሬት አቀማመጥ\": አዲሱን ዘዴ ለ መፈጸም: ሁለት ጊዜ-ይጫኑ በ \"የ እኔ መሬት አቀማመጥ\" ገጽ ዘዴ ውስጥ በ <emph> ዘዴዎች </emph> መስኮት ውስጥ: ሁሉንም ገጾች በ አሁኑ ክልል ውስጥ የ ገጽ ዘዴዎች በሙሉ ይቀየራል: እርስዎ ከ ገለጹ \"የሚቀጥለውን ዘዴ\" ልዩ ዘዴ እንዲሆን: የ መጀመሪያው ገጽ ለ አሁኑ የ ገጽ ዘዴዎች ክልል ብቻ ይቀየራል"
+#. bfdGy
+#: pageorientation.xhp
+msgctxt ""
+"pageorientation.xhp\n"
+"hd_id151633462071702\n"
+"help.text"
+msgid "To Quickly Switch Between Portrait and Landscape Page Layout"
+msgstr ""
+
+#. EEW2C
+#: pageorientation.xhp
+msgctxt ""
+"pageorientation.xhp\n"
+"par_id51633462108943\n"
+"help.text"
+msgid "The default template provided by %PRODUCTNAME Writer offers several page layout styles, among which the <emph>Default Page Style</emph> has Portrait orientation and the <emph>Landscape</emph> style has landscape orientation."
+msgstr ""
+
+#. aMkMn
+#: pageorientation.xhp
+msgctxt ""
+"pageorientation.xhp\n"
+"par_id321633462254730\n"
+"help.text"
+msgid "These styles can be used to quickly switch between portrait and landscape orientation by inserting manual breaks and choosing the appropriate page styles as described below:"
+msgstr ""
+
+#. dQpYD
+#: pageorientation.xhp
+msgctxt ""
+"pageorientation.xhp\n"
+"par_id21633462303911\n"
+"help.text"
+msgid "Place the cursor where the page break is to be inserted."
+msgstr ""
+
+#. sTgyV
+#: pageorientation.xhp
+msgctxt ""
+"pageorientation.xhp\n"
+"par_id841633462305362\n"
+"help.text"
+msgid "Go to <menuitem>Insert - More Breaks - Manual Break</menuitem>. The <emph>Insert Break</emph> dialog will open."
+msgstr ""
+
+#. fpcnD
+#: pageorientation.xhp
+msgctxt ""
+"pageorientation.xhp\n"
+"par_id31633462305839\n"
+"help.text"
+msgid "Choose the option <emph>Page break</emph> and in the <emph>Page Style</emph> drop-down list choose the page style to be applied to the page after the break (Default Page Style, Landscape, etc)."
+msgstr ""
+
+#. z3nCn
+#: pageorientation.xhp
+msgctxt ""
+"pageorientation.xhp\n"
+"par_id51633462306574\n"
+"help.text"
+msgid "If the applied has to be changed again at a certain point in the document (for instance, to switch back from landscape to portrait orientation), place the cursor at this point and repeat the steps previously described."
+msgstr ""
+
#. JyqRA
#: pageorientation.xhp
msgctxt ""
@@ -18646,13 +18754,13 @@ msgctxt ""
msgid "Numbering and Paragraph Styles"
msgstr ""
-#. FfEcT
+#. 4rqSe
#: using_numbering.xhp
msgctxt ""
"using_numbering.xhp\n"
"bm_id3155174\n"
"help.text"
-msgid "<bookmark_value>numbering;manually/by styles</bookmark_value><bookmark_value>list styles</bookmark_value><bookmark_value>manual numbering in text</bookmark_value><bookmark_value>paragraph styles;numbering</bookmark_value>"
+msgid "<bookmark_value>numbering;manually/by styles</bookmark_value> <bookmark_value>list styles</bookmark_value> <bookmark_value>manual numbering in text</bookmark_value> <bookmark_value>paragraph styles;numbering</bookmark_value>"
msgstr ""
#. FizBP
@@ -18673,13 +18781,13 @@ msgctxt ""
msgid "You can apply numbering to a paragraph manually or with a paragraph style."
msgstr "እርስዎ ቁጥር መስጣት ይችላሉ ለ አንቀጽ በ እጅ ወይንም የ አንቀጽ ዘዴ በ መጠቀም"
-#. QEp87
+#. iJRcw
#: using_numbering.xhp
msgctxt ""
"using_numbering.xhp\n"
"par_id31616154131555\n"
"help.text"
-msgid "If you want numbered headings, use <menuitem>Tools - </menuitem><embedvar href=\"text/swriter/01/06060000.xhp#ChapNumh1\"/>, instead of numbering manually."
+msgid "If you want numbered headings, use <menuitem>Tools - </menuitem><link href=\"text/swriter/01/06060000.xhp\" name=\"chap_num_link\">Chapter Numbering</link>, instead of numbering manually."
msgstr ""
#. Dh8sW
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 053656436de..c0d68d39601 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: 2021-10-04 19:52+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
"PO-Revision-Date: 2021-09-12 07:36+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/am/>\n"
@@ -1146,6 +1146,16 @@ msgctxt ""
msgid "~Insert or Edit..."
msgstr "~ማስገቢያ ወይንም ማረሚያ..."
+#. dHdzP
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Commands..uno:InsertPivotTableNBLabel\n"
+"Label\n"
+"value.text"
+msgid "~Insert or Edit Pivot Table..."
+msgstr ""
+
#. vqC2u
#: CalcCommands.xcu
msgctxt ""
@@ -3156,15 +3166,15 @@ msgctxt ""
msgid "Merge Cells"
msgstr "ክፍሎች ማዋሀጃ"
-#. GGRNG
+#. APBqu
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:SplitCell\n"
"Label\n"
"value.text"
-msgid "Split Cells"
-msgstr "ክፍሎች መክፈያ"
+msgid "Unmerge Cells"
+msgstr ""
#. qJGdH
#: CalcCommands.xcu
@@ -3176,6 +3186,16 @@ msgctxt ""
msgid "M~erge and Center Cells"
msgstr "ማ~ዋሀጃ እና ክፍሎቹን መሀከል ማድረጊያ"
+#. ET4vB
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Commands..uno:ToggleMergeCells\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Merge and center or unmerge cells depending on the current toggle state"
+msgstr ""
+
#. VZsps
#: CalcCommands.xcu
msgctxt ""
@@ -4356,15 +4376,15 @@ msgctxt ""
msgid "Cell ~Comments"
msgstr "የ ክፍል ~አስተያየቶች"
-#. 3xhAF
+#. yqd4v
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:MergeCellsMenu\n"
"Label\n"
"value.text"
-msgid "M~erge Cells"
-msgstr "ክፍሎች ማ~ዋሀጃ"
+msgid "M~erge and Unmerge Cells"
+msgstr ""
#. G3E3Q
#: CalcCommands.xcu
@@ -18586,6 +18606,16 @@ msgctxt ""
msgid "Line Spacing: 1"
msgstr "የ መስመር ክፍተት: 1"
+#. jmAwA
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:SpacePara115\n"
+"Label\n"
+"value.text"
+msgid "Line Spacing: 1.15"
+msgstr ""
+
#. q8wJt
#: GenericCommands.xcu
msgctxt ""
diff --git a/source/am/sc/messages.po b/source/am/sc/messages.po
index dc508d8e19d..ec8403e645d 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: 2021-09-27 19:09+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
"PO-Revision-Date: 2021-09-10 21:17+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/am/>\n"
@@ -27094,314 +27094,344 @@ msgctxt "pastespecial|paste_values_only|tooltip_text"
msgid "Values Only"
msgstr "ዋጋዎች ብቻ"
+#. tDknw
+#: sc/uiconfig/scalc/ui/pastespecial.ui:141
+msgctxt "pastespecial|extended_tip|paste_values_only"
+msgid "Pastes numbers, text, dates and the results of formulas."
+msgstr ""
+
#. CTEKF
-#: sc/uiconfig/scalc/ui/pastespecial.ui:148
+#: sc/uiconfig/scalc/ui/pastespecial.ui:153
msgctxt "pastespecial|paste_values_formats|label"
msgid "Values & _Formats"
msgstr ""
#. 7GuDi
-#: sc/uiconfig/scalc/ui/pastespecial.ui:152
+#: sc/uiconfig/scalc/ui/pastespecial.ui:157
msgctxt "pastespecial|paste_values_formats|tooltip_text"
msgid "Values & Formats"
msgstr "ዋጋዎች & አቀራረብ"
+#. FjJPU
+#: sc/uiconfig/scalc/ui/pastespecial.ui:164
+msgctxt "pastespecial|extended_tip|paste_values_formats"
+msgid "Pastes cell values, formula results and formats applied to cells."
+msgstr ""
+
#. Rb8KR
-#: sc/uiconfig/scalc/ui/pastespecial.ui:166
+#: sc/uiconfig/scalc/ui/pastespecial.ui:176
msgctxt "pastespecial|paste_format|label"
msgid "Formats Onl_y"
msgstr ""
#. Cvyjn
-#: sc/uiconfig/scalc/ui/pastespecial.ui:170
+#: sc/uiconfig/scalc/ui/pastespecial.ui:180
msgctxt "pastespecial|paste_format|tooltip_text"
msgid "Formats Only"
msgstr ""
+#. Jhc4o
+#: sc/uiconfig/scalc/ui/pastespecial.ui:187
+msgctxt "pastespecial|extended_tip|paste_formats"
+msgid "Pastes only the formats from the source range without changing the values in the destination range."
+msgstr ""
+
#. YGdhH
-#: sc/uiconfig/scalc/ui/pastespecial.ui:184
+#: sc/uiconfig/scalc/ui/pastespecial.ui:199
msgctxt "pastespecial|paste_transpose|label"
msgid "_Transpose All"
msgstr ""
#. sbLGi
-#: sc/uiconfig/scalc/ui/pastespecial.ui:188
+#: sc/uiconfig/scalc/ui/pastespecial.ui:203
msgctxt "pastespecial|paste_transpose|tooltip_text"
msgid "Transpose All"
msgstr ""
+#. 3BC6U
+#: sc/uiconfig/scalc/ui/pastespecial.ui:210
+msgctxt "pastespecial|extended_tip|paste_transpose"
+msgid "Pastes cell contents transposed, hence columns are converted to rows."
+msgstr ""
+
#. 4ETCT
-#: sc/uiconfig/scalc/ui/pastespecial.ui:209
+#: sc/uiconfig/scalc/ui/pastespecial.ui:229
msgctxt "pastespecial|cbImmediately"
msgid "_Run immediately"
msgstr ""
+#. 7a9JE
+#: sc/uiconfig/scalc/ui/pastespecial.ui:238
+msgctxt "pastespecial|extended_tip|cbImmediately"
+msgid "Check this option to run the preset immediately. Uncheck it to manipulate the options before clicking OK."
+msgstr ""
+
#. YD43i
-#: sc/uiconfig/scalc/ui/pastespecial.ui:229
+#: sc/uiconfig/scalc/ui/pastespecial.ui:254
msgctxt "pastespecial|frPresets"
msgid "Presets"
msgstr ""
#. g6DfA
-#: sc/uiconfig/scalc/ui/pastespecial.ui:265
+#: sc/uiconfig/scalc/ui/pastespecial.ui:290
msgctxt "pastespecial|paste_all"
msgid "_All"
msgstr "_ሁሉንም"
#. Labin
-#: sc/uiconfig/scalc/ui/pastespecial.ui:273
+#: sc/uiconfig/scalc/ui/pastespecial.ui:298
msgctxt "pastespecial|extended_tip|paste_all"
msgid "Pastes all cell contents, comments, formats, and objects into the current document."
msgstr ""
#. qzFbg
-#: sc/uiconfig/scalc/ui/pastespecial.ui:284
+#: sc/uiconfig/scalc/ui/pastespecial.ui:309
msgctxt "pastespecial|numbers"
msgid "_Numbers"
msgstr "_ቁጥሮች"
#. SCVEu
-#: sc/uiconfig/scalc/ui/pastespecial.ui:292
+#: sc/uiconfig/scalc/ui/pastespecial.ui:317
msgctxt "pastespecial|extended_tip|numbers"
msgid "Inserts cells containing numbers."
msgstr "ቁጥሮች የያዙ ክፍሎች ማስገቢያ"
#. BSEWE
-#: sc/uiconfig/scalc/ui/pastespecial.ui:303
+#: sc/uiconfig/scalc/ui/pastespecial.ui:328
msgctxt "pastespecial|text"
msgid "Te_xt"
msgstr "ጽ_ሁፍ"
#. JWDk5
-#: sc/uiconfig/scalc/ui/pastespecial.ui:311
+#: sc/uiconfig/scalc/ui/pastespecial.ui:336
msgctxt "pastespecial|extended_tip|text"
msgid "Inserts cells containing text."
msgstr "ጽሁፍ የያዙ ክፍሎች ማስገቢያ"
#. DBaJD
-#: sc/uiconfig/scalc/ui/pastespecial.ui:322
+#: sc/uiconfig/scalc/ui/pastespecial.ui:347
msgctxt "pastespecial|datetime"
msgid "_Date & time"
msgstr "_ቀን & ሰአት"
#. jq6Md
-#: sc/uiconfig/scalc/ui/pastespecial.ui:330
+#: sc/uiconfig/scalc/ui/pastespecial.ui:355
msgctxt "pastespecial|extended_tip|datetime"
msgid "Inserts cells containing date and time values."
msgstr ""
#. aHXF8
-#: sc/uiconfig/scalc/ui/pastespecial.ui:341
+#: sc/uiconfig/scalc/ui/pastespecial.ui:366
msgctxt "pastespecial|formats"
msgid "For_mats"
msgstr "For_mats"
#. ehyEf
-#: sc/uiconfig/scalc/ui/pastespecial.ui:349
+#: sc/uiconfig/scalc/ui/pastespecial.ui:374
msgctxt "pastespecial|extended_tip|formats"
msgid "Inserts cell format attributes."
msgstr ""
#. NT4Am
-#: sc/uiconfig/scalc/ui/pastespecial.ui:360
+#: sc/uiconfig/scalc/ui/pastespecial.ui:385
msgctxt "pastespecial|comments"
msgid "_Comments"
msgstr "_አስተያየቶች"
#. 3uP7i
-#: sc/uiconfig/scalc/ui/pastespecial.ui:368
+#: sc/uiconfig/scalc/ui/pastespecial.ui:393
msgctxt "pastespecial|extended_tip|comments"
msgid "Inserts comments that are attached to cells. If you want to add the comments to the existing cell content, select the \"Add\" operation."
msgstr ""
#. YZQBh
-#: sc/uiconfig/scalc/ui/pastespecial.ui:379
+#: sc/uiconfig/scalc/ui/pastespecial.ui:404
msgctxt "pastespecial|objects"
msgid "Ob_jects"
msgstr "እቃ_ዎች"
#. DZsnr
-#: sc/uiconfig/scalc/ui/pastespecial.ui:387
+#: sc/uiconfig/scalc/ui/pastespecial.ui:412
msgctxt "pastespecial|extended_tip|objects"
msgid "Inserts objects contained within the selected cell range. These can be OLE objects, chart objects, or drawing objects."
msgstr ""
#. jrjYA
-#: sc/uiconfig/scalc/ui/pastespecial.ui:398
+#: sc/uiconfig/scalc/ui/pastespecial.ui:423
msgctxt "pastespecial|formulas"
msgid "F_ormulas"
msgstr ""
#. Na5Ba
-#: sc/uiconfig/scalc/ui/pastespecial.ui:406
+#: sc/uiconfig/scalc/ui/pastespecial.ui:431
msgctxt "pastespecial|extended_tip|formulas"
msgid "Inserts cells containing formulae."
msgstr ""
#. UtpWA
-#: sc/uiconfig/scalc/ui/pastespecial.ui:421
+#: sc/uiconfig/scalc/ui/pastespecial.ui:446
msgctxt "pastespecial|label1"
msgid "Paste"
msgstr ""
#. fonBJ
-#: sc/uiconfig/scalc/ui/pastespecial.ui:452
+#: sc/uiconfig/scalc/ui/pastespecial.ui:477
msgctxt "pastespecial|no_shift"
msgid "Don't sh_ift"
msgstr "አትቀ_ይር"
#. q3Xv3
-#: sc/uiconfig/scalc/ui/pastespecial.ui:461
+#: sc/uiconfig/scalc/ui/pastespecial.ui:486
msgctxt "pastespecial|extended_tip|no_shift"
msgid "Inserted cells replace the target cells."
msgstr ""
#. RuiU6
-#: sc/uiconfig/scalc/ui/pastespecial.ui:473
+#: sc/uiconfig/scalc/ui/pastespecial.ui:498
msgctxt "pastespecial|move_down"
msgid "_Down"
msgstr ""
#. BNALN
-#: sc/uiconfig/scalc/ui/pastespecial.ui:482
+#: sc/uiconfig/scalc/ui/pastespecial.ui:507
msgctxt "pastespecial|extended_tip|move_down"
msgid "Target cells are shifted downward when you insert cells from the clipboard."
msgstr ""
#. obSAt
-#: sc/uiconfig/scalc/ui/pastespecial.ui:494
+#: sc/uiconfig/scalc/ui/pastespecial.ui:519
msgctxt "pastespecial|move_right"
msgid "_Right"
msgstr "ወደ _ቀኝ"
#. GEFe7
-#: sc/uiconfig/scalc/ui/pastespecial.ui:503
+#: sc/uiconfig/scalc/ui/pastespecial.ui:528
msgctxt "pastespecial|extended_tip|move_right"
msgid "Target cells are shifted to the right when you insert cells from the clipboard."
msgstr ""
#. fzYTm
-#: sc/uiconfig/scalc/ui/pastespecial.ui:519
+#: sc/uiconfig/scalc/ui/pastespecial.ui:544
msgctxt "pastespecial|label4"
msgid "Shift Cells"
msgstr "ክፍሎች መቀየሪያ"
#. nuJd9
-#: sc/uiconfig/scalc/ui/pastespecial.ui:563
+#: sc/uiconfig/scalc/ui/pastespecial.ui:588
msgctxt "pastespecial|link"
msgid "As _Link"
msgstr ""
#. Bg9dc
-#: sc/uiconfig/scalc/ui/pastespecial.ui:571
+#: sc/uiconfig/scalc/ui/pastespecial.ui:596
msgctxt "pastespecial|extended_tip|link"
msgid "Inserts the cell range as a link, so that changes made to the cells in the source file are updated in the target file. To ensure that changes made to empty cells in the source file are updated in the target file, ensure that the \"Paste All\" option is also selected."
msgstr ""
#. qt6LA
-#: sc/uiconfig/scalc/ui/pastespecial.ui:582
+#: sc/uiconfig/scalc/ui/pastespecial.ui:607
msgctxt "pastespecial|transpose"
msgid "Trans_pose"
msgstr ""
#. P3eE4
-#: sc/uiconfig/scalc/ui/pastespecial.ui:590
+#: sc/uiconfig/scalc/ui/pastespecial.ui:615
msgctxt "pastespecial|extended_tip|transpose"
msgid "The rows of the range in the clipboard are pasted to become columns of the output range. The columns of the range in the clipboard are pasted to become rows."
msgstr ""
#. eG52z
-#: sc/uiconfig/scalc/ui/pastespecial.ui:601
+#: sc/uiconfig/scalc/ui/pastespecial.ui:626
msgctxt "pastespecial|skip_empty"
msgid "_Skip empty cells"
msgstr ""
#. BodqB
-#: sc/uiconfig/scalc/ui/pastespecial.ui:605
+#: sc/uiconfig/scalc/ui/pastespecial.ui:630
msgctxt "pastespecial|skip_empty"
msgid "If enabled, blank cells in source will not override the target."
msgstr "ይህን ካስቻሉ: ባዶ ክፍሎች በ ምንጭ ውስጥ በ ኢላማው ላይ ደርቦ አይጽፍም"
#. u2Cms
-#: sc/uiconfig/scalc/ui/pastespecial.ui:610
+#: sc/uiconfig/scalc/ui/pastespecial.ui:635
msgctxt "pastespecial|extended_tip|skip_empty"
msgid "Empty cells from the clipboard do not replace target cells. If you use this option in conjunction with the \"Multiply\" or the \"Divide\" operation, the operation is not applied to the target cell of an empty cell in the clipboard."
msgstr ""
#. jTFAJ
-#: sc/uiconfig/scalc/ui/pastespecial.ui:625
+#: sc/uiconfig/scalc/ui/pastespecial.ui:650
msgctxt "pastespecial|OptionsFrame"
msgid "Options"
msgstr ""
#. nJiy4
-#: sc/uiconfig/scalc/ui/pastespecial.ui:656
+#: sc/uiconfig/scalc/ui/pastespecial.ui:681
msgctxt "pastespecial|none"
msgid "Non_e"
msgstr "ምን_ም"
#. 7GKDG
-#: sc/uiconfig/scalc/ui/pastespecial.ui:665
+#: sc/uiconfig/scalc/ui/pastespecial.ui:690
msgctxt "pastespecial|extended_tip|none"
msgid "Does not apply an operation when you insert the cell range from the clipboard. The contents of the clipboard will replace existing cell contents."
msgstr ""
#. CEsbt
-#: sc/uiconfig/scalc/ui/pastespecial.ui:677
+#: sc/uiconfig/scalc/ui/pastespecial.ui:702
msgctxt "pastespecial|add"
msgid "_Add"
msgstr "_መጨመሪያ"
#. bNyh2
-#: sc/uiconfig/scalc/ui/pastespecial.ui:686
+#: sc/uiconfig/scalc/ui/pastespecial.ui:711
msgctxt "pastespecial|extended_tip|add"
msgid "Adds the values in the clipboard cells to the values in the target cells. Also, if the clipboard only contains comments, adds the comments to the target cells."
msgstr ""
#. iFTvh
-#: sc/uiconfig/scalc/ui/pastespecial.ui:698
+#: sc/uiconfig/scalc/ui/pastespecial.ui:723
msgctxt "pastespecial|subtract"
msgid "_Subtract"
msgstr "_መቀነሻ"
#. 2SKbT
-#: sc/uiconfig/scalc/ui/pastespecial.ui:707
+#: sc/uiconfig/scalc/ui/pastespecial.ui:732
msgctxt "pastespecial|extended_tip|subtract"
msgid "Subtracts the values in the clipboard cells from the values in the target cells."
msgstr ""
#. zdDUB
-#: sc/uiconfig/scalc/ui/pastespecial.ui:719
+#: sc/uiconfig/scalc/ui/pastespecial.ui:744
msgctxt "pastespecial|multiply"
msgid "_Multiply"
msgstr ""
#. jkRDm
-#: sc/uiconfig/scalc/ui/pastespecial.ui:728
+#: sc/uiconfig/scalc/ui/pastespecial.ui:753
msgctxt "pastespecial|extended_tip|multiply"
msgid "Multiplies the values in the clipboard cells with the values in the target cells."
msgstr ""
#. 7Nd8u
-#: sc/uiconfig/scalc/ui/pastespecial.ui:740
+#: sc/uiconfig/scalc/ui/pastespecial.ui:765
msgctxt "pastespecial|divide"
msgid "_Divide"
msgstr ""
#. 9VKdS
-#: sc/uiconfig/scalc/ui/pastespecial.ui:749
+#: sc/uiconfig/scalc/ui/pastespecial.ui:774
msgctxt "pastespecial|extended_tip|divide"
msgid "Divides the values in the target cells by the values in the clipboard cells."
msgstr ""
#. 9otLM
-#: sc/uiconfig/scalc/ui/pastespecial.ui:765
+#: sc/uiconfig/scalc/ui/pastespecial.ui:790
msgctxt "pastespecial|label2"
msgid "Operations"
msgstr "ተግባሮች"
#. ypkML
-#: sc/uiconfig/scalc/ui/pastespecial.ui:800
+#: sc/uiconfig/scalc/ui/pastespecial.ui:825
msgctxt "pastespecial|extended_tip|PasteSpecial"
msgid "Inserts the contents of the clipboard into the current file in a format that you can specify."
msgstr "መጠቆሚያው ባለበት ቦታ የ ቁራጭ ሰሌዳ ይዞታ ማስገቢያ ወደ አሁኑ ፋይል አቀራረብ እርስዎ በሚወስኑት "
diff --git a/source/am/sd/messages.po b/source/am/sd/messages.po
index 5690b1e30fe..2f2342d0e45 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: 2021-09-14 12:01+0200\n"
+"POT-Creation-Date: 2021-10-20 13:09+0200\n"
"PO-Revision-Date: 2021-09-05 11:21+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/am/>\n"
@@ -4964,241 +4964,253 @@ msgid "Text Animation"
msgstr "የ ጽሁፍ እንቅስቃሴ"
#. FcztB
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:132
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:140
msgctxt "customanimationspanel|extended_tip|custom_animation_list"
msgid "The animation list displays all animations for the current slide."
msgstr "የ እንቅስቃሴ ዝርዝር የሚያሳየው ሁሉንም እንቅስቃሴዎች ለ አሁኑ ተንሸራታች ነው:"
-#. KFRTW
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:163
+#. VBxbo
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:171
msgctxt "customanimationspanel|STR_CUSTOMANIMATION_LIST_HELPTEXT"
-msgid "First select the slide element and then click 'Add...' to add an animation effect."
+msgid "First select the slide element and then click 'Add' to add an animation effect."
+msgstr ""
+
+#. wWeBD
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:215
+msgctxt "customanimationspanel|lbEffect"
+msgid "Effects"
+msgstr ""
+
+#. WGWNA
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:236
+msgctxt "customanimationspanel|add"
+msgid "_Add"
msgstr ""
#. nRqGR
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:195
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:240
msgctxt "customanimationspanel|add_effect|tooltip_text"
msgid "Add Effect"
msgstr "ውጤት መጨመሪያ"
#. CskWF
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:199
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:245
msgctxt "customanimationspanel|extended_tip|add_effect"
msgid "Adds another animation effect for the selected object on the slide."
msgstr "በ ተንሸራታች ላይ ለ ተመረጠው እቃ ተጨማሪ ሌላ የ እንቅስቃሴ ውጤት መጨመሪያ "
#. vitMM
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:214
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:260
msgctxt "customanimationspanel|remove_effect|tooltip_text"
msgid "Remove Effect"
msgstr "ውጤት ማስወገጃ"
#. pvCFG
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:218
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:264
msgctxt "customanimationspanel|extended_tip|remove_effect"
msgid "Removes the selected animation effects from the animation list."
msgstr "የተመረጠውን የ እንቅስቃሴ ውጤት ከ እንቅስቃሴ ዝርዝር ውስጥ ማስወገጃ"
#. 3wHRp
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:233
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:279
msgctxt "customanimationspanel|move_up|tooltip_text"
msgid "Move Up"
msgstr "ወደ ላይ ማንቀሳቀሻ"
#. buR2G
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:237
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:283
msgctxt "customanimationspanel|extended_tip|move_up"
msgid "Click one of the buttons to move the selected animation effect up or down in the list."
msgstr "ይጫኑ ከ ቁልፎቹ አንዱን ለ ማንቀሳቀስ የ ተመረጠውን እንቅስቃሴ ውጤት ወደ ላይ ወይንም ወደ ታች ከ ዝርዝር ውስጥ"
#. jEksa
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:252
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:298
msgctxt "customanimationspanel|move_down|tooltip_text"
msgid "Move Down"
msgstr "ወደ ታች ማንቀሳቀሻ"
#. x82hp
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:256
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:302
msgctxt "customanimationspanel|extended_tip|move_down"
msgid "Click one of the buttons to move the selected animation effect up or down in the list."
msgstr "ይጫኑ ከ ቁልፎቹ አንዱን ለ ማንቀሳቀስ የ ተመረጠውን እንቅስቃሴ ውጤት ወደ ላይ ወይንም ወደ ታች ከ ዝርዝር ውስጥ"
#. wCc89
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:285
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:324
msgctxt "customanimationspanel|categorylabel"
msgid "Category:"
msgstr "ምድብ:"
-#. EHRAp
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:299
-msgctxt "customanimationspanel|effectlabel"
-msgid "Effect:"
-msgstr "ተጽዕኖው:"
-
#. jQcZZ
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:314
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:338
msgctxt "customanimationspanel|categorylb"
msgid "Entrance"
msgstr "መግቢያ"
#. 2qTvP
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:315
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:339
msgctxt "customanimationspanel|categorylb"
msgid "Emphasis"
msgstr "ማጋነኛ"
#. TZeh8
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:316
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:340
msgctxt "customanimationspanel|categorylb"
msgid "Exit"
msgstr "መውጫ"
#. N8Xvu
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:317
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:341
msgctxt "customanimationspanel|categorylb"
msgid "Motion Paths"
msgstr "የ እንቅስቃሴ መንገድ"
#. qDYCQ
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:318
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:342
msgctxt "customanimationspanel|categorylb"
msgid "Misc Effects"
msgstr "የ ተለያዩ ውጤቶች"
#. ozsMp
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:322
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:346
msgctxt "customanimationspanel|extended_tip|categorylb"
msgid "Select an animation effect category."
msgstr "የ እንቅስቃሴ ውጤት ምድብ ይምረጡ "
+#. EHRAp
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:363
+msgctxt "customanimationspanel|effectlabel"
+msgid "Effect:"
+msgstr "ተጽዕኖው:"
+
#. MEJrn
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:366
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:412
msgctxt "customanimationspanel|extended_tip|effect_list"
msgid "Select an animation effect."
msgstr "የ እንቅስቃሴ ውጤት ይምረጡ "
+#. LGuGy
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:428
+msgctxt "customanimationspanel|effect_label"
+msgid "Options"
+msgstr ""
+
#. GDYfC
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:403
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:445
msgctxt "customanimationspanel|start_effect"
msgid "_Start:"
msgstr "_መጀመሪያ:"
-#. 8AUq9
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:417
-msgctxt "customanimationspanel|effect_property"
-msgid "_Direction:"
-msgstr "_አቅጣጫ:"
-
-#. QWndb
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:431
-msgctxt "customanimationspanel|effect_duration"
-msgid "D_uration:"
-msgstr "የ_ሚፈጀው ጊዜ:"
-
#. DhPiJ
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:446
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:459
msgctxt "customanimationspanel|start_effect_list"
msgid "On click"
msgstr "በምጫን ጊዜ"
#. FNFGr
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:447
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:460
msgctxt "customanimationspanel|start_effect_list"
msgid "With previous"
msgstr "ቀደም ካለው ጋር"
#. dCfj4
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:448
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:461
msgctxt "customanimationspanel|start_effect_list"
msgid "After previous"
msgstr "ቀደም ካለው በኋላ"
#. iboET
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:452
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:465
msgctxt "customanimationspanel|extended_tip|start_effect_list"
msgid "Displays when the selected animation effect should be started."
msgstr "የ ተመረጠው እንቅስቃሴ ውጤት የሚጀምርበትን ማሳያ "
+#. 8AUq9
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:479
+msgctxt "customanimationspanel|effect_property"
+msgid "_Direction:"
+msgstr "_አቅጣጫ:"
+
#. mMYic
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:481
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:492
msgctxt "customanimationspanel|more_properties|tooltip_text"
msgid "Options"
msgstr "ምርጫዎች"
#. PE6vL
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:486
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:497
msgctxt "customanimationspanel|extended_tip|more_properties"
msgid "Specifies additional properties for the selected element in the Custom Animations pane."
msgstr "ለ ተመረጠው አካል ተጨማሪ ባህሪዎች መወሰኛ እንቅስቃሴ ማስተካከያ ክፍል"
+#. QWndb
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:511
+msgctxt "customanimationspanel|effect_duration"
+msgid "D_uration:"
+msgstr "የ_ሚፈጀው ጊዜ:"
+
#. Ewipq
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:505
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:529
msgctxt "customanimationspanel|extended_tip|anim_duration"
msgid "Specifies the duration of the selected animation effect."
msgstr "የ ተመረጠውን የ እንቅስቃሴ ውጤት የሚፈጀውን ጊዜ መወሰኛ "
#. 2cGAb
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:519
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:543
msgctxt "customanimationspanel|delay_label"
msgid "_Delay:"
msgstr "_ማዘግያ:"
#. g6bR3
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:538
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:561
msgctxt "customanimationspanel|extended_tip|delay_value"
msgid "The animation starts delayed by this amount of time."
msgstr "እንቅስቃሴው የሚጀምረው በ ተወሰነው ማዘግያ ጊዜ መጠን ነው "
-#. FgkKZ
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:562
-msgctxt "customanimationspanel|effect_label"
-msgid "Effect"
-msgstr "ውጤት"
-
#. J2bC5
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:600
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:583
msgctxt "customanimationspanel|auto_preview"
msgid "Automatic Preview"
msgstr "ራሱ በራሱ ቅድመ እይታ"
#. GufhE
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:608
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:591
msgctxt "customanimationspanel|extended_tip|auto_preview"
msgid "Select to preview new or edited effects on the slide while you assign them."
msgstr "የ ተመረጠውን አዲስ ወይንም የ ታረመ ውጤት በ ተንሸራታች ላይ በ ቅድመ እይታ ለማየት ይምረጡ"
#. KP8UC
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:620
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:603
msgctxt "customanimationspanel|play"
msgid "Play"
msgstr "ማጫወቻ"
#. Bn67v
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:624
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:607
msgctxt "customanimationspanel|play|tooltip_text"
msgid "Preview Effect"
msgstr "የውጤቱ ቅድመ እይታ"
#. sUTTG
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:631
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:614
msgctxt "customanimationspanel|extended_tip|play"
msgid "Plays the selected animation effect in the preview."
msgstr "የ ተመረጠውን እንቅስቃሴው ውጤት ማጫወቻ በ ቅድመ እይታ "
#. LBEzG
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:658
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:626
msgctxt "customanimationspanel|box1_label"
msgid "Animation Deck"
msgstr "እንቅስቃሴ ማሳረፊያ"
#. bUvjt
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:671
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:638
msgctxt "customanimationspanel|custom_animation_list_label"
msgid "Animation List"
msgstr "የ እንቅስቃሴ ዝርዝር"
#. F7AZL
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:690
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:694
msgctxt "customanimationspanel|extended_tip|CustomAnimationsPanel"
msgid "Assigns effects to selected objects."
msgstr "ለ ተመረጡት እቃዎች ውጤት መመደቢያ "
diff --git a/source/am/sfx2/messages.po b/source/am/sfx2/messages.po
index 113b63118a5..7dea1ee0988 100644
--- a/source/am/sfx2/messages.po
+++ b/source/am/sfx2/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-27 19:09+0200\n"
-"PO-Revision-Date: 2021-09-12 07:36+0000\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
+"PO-Revision-Date: 2021-10-24 05:36+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/am/>\n"
"Language: am\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.8.1\n"
"X-POOTLE-MTIME: 1559687799.000000\n"
#. bHbFE
@@ -3040,147 +3040,147 @@ msgid "Contains descriptive information about the document."
msgstr "ስለ ሰነዱ መግለጫ መረጃ ይዟል"
#. tC2rt
-#: sfx2/uiconfig/ui/developmenttool.ui:96
+#: sfx2/uiconfig/ui/developmenttool.ui:117
msgctxt "developmenttool|dom_current_selection_toggle-tooltip"
msgid "Current Selection In Document"
msgstr "የ አሁኑ ምርጫ በ ሰነድ ውስጥ"
#. Po2S3
-#: sfx2/uiconfig/ui/developmenttool.ui:97
+#: sfx2/uiconfig/ui/developmenttool.ui:118
msgctxt "developmenttool|dom_current_selection_toggle"
msgid "Current Selection"
msgstr "የ አሁኑ ምርጫ"
#. eB6NR
-#: sfx2/uiconfig/ui/developmenttool.ui:109
+#: sfx2/uiconfig/ui/developmenttool.ui:130
msgctxt "developmenttool|dom_refresh_button-tooltip"
msgid "Refresh Document Model Tree View"
msgstr ""
#. FD2yt
-#: sfx2/uiconfig/ui/developmenttool.ui:110
+#: sfx2/uiconfig/ui/developmenttool.ui:131
msgctxt "developmenttool|dom_refresh_button"
msgid "Refresh"
msgstr "ማነቃቂያ"
#. qVgcX
-#: sfx2/uiconfig/ui/developmenttool.ui:155
+#: sfx2/uiconfig/ui/developmenttool.ui:177
msgctxt "developmenttool|object"
msgid "Object"
msgstr "እቃ"
#. x6GLB
-#: sfx2/uiconfig/ui/developmenttool.ui:203
+#: sfx2/uiconfig/ui/developmenttool.ui:226
msgctxt "developmenttool|tooltip-back"
msgid "Back"
msgstr "ወደ ኋላ"
#. SinPk
-#: sfx2/uiconfig/ui/developmenttool.ui:204
+#: sfx2/uiconfig/ui/developmenttool.ui:227
msgctxt "developmenttool|back"
msgid "Back"
msgstr "ወደ ኋላ"
#. 4CBb3
-#: sfx2/uiconfig/ui/developmenttool.ui:217
+#: sfx2/uiconfig/ui/developmenttool.ui:240
msgctxt "developmenttool|tooltip-inspect"
msgid "Inspect"
msgstr "መመርመሪያ"
#. vCciB
-#: sfx2/uiconfig/ui/developmenttool.ui:218
+#: sfx2/uiconfig/ui/developmenttool.ui:241
msgctxt "developmenttool|inspect"
msgid "Inspect"
msgstr "መመርመሪያ"
#. nFMXe
-#: sfx2/uiconfig/ui/developmenttool.ui:231
+#: sfx2/uiconfig/ui/developmenttool.ui:254
msgctxt "developmenttool|tooltip-refresh"
msgid "Refresh"
msgstr "ማነቃቂያ"
#. CFuvW
-#: sfx2/uiconfig/ui/developmenttool.ui:232
+#: sfx2/uiconfig/ui/developmenttool.ui:255
msgctxt "developmenttool|refresh"
msgid "Refresh"
msgstr "ማነቃቂያ"
#. 6gFmn
-#: sfx2/uiconfig/ui/developmenttool.ui:256
+#: sfx2/uiconfig/ui/developmenttool.ui:278
msgctxt "developmenttool|classname"
msgid "Class name:"
msgstr "የ ክፍል ስም:"
#. a9j7f
-#: sfx2/uiconfig/ui/developmenttool.ui:319
-#: sfx2/uiconfig/ui/developmenttool.ui:364
-#: sfx2/uiconfig/ui/developmenttool.ui:418
+#: sfx2/uiconfig/ui/developmenttool.ui:343
+#: sfx2/uiconfig/ui/developmenttool.ui:392
+#: sfx2/uiconfig/ui/developmenttool.ui:450
msgctxt "developmenttool|name"
msgid "Name"
msgstr "ስም"
#. VFqAa
-#: sfx2/uiconfig/ui/developmenttool.ui:338
+#: sfx2/uiconfig/ui/developmenttool.ui:363
msgctxt "developmenttool|interfaces"
msgid "Interfaces"
msgstr "ገጽታዎች"
#. iCdWe
-#: sfx2/uiconfig/ui/developmenttool.ui:386
+#: sfx2/uiconfig/ui/developmenttool.ui:415
msgctxt "developmenttool|services"
msgid "Services"
msgstr "ግልጋሎቶች"
#. H7pYE
-#: sfx2/uiconfig/ui/developmenttool.ui:432
+#: sfx2/uiconfig/ui/developmenttool.ui:465
msgctxt "developmenttool|value"
msgid "Value"
msgstr "ዋጋ"
#. Jjkqh
-#: sfx2/uiconfig/ui/developmenttool.ui:446
+#: sfx2/uiconfig/ui/developmenttool.ui:479
msgctxt "developmenttool|type"
msgid "Type"
msgstr "አይነት"
#. zpXuY
-#: sfx2/uiconfig/ui/developmenttool.ui:460
+#: sfx2/uiconfig/ui/developmenttool.ui:493
msgctxt "developmenttool|info"
msgid "Info"
msgstr "መረጃ"
#. AUktw
-#: sfx2/uiconfig/ui/developmenttool.ui:511
+#: sfx2/uiconfig/ui/developmenttool.ui:544
msgctxt "developmenttool|properties"
msgid "Properties"
msgstr "ባህሪዎች"
#. wGJtn
-#: sfx2/uiconfig/ui/developmenttool.ui:538
+#: sfx2/uiconfig/ui/developmenttool.ui:574
msgctxt "developmenttool|method"
msgid "Method"
msgstr "ዘዴ"
#. EnGfg
-#: sfx2/uiconfig/ui/developmenttool.ui:552
+#: sfx2/uiconfig/ui/developmenttool.ui:589
msgctxt "developmenttool|returntype"
msgid "Return Type"
msgstr ""
#. AKnSa
-#: sfx2/uiconfig/ui/developmenttool.ui:566
+#: sfx2/uiconfig/ui/developmenttool.ui:603
msgctxt "developmenttool|parameters"
msgid "Parameters"
msgstr ""
#. tmttq
-#: sfx2/uiconfig/ui/developmenttool.ui:580
+#: sfx2/uiconfig/ui/developmenttool.ui:617
msgctxt "developmenttool|implementation_class"
msgid "Implementation Class"
msgstr ""
#. Q2CBK
-#: sfx2/uiconfig/ui/developmenttool.ui:602
+#: sfx2/uiconfig/ui/developmenttool.ui:639
msgctxt "developmenttool|methods"
msgid "Methods"
msgstr "ዘዴዎች"
@@ -4455,7 +4455,7 @@ msgid "Do_n’t Save"
msgstr "አታስ_ቀምጥ"
#. dzVqL
-#: sfx2/uiconfig/ui/querysavedialog.ui:53
+#: sfx2/uiconfig/ui/querysavedialog.ui:56
msgctxt "querysavedialog|save"
msgid "_Save"
msgstr "_ማስቀመጫ"
@@ -4806,7 +4806,7 @@ msgstr "ማጥፊያ..."
#: sfx2/uiconfig/ui/tabbarcontents.ui:24
msgctxt "tabbar|locktaskpanel"
msgid "Dock"
-msgstr ""
+msgstr "ማሳረፊያ"
#. GNBR3
#: sfx2/uiconfig/ui/tabbarcontents.ui:33
diff --git a/source/am/svtools/messages.po b/source/am/svtools/messages.po
index 80cd60ebb08..076499e074f 100644
--- a/source/am/svtools/messages.po
+++ b/source/am/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-20 13:03+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
"PO-Revision-Date: 2021-06-21 20:43+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/am/>\n"
@@ -5010,6 +5010,12 @@ msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Klingon"
msgstr ""
+#. xFYhC
+#: svtools/inc/langtab.hrc:437
+msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
+msgid "English (Israel)"
+msgstr ""
+
#. fXSja
#: svtools/uiconfig/ui/addresstemplatedialog.ui:8
msgctxt "addresstemplatedialog|AddressTemplateDialog"
@@ -5113,355 +5119,355 @@ msgid "Modify dimensions"
msgstr ""
#. pyd6J
-#: svtools/uiconfig/ui/graphicexport.ui:146
+#: svtools/uiconfig/ui/graphicexport.ui:145
msgctxt "graphicexport|label5"
msgid "Width:"
msgstr "ስፋት:"
#. drQDY
-#: svtools/uiconfig/ui/graphicexport.ui:160
+#: svtools/uiconfig/ui/graphicexport.ui:159
msgctxt "graphicexport|label6"
msgid "Height:"
msgstr "እርዝመት:"
#. exCyd
-#: svtools/uiconfig/ui/graphicexport.ui:171
+#: svtools/uiconfig/ui/graphicexport.ui:170
msgctxt "graphicexport|modifyresolutioncb"
msgid "Modify resolution"
msgstr ""
#. ZWxGB
-#: svtools/uiconfig/ui/graphicexport.ui:189
+#: svtools/uiconfig/ui/graphicexport.ui:188
msgctxt "graphicexport|resolutionft"
msgid "Resolution:"
msgstr "ሪዞሊሽን:"
#. 2rwEJ
-#: svtools/uiconfig/ui/graphicexport.ui:209
+#: svtools/uiconfig/ui/graphicexport.ui:208
msgctxt "graphicexport|extended_tip|widthmf"
msgid "Specifies the measurement units."
msgstr "የ መለኪያ ክፍሎችን መወሰኛ"
#. BPaB3
-#: svtools/uiconfig/ui/graphicexport.ui:229
+#: svtools/uiconfig/ui/graphicexport.ui:228
msgctxt "graphicexport|extended_tip|heightmf"
msgid "Specifies the height."
msgstr "እርዝመቱን ይወስናል"
#. Da3fv
-#: svtools/uiconfig/ui/graphicexport.ui:249
+#: svtools/uiconfig/ui/graphicexport.ui:248
msgctxt "graphicexport|extended_tip|resolutionmf"
msgid "Enter the image resolution. Select the measurement units from the list box."
msgstr "የ ምስል ሪዞሊሽን ያስገቡ: ይምረጡ የ መለኪያ ክፍል ከ ዝርዝር ሳጥን ውስጥ "
#. S9aHs
-#: svtools/uiconfig/ui/graphicexport.ui:263
+#: svtools/uiconfig/ui/graphicexport.ui:262
msgctxt "graphicexport|liststore2"
msgid "inches"
msgstr "ኢንችስ"
#. dCstP
-#: svtools/uiconfig/ui/graphicexport.ui:264
+#: svtools/uiconfig/ui/graphicexport.ui:263
msgctxt "graphicexport|liststore2"
msgid "cm"
msgstr "ሴ/ሚ"
#. X5dLV
-#: svtools/uiconfig/ui/graphicexport.ui:265
+#: svtools/uiconfig/ui/graphicexport.ui:264
msgctxt "graphicexport|liststore2"
msgid "mm"
msgstr "ሚ/ሚ"
#. 6vWVJ
-#: svtools/uiconfig/ui/graphicexport.ui:266
+#: svtools/uiconfig/ui/graphicexport.ui:265
msgctxt "graphicexport|liststore2"
msgid "points"
msgstr "ነጥቦች"
#. ZqyAj
-#: svtools/uiconfig/ui/graphicexport.ui:267
+#: svtools/uiconfig/ui/graphicexport.ui:266
msgctxt "graphicexport|liststore2"
msgid "pixels"
msgstr "ፒክስልስ"
#. QL8mE
-#: svtools/uiconfig/ui/graphicexport.ui:271
+#: svtools/uiconfig/ui/graphicexport.ui:270
msgctxt "graphicexport|extended_tip|widthlb"
msgid "Specifies the width."
msgstr "ስፋቱን ይወስናል"
#. kYLvv
-#: svtools/uiconfig/ui/graphicexport.ui:285
+#: svtools/uiconfig/ui/graphicexport.ui:284
msgctxt "graphicexport|liststore1"
msgid "pixels/cm"
msgstr "ፒክስልስ/ሴ/ሚ"
#. zjmFd
-#: svtools/uiconfig/ui/graphicexport.ui:286
+#: svtools/uiconfig/ui/graphicexport.ui:285
msgctxt "graphicexport|liststore1"
msgid "pixels/inch"
msgstr "ፒክስልስ/ኢንችስ"
#. iMZW3
-#: svtools/uiconfig/ui/graphicexport.ui:287
+#: svtools/uiconfig/ui/graphicexport.ui:286
msgctxt "graphicexport|liststore1"
msgid "pixels/meter"
msgstr "ፒክስልስ/ሚትር"
#. ND5ki
-#: svtools/uiconfig/ui/graphicexport.ui:291
+#: svtools/uiconfig/ui/graphicexport.ui:290
msgctxt "graphicexport|extended_tip|resolutionlb"
msgid "Enter the image resolution. Select the measurement units from the list box."
msgstr "የ ምስል ሪዞሊሽን ያስገቡ: ይምረጡ የ መለኪያ ክፍል ከ ዝርዝር ሳጥን ውስጥ "
#. ENaqm
-#: svtools/uiconfig/ui/graphicexport.ui:309
+#: svtools/uiconfig/ui/graphicexport.ui:308
msgctxt "graphicexport|label1"
msgid "Size"
msgstr "መጠን"
#. Dc5fy
-#: svtools/uiconfig/ui/graphicexport.ui:335
+#: svtools/uiconfig/ui/graphicexport.ui:334
msgctxt "graphicexport|extended_tip|colordepthlb"
msgid "Select the color depth from 8 bit grayscale or 24 bit true color."
msgstr "ይምረጡ የ ቀለም ጥልቀት ከ 8 ቢት ጥቁር እና ነጭ ወይንም 24 ቢት እውነተኛ ቀለም "
#. hFaPC
-#: svtools/uiconfig/ui/graphicexport.ui:344
+#: svtools/uiconfig/ui/graphicexport.ui:343
msgctxt "graphicexport|label2"
msgid "Color Depth"
msgstr "የ ቀለም ጥልቀት"
#. 5v8Jn
-#: svtools/uiconfig/ui/graphicexport.ui:380
+#: svtools/uiconfig/ui/graphicexport.ui:379
msgctxt "graphicexport|extended_tip|compressionjpgnf"
msgid "Sets the quality for the export. Choose from a low quality with minimal file size, up to a high quality and big file size."
msgstr ""
#. Tk5y2
-#: svtools/uiconfig/ui/graphicexport.ui:409
+#: svtools/uiconfig/ui/graphicexport.ui:408
msgctxt "graphicexport|label9"
msgid "Quality"
msgstr "ጥራት"
#. AHkNV
-#: svtools/uiconfig/ui/graphicexport.ui:445
+#: svtools/uiconfig/ui/graphicexport.ui:444
msgctxt "graphicexport|extended_tip|compressionpngnf"
msgid "Sets the compression for the export. A high compression means a smaller, but slower to load image."
msgstr "ለ መላኪያ ማመቂያ ማሰናጃ: ከፍተኛ ማመቂያ ማለት አነስተኛ ነገር ግን ምስሉን ለ መጫን ዝግተኛ ማለት ነው"
#. f4LYz
-#: svtools/uiconfig/ui/graphicexport.ui:474
+#: svtools/uiconfig/ui/graphicexport.ui:473
msgctxt "graphicexport|label"
msgid "Compression"
msgstr "ማመቂያ"
#. hQadL
-#: svtools/uiconfig/ui/graphicexport.ui:494
+#: svtools/uiconfig/ui/graphicexport.ui:493
msgctxt "graphicexport|rlecb"
msgid "RLE encoding"
msgstr "RLE encoding"
#. DqpKW
-#: svtools/uiconfig/ui/graphicexport.ui:505
+#: svtools/uiconfig/ui/graphicexport.ui:504
msgctxt "graphicexport|extended_tip|rlecb"
msgid "Applies RLE (Run Length Encoding) to the BMP graphics."
msgstr "መፈጸሚያ የ RLE (Run Length Encoding) ወደ የ BMP ንድፎች "
#. EA7BF
-#: svtools/uiconfig/ui/graphicexport.ui:514
+#: svtools/uiconfig/ui/graphicexport.ui:513
msgctxt "graphicexport|label3"
msgid "Compression"
msgstr "ማመቂያ"
#. qiLZK
-#: svtools/uiconfig/ui/graphicexport.ui:534
+#: svtools/uiconfig/ui/graphicexport.ui:533
msgctxt "graphicexport|interlacedcb"
msgid "Interlaced"
msgstr "የተሳሰራ"
#. cLvu6
-#: svtools/uiconfig/ui/graphicexport.ui:545
+#: svtools/uiconfig/ui/graphicexport.ui:544
msgctxt "graphicexport|extended_tip|interlacedcb"
msgid "Specifies whether the graphic is to be saved in interlaced mode."
msgstr "የ ተቆላለፈው የ ንድፍ ዘዴ ይቀመጥ እንደሆን መወሰኛ "
#. BkbD3
-#: svtools/uiconfig/ui/graphicexport.ui:554
+#: svtools/uiconfig/ui/graphicexport.ui:553
msgctxt "graphicexport|label12"
msgid "Mode"
msgstr "ዘዴ"
#. Nhj88
-#: svtools/uiconfig/ui/graphicexport.ui:574
+#: svtools/uiconfig/ui/graphicexport.ui:573
msgctxt "graphicexport|savetransparencycb"
msgid "Save transparency"
msgstr "ግልጽነቱን ማስቀመጫ"
#. kZ3uW
-#: svtools/uiconfig/ui/graphicexport.ui:585
+#: svtools/uiconfig/ui/graphicexport.ui:584
msgctxt "graphicexport|extended_tip|savetransparencycb"
msgid "Specifies whether to save the background of the picture as transparent. Only objects will be visible in the GIF image. Use the Color Replacer to set the transparent color in the picture."
msgstr "የ መደብ ስእሉን በ ውስጡ ብርሃን እንደሚያሳልፍ ተደርጎ ይቀመጥ እንደሆን መወሰኛ: እቃዎች ብቻ ይታያሉ በ GIF ምስል: ይጠቀሙ የ ቀለም መቀየሪያ ለ ማሰናዳት በ ውስጡ ብርሃን የሚያሳልፍ ቀለም በ ስእል ውስጥ "
#. ZPmXf
-#: svtools/uiconfig/ui/graphicexport.ui:594
+#: svtools/uiconfig/ui/graphicexport.ui:593
msgctxt "graphicexport|labe"
msgid "Drawing Objects"
msgstr "እቃዎች መሳያ"
#. KMCxb
-#: svtools/uiconfig/ui/graphicexport.ui:621
+#: svtools/uiconfig/ui/graphicexport.ui:620
msgctxt "graphicexport|binarycb"
msgid "Binary"
msgstr "Binary"
#. qFTuj
-#: svtools/uiconfig/ui/graphicexport.ui:630
+#: svtools/uiconfig/ui/graphicexport.ui:629
msgctxt "graphicexport|extended_tip|binarycb"
msgid "Exports the file in binary format. The resulting file is smaller than a text file."
msgstr "ፋይል በ binary አቀራረብ መላኪያ: የ ውጤቱ ፋይል አነስተኛ ነው ከ ጽሁፍ ፋይል "
#. 8cZsH
-#: svtools/uiconfig/ui/graphicexport.ui:641
+#: svtools/uiconfig/ui/graphicexport.ui:640
msgctxt "graphicexport|textcb"
msgid "Text"
msgstr "ጽሁፍ"
#. GFbg2
-#: svtools/uiconfig/ui/graphicexport.ui:650
+#: svtools/uiconfig/ui/graphicexport.ui:649
msgctxt "graphicexport|extended_tip|textcb"
msgid "Exports the file in ASCII text format. The resulting file is larger than a binary file."
msgstr "ፋይል በ ASCII ጽሁፍ አቀራረብ መላኪያ: የ ውጤቱ ፋይል ከፍተኛ ነው ከ binary ፋይል "
#. ECUb9
-#: svtools/uiconfig/ui/graphicexport.ui:665
+#: svtools/uiconfig/ui/graphicexport.ui:664
msgctxt "graphicexport|label16"
msgid "Encoding"
msgstr "Encoding"
#. aeV52
-#: svtools/uiconfig/ui/graphicexport.ui:697
+#: svtools/uiconfig/ui/graphicexport.ui:696
msgctxt "graphicexport|tiffpreviewcb"
msgid "Image preview (TIFF)"
msgstr "የምስል ቅድመ እይታ (TIFF)"
#. H8vtD
-#: svtools/uiconfig/ui/graphicexport.ui:706
+#: svtools/uiconfig/ui/graphicexport.ui:705
msgctxt "graphicexport|extended_tip|tiffpreviewcb"
msgid "Specifies whether a preview image is exported in the TIFF format together with the actual PostScript file."
msgstr "መወሰኛ የ ቅድመ እይታ ምስል ይላክ እንደሆን በ TIFF አቀራረብ አንድ ላይ ከ ዋናው የ PostScript ፋይል ጋር "
#. AeEJu
-#: svtools/uiconfig/ui/graphicexport.ui:717
+#: svtools/uiconfig/ui/graphicexport.ui:716
msgctxt "graphicexport|epsipreviewcb"
msgid "Interchange (EPSI)"
msgstr "ማቀያየሪያ (EPSI)"
#. gLbUQ
-#: svtools/uiconfig/ui/graphicexport.ui:725
+#: svtools/uiconfig/ui/graphicexport.ui:724
msgctxt "graphicexport|extended_tip|epsipreviewcb"
msgid "Specifies whether a monochrome preview graphic in EPSI format is exported together with the PostScript file. This format only contains printable characters from the 7-bit ASCII code."
msgstr "መወሰኛ የ monochrome በ ቅድሚያ መመልከቻ ንድፍ በ EPSI አቀራረብ ይላክ እንደሆን አንድ ላይ ከ PostScript file. ይህ አቀራረብ የያዘው ሊታተሙ የሚችሉ ባህሪዎችን ነው ከ 7-bit ASCII code."
#. sRbZb
-#: svtools/uiconfig/ui/graphicexport.ui:740
+#: svtools/uiconfig/ui/graphicexport.ui:739
msgctxt "graphicexport|label17"
msgid "Preview"
msgstr "ቅድመ እይታ"
#. Jfbgx
-#: svtools/uiconfig/ui/graphicexport.ui:767
+#: svtools/uiconfig/ui/graphicexport.ui:766
msgctxt "graphicexport|color1rb"
msgid "Color"
msgstr "ቀለም"
#. LNHEi
-#: svtools/uiconfig/ui/graphicexport.ui:776
+#: svtools/uiconfig/ui/graphicexport.ui:775
msgctxt "graphicexport|extended_tip|color1rb"
msgid "Exports the file in color."
msgstr "ፋይል በቀለም መላኪያ "
#. VeZFK
-#: svtools/uiconfig/ui/graphicexport.ui:787
+#: svtools/uiconfig/ui/graphicexport.ui:786
msgctxt "graphicexport|color2rb"
msgid "Grayscale"
msgstr "ግራጫማ"
#. TWEx8
-#: svtools/uiconfig/ui/graphicexport.ui:796
+#: svtools/uiconfig/ui/graphicexport.ui:795
msgctxt "graphicexport|extended_tip|color2rb"
msgid "Exports the file in grayscale tones."
msgstr "ፋይል በ ጥቁር እና ነጭ ቀለም መላኪያ"
#. BbSGF
-#: svtools/uiconfig/ui/graphicexport.ui:811
+#: svtools/uiconfig/ui/graphicexport.ui:810
msgctxt "graphicexport|label18"
msgid "Color Format"
msgstr "የ ቀለም አቀራረብ"
#. b6J7X
-#: svtools/uiconfig/ui/graphicexport.ui:838
+#: svtools/uiconfig/ui/graphicexport.ui:837
msgctxt "graphicexport|level1rb"
msgid "Level 1"
msgstr "ደረጃ 1"
#. pEcBC
-#: svtools/uiconfig/ui/graphicexport.ui:847
+#: svtools/uiconfig/ui/graphicexport.ui:846
msgctxt "graphicexport|extended_tip|level1rb"
msgid "Compression is not available at this level. Select the Level 1 option if your PostScript printer does not offer the capabilities of Level 2."
msgstr "ማመቂያ በዚህ ደረጃ ዝግጁ አይደለም: ይምረጡ ይህን ደረጃ 1 ምርጫ የ እርስዎ PostScript ማተሚያ የማያቀርብ ከሆነ የ ደረጃ 2. "
#. kuCNX
-#: svtools/uiconfig/ui/graphicexport.ui:858
+#: svtools/uiconfig/ui/graphicexport.ui:857
msgctxt "graphicexport|level2rb"
msgid "Level 2"
msgstr "ደረጃ 2"
#. wiWrE
-#: svtools/uiconfig/ui/graphicexport.ui:867
+#: svtools/uiconfig/ui/graphicexport.ui:866
msgctxt "graphicexport|extended_tip|level2rb"
msgid "Select the Level 2 option if your output device supports colored bitmaps, palette graphics and compressed graphics."
msgstr "ይምረጡ የ ደረጃ 2 ምርጫ የ እርስዎ ውጤት አካል የሚደግፍ ከሆነ ባለ ቀለም ቢትማፕስ: ንድፎች ማቅለሚያ እና የ ታመቁ ንድፎች "
#. JUuBZ
-#: svtools/uiconfig/ui/graphicexport.ui:882
+#: svtools/uiconfig/ui/graphicexport.ui:881
msgctxt "graphicexport|label19"
msgid "Version"
msgstr "እትም"
#. FjkbL
-#: svtools/uiconfig/ui/graphicexport.ui:909
+#: svtools/uiconfig/ui/graphicexport.ui:908
msgctxt "graphicexport|compresslzw"
msgid "LZW encoding"
msgstr "LZW encoding"
#. 5cYFM
-#: svtools/uiconfig/ui/graphicexport.ui:918
+#: svtools/uiconfig/ui/graphicexport.ui:917
msgctxt "graphicexport|extended_tip|compresslzw"
msgid "LZW compression is the compression of a file into a smaller file using a table-based lookup algorithm."
msgstr "የ LZW ማመቂያ ፋይል ወደ አነስተኛ መጠን ማመቂያ ነው ሰንጠረዥ-መሰረት ባደረገ መፈለጊያ algorithm."
#. vXGXe
-#: svtools/uiconfig/ui/graphicexport.ui:929
+#: svtools/uiconfig/ui/graphicexport.ui:928
msgctxt "graphicexport|compressnone"
msgid "None"
msgstr "ምንም"
#. kW3QD
-#: svtools/uiconfig/ui/graphicexport.ui:938
+#: svtools/uiconfig/ui/graphicexport.ui:937
msgctxt "graphicexport|extended_tip|compressnone"
msgid "Specifies that you do not wish to use compression."
msgstr "እርስዎ ማመቂያ መጠቀም እንደማይፈልጉ መወሰኛ "
#. ghAqZ
-#: svtools/uiconfig/ui/graphicexport.ui:953
+#: svtools/uiconfig/ui/graphicexport.ui:952
msgctxt "graphicexport|label20"
msgid "Compression"
msgstr "ማመቂያ"
#. LmAeC
-#: svtools/uiconfig/ui/graphicexport.ui:992
+#: svtools/uiconfig/ui/graphicexport.ui:991
msgctxt "graphicexport|label4"
msgid "Information"
msgstr "መረጃ"
@@ -5809,7 +5815,7 @@ msgid "For the Skia changes to take effect, %PRODUCTNAME must be restarted."
msgstr ""
#. v9FjK
-#: svtools/uiconfig/ui/thineditcontrol.ui:69
+#: svtools/uiconfig/ui/thineditcontrol.ui:72
msgctxt "thineditcontrol|button"
msgid "Pick Date"
msgstr ""
diff --git a/source/am/svx/messages.po b/source/am/svx/messages.po
index 509c465e9af..023edb3f9c7 100644
--- a/source/am/svx/messages.po
+++ b/source/am/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-20 13:03+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
"PO-Revision-Date: 2021-09-10 21:17+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/am/>\n"
@@ -9938,125 +9938,125 @@ msgctxt "RID_SVXSTR_TRANSPARENCY"
msgid "Transparency:"
msgstr ""
-#. zvqUJ
+#. PGuXa
#. strings related to borders
#: include/svx/strings.hrc:1777
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
-msgid "Set No Borders"
+msgid "No Borders"
msgstr ""
-#. ABKEK
+#. LzhYZ
#: include/svx/strings.hrc:1778
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
-msgid "Set Outer Border Only"
+msgid "Outer Border Only"
msgstr ""
-#. ygU8P
+#. EniNF
#: include/svx/strings.hrc:1779
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
-msgid "Set Outer Border and Horizontal Lines"
+msgid "Outer Border and Horizontal Lines"
msgstr ""
-#. q5KJ8
+#. BuDWX
#: include/svx/strings.hrc:1780
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
-msgid "Set Outer Border and All Inner Lines"
+msgid "Outer Border and All Inner Lines"
msgstr ""
-#. TFuZb
+#. ckL2Z
#: include/svx/strings.hrc:1781
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
-msgid "Set Outer Border and Vertical Lines"
+msgid "Outer Border and Vertical Lines"
msgstr ""
-#. H5s9X
+#. Q9hj4
#: include/svx/strings.hrc:1782
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
-msgid "Set Outer Border Without Changing Inner Lines"
+msgid "Outer Border Without Changing Inner Lines"
msgstr ""
-#. T5crG
+#. b7wCr
#: include/svx/strings.hrc:1783
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
-msgid "Set Diagonal Lines Only"
+msgid "Diagonal Lines Only"
msgstr ""
-#. oodJY
+#. 8r98a
#: include/svx/strings.hrc:1784
-msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALLEFT"
-msgid "Set Diagonal Left Border"
+msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
+msgid "Diagonal Down Border"
msgstr ""
-#. gFFgD
+#. P4FGE
#: include/svx/strings.hrc:1785
-msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALRIGHT"
-msgid "Set Diagonal Right Border"
+msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
+msgid "Diagonal Up Border"
msgstr ""
-#. D6FCE
+#. VxBrT
#: include/svx/strings.hrc:1786
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
-msgid "Set Criss-Cross Border"
+msgid "Criss-Cross Border"
msgstr ""
-#. S6AAA
+#. hTi3j
#: include/svx/strings.hrc:1787
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
-msgid "Set All Four Borders"
+msgid "All Four Borders"
msgstr ""
-#. tknFJ
+#. o8fB8
#: include/svx/strings.hrc:1788
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
-msgid "Set Left and Right Borders Only"
+msgid "Left and Right Borders Only"
msgstr ""
-#. hSmnW
+#. 6NnM2
#: include/svx/strings.hrc:1789
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
-msgid "Set Top and Bottom Borders Only"
+msgid "Top and Bottom Borders Only"
msgstr ""
-#. DsEAB
+#. KTYVW
#: include/svx/strings.hrc:1790
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
-msgid "Set Top and Bottom Borders, and All Horizontal Lines"
+msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. Dy2UG
+#. fRcEu
#: include/svx/strings.hrc:1791
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Set Left Border Only"
+msgid "Left Border Only"
msgstr ""
-#. yF8RP
+#. uqzE7
#: include/svx/strings.hrc:1792
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Set Right Border Only"
+msgid "Right Border Only"
msgstr ""
-#. E2jZj
+#. 6ecLB
#: include/svx/strings.hrc:1793
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Set Top Border Only"
+msgid "Top Border Only"
msgstr ""
-#. 7ixEC
+#. B6KZc
#: include/svx/strings.hrc:1794
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Set Bottom Border Only"
+msgid "Bottom Border Only"
msgstr ""
-#. nCjXG
+#. aCMGz
#: include/svx/strings.hrc:1795
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
-msgid "Set Top and Bottom Borders, and All Inner Lines"
+msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
-#. 46Fq7
+#. t38dT
#: include/svx/strings.hrc:1796
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
-msgid "Set Left and Right Borders, and All Inner Lines"
+msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
#. wH3TZ
@@ -14381,13 +14381,13 @@ msgid "Delete footer?"
msgstr "ግርጌውን ላጥፋው?"
#. GE3hT
-#: svx/uiconfig/ui/deletefooterdialog.ui:14
+#: svx/uiconfig/ui/deletefooterdialog.ui:13
msgctxt "deletefooterdialog|DeleteFooterDialog"
msgid "Are you sure you want to delete the footer?"
msgstr "በ እርግጥ ግረጌውን ማጥፋት ይፈልጋሉ?"
#. EthWp
-#: svx/uiconfig/ui/deletefooterdialog.ui:15
+#: svx/uiconfig/ui/deletefooterdialog.ui:14
msgctxt "deletefooterdialog|DeleteFooterDialog"
msgid "All contents of the footer will be deleted and can not be restored."
msgstr "የ ግርጌ ይዞታዎች በሙሉ ይጠፋሉ እንደ ነበር መመለስ አይቻልም"
@@ -14399,13 +14399,13 @@ msgid "Delete header?"
msgstr "ራስጌውን ላጥፋው?"
#. YfZTx
-#: svx/uiconfig/ui/deleteheaderdialog.ui:14
+#: svx/uiconfig/ui/deleteheaderdialog.ui:13
msgctxt "deleteheaderdialog|DeleteHeaderDialog"
msgid "Are you sure you want to delete the header?"
msgstr "በ እርግጥ ራስጌውን ማጥፋት ይፈልጋሉ?"
#. 86Aks
-#: svx/uiconfig/ui/deleteheaderdialog.ui:15
+#: svx/uiconfig/ui/deleteheaderdialog.ui:14
msgctxt "deleteheaderdialog|DeleteHeaderDialog"
msgid "All contents of the header will be deleted and can not be restored."
msgstr "የ ራስጌ ይዞታዎች በሙሉ ይጠፋሉ እንደ ነበር መመለስ አይቻልም"
@@ -18882,19 +18882,19 @@ msgid "Standard selection"
msgstr "መደበኛ ምርጫ"
#. DGKv2
-#: svx/uiconfig/ui/selectionmenu.ui:20
+#: svx/uiconfig/ui/selectionmenu.ui:21
msgctxt "selectionmenu|extending"
msgid "Extending selection"
msgstr "ምርጫዎችን ማስፋፊያ"
#. fqC9L
-#: svx/uiconfig/ui/selectionmenu.ui:28
+#: svx/uiconfig/ui/selectionmenu.ui:30
msgctxt "selectionmenu|adding"
msgid "Adding selection"
msgstr "ምርጫዎችን መጨመሪያ"
#. DbjFT
-#: svx/uiconfig/ui/selectionmenu.ui:36
+#: svx/uiconfig/ui/selectionmenu.ui:39
msgctxt "selectionmenu|block"
msgid "Block selection"
msgstr "ምርጫዎችን መከልከያ"
@@ -19801,49 +19801,49 @@ msgid "More Options"
msgstr ""
#. DJ6vY
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:18
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:60
msgctxt "textcharacterspacingcontrol|very_tight"
msgid "Very Tight"
msgstr "በጣም ጠባብ"
#. GYD7d
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:34
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:77
msgctxt "textcharacterspacingcontrol|tight"
msgid "Tight"
msgstr "ጠባብ"
#. 8EcPH
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:50
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:94
msgctxt "textcharacterspacingcontrol|normal"
msgid "Normal"
msgstr "መደበኛ"
#. hEuRj
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:66
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:111
msgctxt "textcharacterspacingcontrol|loose"
msgid "Loose"
msgstr "የ ላላ"
#. 4kdQx
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:82
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:128
msgctxt "textcharacterspacingcontrol|very_loose"
msgid "Very Loose"
msgstr "በጣም የ ላላ"
#. hsu3c
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:98
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:145
msgctxt "textcharacterspacingcontrol|last_custom"
msgid "Last Custom Value"
msgstr "የ መጨረሻ ዋጋ ማስተካከያ"
#. pZZ9u
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:127
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:177
msgctxt "textcharacterspacingcontrol|kerning"
msgid "0.0"
msgstr ""
#. 6kNQD
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:139
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:187
msgctxt "textcharacterspacingcontrol|label2"
msgid "Custom Value"
msgstr "ዋጋ ማስተካከያ"
@@ -19903,73 +19903,73 @@ msgid "Tabs"
msgstr "ማስረጊያ"
#. hHwzA
-#: svx/uiconfig/ui/textunderlinecontrol.ui:19
+#: svx/uiconfig/ui/textunderlinecontrol.ui:74
msgctxt "textunderlinecontrol|none"
msgid "(Without)"
msgstr "(ያለ)"
#. 9VDo4
-#: svx/uiconfig/ui/textunderlinecontrol.ui:37
+#: svx/uiconfig/ui/textunderlinecontrol.ui:93
msgctxt "textunderlinecontrol|single|tooltip_text"
msgid "Single"
msgstr "ነጠላ"
#. czS3W
-#: svx/uiconfig/ui/textunderlinecontrol.ui:54
+#: svx/uiconfig/ui/textunderlinecontrol.ui:110
msgctxt "textunderlinecontrol|double|tooltip_text"
msgid "Double"
msgstr "ድርብ"
#. DBg8Y
-#: svx/uiconfig/ui/textunderlinecontrol.ui:71
+#: svx/uiconfig/ui/textunderlinecontrol.ui:127
msgctxt "textunderlinecontrol|bold|tooltip_text"
msgid "Bold"
msgstr "ማድመቂያ"
#. fNrBz
-#: svx/uiconfig/ui/textunderlinecontrol.ui:88
+#: svx/uiconfig/ui/textunderlinecontrol.ui:144
msgctxt "textunderlinecontrol|dot|tooltip_text"
msgid "Dotted"
msgstr "ነጠብጣብ"
#. JEgvk
-#: svx/uiconfig/ui/textunderlinecontrol.ui:105
+#: svx/uiconfig/ui/textunderlinecontrol.ui:161
msgctxt "textunderlinecontrol|dotbold|tooltip_text"
msgid "Dotted (Bold)"
msgstr "ነጠብጣብ (ማድመቂያ)"
#. 46nci
-#: svx/uiconfig/ui/textunderlinecontrol.ui:122
+#: svx/uiconfig/ui/textunderlinecontrol.ui:178
msgctxt "textunderlinecontrol|dash|tooltip_text"
msgid "Dash"
msgstr "ዳሽ"
#. D8gB4
-#: svx/uiconfig/ui/textunderlinecontrol.ui:139
+#: svx/uiconfig/ui/textunderlinecontrol.ui:195
msgctxt "textunderlinecontrol|dashlong|tooltip_text"
msgid "Long Dash"
msgstr "ረጅም ዳሽ"
#. gkUzu
-#: svx/uiconfig/ui/textunderlinecontrol.ui:156
+#: svx/uiconfig/ui/textunderlinecontrol.ui:212
msgctxt "textunderlinecontrol|dashdot|tooltip_text"
msgid "Dot Dash"
msgstr "ነጥብ ዳሽ"
#. qMLxK
-#: svx/uiconfig/ui/textunderlinecontrol.ui:173
+#: svx/uiconfig/ui/textunderlinecontrol.ui:229
msgctxt "textunderlinecontrol|dashdotdot|tooltip_text"
msgid "Dot Dot Dash"
msgstr "ነጥብ ነጥብ ዳሽ"
#. dusMw
-#: svx/uiconfig/ui/textunderlinecontrol.ui:190
+#: svx/uiconfig/ui/textunderlinecontrol.ui:246
msgctxt "textunderlinecontrol|wave|tooltip_text"
msgid "Wave"
msgstr "ማዕበል"
#. xJTZe
-#: svx/uiconfig/ui/textunderlinecontrol.ui:204
+#: svx/uiconfig/ui/textunderlinecontrol.ui:260
msgctxt "textunderlinecontrol|moreoptions"
msgid "_More Options..."
msgstr "_ተጫማሪ ምርጫዎች..."
diff --git a/source/am/sw/messages.po b/source/am/sw/messages.po
index d85f0ae41e6..92e81865a70 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: 2021-10-04 19:52+0200\n"
-"PO-Revision-Date: 2021-10-04 21:14+0200\n"
+"POT-Creation-Date: 2021-10-25 12:50+0200\n"
+"PO-Revision-Date: 2021-10-25 13:59+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"
@@ -4408,20 +4408,26 @@ msgctxt "STR_CONTENT_ENDNOTE"
msgid "Endnote"
msgstr ""
-#. jThGW
+#. sEQCK
#: sw/inc/strings.hrc:407
+msgctxt "STR_FOOTNOTE_ENDNOTE_SEPARATOR_TIP"
+msgid "Footnotes are listed above this line and Endnotes are listed below"
+msgstr ""
+
+#. jThGW
+#: sw/inc/strings.hrc:408
msgctxt "STR_DEFINE_NUMBERFORMAT"
msgid "Additional formats..."
msgstr "ተጨማሪ አቀራረቦች..."
#. Cfiyt
-#: sw/inc/strings.hrc:408
+#: sw/inc/strings.hrc:409
msgctxt "RID_STR_SYSTEM"
msgid "[System]"
msgstr "[System]"
#. iD3WQ
-#: sw/inc/strings.hrc:409
+#: sw/inc/strings.hrc:410
msgctxt "STR_MULT_INTERACT_HYPH_WARN"
msgid ""
"The interactive hyphenation is already active\n"
@@ -4431,656 +4437,656 @@ msgstr ""
"በተለየ ሰነድ ላይ"
#. 68AYK
-#: sw/inc/strings.hrc:410
+#: sw/inc/strings.hrc:411
msgctxt "STR_HYPH_TITLE"
msgid "Hyphenation"
msgstr "ጭረት"
#. EDxsk
-#: sw/inc/strings.hrc:411
+#: sw/inc/strings.hrc:412
msgctxt "STR_HYPH_MISSING"
msgid "Missing hyphenation data"
msgstr "የ ጎደለ የ ጭረት ዳታ"
#. TEP66
-#: sw/inc/strings.hrc:412
+#: sw/inc/strings.hrc:413
msgctxt "STR_HYPH_MISSING"
msgid "Please install the hyphenation package for locale “%1”."
msgstr ""
#. bJFYS
-#: sw/inc/strings.hrc:413
+#: sw/inc/strings.hrc:414
msgctxt "STR_HIDDEN_CHANGES"
msgid "Track Changes"
msgstr "ለውጦች መከታተያ"
#. DcXvE
-#: sw/inc/strings.hrc:414
+#: sw/inc/strings.hrc:415
msgctxt "STR_HIDDEN_CHANGES_DETAIL"
msgid "Document contains tracked changes and recording is enabled."
msgstr ""
#. zxuEu
-#: sw/inc/strings.hrc:415
+#: sw/inc/strings.hrc:416
msgctxt "STR_HIDDEN_CHANGES_DETAIL2"
msgid "Recording of changes is enabled."
msgstr "ለውጦችን መቅረጫ አስችለዋል:"
#. BH7Ud
-#: sw/inc/strings.hrc:416
+#: sw/inc/strings.hrc:417
msgctxt "STR_HIDDEN_CHANGES_DETAIL3"
msgid "Document contains tracked changes."
msgstr ""
#. MEN2d
#. Undo
-#: sw/inc/strings.hrc:419
+#: sw/inc/strings.hrc:420
msgctxt "STR_CANT_UNDO"
msgid "not possible"
msgstr "አይቻልም"
#. 5GdxN
-#: sw/inc/strings.hrc:420
+#: sw/inc/strings.hrc:421
msgctxt "STR_DELETE_UNDO"
msgid "Delete $1"
msgstr "ማጥፊያ $1"
#. i6vB4
-#: sw/inc/strings.hrc:421
+#: sw/inc/strings.hrc:422
msgctxt "STR_INSERT_UNDO"
msgid "Insert $1"
msgstr "ማስገቢያ $1"
#. JESFv
-#: sw/inc/strings.hrc:422
+#: sw/inc/strings.hrc:423
msgctxt "STR_OVR_UNDO"
msgid "Overwrite: $1"
msgstr "በላዩ ላይ ደርቦ መጻፊያ $1"
#. FVqpL
-#: sw/inc/strings.hrc:423
+#: sw/inc/strings.hrc:424
msgctxt "STR_SPLITNODE_UNDO"
msgid "New Paragraph"
msgstr "አዲስ አንቀጽ"
#. r3iVE
-#: sw/inc/strings.hrc:424
+#: sw/inc/strings.hrc:425
msgctxt "STR_MOVE_UNDO"
msgid "Move"
msgstr "ማንቀሳቀሻ"
#. Z2Ft8
-#: sw/inc/strings.hrc:425
+#: sw/inc/strings.hrc:426
msgctxt "STR_INSATTR_UNDO"
msgid "Apply attributes"
msgstr "ባህሪዎች መፈጸሚያ"
#. hetuZ
-#: sw/inc/strings.hrc:426
+#: sw/inc/strings.hrc:427
msgctxt "STR_SETFMTCOLL_UNDO"
msgid "Apply Styles: $1"
msgstr "ዘዴዎቹን መፈጸሚያ $1"
#. GokWu
-#: sw/inc/strings.hrc:427
+#: sw/inc/strings.hrc:428
msgctxt "STR_RESET_ATTR_UNDO"
msgid "Reset attributes"
msgstr "ባህሪውን እንደ ነበር መመለሻ"
#. mDgEJ
-#: sw/inc/strings.hrc:428
+#: sw/inc/strings.hrc:429
msgctxt "STR_INSFMT_ATTR_UNDO"
msgid "Change style: $1"
msgstr "ዘዴውን መቀየሪያ: $1"
#. onBFE
-#: sw/inc/strings.hrc:429
+#: sw/inc/strings.hrc:430
msgctxt "STR_INSERT_DOC_UNDO"
msgid "Insert file"
msgstr "ፋይል ማስገቢያ"
#. WCCkF
-#: sw/inc/strings.hrc:430
+#: sw/inc/strings.hrc:431
msgctxt "STR_INSERT_GLOSSARY"
msgid "Insert AutoText"
msgstr "በራሱ ጽሁፍ ማስገቢያ"
#. CyNXC
-#: sw/inc/strings.hrc:431
+#: sw/inc/strings.hrc:432
msgctxt "STR_DELBOOKMARK"
msgid "Delete bookmark: $1"
msgstr "ምልክት ማድረጊያ ማጥፊያ: $1"
#. 54y8f
-#: sw/inc/strings.hrc:432
+#: sw/inc/strings.hrc:433
msgctxt "STR_INSBOOKMARK"
msgid "Insert bookmark: $1"
msgstr "ምልክት ማድረጊያ ማስገቢያ: $1"
#. XHkEY
-#: sw/inc/strings.hrc:433
+#: sw/inc/strings.hrc:434
msgctxt "STR_SORT_TBL"
msgid "Sort table"
msgstr "ሰንጠረዥ መለያ"
#. gui6q
-#: sw/inc/strings.hrc:434
+#: sw/inc/strings.hrc:435
msgctxt "STR_SORT_TXT"
msgid "Sort text"
msgstr "ጽሁፍ መለያ"
#. APAMG
-#: sw/inc/strings.hrc:435
+#: sw/inc/strings.hrc:436
msgctxt "STR_INSTABLE_UNDO"
msgid "Insert table: $1$2$3"
msgstr "ሰንጠረዥ ማስገቢያ: $1$2$3"
#. 4pGhz
-#: sw/inc/strings.hrc:436
+#: sw/inc/strings.hrc:437
msgctxt "STR_TEXTTOTABLE_UNDO"
msgid "Convert text -> table"
msgstr "ጽሁፍ መቀየሪያ ወደ -> ሰንጠረዥ"
#. h3EH7
-#: sw/inc/strings.hrc:437
+#: sw/inc/strings.hrc:438
msgctxt "STR_TABLETOTEXT_UNDO"
msgid "Convert table -> text"
msgstr "ሰንጠረዥ መቀየሪያ ወደ -> ጽሁፍ"
#. uKreq
-#: sw/inc/strings.hrc:438
+#: sw/inc/strings.hrc:439
msgctxt "STR_COPY_UNDO"
msgid "Copy: $1"
msgstr "ኮፒ: $1"
#. BfGaZ
-#: sw/inc/strings.hrc:439
+#: sw/inc/strings.hrc:440
msgctxt "STR_REPLACE_UNDO"
msgid "Replace $1 $2 $3"
msgstr "መቀየሪያ: $1 $2 $3"
#. GEC4C
-#: sw/inc/strings.hrc:440
+#: sw/inc/strings.hrc:441
msgctxt "STR_INSERT_PAGE_BREAK_UNDO"
msgid "Insert page break"
msgstr "የ ገጽ መጨረሻ ማስገቢያ"
#. mrWg2
-#: sw/inc/strings.hrc:441
+#: sw/inc/strings.hrc:442
msgctxt "STR_INSERT_COLUMN_BREAK_UNDO"
msgid "Insert column break"
msgstr "የ አምድ መጨረሻ ማስገቢያ"
#. MGqRt
-#: sw/inc/strings.hrc:442
+#: sw/inc/strings.hrc:443
msgctxt "STR_INSERT_ENV_UNDO"
msgid "Insert Envelope"
msgstr "ፖስታ ማስገቢያ"
#. g8ALR
-#: sw/inc/strings.hrc:443
+#: sw/inc/strings.hrc:444
msgctxt "STR_DRAG_AND_COPY"
msgid "Copy: $1"
msgstr "ኮፒ: $1"
#. qHdLG
-#: sw/inc/strings.hrc:444
+#: sw/inc/strings.hrc:445
msgctxt "STR_DRAG_AND_MOVE"
msgid "Move: $1"
msgstr "ማንቀሳቀሻ: $1"
#. xqxPn
-#: sw/inc/strings.hrc:445
+#: sw/inc/strings.hrc:446
msgctxt "STR_INSERT_CHART"
msgid "Insert %PRODUCTNAME Chart"
msgstr "ማስገቢያ %PRODUCTNAME ቻርት"
#. qWEVG
-#: sw/inc/strings.hrc:446
+#: sw/inc/strings.hrc:447
msgctxt "STR_INSERTFLY"
msgid "Insert frame"
msgstr "ክፈፍ ማስገቢያ"
#. GmqXE
-#: sw/inc/strings.hrc:447
+#: sw/inc/strings.hrc:448
msgctxt "STR_DELETEFLY"
msgid "Delete frame"
msgstr "ክፈፍ ማጥፊያ"
#. z9Eai
-#: sw/inc/strings.hrc:448
+#: sw/inc/strings.hrc:449
msgctxt "STR_AUTOFORMAT"
msgid "AutoFormat"
msgstr "በራሱ አቀራረብ"
#. E6uaH
-#: sw/inc/strings.hrc:449
+#: sw/inc/strings.hrc:450
msgctxt "STR_TABLEHEADLINE"
msgid "Table heading"
msgstr "የ ሰንጠረዥ አርእስት"
#. gnndv
-#: sw/inc/strings.hrc:450
+#: sw/inc/strings.hrc:451
msgctxt "STR_REPLACE"
msgid "Replace: $1 $2 $3"
msgstr "መቀየሪያ: $1 $2 $3"
#. WwuFC
-#: sw/inc/strings.hrc:451
+#: sw/inc/strings.hrc:452
msgctxt "STR_INSERTSECTION"
msgid "Insert section"
msgstr "ክፍል ማስገቢያ"
#. 7pzWX
-#: sw/inc/strings.hrc:452
+#: sw/inc/strings.hrc:453
msgctxt "STR_DELETESECTION"
msgid "Delete section"
msgstr "ክፍል ማጥፊያ"
#. AFkoM
-#: sw/inc/strings.hrc:453
+#: sw/inc/strings.hrc:454
msgctxt "STR_CHANGESECTION"
msgid "Modify section"
msgstr "ክፍል ማሻሻያ"
#. BY9gB
-#: sw/inc/strings.hrc:454
+#: sw/inc/strings.hrc:455
msgctxt "STR_CHANGEDEFATTR"
msgid "Modify default values"
msgstr "ነባር ዋጋዎችን ማሻሻያ"
#. X7eMx
-#: sw/inc/strings.hrc:455
+#: sw/inc/strings.hrc:456
msgctxt "STR_REPLACE_STYLE"
msgid "Replace style: $1 $2 $3"
msgstr "ዘዴውን መቀየሪያ: $1 $2 $3"
#. EXFvJ
-#: sw/inc/strings.hrc:456
+#: sw/inc/strings.hrc:457
msgctxt "STR_DELETE_PAGE_BREAK"
msgid "Delete page break"
msgstr "የ ገጽ መጨረሻውን ማጥፊያ"
#. kHVr9
-#: sw/inc/strings.hrc:457
+#: sw/inc/strings.hrc:458
msgctxt "STR_TEXT_CORRECTION"
msgid "Text Correction"
msgstr "ጽሁፍ ማረሚያ"
#. ZPCQf
-#: sw/inc/strings.hrc:458
+#: sw/inc/strings.hrc:459
msgctxt "STR_OUTLINE_LR"
msgid "Promote/demote outline"
msgstr "ማሳደጊያ/እቅድ መሻሪያ"
#. WQJz2
-#: sw/inc/strings.hrc:459
+#: sw/inc/strings.hrc:460
msgctxt "STR_OUTLINE_UD"
msgid "Move outline"
msgstr "እቅድ ማንቀሳቀሻ"
#. 3UGKP
-#: sw/inc/strings.hrc:460
+#: sw/inc/strings.hrc:461
msgctxt "STR_OUTLINE_EDIT"
msgid "Modify outline"
msgstr ""
#. RjcRH
-#: sw/inc/strings.hrc:461
+#: sw/inc/strings.hrc:462
msgctxt "STR_INSNUM"
msgid "Insert numbering"
msgstr "ቁጥር መስጫ ማስገቢያ"
#. hbCQa
-#: sw/inc/strings.hrc:462
+#: sw/inc/strings.hrc:463
msgctxt "STR_NUMUP"
msgid "Promote level"
msgstr "ማሳደጊያ ደረጃ"
#. 63Ec4
-#: sw/inc/strings.hrc:463
+#: sw/inc/strings.hrc:464
msgctxt "STR_NUMDOWN"
msgid "Demote level"
msgstr "መሻሪያ ደረጃ"
#. FGciC
-#: sw/inc/strings.hrc:464
+#: sw/inc/strings.hrc:465
msgctxt "STR_MOVENUM"
msgid "Move paragraphs"
msgstr "አንቀጾችን ማንቀሳቀሻ"
#. WdMCK
-#: sw/inc/strings.hrc:465
+#: sw/inc/strings.hrc:466
msgctxt "STR_INSERTDRAW"
msgid "Insert drawing object: $1"
msgstr "የ መሳያ እቃዎች ማስገቢያ: $1"
#. ErB3W
-#: sw/inc/strings.hrc:466
+#: sw/inc/strings.hrc:467
msgctxt "STR_NUMORNONUM"
msgid "Number On/Off"
msgstr "ቁጥር ማብሪያ/ማጥፊያ"
#. rEZvN
-#: sw/inc/strings.hrc:467
+#: sw/inc/strings.hrc:468
msgctxt "STR_INC_LEFTMARGIN"
msgid "Increase Indent"
msgstr "ማስረጊያ መጨመሪያ"
#. aJxcG
-#: sw/inc/strings.hrc:468
+#: sw/inc/strings.hrc:469
msgctxt "STR_DEC_LEFTMARGIN"
msgid "Decrease indent"
msgstr "ማስረጊያ መቀነሻ"
#. 4GP7c
-#: sw/inc/strings.hrc:469
+#: sw/inc/strings.hrc:470
msgctxt "STR_INSERTLABEL"
msgid "Insert caption: $1"
msgstr "መግለጫ ጽሁፍ ማስገቢያ : $1"
#. GGFM8
-#: sw/inc/strings.hrc:470
+#: sw/inc/strings.hrc:471
msgctxt "STR_SETNUMRULESTART"
msgid "Restart numbering"
msgstr "ቁጥር መስጫ እንደገና ማስጀመሪያ"
#. pHfp7
-#: sw/inc/strings.hrc:471
+#: sw/inc/strings.hrc:472
msgctxt "STR_CHANGEFTN"
msgid "Modify footnote"
msgstr "የ ግርጌ ማስታወሻዎች ማሻሻያ"
#. Knr9y
-#: sw/inc/strings.hrc:472
+#: sw/inc/strings.hrc:473
msgctxt "STR_ACCEPT_REDLINE"
msgid "Accept change: $1"
msgstr "ለውጡን እቀበላለሁ: $1"
#. jAvjr
-#: sw/inc/strings.hrc:473
+#: sw/inc/strings.hrc:474
msgctxt "STR_REJECT_REDLINE"
msgid "Reject change: $1"
msgstr "ለውጡን አልቀበልም: $1"
#. uCGqy
-#: sw/inc/strings.hrc:474
+#: sw/inc/strings.hrc:475
msgctxt "STR_SPLIT_TABLE"
msgid "Split Table"
msgstr "ሰንጠረዥ መክፈያ"
#. TJCZ8
-#: sw/inc/strings.hrc:475
+#: sw/inc/strings.hrc:476
msgctxt "STR_DONTEXPAND"
msgid "Stop attribute"
msgstr "ባህሪዎችን ማስቆሚያ"
#. qyCiy
-#: sw/inc/strings.hrc:476
+#: sw/inc/strings.hrc:477
msgctxt "STR_AUTOCORRECT"
msgid "AutoCorrect"
msgstr "በራሱ አራሚ"
#. f4Jfr
-#: sw/inc/strings.hrc:477
+#: sw/inc/strings.hrc:478
msgctxt "STR_MERGE_TABLE"
msgid "Merge table"
msgstr "ሰንጠረዥ ማዋሀጃ"
#. BLcCC
-#: sw/inc/strings.hrc:478
+#: sw/inc/strings.hrc:479
msgctxt "STR_TRANSLITERATE"
msgid "Change Case"
msgstr "ጉዳይ መቀየሪያ"
#. BTGyD
-#: sw/inc/strings.hrc:479
+#: sw/inc/strings.hrc:480
msgctxt "STR_DELNUM"
msgid "Delete numbering"
msgstr "ቁጥር መስጫውን ማጥፊያ"
#. TMvTD
-#: sw/inc/strings.hrc:480
+#: sw/inc/strings.hrc:481
msgctxt "STR_DRAWUNDO"
msgid "Drawing objects: $1"
msgstr "እቃዎች መሳያ: $1"
#. FG7rN
-#: sw/inc/strings.hrc:481
+#: sw/inc/strings.hrc:482
msgctxt "STR_DRAWGROUP"
msgid "Group draw objects"
msgstr "የ መሳያ እቃዎችን በቡድን ማድረጊያ"
#. xZqoJ
-#: sw/inc/strings.hrc:482
+#: sw/inc/strings.hrc:483
msgctxt "STR_DRAWUNGROUP"
msgid "Ungroup drawing objects"
msgstr "የ መሳያ እቃዎች መለያያ"
#. FA3Vo
-#: sw/inc/strings.hrc:483
+#: sw/inc/strings.hrc:484
msgctxt "STR_DRAWDELETE"
msgid "Delete drawing objects"
msgstr "መሳያ እቃዎች ማጥፊያ"
#. MbJSs
-#: sw/inc/strings.hrc:484
+#: sw/inc/strings.hrc:485
msgctxt "STR_REREAD"
msgid "Replace Image"
msgstr "ምስል መቀየሪያ"
#. 6GmVr
-#: sw/inc/strings.hrc:485
+#: sw/inc/strings.hrc:486
msgctxt "STR_DELGRF"
msgid "Delete Image"
msgstr "ምስል ማጥፊያ"
#. PAmBF
-#: sw/inc/strings.hrc:486
+#: sw/inc/strings.hrc:487
msgctxt "STR_TABLE_ATTR"
msgid "Apply table attributes"
msgstr "የ ሰንጠረዥ ባህሪዎች መፈጸሚያ"
#. GA8gF
-#: sw/inc/strings.hrc:487
+#: sw/inc/strings.hrc:488
msgctxt "STR_UNDO_TABLE_AUTOFMT"
msgid "AutoFormat Table"
msgstr "በራሱ አቀራረብ ሰንጠረዥ"
#. AAPTL
-#: sw/inc/strings.hrc:488
+#: sw/inc/strings.hrc:489
msgctxt "STR_UNDO_TABLE_INSCOL"
msgid "Insert Column"
msgstr "አምድ ማስገቢያ"
#. tA7ss
-#: sw/inc/strings.hrc:489
+#: sw/inc/strings.hrc:490
msgctxt "STR_UNDO_TABLE_INSROW"
msgid "Insert Row"
msgstr "ረድፍ ማስገቢያ"
#. LAzxr
-#: sw/inc/strings.hrc:490
+#: sw/inc/strings.hrc:491
msgctxt "STR_UNDO_TABLE_DELBOX"
msgid "Delete row/column"
msgstr "ረድፍ/አምድ ማጥፊያ"
#. yFDYp
-#: sw/inc/strings.hrc:491
+#: sw/inc/strings.hrc:492
msgctxt "STR_UNDO_COL_DELETE"
msgid "Delete column"
msgstr "አምድ ማጥፊያ"
#. 9SF9L
-#: sw/inc/strings.hrc:492
+#: sw/inc/strings.hrc:493
msgctxt "STR_UNDO_ROW_DELETE"
msgid "Delete row"
msgstr "ረድፍ ማጥፊያ"
#. FnLC7
-#: sw/inc/strings.hrc:493
+#: sw/inc/strings.hrc:494
msgctxt "STR_UNDO_TABLE_SPLIT"
msgid "Split Cells"
msgstr "ክፍሎች መክፈያ"
#. 3Em7B
-#: sw/inc/strings.hrc:494
+#: sw/inc/strings.hrc:495
msgctxt "STR_UNDO_TABLE_MERGE"
msgid "Merge Cells"
msgstr "ክፍሎች ማዋሀጃ"
#. 3VVmF
-#: sw/inc/strings.hrc:495
+#: sw/inc/strings.hrc:496
msgctxt "STR_TABLE_NUMFORMAT"
msgid "Format cell"
msgstr "የ ክፍል አቀራረብ"
#. UbSKw
-#: sw/inc/strings.hrc:496
+#: sw/inc/strings.hrc:497
msgctxt "STR_INSERT_TOX"
msgid "Insert index/table"
msgstr "ማውጫ/ሰንጠረዥ ማስገቢያ"
#. szpbj
-#: sw/inc/strings.hrc:497
+#: sw/inc/strings.hrc:498
msgctxt "STR_CLEAR_TOX_RANGE"
msgid "Remove index/table"
msgstr "ማውጫ/ሰንጠረዥ ማስወገጃ"
#. cN5DN
-#: sw/inc/strings.hrc:498
+#: sw/inc/strings.hrc:499
msgctxt "STR_TABLE_TBLCPYTBL"
msgid "Copy table"
msgstr "ሰንጠረዥ ኮፒ ማድረጊያ"
#. eUFgx
-#: sw/inc/strings.hrc:499
+#: sw/inc/strings.hrc:500
msgctxt "STR_TABLE_CPYTBL"
msgid "Copy table"
msgstr "ሰንጠረዥ ኮፒ ማድረጊያ"
#. TC6mz
-#: sw/inc/strings.hrc:500
+#: sw/inc/strings.hrc:501
msgctxt "STR_INS_FROM_SHADOWCRSR"
msgid "Set cursor"
msgstr "መጠቆሚያ ማሰናጃ"
#. 4GStA
-#: sw/inc/strings.hrc:501
+#: sw/inc/strings.hrc:502
msgctxt "STR_UNDO_CHAIN"
msgid "Link frames"
msgstr "ክፈፎች አገናኝ"
#. XV4Ap
-#: sw/inc/strings.hrc:502
+#: sw/inc/strings.hrc:503
msgctxt "STR_UNDO_UNCHAIN"
msgid "Unlink frames"
msgstr "ክፈፎች አታገናኝ"
#. vUJG9
-#: sw/inc/strings.hrc:503
+#: sw/inc/strings.hrc:504
msgctxt "STR_UNDO_FTNINFO"
msgid "Modify footnote options"
msgstr "የ ግርጌ ማስታወሻ ምርጫዎች ማሻሻያ"
#. AgREs
-#: sw/inc/strings.hrc:504
+#: sw/inc/strings.hrc:505
msgctxt "STR_UNDO_COMPAREDOC"
msgid "Compare Document"
msgstr "ሰንዶችን ማዋዳደሪያ"
#. kZATW
-#: sw/inc/strings.hrc:505
+#: sw/inc/strings.hrc:506
msgctxt "STR_UNDO_SETFLYFRMFMT"
msgid "Apply frame style: $1"
msgstr "የ ክፈፍ ዘዴ መፈጸሚያ: $1"
#. 4Ae2X
-#: sw/inc/strings.hrc:506
+#: sw/inc/strings.hrc:507
msgctxt "STR_UNDO_SETRUBYATTR"
msgid "Ruby Setting"
msgstr "Ruby Setting"
#. J4AUR
-#: sw/inc/strings.hrc:507
+#: sw/inc/strings.hrc:508
msgctxt "STR_INSERT_FOOTNOTE"
msgid "Insert footnote"
msgstr "የ ግርጌ ማስታወሻ ማስገቢያ"
#. RMgFD
-#: sw/inc/strings.hrc:508
+#: sw/inc/strings.hrc:509
msgctxt "STR_INSERT_URLBTN"
msgid "insert URL button"
msgstr "የ URL ቁልፍ ማስገቢያ"
#. UKN7k
-#: sw/inc/strings.hrc:509
+#: sw/inc/strings.hrc:510
msgctxt "STR_INSERT_URLTXT"
msgid "Insert Hyperlink"
msgstr "የ Hyperlink ማስገቢያ"
#. 9odT8
-#: sw/inc/strings.hrc:510
+#: sw/inc/strings.hrc:511
msgctxt "STR_DELETE_INVISIBLECNTNT"
msgid "remove invisible content"
msgstr "የማይታዩ ይዞታዎችን ማስወገጃ"
#. e6U2R
-#: sw/inc/strings.hrc:511
+#: sw/inc/strings.hrc:512
msgctxt "STR_TOXCHANGE"
msgid "Table/index changed"
msgstr "ሰንጠረዥ/ማውጫ ተቀይሯል"
#. JpGh6
-#: sw/inc/strings.hrc:512
+#: sw/inc/strings.hrc:513
msgctxt "STR_START_QUOTE"
msgid "“"
msgstr "“"
#. kZoAG
-#: sw/inc/strings.hrc:513
+#: sw/inc/strings.hrc:514
msgctxt "STR_END_QUOTE"
msgid "”"
msgstr "”"
#. wNZDq
-#: sw/inc/strings.hrc:514
+#: sw/inc/strings.hrc:515
msgctxt "STR_LDOTS"
msgid "..."
msgstr "..."
#. yiQgo
-#: sw/inc/strings.hrc:515
+#: sw/inc/strings.hrc:516
msgctxt "STR_MULTISEL"
msgid "multiple selection"
msgstr "በርካታ ምርጫዎች"
#. qFESB
-#: sw/inc/strings.hrc:516
+#: sw/inc/strings.hrc:517
msgctxt "STR_TYPING_UNDO"
msgid "Typing: $1"
msgstr "በመጻፍ ላይ : $1"
#. A6HSG
-#: sw/inc/strings.hrc:517
+#: sw/inc/strings.hrc:518
msgctxt "STR_PASTE_CLIPBOARD_UNDO"
msgid "Paste clipboard"
msgstr "ቁራጭ ሰሌዳ መለጠፊያ"
#. mfDMF
-#: sw/inc/strings.hrc:518
+#: sw/inc/strings.hrc:519
msgctxt "STR_YIELDS"
msgid "→"
msgstr "→"
#. wNRhZ
-#: sw/inc/strings.hrc:519
+#: sw/inc/strings.hrc:520
msgctxt "STR_OCCURRENCES_OF"
msgid "occurrences of"
msgstr "የሚደርስ ነገር ከ"
#. hHUZi
-#: sw/inc/strings.hrc:520
+#: sw/inc/strings.hrc:521
msgctxt "STR_UNDO_TABS"
msgid "One tab"
msgid_plural "$1 tabs"
@@ -5088,7 +5094,7 @@ msgstr[0] "One tab"
msgstr[1] "$1 tabs"
#. eP6mC
-#: sw/inc/strings.hrc:521
+#: sw/inc/strings.hrc:522
msgctxt "STR_UNDO_NLS"
msgid "One line break"
msgid_plural "$1 line breaks"
@@ -5096,308 +5102,308 @@ msgstr[0] "አንድ መስመር መጨረሻ"
msgstr[1] "$1 መስመር መጨረሻዎች"
#. yS3nP
-#: sw/inc/strings.hrc:522
+#: sw/inc/strings.hrc:523
msgctxt "STR_UNDO_PAGEBREAKS"
msgid "page break"
msgstr "የ ገጽ መጨረሻ"
#. Q4YVg
-#: sw/inc/strings.hrc:523
+#: sw/inc/strings.hrc:524
msgctxt "STR_UNDO_COLBRKS"
msgid "column break"
msgstr "የ አምድ መጨረሻ"
#. L6qva
-#: sw/inc/strings.hrc:524
+#: sw/inc/strings.hrc:525
msgctxt "STR_UNDO_REDLINE_INSERT"
msgid "Insert $1"
msgstr "ማስገቢያ $1"
#. i8ZQo
-#: sw/inc/strings.hrc:525
+#: sw/inc/strings.hrc:526
msgctxt "STR_UNDO_REDLINE_DELETE"
msgid "Delete $1"
msgstr "ማጥፊያ $1"
#. 5KECk
-#: sw/inc/strings.hrc:526
+#: sw/inc/strings.hrc:527
msgctxt "STR_UNDO_REDLINE_FORMAT"
msgid "Attributes changed"
msgstr "ባህሪው ተቀይሯል"
#. N7CUk
-#: sw/inc/strings.hrc:527
+#: sw/inc/strings.hrc:528
msgctxt "STR_UNDO_REDLINE_TABLE"
msgid "Table changed"
msgstr "ሰንጠረዡ ተቀይሯል"
#. DCGPF
-#: sw/inc/strings.hrc:528
+#: sw/inc/strings.hrc:529
msgctxt "STR_UNDO_REDLINE_FMTCOLL"
msgid "Style changed"
msgstr "ዘዴ ተቀይሯል"
#. p77WZ
-#: sw/inc/strings.hrc:529
+#: sw/inc/strings.hrc:530
msgctxt "STR_UNDO_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr "የ አንቀጽ አቀራረብ ተቀይሯል"
#. nehrq
-#: sw/inc/strings.hrc:530
+#: sw/inc/strings.hrc:531
msgctxt "STR_UNDO_REDLINE_TABLE_ROW_INSERT"
msgid "Insert Row"
msgstr "ረድፍ ማስገቢያ"
#. Ud4qT
-#: sw/inc/strings.hrc:531
+#: sw/inc/strings.hrc:532
msgctxt "STR_UNDO_REDLINE_TABLE_ROW_DELETE"
msgid "Delete Row"
msgstr "ረድፍ ማጥፊያ"
#. GvxsC
-#: sw/inc/strings.hrc:532
+#: sw/inc/strings.hrc:533
msgctxt "STR_UNDO_REDLINE_TABLE_CELL_INSERT"
msgid "Insert Cell"
msgstr "ክፍል ማስገቢያ"
#. ZMrVY
-#: sw/inc/strings.hrc:533
+#: sw/inc/strings.hrc:534
msgctxt "STR_UNDO_REDLINE_TABLE_CELL_DELETE"
msgid "Delete Cell"
msgstr "ክፍል ማጥፊያ"
#. DqprY
-#: sw/inc/strings.hrc:534
+#: sw/inc/strings.hrc:535
msgctxt "STR_N_REDLINES"
msgid "$1 changes"
msgstr "$1 መቀየሪያ"
#. ve5ZA
-#: sw/inc/strings.hrc:535
+#: sw/inc/strings.hrc:536
msgctxt "STR_UNDO_PAGEDESC"
msgid "Change page style: $1"
msgstr "የ ገጽ ዘዴ መቀየሪያ: $1"
#. RDkdy
-#: sw/inc/strings.hrc:536
+#: sw/inc/strings.hrc:537
msgctxt "STR_UNDO_PAGEDESC_CREATE"
msgid "Create page style: $1"
msgstr "የ ገጽ ዘዴ መፍጠሪያ: $1"
#. tBVzV
-#: sw/inc/strings.hrc:537
+#: sw/inc/strings.hrc:538
msgctxt "STR_UNDO_PAGEDESC_DELETE"
msgid "Delete page style: $1"
msgstr "የ ገጽ ዘዴ ማጥፊያ: $1"
#. wzjRB
-#: sw/inc/strings.hrc:538
+#: sw/inc/strings.hrc:539
msgctxt "STR_UNDO_PAGEDESC_RENAME"
msgid "Rename page style: $1 $2 $3"
msgstr "የ ገጽ ዘዴ እንደገና መሰየሚያ: $1 $2 $3"
#. UcTVv
-#: sw/inc/strings.hrc:539
+#: sw/inc/strings.hrc:540
msgctxt "STR_UNDO_HEADER_FOOTER"
msgid "Header/footer changed"
msgstr "ረስጌ/ግርጌ ተቀይሯል"
#. tGyeC
-#: sw/inc/strings.hrc:540
+#: sw/inc/strings.hrc:541
msgctxt "STR_UNDO_FIELD"
msgid "Field changed"
msgstr "ሜዳው ተቀይሯል"
#. xh3dq
-#: sw/inc/strings.hrc:541
+#: sw/inc/strings.hrc:542
msgctxt "STR_UNDO_TXTFMTCOL_CREATE"
msgid "Create paragraph style: $1"
msgstr "የ አንቀጽ ዘዴ መፍጠሪያ: $1"
#. aRf6Z
-#: sw/inc/strings.hrc:542
+#: sw/inc/strings.hrc:543
msgctxt "STR_UNDO_TXTFMTCOL_DELETE"
msgid "Delete paragraph style: $1"
msgstr "የ አንቀጽ ዘዴ ማጥፊያ: $1"
#. DtD6w
-#: sw/inc/strings.hrc:543
+#: sw/inc/strings.hrc:544
msgctxt "STR_UNDO_TXTFMTCOL_RENAME"
msgid "Rename paragraph style: $1 $2 $3"
msgstr "የ አንቀጽ ዘዴ እንደገና መሰየሚያ: $1 $2 $3"
#. J2FcF
-#: sw/inc/strings.hrc:544
+#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_CHARFMT_CREATE"
msgid "Create character style: $1"
msgstr "የ ባህሪ ዘዴ መፍጠሪያ: $1"
#. FjT56
-#: sw/inc/strings.hrc:545
+#: sw/inc/strings.hrc:546
msgctxt "STR_UNDO_CHARFMT_DELETE"
msgid "Delete character style: $1"
msgstr "የ ባህሪ ዘዴ ማጥፊያ: $1"
#. mT2GJ
-#: sw/inc/strings.hrc:546
+#: sw/inc/strings.hrc:547
msgctxt "STR_UNDO_CHARFMT_RENAME"
msgid "Rename character style: $1 $2 $3"
msgstr "የ ባህሪ ዘዴ እንደገና መሰየሚያ: $1 $2 $3"
#. AvK4p
-#: sw/inc/strings.hrc:547
+#: sw/inc/strings.hrc:548
msgctxt "STR_UNDO_FRMFMT_CREATE"
msgid "Create frame style: $1"
msgstr "የ ባህሪ ዘዴ መቀየሪያ: $1"
#. zHLcd
-#: sw/inc/strings.hrc:548
+#: sw/inc/strings.hrc:549
msgctxt "STR_UNDO_FRMFMT_DELETE"
msgid "Delete frame style: $1"
msgstr "የ ክፈፍ ዘዴ ማጥፊያ: $1"
#. BUdbD
-#: sw/inc/strings.hrc:549
+#: sw/inc/strings.hrc:550
msgctxt "STR_UNDO_FRMFMT_RENAME"
msgid "Rename frame style: $1 $2 $3"
msgstr "የ ክፈፍ ዘዴ እንደገና መሰየሚያ: $1 $2 $3"
#. GG9BH
-#: sw/inc/strings.hrc:550
+#: sw/inc/strings.hrc:551
msgctxt "STR_UNDO_NUMRULE_CREATE"
msgid "Create numbering style: $1"
msgstr "የ ቁጥር መስጫ ዘዴ መፍጠሪያ: $1"
#. zYZW8
-#: sw/inc/strings.hrc:551
+#: sw/inc/strings.hrc:552
msgctxt "STR_UNDO_NUMRULE_DELETE"
msgid "Delete numbering style: $1"
msgstr "የ ቁጥር መስጫ ዘዴ ማጥፊያ: $1"
#. QhDFe
-#: sw/inc/strings.hrc:552
+#: sw/inc/strings.hrc:553
msgctxt "STR_UNDO_NUMRULE_RENAME"
msgid "Rename numbering style: $1 $2 $3"
msgstr "የ ቁጥር መስጫ ዘዴ እንደገና መሰየሚያ: $1 $2 $3"
#. oWrh9
-#: sw/inc/strings.hrc:553
+#: sw/inc/strings.hrc:554
msgctxt "STR_UNDO_BOOKMARK_RENAME"
msgid "Rename bookmark: $1 $2 $3"
msgstr "እንደገና መሰየሚያ ምልክት ማድረጊያውን : $1 $2 $3"
#. WTcEw
-#: sw/inc/strings.hrc:554
+#: sw/inc/strings.hrc:555
msgctxt "STR_UNDO_INDEX_ENTRY_INSERT"
msgid "Insert index entry"
msgstr "የማውጫ መግቢያ ማስገቢያ"
#. fbidx
-#: sw/inc/strings.hrc:555
+#: sw/inc/strings.hrc:556
msgctxt "STR_UNDO_INDEX_ENTRY_DELETE"
msgid "Delete index entry"
msgstr "ማውጫ ማስገቢያ ማጥፊያ"
#. WCDy7
-#: sw/inc/strings.hrc:556
+#: sw/inc/strings.hrc:557
msgctxt "STR_FIELD"
msgid "field"
msgstr "ሜዳ"
#. aC9iU
-#: sw/inc/strings.hrc:557
+#: sw/inc/strings.hrc:558
msgctxt "STR_UNDO_INSERT_TEXTBOX"
msgid "text box"
msgstr "የ ጽሁፍ ሳጥን"
#. yNjem
#. undo: STR_PARAGRAPHS, string.text
-#: sw/inc/strings.hrc:559
+#: sw/inc/strings.hrc:560
msgctxt "STR_PARAGRAPHS"
msgid "Paragraphs"
msgstr "አንቀጾች"
#. 9fb4z
-#: sw/inc/strings.hrc:560
+#: sw/inc/strings.hrc:561
msgctxt "STR_FRAME"
msgid "frame"
msgstr "ክፈፍ"
#. gcZ3a
-#: sw/inc/strings.hrc:561
+#: sw/inc/strings.hrc:562
msgctxt "STR_OLE"
msgid "OLE-object"
msgstr "የ OLE-እቃ"
#. db5Tg
-#: sw/inc/strings.hrc:562
+#: sw/inc/strings.hrc:563
msgctxt "STR_MATH_FORMULA"
msgid "formula"
msgstr "መቀመሪያ"
#. BirkF
-#: sw/inc/strings.hrc:563
+#: sw/inc/strings.hrc:564
msgctxt "STR_CHART"
msgid "chart"
msgstr "ቻርት"
#. YxCuu
-#: sw/inc/strings.hrc:564
+#: sw/inc/strings.hrc:565
msgctxt "STR_NOTE"
msgid "comment"
msgstr "አስተያየት"
#. CKqsU
-#: sw/inc/strings.hrc:565
+#: sw/inc/strings.hrc:566
msgctxt "STR_REFERENCE"
msgid "cross-reference"
msgstr "መስቀልኛ - ማመሳከሪያ"
#. q9BGR
-#: sw/inc/strings.hrc:566
+#: sw/inc/strings.hrc:567
msgctxt "STR_SCRIPT"
msgid "script"
msgstr "ጽሁፍ"
#. o6FWi
-#: sw/inc/strings.hrc:567
+#: sw/inc/strings.hrc:568
msgctxt "STR_AUTHORITY_ENTRY"
msgid "bibliography entry"
msgstr "የ ቢብሊዮግራፊ ማስገቢያ"
#. qbRLG
-#: sw/inc/strings.hrc:568
+#: sw/inc/strings.hrc:569
msgctxt "STR_SPECIALCHAR"
msgid "special character"
msgstr "የተለየ ባህሪ"
#. qJd8G
-#: sw/inc/strings.hrc:569
+#: sw/inc/strings.hrc:570
msgctxt "STR_FOOTNOTE"
msgid "footnote"
msgstr "የ ግርጌ ማስታወሻ"
#. bKvaD
-#: sw/inc/strings.hrc:570
+#: sw/inc/strings.hrc:571
msgctxt "STR_GRAPHIC"
msgid "image"
msgstr "ምስል"
#. J7CgG
-#: sw/inc/strings.hrc:571
+#: sw/inc/strings.hrc:572
msgctxt "STR_DRAWING_OBJECTS"
msgid "drawing object(s)"
msgstr "መሳያ እቃ(ዎች)"
#. rYPFG
-#: sw/inc/strings.hrc:572
+#: sw/inc/strings.hrc:573
msgctxt "STR_TABLE_NAME"
msgid "table: $1$2$3"
msgstr "ሰንጠረዥ: $1$2$3"
#. AtWxA
-#: sw/inc/strings.hrc:573
+#: sw/inc/strings.hrc:574
msgctxt "STR_CHAPTERS"
msgid "chapter"
msgid_plural "chapters"
@@ -5405,1653 +5411,1653 @@ msgstr[0] "ምዕራፎች"
msgstr[1] ""
#. 2JCL2
-#: sw/inc/strings.hrc:574
+#: sw/inc/strings.hrc:575
msgctxt "STR_PARAGRAPH_UNDO"
msgid "paragraph"
msgstr "አንቀጽ"
#. DvnGA
-#: sw/inc/strings.hrc:575
+#: sw/inc/strings.hrc:576
msgctxt "STR_PARAGRAPH_SIGN_UNDO"
msgid "Paragraph sign"
msgstr "አንቀጽ መፈረሚያ"
#. oL9GG
-#: sw/inc/strings.hrc:576
+#: sw/inc/strings.hrc:577
msgctxt "STR_UNDO_FLYFRMFMT_TITLE"
msgid "Change object title of $1"
msgstr "የ እቃዎች አርእስት መቀየሪያ ከ $1"
#. 3Cv7E
-#: sw/inc/strings.hrc:577
+#: sw/inc/strings.hrc:578
msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr "የ እቃውን መግለጫ መቀየሪያ ከ $1"
#. rWw8U
-#: sw/inc/strings.hrc:578
+#: sw/inc/strings.hrc:579
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
msgid "Create table style: $1"
msgstr "የ ሰንጠረዥ ዘዴ መፍጠሪያ: $1"
#. jGxgy
-#: sw/inc/strings.hrc:579
+#: sw/inc/strings.hrc:580
msgctxt "STR_UNDO_TBLSTYLE_DELETE"
msgid "Delete table style: $1"
msgstr "የ ሰንጠረዥ ዘዴ ማጥፊያ: $1"
#. 6NWP3
-#: sw/inc/strings.hrc:580
+#: sw/inc/strings.hrc:581
msgctxt "STR_UNDO_TBLSTYLE_UPDATE"
msgid "Update table style: $1"
msgstr "የ ሰንጠረዥ ዘዴ ማሻሻያ: $1"
#. JegfU
-#: sw/inc/strings.hrc:581
+#: sw/inc/strings.hrc:582
msgctxt "STR_UNDO_TABLE_DELETE"
msgid "Delete table"
msgstr "ሰንጠረዥ ማጥፊያ"
#. KSMpJ
-#: sw/inc/strings.hrc:582
+#: sw/inc/strings.hrc:583
msgctxt "STR_UNDO_INSERT_FORM_FIELD"
msgid "Insert form field"
msgstr "የ ፎርም ሜዳ ማስገቢያ"
#. 2zJmG
-#: sw/inc/strings.hrc:583
+#: sw/inc/strings.hrc:584
msgctxt "STR_DROP_DOWN_FIELD_ITEM_LIMIT"
msgid "You can specify maximum of 25 items for a drop-down form field."
msgstr ""
#. CUXeF
-#: sw/inc/strings.hrc:585
+#: sw/inc/strings.hrc:586
msgctxt "STR_ACCESS_DOC_NAME"
msgid "Document view"
msgstr "ሰነድ መመልከቻ"
#. FrBrC
-#: sw/inc/strings.hrc:586
+#: sw/inc/strings.hrc:587
msgctxt "STR_ACCESS_DOC_DESC"
msgid "Document view"
msgstr "ሰነድ መመልከቻ"
#. BCEgS
-#: sw/inc/strings.hrc:587
+#: sw/inc/strings.hrc:588
msgctxt "STR_ACCESS_HEADER_NAME"
msgid "Header $(ARG1)"
msgstr "ራስጌ $(ARG1)"
#. zKdDR
-#: sw/inc/strings.hrc:588
+#: sw/inc/strings.hrc:589
msgctxt "STR_ACCESS_HEADER_DESC"
msgid "Header page $(ARG1)"
msgstr "የ ራስጌ ገጽ $(ARG1)"
#. NhFrV
-#: sw/inc/strings.hrc:589
+#: sw/inc/strings.hrc:590
msgctxt "STR_ACCESS_FOOTER_NAME"
msgid "Footer $(ARG1)"
msgstr "ግርጌ $(ARG1)"
#. 6GJNd
-#: sw/inc/strings.hrc:590
+#: sw/inc/strings.hrc:591
msgctxt "STR_ACCESS_FOOTER_DESC"
msgid "Footer page $(ARG1)"
msgstr "የ ግርጌ ገጽ $(ARG1)"
#. VGUwW
-#: sw/inc/strings.hrc:591
+#: sw/inc/strings.hrc:592
msgctxt "STR_ACCESS_FOOTNOTE_NAME"
msgid "Footnote $(ARG1)"
msgstr "የ ግርጌ ማስታወሻ $(ARG1)"
#. a7XMU
-#: sw/inc/strings.hrc:592
+#: sw/inc/strings.hrc:593
msgctxt "STR_ACCESS_FOOTNOTE_DESC"
msgid "Footnote $(ARG1)"
msgstr "የ ግርጌ ማስታወሻ $(ARG1)"
#. 3ExiP
-#: sw/inc/strings.hrc:593
+#: sw/inc/strings.hrc:594
msgctxt "STR_ACCESS_ENDNOTE_NAME"
msgid "Endnote $(ARG1)"
msgstr "የ መጨረሻ ማስታወሻ $(ARG1)"
#. 8XdTm
-#: sw/inc/strings.hrc:594
+#: sw/inc/strings.hrc:595
msgctxt "STR_ACCESS_ENDNOTE_DESC"
msgid "Endnote $(ARG1)"
msgstr "የ መጨረሻ ማስታወሻ $(ARG1)"
#. 4sTZN
-#: sw/inc/strings.hrc:595
+#: sw/inc/strings.hrc:596
msgctxt "STR_ACCESS_TABLE_DESC"
msgid "$(ARG1) on page $(ARG2)"
msgstr "$(ARG1) በገጹ ላይ $(ARG2)"
#. Z5Uy9
-#: sw/inc/strings.hrc:596
+#: sw/inc/strings.hrc:597
msgctxt "STR_ACCESS_PAGE_NAME"
msgid "Page $(ARG1)"
msgstr "ገጽ $(ARG1)"
#. CWroT
-#: sw/inc/strings.hrc:597
+#: sw/inc/strings.hrc:598
msgctxt "STR_ACCESS_PAGE_DESC"
msgid "Page: $(ARG1)"
msgstr "ገጽ: $(ARG1)"
#. iwfxM
-#: sw/inc/strings.hrc:598
+#: sw/inc/strings.hrc:599
msgctxt "STR_ACCESS_ANNOTATION_AUTHOR_NAME"
msgid "Author"
msgstr "ደራሲው"
#. sff9t
-#: sw/inc/strings.hrc:599
+#: sw/inc/strings.hrc:600
msgctxt "STR_ACCESS_ANNOTATION_DATE_NAME"
msgid "Date"
msgstr "ቀን"
#. VScXC
-#: sw/inc/strings.hrc:600
+#: sw/inc/strings.hrc:601
msgctxt "STR_ACCESS_ANNOTATION_RESOLVED_NAME"
msgid "Resolved"
msgstr ""
#. JtzA4
-#: sw/inc/strings.hrc:601
+#: sw/inc/strings.hrc:602
msgctxt "STR_ACCESS_ANNOTATION_BUTTON_NAME"
msgid "Actions"
msgstr "ተግባሮች"
#. cHWqM
-#: sw/inc/strings.hrc:602
+#: sw/inc/strings.hrc:603
msgctxt "STR_ACCESS_ANNOTATION_BUTTON_DESC"
msgid "Activate this button to open a list of actions which can be performed on this comment and other comments"
msgstr "ይህን ቁልፍ ያስነሱ በዚህ አስተያየት እና በሌሎችም አስተያየት ላይ ዝርዝር ተግባሮችን ለመክፈት እና ለመፈጸም"
#. 9YxaB
-#: sw/inc/strings.hrc:603
+#: sw/inc/strings.hrc:604
msgctxt "STR_ACCESS_PREVIEW_DOC_NAME"
msgid "Document preview"
msgstr "የ ሰነድ ቅድመ እይታ"
#. eYFFo
-#: sw/inc/strings.hrc:604
+#: sw/inc/strings.hrc:605
msgctxt "STR_ACCESS_PREVIEW_DOC_SUFFIX"
msgid "(Preview mode)"
msgstr "(ቅድመ እይታ ዘዴ)"
#. Fp7Hn
-#: sw/inc/strings.hrc:605
+#: sw/inc/strings.hrc:606
msgctxt "STR_ACCESS_DOC_WORDPROCESSING"
msgid "%PRODUCTNAME Document"
msgstr "%PRODUCTNAME ሰነድ"
#. CsQKH
-#: sw/inc/strings.hrc:607
+#: sw/inc/strings.hrc:608
msgctxt "STR_COMCORE_READERROR"
msgid "Read Error"
msgstr "የ ማንበብ ስህተት"
#. ztbVu
-#: sw/inc/strings.hrc:608
+#: sw/inc/strings.hrc:609
msgctxt "STR_COMCORE_CANT_SHOW"
msgid "Image cannot be displayed."
msgstr "ምስሉን ማሳየት አልተቻለም"
#. iJsFt
-#: sw/inc/strings.hrc:609
+#: sw/inc/strings.hrc:610
msgctxt "STR_ERROR_CLPBRD_READ"
msgid "Error reading from the clipboard."
msgstr "ስህተት ከቁራጭ ሰሌዳው በማንበብ ላይ"
#. bXZQD
-#: sw/inc/strings.hrc:611
+#: sw/inc/strings.hrc:612
msgctxt "STR_COLUMN_BREAK"
msgid "Manual Column Break"
msgstr "የ አምድ መጨረሻ በ እጅ የሚሰራ"
#. 7DzNG
-#: sw/inc/strings.hrc:613
+#: sw/inc/strings.hrc:614
msgctxt "STR_CHART2_ROW_LABEL_TEXT"
msgid "Row %ROWNUMBER"
msgstr "ረድፍ %ROWNUMBER"
#. GYFVF
-#: sw/inc/strings.hrc:614
+#: sw/inc/strings.hrc:615
msgctxt "STR_CHART2_COL_LABEL_TEXT"
msgid "Column %COLUMNLETTER"
msgstr "አምድ %COLUMNLETTER"
#. GGS2b
-#: sw/inc/strings.hrc:615
+#: sw/inc/strings.hrc:616
msgctxt "STR_STYLE_FAMILY_CHARACTER"
msgid "Character"
msgstr "ባህሪ"
#. KBw5e
-#: sw/inc/strings.hrc:616
+#: sw/inc/strings.hrc:617
msgctxt "STR_STYLE_FAMILY_PARAGRAPH"
msgid "Paragraph"
msgstr "አንቀጽ"
#. ERH8o
-#: sw/inc/strings.hrc:617
+#: sw/inc/strings.hrc:618
msgctxt "STR_STYLE_FAMILY_FRAME"
msgid "Frame"
msgstr "ክፈፍ"
#. Cqjn8
-#: sw/inc/strings.hrc:618
+#: sw/inc/strings.hrc:619
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Pages"
msgstr "ገጾች"
#. FFZEr
-#: sw/inc/strings.hrc:619
+#: sw/inc/strings.hrc:620
msgctxt "STR_STYLE_FAMILY_NUMBERING"
msgid "List"
msgstr "ዝርዝር"
#. NydLs
-#: sw/inc/strings.hrc:620
+#: sw/inc/strings.hrc:621
msgctxt "STR_STYLE_FAMILY_TABLE"
msgid "Table"
msgstr "ሰንጠረዥ"
#. XUhuM
-#: sw/inc/strings.hrc:621
+#: sw/inc/strings.hrc:622
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell"
msgstr "ክፍል"
#. DRqDZ
-#: sw/inc/strings.hrc:623
+#: sw/inc/strings.hrc:624
msgctxt "ST_SCRIPT_ASIAN"
msgid "Asian"
msgstr "Asian"
#. owFtq
-#: sw/inc/strings.hrc:624
+#: sw/inc/strings.hrc:625
msgctxt "ST_SCRIPT_CTL"
msgid "CTL"
msgstr "CTL"
#. ap5iF
-#: sw/inc/strings.hrc:625
+#: sw/inc/strings.hrc:626
msgctxt "ST_SCRIPT_WESTERN"
msgid "Western"
msgstr "ምእራባዊ"
#. HD64i
-#: sw/inc/strings.hrc:626
+#: sw/inc/strings.hrc:627
msgctxt "STR_PRINTOPTUI_PRODUCTNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. q6egu
-#: sw/inc/strings.hrc:627
+#: sw/inc/strings.hrc:628
msgctxt "STR_PRINTOPTUI_CONTENTS"
msgid "Contents"
msgstr "ይዞታዎች"
#. Ka4fM
-#: sw/inc/strings.hrc:628
+#: sw/inc/strings.hrc:629
msgctxt "STR_PRINTOPTUI_PAGE_BACKGROUND"
msgid "Page ba~ckground"
msgstr "የ ገጽ መደ~ብ"
#. YPEEH
-#: sw/inc/strings.hrc:629
+#: sw/inc/strings.hrc:630
msgctxt "STR_PRINTOPTUI_PICTURES"
msgid "~Images and other graphic objects"
msgstr "~ስእሎች እና ሌሎች የ ንድፍ እቃዎች"
#. L6GSj
-#: sw/inc/strings.hrc:630
+#: sw/inc/strings.hrc:631
msgctxt "STR_PRINTOPTUI_HIDDEN"
msgid "Hidden te~xt"
msgstr "የ ተደበቁ ጽሁ~ፎች"
#. pXiRN
-#: sw/inc/strings.hrc:631
+#: sw/inc/strings.hrc:632
msgctxt "STR_PRINTOPTUI_TEXT_PLACEHOLDERS"
msgid "~Text placeholders"
msgstr "የ ~ጽሁፍ ቦታ ያዢዎች"
#. JBWVd
-#: sw/inc/strings.hrc:632
+#: sw/inc/strings.hrc:633
msgctxt "STR_PRINTOPTUI_FORM_CONTROLS"
msgid "Form control~s"
msgstr "ፎርም መቆጣጠሪ~ያ"
#. X8Bfu
-#: sw/inc/strings.hrc:633
+#: sw/inc/strings.hrc:634
msgctxt "STR_PRINTOPTUI_COLOR"
msgid "Color"
msgstr "ቀለም"
#. kQDcq
-#: sw/inc/strings.hrc:634
+#: sw/inc/strings.hrc:635
msgctxt "STR_PRINTOPTUI_PRINT_BLACK"
msgid "Print text in blac~k"
msgstr "ጽሁፍ በጥቁ~ር ማተሚያ"
#. DEELn
-#: sw/inc/strings.hrc:635
+#: sw/inc/strings.hrc:636
msgctxt "STR_PRINTOPTUI_PAGES_TEXT"
msgid "Pages:"
msgstr "ገጾች:"
#. uddbB
-#: sw/inc/strings.hrc:636
+#: sw/inc/strings.hrc:637
msgctxt "STR_PRINTOPTUI_PRINT_BLANK"
msgid "Print ~automatically inserted blank pages"
msgstr "የገቡትን ባዶ ገጾች ~ራሱ በራሱ ማተሚያ"
#. MTJt2
-#: sw/inc/strings.hrc:637
+#: sw/inc/strings.hrc:638
msgctxt "STR_PRINTOPTUI_ONLY_PAPER"
msgid "~Use only paper tray from printer preferences"
msgstr "~ይጠቀሙ የ ወረቀት ትሪ ከ ማተሚያ ምርጫዎች ውስጥ ብቻ"
#. 4uBam
-#: sw/inc/strings.hrc:638
+#: sw/inc/strings.hrc:639
msgctxt "STR_PRINTOPTUI_NONE"
msgid "None (document only)"
msgstr "ምንም (ሰነድ ብቻ)"
#. pbQtA
-#: sw/inc/strings.hrc:639
+#: sw/inc/strings.hrc:640
msgctxt "STR_PRINTOPTUI_COMMENTS_ONLY"
msgid "Comments only"
msgstr "አስተያየቶች ብቻ"
#. sVnbD
-#: sw/inc/strings.hrc:640
+#: sw/inc/strings.hrc:641
msgctxt "STR_PRINTOPTUI_PLACE_END"
msgid "Place at end of document"
msgstr "በ ሰነድ መጨረሻ ላይ ማድረጊያ"
#. D4BXH
-#: sw/inc/strings.hrc:641
+#: sw/inc/strings.hrc:642
msgctxt "STR_PRINTOPTUI_PLACE_PAGE"
msgid "Place at end of page"
msgstr "በ ሰነድ መጨረሻ ላይ ማድረጊያ"
#. 6rzab
-#: sw/inc/strings.hrc:642
+#: sw/inc/strings.hrc:643
msgctxt "STR_PRINTOPTUI_COMMENTS"
msgid "~Comments"
msgstr "~አስተያየቶች"
#. cnqLU
-#: sw/inc/strings.hrc:643
+#: sw/inc/strings.hrc:644
msgctxt "STR_PRINTOPTUI_BROCHURE"
msgid "Broch~ure"
msgstr "መግለጫ~ጽሁፍ"
#. t6drz
-#: sw/inc/strings.hrc:644
+#: sw/inc/strings.hrc:645
msgctxt "STR_PRINTOPTUI_LEFT_SCRIPT"
msgid "Left-to-right script"
msgstr "ከ ግራ-ወደ-ቀኝ ጽሁፍ"
#. QgmxB
-#: sw/inc/strings.hrc:645
+#: sw/inc/strings.hrc:646
msgctxt "STR_PRINTOPTUI_RIGHT_SCRIPT"
msgid "Right-to-left script"
msgstr "ከ ቀኝ-ወደ-ግራ ጽሁፍ"
#. t4Cm7
-#: sw/inc/strings.hrc:646
+#: sw/inc/strings.hrc:647
msgctxt "STR_PRINTOPTUI_PRINTALLPAGES"
msgid "~All Pages"
msgstr "~ሁሉንም ገጾች"
#. ZDRM2
-#: sw/inc/strings.hrc:647
+#: sw/inc/strings.hrc:648
msgctxt "STR_PRINTOPTUI_PRINTPAGES"
msgid "Pa~ges:"
msgstr "ገጾ~ች:"
#. rajyx
-#: sw/inc/strings.hrc:648
+#: sw/inc/strings.hrc:649
msgctxt "STR_PRINTOPTUI_PRINTSELECTION"
msgid "~Selection"
msgstr "የ ~ተመረጠው"
#. 9EXcV
-#: sw/inc/strings.hrc:649
+#: sw/inc/strings.hrc:650
msgctxt "STR_PRINTOPTUI_PLACE_MARGINS"
msgid "Place in margins"
msgstr "በ መስመር ውስጥ ማድረጊያ"
#. NGQw3
-#: sw/inc/strings.hrc:651
+#: sw/inc/strings.hrc:652
msgctxt "STR_FORMULA_CALC"
msgid "Functions"
msgstr "ተግባሮች"
#. D3RCG
-#: sw/inc/strings.hrc:652
+#: sw/inc/strings.hrc:653
msgctxt "STR_FORMULA_CANCEL"
msgid "Cancel"
msgstr "መሰረዣ"
#. 3Tg3C
-#: sw/inc/strings.hrc:653
+#: sw/inc/strings.hrc:654
msgctxt "STR_FORMULA_APPLY"
msgid "Apply"
msgstr "መፈጸሚያ"
#. UDkFb
-#: sw/inc/strings.hrc:654
+#: sw/inc/strings.hrc:655
msgctxt "STR_ACCESS_FORMULA_TOOLBAR"
msgid "Formula Tool Bar"
msgstr "የ መቀመሪያ እቃ መደርደሪያ"
#. Z3CB5
-#: sw/inc/strings.hrc:655
+#: sw/inc/strings.hrc:656
msgctxt "STR_ACCESS_FORMULA_TYPE"
msgid "Formula Type"
msgstr "የ መቀመሪያ አይነት"
#. 3CCa7
-#: sw/inc/strings.hrc:656
+#: sw/inc/strings.hrc:657
msgctxt "STR_ACCESS_FORMULA_TEXT"
msgid "Formula Text"
msgstr "የ _መቀመሪያ ጽሁፍ"
#. FXNer
-#: sw/inc/strings.hrc:658
+#: sw/inc/strings.hrc:659
msgctxt "STR_ACCESS_TL_GLOBAL"
msgid "Global View"
msgstr "አለም አቀፍ መመልከቻ"
#. aeeRP
-#: sw/inc/strings.hrc:659
+#: sw/inc/strings.hrc:660
msgctxt "STR_ACCESS_TL_CONTENT"
msgid "Content Navigation View"
msgstr "ይዞታ መቃኛ መመለከቻ"
#. UAExA
-#: sw/inc/strings.hrc:660
+#: sw/inc/strings.hrc:661
msgctxt "STR_OUTLINE_LEVEL"
msgid "Outline Level"
msgstr "የ ረቂቅ ደረጃ"
#. yERK6
-#: sw/inc/strings.hrc:661
+#: sw/inc/strings.hrc:662
msgctxt "STR_DRAGMODE"
msgid "Drag Mode"
msgstr "መጎተቻ ዘዴ"
#. PAB4k
-#: sw/inc/strings.hrc:662
+#: sw/inc/strings.hrc:663
msgctxt "STR_SEND_OUTLINE_TO_CLIPBOARD_ENTRY"
msgid "Send Outline to Clipboard"
msgstr "ረቂቅ ወደ ቁራጭ ሰሌዳ መላኪያ"
#. b5tPU
-#: sw/inc/strings.hrc:663
+#: sw/inc/strings.hrc:664
msgctxt "STR_OUTLINE_TRACKING"
msgid "Outline Tracking"
msgstr "ረቂቅ መከታተያ"
#. qzXwn
-#: sw/inc/strings.hrc:664
+#: sw/inc/strings.hrc:665
msgctxt "STR_OUTLINE_TRACKING_DEFAULT"
msgid "Default"
msgstr "ነባር"
#. HGDgJ
-#: sw/inc/strings.hrc:665
+#: sw/inc/strings.hrc:666
msgctxt "STR_OUTLINE_TRACKING_FOCUS"
msgid "Focus"
msgstr "ትኩረት"
#. BYRpF
-#: sw/inc/strings.hrc:666
+#: sw/inc/strings.hrc:667
msgctxt "STR_OUTLINE_TRACKING_OFF"
msgid "Off"
msgstr "ማጥፊያ"
#. NGgt3
-#: sw/inc/strings.hrc:667
+#: sw/inc/strings.hrc:668
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle outline folding"
msgstr ""
#. 44jEc
-#: sw/inc/strings.hrc:668
+#: sw/inc/strings.hrc:669
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
msgstr ""
#. mnZA9
-#: sw/inc/strings.hrc:669
+#: sw/inc/strings.hrc:670
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle outline folding"
msgstr ""
#. rkD8H
-#: sw/inc/strings.hrc:670
+#: sw/inc/strings.hrc:671
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
msgstr ""
#. oBH6y
-#: sw/inc/strings.hrc:671
+#: sw/inc/strings.hrc:672
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_TOGGLE"
msgid "Toggle"
msgstr "መቀያየሪያ"
#. YBDFD
-#: sw/inc/strings.hrc:672
+#: sw/inc/strings.hrc:673
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_SHOW_ALL"
msgid "Unfold All"
msgstr "ሁሉንም መዘርጊያ"
#. Cj4js
-#: sw/inc/strings.hrc:673
+#: sw/inc/strings.hrc:674
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_HIDE_ALL"
msgid "Fold All"
msgstr "ሁሉንም ማጠፊያ"
#. 9Fipd
-#: sw/inc/strings.hrc:675
+#: sw/inc/strings.hrc:676
msgctxt "STR_EXPANDALL"
msgid "Expand All"
msgstr "ሁሉንም ማስፊያ"
#. FxGVt
-#: sw/inc/strings.hrc:676
+#: sw/inc/strings.hrc:677
msgctxt "STR_COLLAPSEALL"
msgid "Collapse All"
msgstr "ሁሉንም ማሳነሻ"
#. xvSRm
-#: sw/inc/strings.hrc:677
+#: sw/inc/strings.hrc:678
msgctxt "STR_HYPERLINK"
msgid "Insert as Hyperlink"
msgstr "እንደ Hyperlink ማስገቢያ"
#. sdfGe
-#: sw/inc/strings.hrc:678
+#: sw/inc/strings.hrc:679
msgctxt "STR_LINK_REGION"
msgid "Insert as Link"
msgstr "እንደ አገናኝ ማስገቢያ"
#. Suaiz
-#: sw/inc/strings.hrc:679
+#: sw/inc/strings.hrc:680
msgctxt "STR_COPY_REGION"
msgid "Insert as Copy"
msgstr "እንደ ኮፒ ማስገቢያ"
#. VgdhT
-#: sw/inc/strings.hrc:680
+#: sw/inc/strings.hrc:681
msgctxt "STR_DISPLAY"
msgid "Display"
msgstr "ማሳያ"
#. 3VXp5
-#: sw/inc/strings.hrc:681
+#: sw/inc/strings.hrc:682
msgctxt "STR_ACTIVE_VIEW"
msgid "Active Window"
msgstr "ንቁ መስኮት"
#. fAAUc
-#: sw/inc/strings.hrc:682
+#: sw/inc/strings.hrc:683
msgctxt "STR_HIDDEN"
msgid "hidden"
msgstr "የተደበቀ"
#. 3VWjq
-#: sw/inc/strings.hrc:683
+#: sw/inc/strings.hrc:684
msgctxt "STR_ACTIVE"
msgid "active"
msgstr "ንቁ"
#. YjPvg
-#: sw/inc/strings.hrc:684
+#: sw/inc/strings.hrc:685
msgctxt "STR_INACTIVE"
msgid "inactive"
msgstr "የቦዘነ"
#. tBPKU
-#: sw/inc/strings.hrc:685
+#: sw/inc/strings.hrc:686
msgctxt "STR_EDIT_ENTRY"
msgid "Edit..."
msgstr "ማረሚያ..."
#. ppC87
-#: sw/inc/strings.hrc:686
+#: sw/inc/strings.hrc:687
msgctxt "STR_UPDATE"
msgid "~Update"
msgstr "~ማሻሻያ"
#. 44Esc
-#: sw/inc/strings.hrc:687
+#: sw/inc/strings.hrc:688
msgctxt "STR_EDIT_CONTENT"
msgid "Edit"
msgstr "ማረሚያ"
#. w3ZrD
-#: sw/inc/strings.hrc:688
+#: sw/inc/strings.hrc:689
msgctxt "STR_EDIT_LINK"
msgid "Edit link"
msgstr "አገናኝ ማረሚያ"
#. xyPWE
-#: sw/inc/strings.hrc:689
+#: sw/inc/strings.hrc:690
msgctxt "STR_EDIT_INSERT"
msgid "Insert"
msgstr "ማስገቢያ"
#. AT9SS
-#: sw/inc/strings.hrc:690
+#: sw/inc/strings.hrc:691
msgctxt "STR_INDEX"
msgid "~Index"
msgstr "~ማውጫ"
#. MnBLc
-#: sw/inc/strings.hrc:691
+#: sw/inc/strings.hrc:692
msgctxt "STR_FILE"
msgid "File"
msgstr "ፋይል"
#. DdBgh
-#: sw/inc/strings.hrc:692
+#: sw/inc/strings.hrc:693
msgctxt "STR_NEW_FILE"
msgid "New Document"
msgstr "አዲስ ሰነድ"
#. aV9Uy
-#: sw/inc/strings.hrc:693
+#: sw/inc/strings.hrc:694
msgctxt "STR_INSERT_TEXT"
msgid "Text"
msgstr "ጽሁፍ"
#. 5rD3D
-#: sw/inc/strings.hrc:694
+#: sw/inc/strings.hrc:695
msgctxt "STR_DELETE"
msgid "Delete"
msgstr "ማጥፊያ"
#. 9MrsU
-#: sw/inc/strings.hrc:695
+#: sw/inc/strings.hrc:696
msgctxt "STR_DELETE_ENTRY"
msgid "~Delete"
msgstr "~ማጥፊያ"
#. A28Rb
-#: sw/inc/strings.hrc:696
+#: sw/inc/strings.hrc:697
msgctxt "STR_UPDATE_SEL"
msgid "Selection"
msgstr "ምርጫ"
#. gRBxA
-#: sw/inc/strings.hrc:697
+#: sw/inc/strings.hrc:698
msgctxt "STR_UPDATE_INDEX"
msgid "Indexes"
msgstr "ማውጫዎች"
#. WKwLS
-#: sw/inc/strings.hrc:698
+#: sw/inc/strings.hrc:699
msgctxt "STR_UPDATE_LINK"
msgid "Links"
msgstr "አገናኞች"
#. TaaJK
-#: sw/inc/strings.hrc:699
+#: sw/inc/strings.hrc:700
msgctxt "STR_UPDATE_ALL"
msgid "All"
msgstr "ሁሉንም"
#. HpMeb
-#: sw/inc/strings.hrc:701
+#: sw/inc/strings.hrc:702
msgctxt "STR_INVISIBLE"
msgid "hidden"
msgstr "የተደበቀ"
#. XcCnB
-#: sw/inc/strings.hrc:702
+#: sw/inc/strings.hrc:703
msgctxt "STR_BROKEN_LINK"
msgid "File not found: "
msgstr "ፋይሉ አልተገኘም: "
#. UC53U
-#: sw/inc/strings.hrc:704
+#: sw/inc/strings.hrc:705
msgctxt "STR_RESOLVED"
msgid "RESOLVED"
msgstr ""
#. 3ceMF
-#: sw/inc/strings.hrc:706
+#: sw/inc/strings.hrc:707
msgctxt "STR_MARGIN_TOOLTIP_LEFT"
msgid "Left: "
msgstr "በ ግራ: "
#. EiXF2
-#: sw/inc/strings.hrc:707
+#: sw/inc/strings.hrc:708
msgctxt "STR_MARGIN_TOOLTIP_RIGHT"
msgid ". Right: "
msgstr ". በ ቀኝ: "
#. UFpVa
-#: sw/inc/strings.hrc:708
+#: sw/inc/strings.hrc:709
msgctxt "STR_MARGIN_TOOLTIP_INNER"
msgid "Inner: "
msgstr "ውስጥ: "
#. XE7Wb
-#: sw/inc/strings.hrc:709
+#: sw/inc/strings.hrc:710
msgctxt "STR_MARGIN_TOOLTIP_OUTER"
msgid ". Outer: "
msgstr ". ውጪ: "
#. 3A8Vg
-#: sw/inc/strings.hrc:710
+#: sw/inc/strings.hrc:711
msgctxt "STR_MARGIN_TOOLTIP_TOP"
msgid ". Top: "
msgstr ". ከ ላይ: "
#. dRhyZ
-#: sw/inc/strings.hrc:711
+#: sw/inc/strings.hrc:712
msgctxt "STR_MARGIN_TOOLTIP_BOT"
msgid ". Bottom: "
msgstr ". ከ ታች: "
#. XuC4Y
#. Error calculator
-#: sw/inc/strings.hrc:714
+#: sw/inc/strings.hrc:715
msgctxt "STR_POSTIT_PAGE"
msgid "Page"
msgstr "ገጽ"
#. AeDYh
-#: sw/inc/strings.hrc:715
+#: sw/inc/strings.hrc:716
msgctxt "STR_POSTIT_LINE"
msgid "Line"
msgstr "መስመር"
#. kfJG6
-#: sw/inc/strings.hrc:716
+#: sw/inc/strings.hrc:717
msgctxt "STR_POSTIT_AUTHOR"
msgid "Author"
msgstr "ደራሲው"
#. gejqG
-#: sw/inc/strings.hrc:717
+#: sw/inc/strings.hrc:718
msgctxt "STR_CALC_SYNTAX"
msgid "** Syntax Error **"
msgstr "** የ አገባብ ስህተት **"
#. q6dUT
-#: sw/inc/strings.hrc:718
+#: sw/inc/strings.hrc:719
msgctxt "STR_CALC_ZERODIV"
msgid "** Division by zero **"
msgstr "** በ ዜሮ ማካፈያ **"
#. HSo6d
-#: sw/inc/strings.hrc:719
+#: sw/inc/strings.hrc:720
msgctxt "STR_CALC_BRACK"
msgid "** Wrong use of brackets **"
msgstr "** የ ተሳሳተ የ ቅንፎች አጠቃቀም **"
#. jcNfg
-#: sw/inc/strings.hrc:720
+#: sw/inc/strings.hrc:721
msgctxt "STR_CALC_POW"
msgid "** Square function overflow **"
msgstr "** የ ስኴር ተግባር ሞልቶ ፈሰስ**"
#. C453V
-#: sw/inc/strings.hrc:721
+#: sw/inc/strings.hrc:722
msgctxt "STR_CALC_OVERFLOW"
msgid "** Overflow **"
msgstr "** ሞልቶ ፈሰሰ **"
#. KEQfz
-#: sw/inc/strings.hrc:722
+#: sw/inc/strings.hrc:723
msgctxt "STR_CALC_DEFAULT"
msgid "** Error **"
msgstr "** ስህተት **"
#. hxrg9
-#: sw/inc/strings.hrc:723
+#: sw/inc/strings.hrc:724
msgctxt "STR_CALC_ERROR"
msgid "** Expression is faulty **"
msgstr "** አገላለጹ የተሳሳተ ነው **"
#. 2yBhF
-#: sw/inc/strings.hrc:724
+#: sw/inc/strings.hrc:725
msgctxt "STR_GETREFFLD_REFITEMNOTFOUND"
msgid "Error: Reference source not found"
msgstr "ስህተት: የ ማመሳከሪያው ምንጭ አልተገኘም"
#. jgRW7
-#: sw/inc/strings.hrc:725
+#: sw/inc/strings.hrc:726
msgctxt "STR_TEMPLATE_NONE"
msgid "None"
msgstr "ምንም"
#. KRD6s
-#: sw/inc/strings.hrc:726
+#: sw/inc/strings.hrc:727
msgctxt "STR_FIELD_FIXED"
msgid "(fixed)"
msgstr "(የተወሰነ)"
#. FCRUB
-#: sw/inc/strings.hrc:727
+#: sw/inc/strings.hrc:728
msgctxt "STR_DURATION_FORMAT"
msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " አ: %1 ወ: %2 ቀ: %3 ሰ: %4 ደ: %5 ሰ: %6"
#. ocA84
-#: sw/inc/strings.hrc:728
+#: sw/inc/strings.hrc:729
msgctxt "STR_TOI"
msgid "Alphabetical Index"
msgstr "በ ፊደል ቅደም ተከተል ማውጫ"
#. GDCRF
-#: sw/inc/strings.hrc:729
+#: sw/inc/strings.hrc:730
msgctxt "STR_TOU"
msgid "User-Defined"
msgstr "በ ተጠቃሚው-የሚወሰን"
#. vnaNc
-#: sw/inc/strings.hrc:730
+#: sw/inc/strings.hrc:731
msgctxt "STR_TOC"
msgid "Table of Contents"
msgstr "የ ሰንጠረዥ ማውጫ"
#. BESjb
-#: sw/inc/strings.hrc:731
+#: sw/inc/strings.hrc:732
msgctxt "STR_TOX_AUTH"
msgid "Bibliography"
msgstr "ቢብሊዮግራፊ"
#. ZFBUD
-#: sw/inc/strings.hrc:732
+#: sw/inc/strings.hrc:733
msgctxt "STR_TOX_CITATION"
msgid "Citation"
msgstr "ጥቅስ"
#. WAs8q
-#: sw/inc/strings.hrc:733
+#: sw/inc/strings.hrc:734
msgctxt "STR_TOX_TBL"
msgid "Index of Tables"
msgstr "የ ሰንጠረዦች ማውጫ"
#. NFzTx
-#: sw/inc/strings.hrc:734
+#: sw/inc/strings.hrc:735
msgctxt "STR_TOX_OBJ"
msgid "Table of Objects"
msgstr "የ እቃዎች ሰንጠረዥ"
#. mSyms
-#: sw/inc/strings.hrc:735
+#: sw/inc/strings.hrc:736
msgctxt "STR_TOX_ILL"
msgid "Table of Figures"
msgstr "የ ማውጫ አካሎች"
#. TspkU
#. SubType DocInfo
-#: sw/inc/strings.hrc:737
+#: sw/inc/strings.hrc:738
msgctxt "FLD_DOCINFO_TITEL"
msgid "Title"
msgstr "አርእስት"
#. ziEpC
-#: sw/inc/strings.hrc:738
+#: sw/inc/strings.hrc:739
msgctxt "FLD_DOCINFO_THEMA"
msgid "Subject"
msgstr "ጉዳይ"
#. FCVZS
-#: sw/inc/strings.hrc:739
+#: sw/inc/strings.hrc:740
msgctxt "FLD_DOCINFO_KEYS"
msgid "Keywords"
msgstr "ቁልፍ ቃል"
#. kHC7q
-#: sw/inc/strings.hrc:740
+#: sw/inc/strings.hrc:741
msgctxt "FLD_DOCINFO_COMMENT"
msgid "Comments"
msgstr "አስተያየቶች"
#. i6psX
-#: sw/inc/strings.hrc:741
+#: sw/inc/strings.hrc:742
msgctxt "FLD_DOCINFO_CREATE"
msgid "Created"
msgstr "ተፈጥሯል"
#. L2Bxp
-#: sw/inc/strings.hrc:742
+#: sw/inc/strings.hrc:743
msgctxt "FLD_DOCINFO_CHANGE"
msgid "Modified"
msgstr "ተሻሽሏል"
#. D2YKS
-#: sw/inc/strings.hrc:743
+#: sw/inc/strings.hrc:744
msgctxt "FLD_DOCINFO_PRINT"
msgid "Last printed"
msgstr "መጨረሻ የታተመው"
#. QtuZM
-#: sw/inc/strings.hrc:744
+#: sw/inc/strings.hrc:745
msgctxt "FLD_DOCINFO_DOCNO"
msgid "Revision number"
msgstr "የ ክለሳ ቁጥር"
#. YDFbi
-#: sw/inc/strings.hrc:745
+#: sw/inc/strings.hrc:746
msgctxt "FLD_DOCINFO_EDIT"
msgid "Total editing time"
msgstr "ጠቅላላ ለማረም የፈጀው ጊዜ"
#. EpZ9C
-#: sw/inc/strings.hrc:746
+#: sw/inc/strings.hrc:747
msgctxt "STR_PAGEDESC_NAME"
msgid "Convert $(ARG1)"
msgstr "መቀየሪያ $(ARG1)"
#. nY3NU
-#: sw/inc/strings.hrc:747
+#: sw/inc/strings.hrc:748
msgctxt "STR_PAGEDESC_FIRSTNAME"
msgid "First convert $(ARG1)"
msgstr "በ መጀመሪያ መቀየሪያ $(ARG1)"
#. eQtGV
-#: sw/inc/strings.hrc:748
+#: sw/inc/strings.hrc:749
msgctxt "STR_PAGEDESC_FOLLOWNAME"
msgid "Next convert $(ARG1)"
msgstr "ቀጥሎ መቀየሪያ $(ARG1)"
#. aBwxC
-#: sw/inc/strings.hrc:749
+#: sw/inc/strings.hrc:750
msgctxt "STR_AUTH_TYPE_ARTICLE"
msgid "Article"
msgstr "ጽሁፍ"
#. di8ud
-#: sw/inc/strings.hrc:750
+#: sw/inc/strings.hrc:751
msgctxt "STR_AUTH_TYPE_BOOK"
msgid "Book"
msgstr "መጽሐፍ"
#. GD5KJ
-#: sw/inc/strings.hrc:751
+#: sw/inc/strings.hrc:752
msgctxt "STR_AUTH_TYPE_BOOKLET"
msgid "Brochures"
msgstr "መግለጫ ጽሁፍ"
#. mfFSf
-#: sw/inc/strings.hrc:752
+#: sw/inc/strings.hrc:753
msgctxt "STR_AUTH_TYPE_CONFERENCE"
msgid "Conference proceedings"
msgstr "የ ስብሰባ ሂደት"
#. Et2Px
-#: sw/inc/strings.hrc:753
+#: sw/inc/strings.hrc:754
msgctxt "STR_AUTH_TYPE_INBOOK"
msgid "Book excerpt"
msgstr "የ መጽሐፍ ምንባብ"
#. ys2B8
-#: sw/inc/strings.hrc:754
+#: sw/inc/strings.hrc:755
msgctxt "STR_AUTH_TYPE_INCOLLECTION"
msgid "Book excerpt with title"
msgstr "የ መጽሐፍ ምንባብ ከ አርእስት ጋር"
#. mdEqj
-#: sw/inc/strings.hrc:755
+#: sw/inc/strings.hrc:756
msgctxt "STR_AUTH_TYPE_INPROCEEDINGS"
msgid "Conference proceedings"
msgstr "የ ስብሰባ ሂደት"
#. jNmVD
-#: sw/inc/strings.hrc:756
+#: sw/inc/strings.hrc:757
msgctxt "STR_AUTH_TYPE_JOURNAL"
msgid "Journal"
msgstr "ማስታወሻ"
#. M3xkM
-#: sw/inc/strings.hrc:757
+#: sw/inc/strings.hrc:758
msgctxt "STR_AUTH_TYPE_MANUAL"
msgid "Techn. documentation"
msgstr "ቴክኒካል. መረጃዎች"
#. EJAj4
-#: sw/inc/strings.hrc:758
+#: sw/inc/strings.hrc:759
msgctxt "STR_AUTH_TYPE_MASTERSTHESIS"
msgid "Thesis"
msgstr "ቴሲስ"
#. NoUCv
-#: sw/inc/strings.hrc:759
+#: sw/inc/strings.hrc:760
msgctxt "STR_AUTH_TYPE_MISC"
msgid "Miscellaneous"
msgstr "የተለያዩ"
#. qNGGE
-#: sw/inc/strings.hrc:760
+#: sw/inc/strings.hrc:761
msgctxt "STR_AUTH_TYPE_PHDTHESIS"
msgid "Dissertation"
msgstr "የ ቴሲስ ጽሁፍ"
#. L7W7R
-#: sw/inc/strings.hrc:761
+#: sw/inc/strings.hrc:762
msgctxt "STR_AUTH_TYPE_PROCEEDINGS"
msgid "Conference proceedings"
msgstr "ስብሰባ በ ሂደት ላይ"
#. X8bGG
-#: sw/inc/strings.hrc:762
+#: sw/inc/strings.hrc:763
msgctxt "STR_AUTH_TYPE_TECHREPORT"
msgid "Research report"
msgstr "የ ምርምር መግለጫ"
#. 4dDC9
-#: sw/inc/strings.hrc:763
+#: sw/inc/strings.hrc:764
msgctxt "STR_AUTH_TYPE_UNPUBLISHED"
msgid "Unpublished"
msgstr "ያልታተመ"
#. Gb38d
-#: sw/inc/strings.hrc:764
+#: sw/inc/strings.hrc:765
msgctxt "STR_AUTH_TYPE_EMAIL"
msgid "Email"
msgstr "ኢሜይል"
#. 9HKD6
-#: sw/inc/strings.hrc:765
+#: sw/inc/strings.hrc:766
msgctxt "STR_AUTH_TYPE_WWW"
msgid "WWW document"
msgstr "WWW ሰነድ"
#. qA449
-#: sw/inc/strings.hrc:766
+#: sw/inc/strings.hrc:767
msgctxt "STR_AUTH_TYPE_CUSTOM1"
msgid "User-defined1"
msgstr "በ ተጠቃሚው-የሚወሰን1"
#. nyzxz
-#: sw/inc/strings.hrc:767
+#: sw/inc/strings.hrc:768
msgctxt "STR_AUTH_TYPE_CUSTOM2"
msgid "User-defined2"
msgstr "በ ተጠቃሚው-የሚወሰን2"
#. cCFTF
-#: sw/inc/strings.hrc:768
+#: sw/inc/strings.hrc:769
msgctxt "STR_AUTH_TYPE_CUSTOM3"
msgid "User-defined3"
msgstr "በ ተጠቃሚው-የሚወሰን3"
#. mrqJC
-#: sw/inc/strings.hrc:769
+#: sw/inc/strings.hrc:770
msgctxt "STR_AUTH_TYPE_CUSTOM4"
msgid "User-defined4"
msgstr "በ ተጠቃሚው-የሚወሰን4"
#. fFs86
-#: sw/inc/strings.hrc:770
+#: sw/inc/strings.hrc:771
msgctxt "STR_AUTH_TYPE_CUSTOM5"
msgid "User-defined5"
msgstr "በ ተጠቃሚው-የሚወሰን5"
#. nsCwi
-#: sw/inc/strings.hrc:771
+#: sw/inc/strings.hrc:772
msgctxt "STR_AUTH_FIELD_IDENTIFIER"
msgid "Short name"
msgstr "አጭር ስም"
#. CpKgc
-#: sw/inc/strings.hrc:772
+#: sw/inc/strings.hrc:773
msgctxt "STR_AUTH_FIELD_AUTHORITY_TYPE"
msgid "Type"
msgstr "አይነት"
#. kUGDr
-#: sw/inc/strings.hrc:773
+#: sw/inc/strings.hrc:774
msgctxt "STR_AUTH_FIELD_ADDRESS"
msgid "Address"
msgstr "አድራሻ"
#. DquVQ
-#: sw/inc/strings.hrc:774
+#: sw/inc/strings.hrc:775
msgctxt "STR_AUTH_FIELD_ANNOTE"
msgid "Annotation"
msgstr "ማብራሪያ"
#. sduuV
-#: sw/inc/strings.hrc:775
+#: sw/inc/strings.hrc:776
msgctxt "STR_AUTH_FIELD_AUTHOR"
msgid "Author(s)"
msgstr "ደራሲ(ዎች)"
#. fXvz6
-#: sw/inc/strings.hrc:776
+#: sw/inc/strings.hrc:777
msgctxt "STR_AUTH_FIELD_BOOKTITLE"
msgid "Book title"
msgstr "የ መጽሀፍ አርእስት"
#. c8PFE
-#: sw/inc/strings.hrc:777
+#: sw/inc/strings.hrc:778
msgctxt "STR_AUTH_FIELD_CHAPTER"
msgid "Chapter"
msgstr "ምዕራፍ"
#. GXqxF
-#: sw/inc/strings.hrc:778
+#: sw/inc/strings.hrc:779
msgctxt "STR_AUTH_FIELD_EDITION"
msgid "Edition"
msgstr "እትም"
#. p7A3p
-#: sw/inc/strings.hrc:779
+#: sw/inc/strings.hrc:780
msgctxt "STR_AUTH_FIELD_EDITOR"
msgid "Editor"
msgstr "አራሚው"
#. aAFEz
-#: sw/inc/strings.hrc:780
+#: sw/inc/strings.hrc:781
msgctxt "STR_AUTH_FIELD_HOWPUBLISHED"
msgid "Publication type"
msgstr "የህትመቱ አይነት"
#. 8DwdJ
-#: sw/inc/strings.hrc:781
+#: sw/inc/strings.hrc:782
msgctxt "STR_AUTH_FIELD_INSTITUTION"
msgid "Institution"
msgstr "ድርጅት"
#. VWNxy
-#: sw/inc/strings.hrc:782
+#: sw/inc/strings.hrc:783
msgctxt "STR_AUTH_FIELD_JOURNAL"
msgid "Journal"
msgstr "ማስታወሻ"
#. Da4fW
-#: sw/inc/strings.hrc:783
+#: sw/inc/strings.hrc:784
msgctxt "STR_AUTH_FIELD_MONTH"
msgid "Month"
msgstr "ወር"
#. SdSBt
-#: sw/inc/strings.hrc:784
+#: sw/inc/strings.hrc:785
msgctxt "STR_AUTH_FIELD_NOTE"
msgid "Note"
msgstr "ማስታወሻ"
#. MZYpD
-#: sw/inc/strings.hrc:785
+#: sw/inc/strings.hrc:786
msgctxt "STR_AUTH_FIELD_NUMBER"
msgid "Number"
msgstr "ቁጥር"
#. ZB7Go
-#: sw/inc/strings.hrc:786
+#: sw/inc/strings.hrc:787
msgctxt "STR_AUTH_FIELD_ORGANIZATIONS"
msgid "Organization"
msgstr "ድርጅት"
#. C4CdP
-#: sw/inc/strings.hrc:787
+#: sw/inc/strings.hrc:788
msgctxt "STR_AUTH_FIELD_PAGES"
msgid "Page(s)"
msgstr "ገጽ(ጾች)"
#. yFPFa
-#: sw/inc/strings.hrc:788
+#: sw/inc/strings.hrc:789
msgctxt "STR_AUTH_FIELD_PUBLISHER"
msgid "Publisher"
msgstr "አሳታሚው"
#. d9u3p
-#: sw/inc/strings.hrc:789
+#: sw/inc/strings.hrc:790
msgctxt "STR_AUTH_FIELD_SCHOOL"
msgid "University"
msgstr "ዩኒቨርሲቲ"
#. Qxsdb
-#: sw/inc/strings.hrc:790
+#: sw/inc/strings.hrc:791
msgctxt "STR_AUTH_FIELD_SERIES"
msgid "Series"
msgstr "ተከታታይ"
#. YhXPg
-#: sw/inc/strings.hrc:791
+#: sw/inc/strings.hrc:792
msgctxt "STR_AUTH_FIELD_TITLE"
msgid "Title"
msgstr "አርእስት"
#. qEBhL
-#: sw/inc/strings.hrc:792
+#: sw/inc/strings.hrc:793
msgctxt "STR_AUTH_FIELD_TYPE"
msgid "Type of report"
msgstr "የ መግለጫው አይነት"
#. Sij9w
-#: sw/inc/strings.hrc:793
+#: sw/inc/strings.hrc:794
msgctxt "STR_AUTH_FIELD_VOLUME"
msgid "Volume"
msgstr "መጠን"
#. K8miv
-#: sw/inc/strings.hrc:794
+#: sw/inc/strings.hrc:795
msgctxt "STR_AUTH_FIELD_YEAR"
msgid "Year"
msgstr "አመት"
#. pFMSV
-#: sw/inc/strings.hrc:795
+#: sw/inc/strings.hrc:796
msgctxt "STR_AUTH_FIELD_URL"
msgid "URL"
msgstr "URL"
#. xFG3c
-#: sw/inc/strings.hrc:796
+#: sw/inc/strings.hrc:797
msgctxt "STR_AUTH_FIELD_CUSTOM1"
msgid "User-defined1"
msgstr "በ ተጠቃሚው-የሚወሰን1"
#. wtDyU
-#: sw/inc/strings.hrc:797
+#: sw/inc/strings.hrc:798
msgctxt "STR_AUTH_FIELD_CUSTOM2"
msgid "User-defined2"
msgstr "በ ተጠቃሚው-የሚወሰን2"
#. VH3Se
-#: sw/inc/strings.hrc:798
+#: sw/inc/strings.hrc:799
msgctxt "STR_AUTH_FIELD_CUSTOM3"
msgid "User-defined3"
msgstr "በ ተጠቃሚው-የሚወሰን3"
#. twuKb
-#: sw/inc/strings.hrc:799
+#: sw/inc/strings.hrc:800
msgctxt "STR_AUTH_FIELD_CUSTOM4"
msgid "User-defined4"
msgstr "በ ተጠቃሚው-የሚወሰን4"
#. WAo7Z
-#: sw/inc/strings.hrc:800
+#: sw/inc/strings.hrc:801
msgctxt "STR_AUTH_FIELD_CUSTOM5"
msgid "User-defined5"
msgstr "በ ተጠቃሚው-የሚወሰን5"
#. 3r6Wg
-#: sw/inc/strings.hrc:801
+#: sw/inc/strings.hrc:802
msgctxt "STR_AUTH_FIELD_ISBN"
msgid "ISBN"
msgstr "ISBN"
#. BhDrt
-#: sw/inc/strings.hrc:802
+#: sw/inc/strings.hrc:803
msgctxt "STR_AUTH_FIELD_LOCAL_URL"
msgid "Local copy"
msgstr ""
#. eFnnx
-#: sw/inc/strings.hrc:804
+#: sw/inc/strings.hrc:805
msgctxt "STR_IDXMRK_EDIT"
msgid "Edit Index Entry"
msgstr "የማውጫ ማስገቢያ ማረሚያ"
#. EHTHH
-#: sw/inc/strings.hrc:805
+#: sw/inc/strings.hrc:806
msgctxt "STR_IDXMRK_INSERT"
msgid "Insert Index Entry"
msgstr "የማውጫ ማስገቢያ መጨመሪያ"
#. D2gkA
-#: sw/inc/strings.hrc:806
+#: sw/inc/strings.hrc:807
msgctxt "STR_QUERY_CHANGE_AUTH_ENTRY"
msgid "The document already contains the bibliography entry but with different data. Do you want to adjust the existing entries?"
msgstr "ሰነዱ ቀደም ሲል ቢብሊዮግራፊ ማስገቢያ ይዟል ነገር ግን ለተለየ ዳታ ነው: የ ነበረውን ማስገቢያ ማስተካከል ይፈልጋሉ?"
#. mK84T
-#: sw/inc/strings.hrc:808
+#: sw/inc/strings.hrc:809
msgctxt "STR_COMMENTS_LABEL"
msgid "Comments"
msgstr "አስተያየቶች"
#. fwecS
-#: sw/inc/strings.hrc:809
+#: sw/inc/strings.hrc:810
msgctxt "STR_SHOW_COMMENTS"
msgid "Show comments"
msgstr "አስተያየት ማሳያ"
#. HkUvy
-#: sw/inc/strings.hrc:810
+#: sw/inc/strings.hrc:811
msgctxt "STR_HIDE_COMMENTS"
msgid "Hide comments"
msgstr "አስተያየት መደበቂያ"
#. FcmEy
-#: sw/inc/strings.hrc:812
+#: sw/inc/strings.hrc:813
msgctxt "STR_DOUBLE_SHORTNAME"
msgid "Shortcut name already exists. Please choose another name."
msgstr "ይህ የአቋራጭ ስም ቀደም ሲል ነበር: እባክዎን ሌላ ስም ይምረጡ"
#. VhMST
-#: sw/inc/strings.hrc:813
+#: sw/inc/strings.hrc:814
msgctxt "STR_QUERY_DELETE"
msgid "Delete AutoText?"
msgstr "በራሱ ጽሁፍን ላጥፋው?"
#. E5MLr
-#: sw/inc/strings.hrc:814
+#: sw/inc/strings.hrc:815
msgctxt "STR_QUERY_DELETE_GROUP1"
msgid "Delete the category "
msgstr "ምድቡን ማጥፊያ "
#. qndNh
-#: sw/inc/strings.hrc:815
+#: sw/inc/strings.hrc:816
msgctxt "STR_QUERY_DELETE_GROUP2"
msgid "?"
msgstr "?"
#. B6xah
-#: sw/inc/strings.hrc:816
+#: sw/inc/strings.hrc:817
msgctxt "STR_GLOSSARY"
msgid "AutoText :"
msgstr "በራሱ ጽሁፍ :"
#. ChetY
-#: sw/inc/strings.hrc:817
+#: sw/inc/strings.hrc:818
msgctxt "STR_SAVE_GLOSSARY"
msgid "Save AutoText"
msgstr "በራሱ ጽሁፍ ማስቀመጫ"
#. QxAiF
-#: sw/inc/strings.hrc:818
+#: sw/inc/strings.hrc:819
msgctxt "STR_NO_GLOSSARIES"
msgid "There is no AutoText in this file."
msgstr "በዚህ ፋይል ውስጥ በራሱ ጽሁፍ የለም"
#. sG8Xt
-#: sw/inc/strings.hrc:819
+#: sw/inc/strings.hrc:820
msgctxt "STR_MY_AUTOTEXT"
msgid "My AutoText"
msgstr "የኔ በራሱ ጽሁፍ"
#. GaoqR
-#: sw/inc/strings.hrc:821
+#: sw/inc/strings.hrc:822
msgctxt "STR_NOGLOS"
msgid "AutoText for Shortcut '%1' not found."
msgstr "በራሱ ጽሁፎች ለ አቋራጭ '%1' አልተገኘም"
#. MwUEP
-#: sw/inc/strings.hrc:822
+#: sw/inc/strings.hrc:823
msgctxt "STR_NO_TABLE"
msgid "A table with no rows or no cells cannot be inserted"
msgstr "ሰንጠረዥ ያለ ረድፎች ወይንም ክፍሎች ማስገባት አይቻልም"
#. AawM4
-#: sw/inc/strings.hrc:823
+#: sw/inc/strings.hrc:824
msgctxt "STR_TABLE_TOO_LARGE"
msgid "The table cannot be inserted because it is too large"
msgstr "ሰንጠረዥ ማስገባት አልተቻለም ምክንያቱም በጣም ትልቅ ነው"
#. GGo8i
-#: sw/inc/strings.hrc:824
+#: sw/inc/strings.hrc:825
msgctxt "STR_ERR_INSERT_GLOS"
msgid "AutoText could not be created."
msgstr "በራሱ መጻፊያ መመፍጠር አልተቻለም"
#. DCPSB
-#: sw/inc/strings.hrc:825
+#: sw/inc/strings.hrc:826
msgctxt "STR_CLPBRD_FORMAT_ERROR"
msgid "Requested clipboard format is not available."
msgstr "የተጠየቀው የቁራጭ ሰሌዳ አቀራረብ አልተገኘም"
#. YxCCF
-#: sw/inc/strings.hrc:826
+#: sw/inc/strings.hrc:827
msgctxt "STR_PRIVATETEXT"
msgid "%PRODUCTNAME %PRODUCTVERSION Text Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION የ ጽሁፍ ሰነድ"
#. 8ygN3
-#: sw/inc/strings.hrc:827
+#: sw/inc/strings.hrc:828
msgctxt "STR_PRIVATEGRAPHIC"
msgid "Image (%PRODUCTNAME %PRODUCTVERSION Text Document)"
msgstr "ምስል (%PRODUCTNAME %PRODUCTVERSION የ ጽሁፍ ሰነድ)"
#. ewPPB
-#: sw/inc/strings.hrc:828
+#: sw/inc/strings.hrc:829
msgctxt "STR_PRIVATEOLE"
msgid "Object (%PRODUCTNAME %PRODUCTVERSION Text Document)"
msgstr "እቃ (%PRODUCTNAME %PRODUCTVERSION የ ጽሁፍ ሰነድ)"
#. 9VEc3
-#: sw/inc/strings.hrc:829
+#: sw/inc/strings.hrc:830
msgctxt "STR_DDEFORMAT"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (DDE link)"
#. svrE7
-#: sw/inc/strings.hrc:831
+#: sw/inc/strings.hrc:832
msgctxt "STR_DELETE_ALL_NOTES"
msgid "All Comments"
msgstr "ሁሉንም አስተያየቶች"
#. YGNN4
-#: sw/inc/strings.hrc:832
+#: sw/inc/strings.hrc:833
msgctxt "STR_FORMAT_ALL_NOTES"
msgid "All Comments"
msgstr "ሁሉንም አስተያየቶች"
#. GDH49
-#: sw/inc/strings.hrc:833
+#: sw/inc/strings.hrc:834
msgctxt "STR_DELETE_AUTHOR_NOTES"
msgid "Comments by "
msgstr "አስተያየቶች በ "
#. RwAcm
-#: sw/inc/strings.hrc:834
+#: sw/inc/strings.hrc:835
msgctxt "STR_NODATE"
msgid "(no date)"
msgstr "(ቀን የለም)"
#. ytxKG
-#: sw/inc/strings.hrc:835
+#: sw/inc/strings.hrc:836
msgctxt "STR_NOAUTHOR"
msgid "(no author)"
msgstr "(ደራሲ የለም)"
#. nAwMG
-#: sw/inc/strings.hrc:836
+#: sw/inc/strings.hrc:837
msgctxt "STR_REPLY"
msgid "Reply to $1"
msgstr "መልስ ወደ $1"
#. CVVa6
-#: sw/inc/strings.hrc:838
+#: sw/inc/strings.hrc:839
msgctxt "ST_TITLE_EDIT"
msgid "Edit Address Block"
msgstr "የ አድራሻ መከልከያ ማረሚያ"
#. njGGA
-#: sw/inc/strings.hrc:839
+#: sw/inc/strings.hrc:840
msgctxt "ST_TITLE_MALE"
msgid "Custom Salutation (Male Recipients)"
msgstr "ሰላምታ ማስተካከያ (ለ ወንድ ተቀባዮች)"
#. ZVuKY
-#: sw/inc/strings.hrc:840
+#: sw/inc/strings.hrc:841
msgctxt "ST_TITLE_FEMALE"
msgid "Custom Salutation (Female Recipients)"
msgstr "ሰላምታ ማስተካከያ (ለ ሴት ተቀባዮች)"
#. h4yuq
-#: sw/inc/strings.hrc:841
+#: sw/inc/strings.hrc:842
msgctxt "ST_SALUTATIONELEMENTS"
msgid "Salutation e~lements"
msgstr "የ ሰላምታ አ~ካላት"
#. kWhqT
-#: sw/inc/strings.hrc:842
+#: sw/inc/strings.hrc:843
msgctxt "ST_INSERTSALUTATIONFIELD"
msgid "Add to salutation"
msgstr "ወደ ሰላምታ መጨመሪያ"
#. hvF3V
-#: sw/inc/strings.hrc:843
+#: sw/inc/strings.hrc:844
msgctxt "ST_REMOVESALUTATIONFIELD"
msgid "Remove from salutation"
msgstr "ከ ሰላምታ ውስጥ ማስወገጃ"
#. A6XaR
-#: sw/inc/strings.hrc:844
+#: sw/inc/strings.hrc:845
msgctxt "ST_DRAGSALUTATION"
msgid "1. ~Drag salutation elements into the box below"
msgstr "1. ~ይጎትቱ የ ሰላምታ አካሎችን እታች ወዳለው ሳጥን ውስጥ"
#. 4VJWL
-#: sw/inc/strings.hrc:845
+#: sw/inc/strings.hrc:846
msgctxt "ST_SALUTATION"
msgid "Salutation"
msgstr "ሰላምታ"
#. Vj6XT
-#: sw/inc/strings.hrc:846
+#: sw/inc/strings.hrc:847
msgctxt "ST_PUNCTUATION"
msgid "Punctuation Mark"
msgstr "የ ስርአት ነጥብ ምልክት"
#. bafeG
-#: sw/inc/strings.hrc:847
+#: sw/inc/strings.hrc:848
msgctxt "ST_TEXT"
msgid "Text"
msgstr "ጽሁፍ"
#. tt6sA
-#: sw/inc/strings.hrc:848
+#: sw/inc/strings.hrc:849
msgctxt "ST_SALUTATIONMATCHING"
msgid "Assign the fields from your data source to match the salutation elements."
msgstr "ሜዳዎችን መመደቢያ ከእርስዎ የዳታ ምንጭ ጋር እንዲስማሙ ከሰላምታ አካላት ጋር"
#. zrUsN
-#: sw/inc/strings.hrc:849
+#: sw/inc/strings.hrc:850
msgctxt "ST_SALUTATIONPREVIEW"
msgid "Salutation preview"
msgstr "የሰላምታ ቅድመ እይታ"
#. 2UVE6
-#: sw/inc/strings.hrc:850
+#: sw/inc/strings.hrc:851
msgctxt "ST_ADDRESSELEMENT"
msgid "Address elements"
msgstr "የ አድራሻ አካሎች"
#. Bd6pd
-#: sw/inc/strings.hrc:851
+#: sw/inc/strings.hrc:852
msgctxt "ST_SALUTATIONELEMENT"
msgid "Salutation elements"
msgstr "የ ሰላምታ አካሎች"
#. 9krzf
-#: sw/inc/strings.hrc:852
+#: sw/inc/strings.hrc:853
msgctxt "ST_MATCHESTO"
msgid "Matches to field:"
msgstr "ወደ ሜዳው ተዛምዷል :"
#. oahCQ
-#: sw/inc/strings.hrc:853
+#: sw/inc/strings.hrc:854
msgctxt "ST_PREVIEW"
msgid "Preview"
msgstr "ቅድመ እይታ"
#. ijdxe
-#: sw/inc/strings.hrc:854
+#: sw/inc/strings.hrc:855
msgctxt "ST_DELETE_CONFIRM"
msgid "Do you want to delete this registered data source?"
msgstr ""
#. kE5C3
-#: sw/inc/strings.hrc:856
+#: sw/inc/strings.hrc:857
msgctxt "STR_NOTASSIGNED"
msgid " not yet matched "
msgstr " ገና አልተዛመደም "
#. Y6FhG
-#: sw/inc/strings.hrc:857
+#: sw/inc/strings.hrc:858
msgctxt "STR_FILTER_ALL"
msgid "All files"
msgstr "ሁሉንም ፋይሎች"
#. 7cNjh
-#: sw/inc/strings.hrc:858
+#: sw/inc/strings.hrc:859
msgctxt "STR_FILTER_ALL_DATA"
msgid "Address lists(*.*)"
msgstr "የ አድራሻ ዝርዝሮች(*.*)"
#. Ef8TY
-#: sw/inc/strings.hrc:859
+#: sw/inc/strings.hrc:860
msgctxt "STR_FILTER_SXB"
msgid "%PRODUCTNAME Base (*.odb)"
msgstr "%PRODUCTNAME Base (*.odb)"
#. 24opW
-#: sw/inc/strings.hrc:860
+#: sw/inc/strings.hrc:861
msgctxt "STR_FILTER_SXC"
msgid "%PRODUCTNAME Calc (*.ods;*.sxc)"
msgstr "%PRODUCTNAME Calc (*.ods;*.sxc)"
#. sq73T
-#: sw/inc/strings.hrc:861
+#: sw/inc/strings.hrc:862
msgctxt "STR_FILTER_SXW"
msgid "%PRODUCTNAME Writer (*.odt;*.sxw)"
msgstr "%PRODUCTNAME Writer (*.odt;*.sxw)"
#. QupGC
-#: sw/inc/strings.hrc:862
+#: sw/inc/strings.hrc:863
msgctxt "STR_FILTER_DBF"
msgid "dBase (*.dbf)"
msgstr "dBase (*.dbf)"
#. SzqRv
-#: sw/inc/strings.hrc:863
+#: sw/inc/strings.hrc:864
msgctxt "STR_FILTER_XLS"
msgid "Microsoft Excel (*.xls;*.xlsx)"
msgstr "Microsoft Excel (*.xls;*.xlsx)"
#. zAUu8
-#: sw/inc/strings.hrc:864
+#: sw/inc/strings.hrc:865
msgctxt "STR_FILTER_DOC"
msgid "Microsoft Word (*.doc;*.docx)"
msgstr "Microsoft Word (*.doc;*.docx)"
#. JBZFc
-#: sw/inc/strings.hrc:865
+#: sw/inc/strings.hrc:866
msgctxt "STR_FILTER_TXT"
msgid "Plain text (*.txt)"
msgstr "Plain text (*.txt)"
#. CRJb6
-#: sw/inc/strings.hrc:866
+#: sw/inc/strings.hrc:867
msgctxt "STR_FILTER_CSV"
msgid "Text Comma Separated (*.csv)"
msgstr "ጽሁፍ በ ኮማ የ ተለየ (*.csv)"
#. U4H2j
-#: sw/inc/strings.hrc:867
+#: sw/inc/strings.hrc:868
msgctxt "STR_FILTER_MDB"
msgid "Microsoft Access (*.mdb;*.mde)"
msgstr "Microsoft Access (*.mdb;*.mde)"
#. DwxF8
-#: sw/inc/strings.hrc:868
+#: sw/inc/strings.hrc:869
msgctxt "STR_FILTER_ACCDB"
msgid "Microsoft Access 2007 (*.accdb,*.accde)"
msgstr "Microsoft Access 2007 (*.accdb,*.accde)"
#. uDNRt
-#: sw/inc/strings.hrc:869
+#: sw/inc/strings.hrc:870
msgctxt "ST_CONFIGUREMAIL"
msgid ""
"In order to be able to send mail merge documents by email, %PRODUCTNAME requires information about the email account to be used.\n"
@@ -7063,91 +7069,91 @@ msgstr ""
"የ ኢ-ሜይል መግለጫ መረጃ አሁን ማስገባት ይፈልጋሉ?"
#. r9BVg
-#: sw/inc/strings.hrc:870
+#: sw/inc/strings.hrc:871
msgctxt "ST_FILTERNAME"
msgid "%PRODUCTNAME Address List (.csv)"
msgstr "%PRODUCTNAME የአድራሻ ዝርዝር (.csv)"
#. jiJuZ
-#: sw/inc/strings.hrc:872
+#: sw/inc/strings.hrc:873
msgctxt "ST_STARTING"
msgid "Select Starting Document"
msgstr "የሚጀምረውን ሰነድ ይምረጡ"
#. FiUyK
-#: sw/inc/strings.hrc:873
+#: sw/inc/strings.hrc:874
msgctxt "ST_DOCUMENTTYPE"
msgid "Select Document Type"
msgstr "የ ሰነዱን አይነት ይምረጡ"
#. QwrpS
-#: sw/inc/strings.hrc:874
+#: sw/inc/strings.hrc:875
msgctxt "ST_ADDRESSBLOCK"
msgid "Insert Address Block"
msgstr "የ አድራሻ መከለከያ ማስገቢያ"
#. omRZF
-#: sw/inc/strings.hrc:875
+#: sw/inc/strings.hrc:876
msgctxt "ST_ADDRESSLIST"
msgid "Select Address List"
msgstr "የ አድራሻ ዝርዝር ይምረጡ"
#. YrDuD
-#: sw/inc/strings.hrc:876
+#: sw/inc/strings.hrc:877
msgctxt "ST_GREETINGSLINE"
msgid "Create Salutation"
msgstr "ሰላምታ መፍጠሪያ"
#. tTr4B
-#: sw/inc/strings.hrc:877
+#: sw/inc/strings.hrc:878
msgctxt "ST_LAYOUT"
msgid "Adjust Layout"
msgstr "እቅድ ማስተካከያ"
#. S4p5M
-#: sw/inc/strings.hrc:878
+#: sw/inc/strings.hrc:879
msgctxt "ST_EXCLUDE"
msgid "Exclude recipient"
msgstr "ተቀባይ አትጨምር"
#. N5YUH
-#: sw/inc/strings.hrc:879
+#: sw/inc/strings.hrc:880
msgctxt "ST_FINISH"
msgid "~Finish"
msgstr "~ጨርሷል"
#. L5FEG
-#: sw/inc/strings.hrc:880
+#: sw/inc/strings.hrc:881
msgctxt "ST_MMWTITLE"
msgid "Mail Merge Wizard"
msgstr "የ ደብዳቤ ማዋሀጃ አዋቂ"
#. CEhZj
-#: sw/inc/strings.hrc:882
+#: sw/inc/strings.hrc:883
msgctxt "ST_TABLE"
msgid "Table"
msgstr "ሰንጠረዥ"
#. v9hEB
-#: sw/inc/strings.hrc:883
+#: sw/inc/strings.hrc:884
msgctxt "ST_QUERY"
msgid "Query"
msgstr "ጥያቄ"
#. HxGAu
-#: sw/inc/strings.hrc:885
+#: sw/inc/strings.hrc:886
msgctxt "STR_QUERY_SPELL_CONTINUE"
msgid "Continue checking at beginning of document?"
msgstr "ከ ሰነዱ መጀመሪያ ጀምሮ መመርመር ልቀጥል?"
#. gE7CA
-#: sw/inc/strings.hrc:886
+#: sw/inc/strings.hrc:887
msgctxt "STR_SPELLING_COMPLETED"
msgid "The spellcheck is complete."
msgstr "ፊደል ማረሚያው ጨርሷል"
#. 2SuqF
-#: sw/inc/strings.hrc:887
+#: sw/inc/strings.hrc:888
msgctxt "STR_DICTIONARY_UNAVAILABLE"
msgid "No dictionary available"
msgstr "ምንም መዝገበ ቃላት አልተገኘም"
@@ -7157,252 +7163,252 @@ msgstr "ምንም መዝገበ ቃላት አልተገኘም"
#. Description: strings for the types
#. --------------------------------------------------------------------
#. range document
-#: sw/inc/strings.hrc:893
+#: sw/inc/strings.hrc:894
msgctxt "STR_DATEFLD"
msgid "Date"
msgstr "ቀን"
#. V9cQp
-#: sw/inc/strings.hrc:894
+#: sw/inc/strings.hrc:895
msgctxt "STR_TIMEFLD"
msgid "Time"
msgstr "ሰአት"
#. 2zgWi
-#: sw/inc/strings.hrc:895
+#: sw/inc/strings.hrc:896
msgctxt "STR_FILENAMEFLD"
msgid "File name"
msgstr "የ ፋይል ስም"
#. FdSaU
-#: sw/inc/strings.hrc:896
+#: sw/inc/strings.hrc:897
msgctxt "STR_DBNAMEFLD"
msgid "Database Name"
msgstr "የ ዳታቤዝ ስም"
#. XZADh
-#: sw/inc/strings.hrc:897
+#: sw/inc/strings.hrc:898
msgctxt "STR_CHAPTERFLD"
msgid "Chapter"
msgstr "ምእራፍ"
#. wYWy2
-#: sw/inc/strings.hrc:898
+#: sw/inc/strings.hrc:899
msgctxt "STR_PAGENUMBERFLD"
msgid "Page number"
msgstr "የ ገጽ ቁጥር"
#. EXC6N
-#: sw/inc/strings.hrc:899
+#: sw/inc/strings.hrc:900
msgctxt "STR_DOCSTATFLD"
msgid "Statistics"
msgstr "ስታትስቲክስ"
#. EW86G
-#: sw/inc/strings.hrc:900
+#: sw/inc/strings.hrc:901
msgctxt "STR_AUTHORFLD"
msgid "Author"
msgstr "ደራሲው"
#. 5aFak
-#: sw/inc/strings.hrc:901
+#: sw/inc/strings.hrc:902
msgctxt "STR_TEMPLNAMEFLD"
msgid "Templates"
msgstr "ቴምፕሌትስ"
#. 3wdud
-#: sw/inc/strings.hrc:902
+#: sw/inc/strings.hrc:903
msgctxt "STR_EXTUSERFLD"
msgid "Sender"
msgstr "ላኪው"
#. LxZEm
#. range functions
-#: sw/inc/strings.hrc:904
+#: sw/inc/strings.hrc:905
msgctxt "STR_SETFLD"
msgid "Set variable"
msgstr "ተለዋዋጭ ማሰናጃ"
#. ckA26
-#: sw/inc/strings.hrc:905
+#: sw/inc/strings.hrc:906
msgctxt "STR_GETFLD"
msgid "Show variable"
msgstr "ተለዋዋጭ ማሳያ"
#. Fjzgu
-#: sw/inc/strings.hrc:906
+#: sw/inc/strings.hrc:907
msgctxt "STR_FORMELFLD"
msgid "Insert Formula"
msgstr "መቀመሪያ ማስገቢያ"
#. AXoAT
-#: sw/inc/strings.hrc:907
+#: sw/inc/strings.hrc:908
msgctxt "STR_INPUTFLD"
msgid "Input field"
msgstr "ማስገቢያ ሜዳ"
#. VfqNE
-#: sw/inc/strings.hrc:908
+#: sw/inc/strings.hrc:909
msgctxt "STR_SETINPUTFLD"
msgid "Input field (variable)"
msgstr "ማስገቢያ ሜዳ (ተለዋዋጭ)"
#. E8JAd
-#: sw/inc/strings.hrc:909
+#: sw/inc/strings.hrc:910
msgctxt "STR_USRINPUTFLD"
msgid "Input field (user)"
msgstr "ማስገቢያ ሜዳ (ተጠቃሚ)"
#. 8LGEQ
-#: sw/inc/strings.hrc:910
+#: sw/inc/strings.hrc:911
msgctxt "STR_CONDTXTFLD"
msgid "Conditional text"
msgstr "እንደ ሁኔታው ጽሁፍ"
#. jrZ7i
-#: sw/inc/strings.hrc:911
+#: sw/inc/strings.hrc:912
msgctxt "STR_DDEFLD"
msgid "DDE field"
msgstr "DDE field"
#. 9WAT9
-#: sw/inc/strings.hrc:912
+#: sw/inc/strings.hrc:913
msgctxt "STR_MACROFLD"
msgid "Execute macro"
msgstr "Execute macro"
#. qEBxa
-#: sw/inc/strings.hrc:913
+#: sw/inc/strings.hrc:914
msgctxt "STR_SEQFLD"
msgid "Number range"
msgstr "የቁጥር መጠን"
#. ACE5s
-#: sw/inc/strings.hrc:914
+#: sw/inc/strings.hrc:915
msgctxt "STR_SETREFPAGEFLD"
msgid "Set page variable"
msgstr "የ ገጽ ተለዋዋጭ ማሰናጃ"
#. ayB3N
-#: sw/inc/strings.hrc:915
+#: sw/inc/strings.hrc:916
msgctxt "STR_GETREFPAGEFLD"
msgid "Show page variable"
msgstr "የ ገጽ ተለዋዋጭ ማሳያ"
#. DBM4P
-#: sw/inc/strings.hrc:916
+#: sw/inc/strings.hrc:917
msgctxt "STR_INTERNETFLD"
msgid "Load URL"
msgstr "URL መጫኛ"
#. LJFF5
-#: sw/inc/strings.hrc:917
+#: sw/inc/strings.hrc:918
msgctxt "STR_JUMPEDITFLD"
msgid "Placeholder"
msgstr "ቦታ ያዢ"
#. zZCg6
-#: sw/inc/strings.hrc:918
+#: sw/inc/strings.hrc:919
msgctxt "STR_COMBINED_CHARS"
msgid "Combine characters"
msgstr "ባህሪዎች መቀላቀያ"
#. 9MGU6
-#: sw/inc/strings.hrc:919
+#: sw/inc/strings.hrc:920
msgctxt "STR_DROPDOWN"
msgid "Input list"
msgstr "ማስገቢያ ዝርዝር"
#. 7BWSk
#. range references
-#: sw/inc/strings.hrc:921
+#: sw/inc/strings.hrc:922
msgctxt "STR_SETREFFLD"
msgid "Set Reference"
msgstr "ማመሳከሪያ ማሰናጃ"
#. FJ2X8
-#: sw/inc/strings.hrc:922
+#: sw/inc/strings.hrc:923
msgctxt "STR_GETREFFLD"
msgid "Insert Reference"
msgstr "ማመሳከሪያ ማስገቢያ"
#. sztLS
#. range database
-#: sw/inc/strings.hrc:924
+#: sw/inc/strings.hrc:925
msgctxt "STR_DBFLD"
msgid "Mail merge fields"
msgstr "የ ደብዳቤ ማዋሀጃ ሜዳዎች"
#. JP2DU
-#: sw/inc/strings.hrc:925
+#: sw/inc/strings.hrc:926
msgctxt "STR_DBNEXTSETFLD"
msgid "Next record"
msgstr "የሚቀጥለው መዝገብ"
#. GizhA
-#: sw/inc/strings.hrc:926
+#: sw/inc/strings.hrc:927
msgctxt "STR_DBNUMSETFLD"
msgid "Any record"
msgstr "ማንኛውም መዝገብ"
#. aMGxm
-#: sw/inc/strings.hrc:927
+#: sw/inc/strings.hrc:928
msgctxt "STR_DBSETNUMBERFLD"
msgid "Record number"
msgstr "ከፍተኛ ቁጥር"
#. DtYzi
-#: sw/inc/strings.hrc:928
+#: sw/inc/strings.hrc:929
msgctxt "STR_PREVPAGEFLD"
msgid "Previous page"
msgstr "ቀደም ያለው ገጽ"
#. UCSej
-#: sw/inc/strings.hrc:929
+#: sw/inc/strings.hrc:930
msgctxt "STR_NEXTPAGEFLD"
msgid "Next page"
msgstr "የሚቀጥለው ገጽ"
#. M8Fac
-#: sw/inc/strings.hrc:930
+#: sw/inc/strings.hrc:931
msgctxt "STR_HIDDENTXTFLD"
msgid "Hidden text"
msgstr "የተደበቀ ጽሁፍ"
#. WvBF2
#. range user fields
-#: sw/inc/strings.hrc:932
+#: sw/inc/strings.hrc:933
msgctxt "STR_USERFLD"
msgid "User Field"
msgstr "የ ተጠቃሚ ሜዳ"
#. XELYN
-#: sw/inc/strings.hrc:933
+#: sw/inc/strings.hrc:934
msgctxt "STR_POSTITFLD"
msgid "Note"
msgstr "ማስታወሻ"
#. MB6kt
-#: sw/inc/strings.hrc:934
+#: sw/inc/strings.hrc:935
msgctxt "STR_SCRIPTFLD"
msgid "Script"
msgstr "ጽሁፍ"
#. BWU6A
-#: sw/inc/strings.hrc:935
+#: sw/inc/strings.hrc:936
msgctxt "STR_AUTHORITY"
msgid "Bibliography entry"
msgstr "የ ቢብሊዮግራፊ ማስገቢያ"
#. 7EGCR
-#: sw/inc/strings.hrc:936
+#: sw/inc/strings.hrc:937
msgctxt "STR_HIDDENPARAFLD"
msgid "Hidden Paragraph"
msgstr "የተደበቀ አንቀጽ"
#. dRBRK
#. range DocumentInfo
-#: sw/inc/strings.hrc:938
+#: sw/inc/strings.hrc:939
msgctxt "STR_DOCINFOFLD"
msgid "DocInformation"
msgstr "የ ሰነድ መረጃ"
@@ -7411,87 +7417,87 @@ msgstr "የ ሰነድ መረጃ"
#. --------------------------------------------------------------------
#. Description: SubCmd-Strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:942
+#: sw/inc/strings.hrc:943
msgctxt "FLD_DATE_STD"
msgid "Date"
msgstr "ቀን"
#. qMCEh
-#: sw/inc/strings.hrc:943
+#: sw/inc/strings.hrc:944
msgctxt "FLD_DATE_FIX"
msgid "Date (fixed)"
msgstr "ቀን (የተወሰነ)"
#. AXmyw
-#: sw/inc/strings.hrc:944
+#: sw/inc/strings.hrc:945
msgctxt "FLD_TIME_STD"
msgid "Time"
msgstr "ሰአት"
#. 6dxVs
-#: sw/inc/strings.hrc:945
+#: sw/inc/strings.hrc:946
msgctxt "FLD_TIME_FIX"
msgid "Time (fixed)"
msgstr "ሰአት (የተወሰነ)"
#. U3SW8
#. SubCmd Statistic
-#: sw/inc/strings.hrc:947
+#: sw/inc/strings.hrc:948
msgctxt "FLD_STAT_TABLE"
msgid "Tables"
msgstr "ሰንጠረዦች"
#. 7qW4K
-#: sw/inc/strings.hrc:948
+#: sw/inc/strings.hrc:949
msgctxt "FLD_STAT_CHAR"
msgid "Characters"
msgstr "ባህሪዎች"
#. zDRCp
-#: sw/inc/strings.hrc:949
+#: sw/inc/strings.hrc:950
msgctxt "FLD_STAT_WORD"
msgid "Words"
msgstr "ቃላቶች"
#. 2wgLC
-#: sw/inc/strings.hrc:950
+#: sw/inc/strings.hrc:951
msgctxt "FLD_STAT_PARA"
msgid "Paragraphs"
msgstr "አንቀጾች"
#. JPGG7
-#: sw/inc/strings.hrc:951
+#: sw/inc/strings.hrc:952
msgctxt "FLD_STAT_GRF"
msgid "Image"
msgstr "ምስል"
#. CzoFh
-#: sw/inc/strings.hrc:952
+#: sw/inc/strings.hrc:953
msgctxt "FLD_STAT_OBJ"
msgid "Objects"
msgstr "እቃዎች"
#. bDG6R
-#: sw/inc/strings.hrc:953
+#: sw/inc/strings.hrc:954
msgctxt "FLD_STAT_PAGE"
msgid "Pages"
msgstr "ገጾች"
#. yqhF5
#. SubCmd DDETypes
-#: sw/inc/strings.hrc:955
+#: sw/inc/strings.hrc:956
msgctxt "FMT_DDE_HOT"
msgid "DDE automatic"
msgstr "DDE automatic"
#. xPP2E
-#: sw/inc/strings.hrc:956
+#: sw/inc/strings.hrc:957
msgctxt "FMT_DDE_NORMAL"
msgid "DDE manual"
msgstr "DDE manual"
#. spdXd
-#: sw/inc/strings.hrc:957
+#: sw/inc/strings.hrc:958
msgctxt "FLD_INPUT_TEXT"
msgid "[Text]"
msgstr "[ጽሁፍ]"
@@ -7500,103 +7506,103 @@ msgstr "[ጽሁፍ]"
#. --------------------------------------------------------------------
#. Description: SubType Extuser
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:962
+#: sw/inc/strings.hrc:963
msgctxt "FLD_EU_FIRMA"
msgid "Company"
msgstr "ድርጅት"
#. WWxTK
-#: sw/inc/strings.hrc:963
+#: sw/inc/strings.hrc:964
msgctxt "FLD_EU_VORNAME"
msgid "First Name"
msgstr "የ መጀመሪያ ስም"
#. 4tdAc
-#: sw/inc/strings.hrc:964
+#: sw/inc/strings.hrc:965
msgctxt "FLD_EU_NAME"
msgid "Last Name"
msgstr "የ አባት ስም"
#. xTV7n
-#: sw/inc/strings.hrc:965
+#: sw/inc/strings.hrc:966
msgctxt "FLD_EU_ABK"
msgid "Initials"
msgstr "መነሻዎች"
#. AKD3k
-#: sw/inc/strings.hrc:966
+#: sw/inc/strings.hrc:967
msgctxt "FLD_EU_STRASSE"
msgid "Street"
msgstr "መንገድ"
#. ErMju
-#: sw/inc/strings.hrc:967
+#: sw/inc/strings.hrc:968
msgctxt "FLD_EU_LAND"
msgid "Country"
msgstr "አገር"
#. ESbkx
-#: sw/inc/strings.hrc:968
+#: sw/inc/strings.hrc:969
msgctxt "FLD_EU_PLZ"
msgid "Zip code"
msgstr "ፖሳቁ"
#. WDAc2
-#: sw/inc/strings.hrc:969
+#: sw/inc/strings.hrc:970
msgctxt "FLD_EU_ORT"
msgid "City"
msgstr "ከተማ"
#. pg7MV
-#: sw/inc/strings.hrc:970
+#: sw/inc/strings.hrc:971
msgctxt "FLD_EU_TITEL"
msgid "Title"
msgstr "አርእስት"
#. DwLhZ
-#: sw/inc/strings.hrc:971
+#: sw/inc/strings.hrc:972
msgctxt "FLD_EU_POS"
msgid "Position"
msgstr "ቦታ"
#. LDTdu
-#: sw/inc/strings.hrc:972
+#: sw/inc/strings.hrc:973
msgctxt "FLD_EU_TELPRIV"
msgid "Tel. (Home)"
msgstr "ስልክ (የ ቤት)"
#. JBZyj
-#: sw/inc/strings.hrc:973
+#: sw/inc/strings.hrc:974
msgctxt "FLD_EU_TELFIRMA"
msgid "Tel. (Work)"
msgstr "ስልክ (የ ስራ)"
#. 5EmGH
-#: sw/inc/strings.hrc:974
+#: sw/inc/strings.hrc:975
msgctxt "FLD_EU_FAX"
msgid "Fax"
msgstr "ፋክስ"
#. AtN9J
-#: sw/inc/strings.hrc:975
+#: sw/inc/strings.hrc:976
msgctxt "FLD_EU_EMAIL"
msgid "Email"
msgstr "ኢሜይል"
#. 6GBRm
-#: sw/inc/strings.hrc:976
+#: sw/inc/strings.hrc:977
msgctxt "FLD_EU_STATE"
msgid "State"
msgstr "አገር"
#. pbrdQ
-#: sw/inc/strings.hrc:977
+#: sw/inc/strings.hrc:978
msgctxt "FLD_PAGEREF_OFF"
msgid "off"
msgstr "ማጥፊያ"
#. wC8SE
-#: sw/inc/strings.hrc:978
+#: sw/inc/strings.hrc:979
msgctxt "FLD_PAGEREF_ON"
msgid "on"
msgstr "ማብሪያ"
@@ -7606,37 +7612,37 @@ msgstr "ማብሪያ"
#. Description: path name
#. --------------------------------------------------------------------
#. Format FileName
-#: sw/inc/strings.hrc:983
+#: sw/inc/strings.hrc:984
msgctxt "FMT_FF_NAME"
msgid "File name"
msgstr "የ ፋይል ስም"
#. RBpz3
-#: sw/inc/strings.hrc:984
+#: sw/inc/strings.hrc:985
msgctxt "FMT_FF_NAME_NOEXT"
msgid "File name without extension"
msgstr "የ ፋይሉ ስም ያለ ተጨማሪ"
#. BCzy8
-#: sw/inc/strings.hrc:985
+#: sw/inc/strings.hrc:986
msgctxt "FMT_FF_PATHNAME"
msgid "Path/File name"
msgstr "መንገድ/የ ፋይል ስም"
#. ChFwM
-#: sw/inc/strings.hrc:986
+#: sw/inc/strings.hrc:987
msgctxt "FMT_FF_PATH"
msgid "Path"
msgstr "መንገድ"
#. R6KrL
-#: sw/inc/strings.hrc:987
+#: sw/inc/strings.hrc:988
msgctxt "FMT_FF_UI_NAME"
msgid "Template name"
msgstr "የ ቴምፕሌት ስም"
#. ANM2H
-#: sw/inc/strings.hrc:988
+#: sw/inc/strings.hrc:989
msgctxt "FMT_FF_UI_RANGE"
msgid "Category"
msgstr "ምድብ"
@@ -7645,25 +7651,25 @@ msgstr "ምድብ"
#. --------------------------------------------------------------------
#. Description: format chapter
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:992
+#: sw/inc/strings.hrc:993
msgctxt "FMT_CHAPTER_NAME"
msgid "Chapter name"
msgstr "የ ምእራፍ ስም"
#. tnLqE
-#: sw/inc/strings.hrc:993
+#: sw/inc/strings.hrc:994
msgctxt "FMT_CHAPTER_NO"
msgid "Chapter number"
msgstr "የ ምእራፍ ቁጥር"
#. qGEAs
-#: sw/inc/strings.hrc:994
+#: sw/inc/strings.hrc:995
msgctxt "FMT_CHAPTER_NO_NOSEPARATOR"
msgid "Chapter number without separator"
msgstr "የ ምእራፍ ቁጥር ያለ መለያ"
#. WFA5R
-#: sw/inc/strings.hrc:995
+#: sw/inc/strings.hrc:996
msgctxt "FMT_CHAPTER_NAMENO"
msgid "Chapter number and name"
msgstr "የ ምእራፍ ቁጥር እና ስም"
@@ -7672,55 +7678,55 @@ msgstr "የ ምእራፍ ቁጥር እና ስም"
#. --------------------------------------------------------------------
#. Description: formats
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:999
+#: sw/inc/strings.hrc:1000
msgctxt "FMT_NUM_ABC"
msgid "A B C"
msgstr "A B C"
#. jm7G7
-#: sw/inc/strings.hrc:1000
+#: sw/inc/strings.hrc:1001
msgctxt "FMT_NUM_SABC"
msgid "a b c"
msgstr "a b c"
#. ETgy7
-#: sw/inc/strings.hrc:1001
+#: sw/inc/strings.hrc:1002
msgctxt "FMT_NUM_ABC_N"
msgid "A .. AA .. AAA"
msgstr "A .. AA .. AAA"
#. m84Fb
-#: sw/inc/strings.hrc:1002
+#: sw/inc/strings.hrc:1003
msgctxt "FMT_NUM_SABC_N"
msgid "a .. aa .. aaa"
msgstr "a .. aa .. aaa"
#. d9YtB
-#: sw/inc/strings.hrc:1003
+#: sw/inc/strings.hrc:1004
msgctxt "FMT_NUM_ROMAN"
msgid "Roman (I II III)"
msgstr "የ ሮማን (I II III)"
#. vA5RT
-#: sw/inc/strings.hrc:1004
+#: sw/inc/strings.hrc:1005
msgctxt "FMT_NUM_SROMAN"
msgid "Roman (i ii iii)"
msgstr "የ ሮማን (i ii iii)"
#. 3ZDgc
-#: sw/inc/strings.hrc:1005
+#: sw/inc/strings.hrc:1006
msgctxt "FMT_NUM_ARABIC"
msgid "Arabic (1 2 3)"
msgstr "የ አረብኛ (1 2 3)"
#. CHmdp
-#: sw/inc/strings.hrc:1006
+#: sw/inc/strings.hrc:1007
msgctxt "FMT_NUM_PAGEDESC"
msgid "As Page Style"
msgstr "እንደ ገጽ ዘዴ"
#. xBKwZ
-#: sw/inc/strings.hrc:1007
+#: sw/inc/strings.hrc:1008
msgctxt "FMT_NUM_PAGESPECIAL"
msgid "Text"
msgstr "ጽሁፍ"
@@ -7729,13 +7735,13 @@ msgstr "ጽሁፍ"
#. --------------------------------------------------------------------
#. Description: Author
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1011
+#: sw/inc/strings.hrc:1012
msgctxt "FMT_AUTHOR_NAME"
msgid "Name"
msgstr "ስም"
#. RCnZb
-#: sw/inc/strings.hrc:1012
+#: sw/inc/strings.hrc:1013
msgctxt "FMT_AUTHOR_SCUT"
msgid "Initials"
msgstr "መነሻዎች"
@@ -7744,49 +7750,49 @@ msgstr "መነሻዎች"
#. --------------------------------------------------------------------
#. Description: set variable
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1016
+#: sw/inc/strings.hrc:1017
msgctxt "FMT_SETVAR_SYS"
msgid "System"
msgstr "ስርአት"
#. qKXLW
-#: sw/inc/strings.hrc:1017
+#: sw/inc/strings.hrc:1018
msgctxt "FMT_SETVAR_TEXT"
msgid "Text"
msgstr "ጽሁፍ"
#. E86ZD
-#: sw/inc/strings.hrc:1018
+#: sw/inc/strings.hrc:1019
msgctxt "FMT_GETVAR_NAME"
msgid "Name"
msgstr "ስም"
#. FB3Rp
-#: sw/inc/strings.hrc:1019
+#: sw/inc/strings.hrc:1020
msgctxt "FMT_GETVAR_TEXT"
msgid "Text"
msgstr "ጽሁፍ"
#. KiBai
-#: sw/inc/strings.hrc:1020
+#: sw/inc/strings.hrc:1021
msgctxt "FMT_USERVAR_CMD"
msgid "Formula"
msgstr "መቀመሪያ"
#. 9AsdS
-#: sw/inc/strings.hrc:1021
+#: sw/inc/strings.hrc:1022
msgctxt "FMT_USERVAR_TEXT"
msgid "Text"
msgstr "ጽሁፍ"
#. GokUf
-#: sw/inc/strings.hrc:1022
+#: sw/inc/strings.hrc:1023
msgctxt "FMT_DBFLD_DB"
msgid "Database"
msgstr "ዳታቤዝ"
#. UBADL
-#: sw/inc/strings.hrc:1023
+#: sw/inc/strings.hrc:1024
msgctxt "FMT_DBFLD_SYS"
msgid "System"
msgstr "ስርአት"
@@ -7795,19 +7801,19 @@ msgstr "ስርአት"
#. --------------------------------------------------------------------
#. Description: storage fields
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1027
+#: sw/inc/strings.hrc:1028
msgctxt "FMT_REG_AUTHOR"
msgid "Author"
msgstr "ደራሲው"
#. aqFVp
-#: sw/inc/strings.hrc:1028
+#: sw/inc/strings.hrc:1029
msgctxt "FMT_REG_TIME"
msgid "Time"
msgstr "ሰአት"
#. FaZKx
-#: sw/inc/strings.hrc:1029
+#: sw/inc/strings.hrc:1030
msgctxt "FMT_REG_DATE"
msgid "Date"
msgstr "ቀን"
@@ -7816,79 +7822,79 @@ msgstr "ቀን"
#. --------------------------------------------------------------------
#. Description: formats references
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1033
+#: sw/inc/strings.hrc:1034
msgctxt "FMT_REF_TEXT"
msgid "Referenced text"
msgstr ""
#. eeSAu
-#: sw/inc/strings.hrc:1034
+#: sw/inc/strings.hrc:1035
msgctxt "FMT_REF_PAGE"
msgid "Page number (unstyled)"
msgstr ""
#. MaB3q
-#: sw/inc/strings.hrc:1035
+#: sw/inc/strings.hrc:1036
msgctxt "FMT_REF_CHAPTER"
msgid "Chapter"
msgstr "ምእራፍ"
#. VBMno
-#: sw/inc/strings.hrc:1036
+#: sw/inc/strings.hrc:1037
msgctxt "FMT_REF_UPDOWN"
msgid "“Above”/“Below”"
msgstr ""
#. 96emU
-#: sw/inc/strings.hrc:1037
+#: sw/inc/strings.hrc:1038
msgctxt "FMT_REF_PAGE_PGDSC"
msgid "Page number (styled)"
msgstr ""
#. CQitd
-#: sw/inc/strings.hrc:1038
+#: sw/inc/strings.hrc:1039
msgctxt "FMT_REF_ONLYNUMBER"
msgid "Category and Number"
msgstr "ምድብ እና ቁጥር"
#. BsvCn
-#: sw/inc/strings.hrc:1039
+#: sw/inc/strings.hrc:1040
msgctxt "FMT_REF_ONLYCAPTION"
msgid "Caption Text"
msgstr "የ መግለጫ ጽሁፍ"
#. P7wiX
-#: sw/inc/strings.hrc:1040
+#: sw/inc/strings.hrc:1041
msgctxt "FMT_REF_ONLYSEQNO"
msgid "Numbering"
msgstr "ቁጥር መስጫ"
#. QBGit
-#: sw/inc/strings.hrc:1041
+#: sw/inc/strings.hrc:1042
msgctxt "FMT_REF_NUMBER"
msgid "Number"
msgstr "ቁጥር"
#. CGkV7
-#: sw/inc/strings.hrc:1042
+#: sw/inc/strings.hrc:1043
msgctxt "FMT_REF_NUMBER_NO_CONTEXT"
msgid "Number (no context)"
msgstr "ቁጥር (አገባብ የለውም)"
#. XgSb3
-#: sw/inc/strings.hrc:1043
+#: sw/inc/strings.hrc:1044
msgctxt "FMT_REF_NUMBER_FULL_CONTEXT"
msgid "Number (full context)"
msgstr "ቁጥር (ሙሉ አገባብ አለው)"
#. zQTNF
-#: sw/inc/strings.hrc:1045
+#: sw/inc/strings.hrc:1046
msgctxt "FMT_REF_WITH_LOWERCASE_HU_ARTICLE"
msgid "Article a/az + "
msgstr "ጽሁፍ ከ a/az + "
#. 97Vs7
-#: sw/inc/strings.hrc:1046
+#: sw/inc/strings.hrc:1047
msgctxt "FMT_REF_WITH_UPPERCASE_HU_ARTICLE"
msgid "Article A/Az + "
msgstr "ጽሁፍ ከ A/Az + "
@@ -7897,31 +7903,31 @@ msgstr "ጽሁፍ ከ A/Az + "
#. --------------------------------------------------------------------
#. Description: placeholder
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1050
+#: sw/inc/strings.hrc:1051
msgctxt "FMT_MARK_TEXT"
msgid "Text"
msgstr "ጽሁፍ"
#. rAQoE
-#: sw/inc/strings.hrc:1051
+#: sw/inc/strings.hrc:1052
msgctxt "FMT_MARK_TABLE"
msgid "Table"
msgstr "ሰንጠረዥ"
#. biUa2
-#: sw/inc/strings.hrc:1052
+#: sw/inc/strings.hrc:1053
msgctxt "FMT_MARK_FRAME"
msgid "Frame"
msgstr "ክፈፍ"
#. 7mkZb
-#: sw/inc/strings.hrc:1053
+#: sw/inc/strings.hrc:1054
msgctxt "FMT_MARK_GRAFIC"
msgid "Image"
msgstr "ምስል"
#. GgbFY
-#: sw/inc/strings.hrc:1054
+#: sw/inc/strings.hrc:1055
msgctxt "FMT_MARK_OLE"
msgid "Object"
msgstr "እቃ"
@@ -7930,1541 +7936,1541 @@ msgstr "እቃ"
#. --------------------------------------------------------------------
#. Description: ExchangeStrings for Edit/NameFT
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1058
+#: sw/inc/strings.hrc:1059
msgctxt "STR_COND"
msgid "~Condition"
msgstr "~ሁኔታው"
#. X9cqJ
-#: sw/inc/strings.hrc:1059
+#: sw/inc/strings.hrc:1060
msgctxt "STR_TEXT"
msgid "Then, Else"
msgstr "ከዚያ: ተጨማሪ"
#. bo8yF
-#: sw/inc/strings.hrc:1060
+#: sw/inc/strings.hrc:1061
msgctxt "STR_DDE_CMD"
msgid "DDE Statement"
msgstr "DDE Statement"
#. LixXA
-#: sw/inc/strings.hrc:1061
+#: sw/inc/strings.hrc:1062
msgctxt "STR_INSTEXT"
msgid "Hidden t~ext"
msgstr "የተደበቀ ጽ~ሁፍ"
#. EX3bJ
-#: sw/inc/strings.hrc:1062
+#: sw/inc/strings.hrc:1063
msgctxt "STR_MACNAME"
msgid "~Macro name"
msgstr "የ ~ማክሮ ስም"
#. dNZtd
-#: sw/inc/strings.hrc:1063
+#: sw/inc/strings.hrc:1064
msgctxt "STR_PROMPT"
msgid "~Reference"
msgstr "~ማመሳከሪያ"
#. bfRPa
-#: sw/inc/strings.hrc:1064
+#: sw/inc/strings.hrc:1065
msgctxt "STR_COMBCHRS_FT"
msgid "Ch~aracters"
msgstr "ባህ~ሪዎች"
#. j2G5G
-#: sw/inc/strings.hrc:1065
+#: sw/inc/strings.hrc:1066
msgctxt "STR_OFFSET"
msgid "O~ffset"
msgstr "ማ~ካካሻ"
#. vEgGo
-#: sw/inc/strings.hrc:1066
+#: sw/inc/strings.hrc:1067
msgctxt "STR_VALUE"
msgid "Value"
msgstr "ዋጋ"
#. YQesU
-#: sw/inc/strings.hrc:1067
+#: sw/inc/strings.hrc:1068
msgctxt "STR_FORMULA"
msgid "Formula"
msgstr "መቀመሪያ"
#. Eq5xq
-#: sw/inc/strings.hrc:1068
+#: sw/inc/strings.hrc:1069
msgctxt "STR_CUSTOM_FIELD"
msgid "Custom"
msgstr "ማስተካከያ"
#. 32NzA
-#: sw/inc/strings.hrc:1070
+#: sw/inc/strings.hrc:1071
msgctxt "STR_CUSTOM_LABEL"
msgid "[User]"
msgstr "[ተጠቃሚ]"
#. dYQTU
-#: sw/inc/strings.hrc:1072
+#: sw/inc/strings.hrc:1073
msgctxt "STR_HDIST"
msgid "H. Pitch"
msgstr "የ አግድም. ማሰናጃ"
#. xELZY
-#: sw/inc/strings.hrc:1073
+#: sw/inc/strings.hrc:1074
msgctxt "STR_VDIST"
msgid "V. Pitch"
msgstr "የ ቁመት. ማሰናጃ"
#. F9Ldz
-#: sw/inc/strings.hrc:1074
+#: sw/inc/strings.hrc:1075
msgctxt "STR_WIDTH"
msgid "Width"
msgstr "ስፋት"
#. rdxcb
-#: sw/inc/strings.hrc:1075
+#: sw/inc/strings.hrc:1076
msgctxt "STR_HEIGHT"
msgid "Height"
msgstr "እርዝመት"
#. DQm2h
-#: sw/inc/strings.hrc:1076
+#: sw/inc/strings.hrc:1077
msgctxt "STR_LEFT"
msgid "Left margin"
msgstr "የ ግራ መስመር"
#. imDMU
-#: sw/inc/strings.hrc:1077
+#: sw/inc/strings.hrc:1078
msgctxt "STR_UPPER"
msgid "Top margin"
msgstr "የ ላይ መስመር"
#. ayQss
-#: sw/inc/strings.hrc:1078
+#: sw/inc/strings.hrc:1079
msgctxt "STR_COLS"
msgid "Columns"
msgstr "አምዶች"
#. 3moLd
-#: sw/inc/strings.hrc:1079
+#: sw/inc/strings.hrc:1080
msgctxt "STR_ROWS"
msgid "Rows"
msgstr "ረድፎች"
#. XWMSH
-#: sw/inc/strings.hrc:1081
+#: sw/inc/strings.hrc:1082
msgctxt "STR_WORDCOUNT_HINT"
msgid "Word and character count. Click to open Word Count dialog."
msgstr "ቃላት እና ባህሪ መቁጠሪያ: ይጫኑ ለ መክፈት የ መቁጠሪያ ንግግር"
#. nxGNq
-#: sw/inc/strings.hrc:1082
+#: sw/inc/strings.hrc:1083
msgctxt "STR_VIEWLAYOUT_ONE"
msgid "Single-page view"
msgstr "በ ነጠላ-ገጽ መመልከቻ"
#. 57ju6
-#: sw/inc/strings.hrc:1083
+#: sw/inc/strings.hrc:1084
msgctxt "STR_VIEWLAYOUT_MULTI"
msgid "Multiple-page view"
msgstr "በርካታ-ገጽ መመልከቻ"
#. tbig8
-#: sw/inc/strings.hrc:1084
+#: sw/inc/strings.hrc:1085
msgctxt "STR_VIEWLAYOUT_BOOK"
msgid "Book view"
msgstr "በ መጽሀፍ መመልከቻ"
#. xBHUG
-#: sw/inc/strings.hrc:1085
+#: sw/inc/strings.hrc:1086
msgctxt "STR_BOOKCTRL_HINT"
msgid "Page number in document. Click to open Go to Page dialog or right-click for bookmark list."
msgstr "የ ገጽ ቁጥር በ ሰነድ ውስጥ: ይጫኑ የ መቃኛ መስኮት ለመክፈት ወይንም በ ቀኝ-ይጫኑ ለ ምልክት ማድረጊያ ዝርዝር"
#. XaF3v
-#: sw/inc/strings.hrc:1086
+#: sw/inc/strings.hrc:1087
msgctxt "STR_BOOKCTRL_HINT_EXTENDED"
msgid "Page number in document (Page number on printed document). Click to open Go to Page dialog."
msgstr "የ ገጽ ቁጥር በ ሰነድ ውስጥ (የ ገጽ ቁጥር በ ታተመ ሰነድ ላይ) ይጫኑ ለ መክፈት የ መሄጃ ወደ ገጽ ንግግር"
#. EWtd2
-#: sw/inc/strings.hrc:1087
+#: sw/inc/strings.hrc:1088
msgctxt "STR_TMPLCTRL_HINT"
msgid "Page Style. Right-click to change style or click to open Style dialog."
msgstr "የ ገጽ ዘዴ በ ቀኝ-ይጫኑ ዘዴውን ለመቀየር ወይንም የ ዘዴ ንግግርን ይክፈቱ"
#. jQAym
#. Strings for textual attributes.
-#: sw/inc/strings.hrc:1090
+#: sw/inc/strings.hrc:1091
msgctxt "STR_DROP_OVER"
msgid "Drop Caps over"
msgstr "ፊደል በ ትልቁ መጻፊያ"
#. PLAVt
-#: sw/inc/strings.hrc:1091
+#: sw/inc/strings.hrc:1092
msgctxt "STR_DROP_LINES"
msgid "rows"
msgstr "ረድፎች"
#. sg6Za
-#: sw/inc/strings.hrc:1092
+#: sw/inc/strings.hrc:1093
msgctxt "STR_NO_DROP_LINES"
msgid "No Drop Caps"
msgstr "ፊደል በ ትልቁ መጻፊያ የለም"
#. gueRC
-#: sw/inc/strings.hrc:1093
+#: sw/inc/strings.hrc:1094
msgctxt "STR_NO_PAGEDESC"
msgid "No page break"
msgstr "የ ገጽ መጨረሻ የለም"
#. G3CQN
-#: sw/inc/strings.hrc:1094
+#: sw/inc/strings.hrc:1095
msgctxt "STR_NO_MIRROR"
msgid "Don't mirror"
msgstr "አታንፀባርቅ"
#. MVEk8
-#: sw/inc/strings.hrc:1095
+#: sw/inc/strings.hrc:1096
msgctxt "STR_VERT_MIRROR"
msgid "Flip vertically"
msgstr "በ ቁመት መገልበጫ"
#. Dns6t
-#: sw/inc/strings.hrc:1096
+#: sw/inc/strings.hrc:1097
msgctxt "STR_HORI_MIRROR"
msgid "Flip horizontal"
msgstr "በ አግድም መገልበጫ"
#. ZUKCy
-#: sw/inc/strings.hrc:1097
+#: sw/inc/strings.hrc:1098
msgctxt "STR_BOTH_MIRROR"
msgid "Horizontal and Vertical Flip"
msgstr "በ አግድም እና በ ቁመት መገልበጫ"
#. LoQic
-#: sw/inc/strings.hrc:1098
+#: sw/inc/strings.hrc:1099
msgctxt "STR_MIRROR_TOGGLE"
msgid "+ mirror horizontal on even pages"
msgstr "+ ማንፀባረቂያ በ አግድም በሙሉ ገጽ ላይ"
#. kbnTf
-#: sw/inc/strings.hrc:1099
+#: sw/inc/strings.hrc:1100
msgctxt "STR_CHARFMT"
msgid "Character Style"
msgstr "የ ባህሪ ዘዴ"
#. D99ZJ
-#: sw/inc/strings.hrc:1100
+#: sw/inc/strings.hrc:1101
msgctxt "STR_NO_CHARFMT"
msgid "No Character Style"
msgstr "ምንም የ ባህሪ ዘዴ የለም"
#. fzG3P
-#: sw/inc/strings.hrc:1101
+#: sw/inc/strings.hrc:1102
msgctxt "STR_FOOTER"
msgid "Footer"
msgstr "ግርጌ"
#. 9RCsQ
-#: sw/inc/strings.hrc:1102
+#: sw/inc/strings.hrc:1103
msgctxt "STR_NO_FOOTER"
msgid "No footer"
msgstr "ግርጌ የለም"
#. zFTin
-#: sw/inc/strings.hrc:1103
+#: sw/inc/strings.hrc:1104
msgctxt "STR_HEADER"
msgid "Header"
msgstr "ራስጌ"
#. PcYEB
-#: sw/inc/strings.hrc:1104
+#: sw/inc/strings.hrc:1105
msgctxt "STR_NO_HEADER"
msgid "No header"
msgstr "ራስጌ የለም"
#. 8Jgfg
-#: sw/inc/strings.hrc:1105
+#: sw/inc/strings.hrc:1106
msgctxt "STR_SURROUND_IDEAL"
msgid "Optimal"
msgstr "አጥጋቢ"
#. HEuGy
-#: sw/inc/strings.hrc:1106
+#: sw/inc/strings.hrc:1107
msgctxt "STR_SURROUND_NONE"
msgid "None"
msgstr "ምንም"
#. 4tA4q
-#: sw/inc/strings.hrc:1107
+#: sw/inc/strings.hrc:1108
msgctxt "STR_SURROUND_THROUGH"
msgid "Through"
msgstr "በሙሉ"
#. ypvD6
-#: sw/inc/strings.hrc:1108
+#: sw/inc/strings.hrc:1109
msgctxt "STR_SURROUND_PARALLEL"
msgid "Parallel"
msgstr "አጓዳኝ"
#. hyEQ5
-#: sw/inc/strings.hrc:1109
+#: sw/inc/strings.hrc:1110
msgctxt "STR_SURROUND_LEFT"
msgid "Before"
msgstr "በፊት"
#. bGBtQ
-#: sw/inc/strings.hrc:1110
+#: sw/inc/strings.hrc:1111
msgctxt "STR_SURROUND_RIGHT"
msgid "After"
msgstr "በኋላ"
#. SrG3D
-#: sw/inc/strings.hrc:1111
+#: sw/inc/strings.hrc:1112
msgctxt "STR_SURROUND_ANCHORONLY"
msgid "(Anchor only)"
msgstr "(ማስቆሚያ ብቻ)"
#. 9Ywzb
-#: sw/inc/strings.hrc:1112
+#: sw/inc/strings.hrc:1113
msgctxt "STR_FRM_WIDTH"
msgid "Width:"
msgstr "ስፋት:"
#. 2GYT7
-#: sw/inc/strings.hrc:1113
+#: sw/inc/strings.hrc:1114
msgctxt "STR_FRM_FIXEDHEIGHT"
msgid "Fixed height:"
msgstr "የተወሰነ እርዝመት:"
#. QrFMi
-#: sw/inc/strings.hrc:1114
+#: sw/inc/strings.hrc:1115
msgctxt "STR_FRM_MINHEIGHT"
msgid "Min. height:"
msgstr "ዝቅተኛ እርዝመት:"
#. kLiYd
-#: sw/inc/strings.hrc:1115
+#: sw/inc/strings.hrc:1116
msgctxt "STR_FLY_AT_PARA"
msgid "to paragraph"
msgstr "ወደ አንቀጽ"
#. A8nAb
-#: sw/inc/strings.hrc:1116
+#: sw/inc/strings.hrc:1117
msgctxt "STR_FLY_AS_CHAR"
msgid "as character"
msgstr "እንደ ባህሪ"
#. Uszmm
-#: sw/inc/strings.hrc:1117
+#: sw/inc/strings.hrc:1118
msgctxt "STR_FLY_AT_CHAR"
msgid "to character"
msgstr "ወደ ባህሪ"
#. hDUSa
-#: sw/inc/strings.hrc:1118
+#: sw/inc/strings.hrc:1119
msgctxt "STR_FLY_AT_PAGE"
msgid "to page"
msgstr "ወደ ገጽ"
#. JMHRz
-#: sw/inc/strings.hrc:1119
+#: sw/inc/strings.hrc:1120
msgctxt "STR_POS_X"
msgid "X Coordinate:"
msgstr "X Coordinate:"
#. oCZWW
-#: sw/inc/strings.hrc:1120
+#: sw/inc/strings.hrc:1121
msgctxt "STR_POS_Y"
msgid "Y Coordinate:"
msgstr "Y Coordinate:"
#. YNKE6
-#: sw/inc/strings.hrc:1121
+#: sw/inc/strings.hrc:1122
msgctxt "STR_VERT_TOP"
msgid "at top"
msgstr "ከ ላይ"
#. GPTAu
-#: sw/inc/strings.hrc:1122
+#: sw/inc/strings.hrc:1123
msgctxt "STR_VERT_CENTER"
msgid "Centered vertically"
msgstr "መሀከል በ ቁመት"
#. fcpTS
-#: sw/inc/strings.hrc:1123
+#: sw/inc/strings.hrc:1124
msgctxt "STR_VERT_BOTTOM"
msgid "at bottom"
msgstr "ከ ታች"
#. 37hos
-#: sw/inc/strings.hrc:1124
+#: sw/inc/strings.hrc:1125
msgctxt "STR_LINE_TOP"
msgid "Top of line"
msgstr "ከ መስመሩ በላይ"
#. MU7hC
-#: sw/inc/strings.hrc:1125
+#: sw/inc/strings.hrc:1126
msgctxt "STR_LINE_CENTER"
msgid "Line centered"
msgstr "መሀከል ማስመሪያ"
#. ZvEq7
-#: sw/inc/strings.hrc:1126
+#: sw/inc/strings.hrc:1127
msgctxt "STR_LINE_BOTTOM"
msgid "Bottom of line"
msgstr "ከ መስመሩ በታች"
#. jypsG
-#: sw/inc/strings.hrc:1127
+#: sw/inc/strings.hrc:1128
msgctxt "STR_REGISTER_ON"
msgid "Page line-spacing"
msgstr "የ ገጽ መስመር ክፍተት"
#. Cui3U
-#: sw/inc/strings.hrc:1128
+#: sw/inc/strings.hrc:1129
msgctxt "STR_REGISTER_OFF"
msgid "Not page line-spacing"
msgstr "የ ገጽ መስመር-ክፍተት የለም"
#. 4RL9X
-#: sw/inc/strings.hrc:1129
+#: sw/inc/strings.hrc:1130
msgctxt "STR_HORI_RIGHT"
msgid "at the right"
msgstr "በ ቀኝ በኩል"
#. wzGK7
-#: sw/inc/strings.hrc:1130
+#: sw/inc/strings.hrc:1131
msgctxt "STR_HORI_CENTER"
msgid "Centered horizontally"
msgstr "በ አግድም መሀከል ላይ"
#. ngRmB
-#: sw/inc/strings.hrc:1131
+#: sw/inc/strings.hrc:1132
msgctxt "STR_HORI_LEFT"
msgid "at the left"
msgstr "በ ግራ በኩል"
#. JyHkM
-#: sw/inc/strings.hrc:1132
+#: sw/inc/strings.hrc:1133
msgctxt "STR_HORI_INSIDE"
msgid "inside"
msgstr "ውስጥ"
#. iXSZZ
-#: sw/inc/strings.hrc:1133
+#: sw/inc/strings.hrc:1134
msgctxt "STR_HORI_OUTSIDE"
msgid "outside"
msgstr "ውጪ"
#. kDY9Z
-#: sw/inc/strings.hrc:1134
+#: sw/inc/strings.hrc:1135
msgctxt "STR_HORI_FULL"
msgid "Full width"
msgstr "በ ሙሉ ስፋት"
#. Hvn8D
-#: sw/inc/strings.hrc:1135
+#: sw/inc/strings.hrc:1136
msgctxt "STR_COLUMNS"
msgid "Columns"
msgstr "አምዶች"
#. 6j6TA
-#: sw/inc/strings.hrc:1136
+#: sw/inc/strings.hrc:1137
msgctxt "STR_LINE_WIDTH"
msgid "Separator Width:"
msgstr "መለያያ ስፋት:"
#. dvdDt
-#: sw/inc/strings.hrc:1137
+#: sw/inc/strings.hrc:1138
msgctxt "STR_MAX_FTN_HEIGHT"
msgid "Max. footnote area:"
msgstr "ከፍተኛ የ ግርጌ ማስታወሻ ቦታ:"
#. BWqF3
-#: sw/inc/strings.hrc:1138
+#: sw/inc/strings.hrc:1139
msgctxt "STR_EDIT_IN_READONLY"
msgid "Editable in read-only document"
msgstr "በንባብ-ብቻ ሰነድ ውስጥ ሊታረም የሚችል"
#. SCL5F
-#: sw/inc/strings.hrc:1139
+#: sw/inc/strings.hrc:1140
msgctxt "STR_LAYOUT_SPLIT"
msgid "Split"
msgstr "መክፈያ"
#. CFmBk
-#: sw/inc/strings.hrc:1140
+#: sw/inc/strings.hrc:1141
msgctxt "STR_NUMRULE_ON"
msgid "List Style: (%LISTSTYLENAME)"
msgstr "ዝርዝር ዘዴ: (%LISTSTYLENAME)"
#. HvZBm
-#: sw/inc/strings.hrc:1141
+#: sw/inc/strings.hrc:1142
msgctxt "STR_NUMRULE_OFF"
msgid "List Style: (None)"
msgstr "ዝርዝር ዘዴ: (None)"
#. QDaFk
-#: sw/inc/strings.hrc:1142
+#: sw/inc/strings.hrc:1143
msgctxt "STR_CONNECT1"
msgid "linked to "
msgstr "ተገናኝቷል ወደ "
#. rWmT8
-#: sw/inc/strings.hrc:1143
+#: sw/inc/strings.hrc:1144
msgctxt "STR_CONNECT2"
msgid "and "
msgstr "እና "
#. H2Kwq
-#: sw/inc/strings.hrc:1144
+#: sw/inc/strings.hrc:1145
msgctxt "STR_LINECOUNT"
msgid "Count lines"
msgstr "መስመሮች መቁጠሪያ"
#. yjSiJ
-#: sw/inc/strings.hrc:1145
+#: sw/inc/strings.hrc:1146
msgctxt "STR_DONTLINECOUNT"
msgid "don't count lines"
msgstr "መስመሮች አትቁጠር"
#. HE4BV
-#: sw/inc/strings.hrc:1146
+#: sw/inc/strings.hrc:1147
msgctxt "STR_LINCOUNT_START"
msgid "restart line count with: "
msgstr "እንደገና ማስጀመሪያ ቆጠራውን በ: "
#. 7Q8qC
-#: sw/inc/strings.hrc:1147
+#: sw/inc/strings.hrc:1148
msgctxt "STR_LUMINANCE"
msgid "Brightness: "
msgstr "ብርሁነት: "
#. sNxPE
-#: sw/inc/strings.hrc:1148
+#: sw/inc/strings.hrc:1149
msgctxt "STR_CHANNELR"
msgid "Red: "
msgstr "ቀይ: "
#. u73NC
-#: sw/inc/strings.hrc:1149
+#: sw/inc/strings.hrc:1150
msgctxt "STR_CHANNELG"
msgid "Green: "
msgstr "አረንጓዴ: "
#. qQsPp
-#: sw/inc/strings.hrc:1150
+#: sw/inc/strings.hrc:1151
msgctxt "STR_CHANNELB"
msgid "Blue: "
msgstr "ሰማያዊ: "
#. BS4nZ
-#: sw/inc/strings.hrc:1151
+#: sw/inc/strings.hrc:1152
msgctxt "STR_CONTRAST"
msgid "Contrast: "
msgstr "ማነጻጸሪያ: "
#. avJBK
-#: sw/inc/strings.hrc:1152
+#: sw/inc/strings.hrc:1153
msgctxt "STR_GAMMA"
msgid "Gamma: "
msgstr "ጋማ: "
#. HQCJZ
-#: sw/inc/strings.hrc:1153
+#: sw/inc/strings.hrc:1154
msgctxt "STR_TRANSPARENCY"
msgid "Transparency: "
msgstr "ግልጽነት: "
#. 5jDK3
-#: sw/inc/strings.hrc:1154
+#: sw/inc/strings.hrc:1155
msgctxt "STR_INVERT"
msgid "Invert"
msgstr "መገልበጫ"
#. DVSAx
-#: sw/inc/strings.hrc:1155
+#: sw/inc/strings.hrc:1156
msgctxt "STR_INVERT_NOT"
msgid "do not invert"
msgstr "አትገልብጥ"
#. Z7tXB
-#: sw/inc/strings.hrc:1156
+#: sw/inc/strings.hrc:1157
msgctxt "STR_DRAWMODE"
msgid "Graphics mode: "
msgstr "በ ንድፎች ዘዴ: "
#. RXuUF
-#: sw/inc/strings.hrc:1157
+#: sw/inc/strings.hrc:1158
msgctxt "STR_DRAWMODE_STD"
msgid "Standard"
msgstr "መደበኛ"
#. kbALJ
-#: sw/inc/strings.hrc:1158
+#: sw/inc/strings.hrc:1159
msgctxt "STR_DRAWMODE_GREY"
msgid "Grayscales"
msgstr "ግራጫማ"
#. eSHEj
-#: sw/inc/strings.hrc:1159
+#: sw/inc/strings.hrc:1160
msgctxt "STR_DRAWMODE_BLACKWHITE"
msgid "Black & White"
msgstr "ጥቁር & ነጭ"
#. tABTr
-#: sw/inc/strings.hrc:1160
+#: sw/inc/strings.hrc:1161
msgctxt "STR_DRAWMODE_WATERMARK"
msgid "Watermark"
msgstr "የ ውሀ ምልክት"
#. 8SwC3
-#: sw/inc/strings.hrc:1161
+#: sw/inc/strings.hrc:1162
msgctxt "STR_ROTATION"
msgid "Rotation"
msgstr "ማዞሪያ"
#. hWEeF
-#: sw/inc/strings.hrc:1162
+#: sw/inc/strings.hrc:1163
msgctxt "STR_GRID_NONE"
msgid "No grid"
msgstr "መጋጠሚያ የለም"
#. HEuEv
-#: sw/inc/strings.hrc:1163
+#: sw/inc/strings.hrc:1164
msgctxt "STR_GRID_LINES_ONLY"
msgid "Grid (lines only)"
msgstr "መጋጠሚያ (ለ መስመሮች ብቻ)"
#. VFgMq
-#: sw/inc/strings.hrc:1164
+#: sw/inc/strings.hrc:1165
msgctxt "STR_GRID_LINES_CHARS"
msgid "Grid (lines and characters)"
msgstr "መጋጠሚያ (ለ መስመሮች እና ባህሪዎች)"
#. VRJrB
-#: sw/inc/strings.hrc:1165
+#: sw/inc/strings.hrc:1166
msgctxt "STR_FOLLOW_TEXT_FLOW"
msgid "Follow text flow"
msgstr "የ ጽሁፉን ፍሰት መከተያ"
#. Sb3Je
-#: sw/inc/strings.hrc:1166
+#: sw/inc/strings.hrc:1167
msgctxt "STR_DONT_FOLLOW_TEXT_FLOW"
msgid "Do not follow text flow"
msgstr "የ ጽሁፉን ፍሰት አትከተል"
#. yXFKP
-#: sw/inc/strings.hrc:1167
+#: sw/inc/strings.hrc:1168
msgctxt "STR_CONNECT_BORDER_ON"
msgid "Merge borders"
msgstr "ድንበሮች ማዋሀጃ"
#. vwHbS
-#: sw/inc/strings.hrc:1168
+#: sw/inc/strings.hrc:1169
msgctxt "STR_CONNECT_BORDER_OFF"
msgid "Do not merge borders"
msgstr "ድንበሮችን አታዋህድ"
#. 3874B
-#: sw/inc/strings.hrc:1170
+#: sw/inc/strings.hrc:1171
msgctxt "ST_TBL"
msgid "Table"
msgstr "ሰንጠረዥ"
#. T9JAj
-#: sw/inc/strings.hrc:1171
+#: sw/inc/strings.hrc:1172
msgctxt "ST_FRM"
msgid "Frame"
msgstr "ክፈፍ"
#. Fsnm6
-#: sw/inc/strings.hrc:1172
+#: sw/inc/strings.hrc:1173
msgctxt "ST_PGE"
msgid "Page"
msgstr "ገጽ"
#. pKFCz
-#: sw/inc/strings.hrc:1173
+#: sw/inc/strings.hrc:1174
msgctxt "ST_DRW"
msgid "Drawing"
msgstr "መሳያ"
#. amiSY
-#: sw/inc/strings.hrc:1174
+#: sw/inc/strings.hrc:1175
msgctxt "ST_CTRL"
msgid "Control"
msgstr "መቆጣጠሪያ"
#. GEw9u
-#: sw/inc/strings.hrc:1175
+#: sw/inc/strings.hrc:1176
msgctxt "ST_REG"
msgid "Section"
msgstr "ክፍል"
#. bEiyL
-#: sw/inc/strings.hrc:1176
+#: sw/inc/strings.hrc:1177
msgctxt "ST_BKM"
msgid "Bookmark"
msgstr "ምልክት ማድረጊያ"
#. 6gXCo
-#: sw/inc/strings.hrc:1177
+#: sw/inc/strings.hrc:1178
msgctxt "ST_GRF"
msgid "Graphics"
msgstr "ንድፎች"
#. d5eSc
-#: sw/inc/strings.hrc:1178
+#: sw/inc/strings.hrc:1179
msgctxt "ST_OLE"
msgid "OLE object"
msgstr "የ OLE እቃ"
#. h5QQ8
-#: sw/inc/strings.hrc:1179
+#: sw/inc/strings.hrc:1180
msgctxt "ST_OUTL"
msgid "Headings"
msgstr "ራስጌዎች"
#. Cbktp
-#: sw/inc/strings.hrc:1180
+#: sw/inc/strings.hrc:1181
msgctxt "ST_SEL"
msgid "Selection"
msgstr "ምርጫዎች"
#. nquvS
-#: sw/inc/strings.hrc:1181
+#: sw/inc/strings.hrc:1182
msgctxt "ST_FTN"
msgid "Footnote"
msgstr "የ ግርጌ ማስታወሻ"
#. GpAUo
-#: sw/inc/strings.hrc:1182
+#: sw/inc/strings.hrc:1183
msgctxt "ST_MARK"
msgid "Reminder"
msgstr "አስታዋሽ"
#. nDFKa
-#: sw/inc/strings.hrc:1183
+#: sw/inc/strings.hrc:1184
msgctxt "ST_POSTIT"
msgid "Comment"
msgstr "አስተያየት"
#. qpbDE
-#: sw/inc/strings.hrc:1184
+#: sw/inc/strings.hrc:1185
msgctxt "ST_SRCH_REP"
msgid "Repeat search"
msgstr "መፈለጊያ መድገሚያ"
#. ipxfH
-#: sw/inc/strings.hrc:1185
+#: sw/inc/strings.hrc:1186
msgctxt "ST_INDEX_ENTRY"
msgid "Index entry"
msgstr "የ ማውጫ ማስገቢያ"
#. sfmff
-#: sw/inc/strings.hrc:1186
+#: sw/inc/strings.hrc:1187
msgctxt "ST_TABLE_FORMULA"
msgid "Table formula"
msgstr "የ መቀመሪያ ሰንጠረዥ"
#. DtkuT
-#: sw/inc/strings.hrc:1187
+#: sw/inc/strings.hrc:1188
msgctxt "ST_TABLE_FORMULA_ERROR"
msgid "Wrong table formula"
msgstr "የ ተሳሳተ የ መቀመሪያ ሰንጠረዥ"
#. A6Vgk
-#: sw/inc/strings.hrc:1188
+#: sw/inc/strings.hrc:1189
msgctxt "ST_RECENCY"
msgid "Recency"
msgstr "በ ቅርብ ጊዜ"
#. pCp7u
-#: sw/inc/strings.hrc:1189
+#: sw/inc/strings.hrc:1190
msgctxt "ST_FIELD"
msgid "Field"
msgstr "ሜዳ"
#. LYuHA
-#: sw/inc/strings.hrc:1190
+#: sw/inc/strings.hrc:1191
msgctxt "ST_FIELD_BYTYPE"
msgid "Field by type"
msgstr "ሜዳ በ አይነት"
#. ECFxw
#. Strings for the quickhelp of the View-PgUp/Down-Buttons
-#: sw/inc/strings.hrc:1192
+#: sw/inc/strings.hrc:1193
msgctxt "STR_IMGBTN_TBL_DOWN"
msgid "Next table"
msgstr "የሚቀጥለው ሰንጠረዥ"
#. yhnpi
-#: sw/inc/strings.hrc:1193
+#: sw/inc/strings.hrc:1194
msgctxt "STR_IMGBTN_FRM_DOWN"
msgid "Next frame"
msgstr "የሚቀጥለው ክፈፍ"
#. M4BCA
-#: sw/inc/strings.hrc:1194
+#: sw/inc/strings.hrc:1195
msgctxt "STR_IMGBTN_PGE_DOWN"
msgid "Next page"
msgstr "የሚቀጥለው ገጽ"
#. UWeq4
-#: sw/inc/strings.hrc:1195
+#: sw/inc/strings.hrc:1196
msgctxt "STR_IMGBTN_DRW_DOWN"
msgid "Next drawing"
msgstr "የሚቀጥለው መሳያ"
#. ZVCrD
-#: sw/inc/strings.hrc:1196
+#: sw/inc/strings.hrc:1197
msgctxt "STR_IMGBTN_CTRL_DOWN"
msgid "Next control"
msgstr "የሚቀጥለው መቆጣጠሪያ"
#. NGAqr
-#: sw/inc/strings.hrc:1197
+#: sw/inc/strings.hrc:1198
msgctxt "STR_IMGBTN_REG_DOWN"
msgid "Next section"
msgstr "የሚቀጥለው ክፍል"
#. Mwcvm
-#: sw/inc/strings.hrc:1198
+#: sw/inc/strings.hrc:1199
msgctxt "STR_IMGBTN_BKM_DOWN"
msgid "Next bookmark"
msgstr "የሚቀጥለው ምልክት ማድረጊያ"
#. xbxDs
-#: sw/inc/strings.hrc:1199
+#: sw/inc/strings.hrc:1200
msgctxt "STR_IMGBTN_GRF_DOWN"
msgid "Next graphic"
msgstr "የሚቀጥለው ንድፍ"
#. 4ovAF
-#: sw/inc/strings.hrc:1200
+#: sw/inc/strings.hrc:1201
msgctxt "STR_IMGBTN_OLE_DOWN"
msgid "Next OLE object"
msgstr "የሚቀጥለው የ OLE እቃ"
#. YzK6w
-#: sw/inc/strings.hrc:1201
+#: sw/inc/strings.hrc:1202
msgctxt "STR_IMGBTN_OUTL_DOWN"
msgid "Next heading"
msgstr "የሚቀጥለው ራስጌ"
#. skdRc
-#: sw/inc/strings.hrc:1202
+#: sw/inc/strings.hrc:1203
msgctxt "STR_IMGBTN_SEL_DOWN"
msgid "Next selection"
msgstr "የሚቀጥለው ምርጫ"
#. RBFga
-#: sw/inc/strings.hrc:1203
+#: sw/inc/strings.hrc:1204
msgctxt "STR_IMGBTN_FTN_DOWN"
msgid "Next footnote"
msgstr "የ ሚቀጥለው የ ግርጌ ማስታወሻ"
#. GNLrx
-#: sw/inc/strings.hrc:1204
+#: sw/inc/strings.hrc:1205
msgctxt "STR_IMGBTN_MARK_DOWN"
msgid "Next Reminder"
msgstr "የሚቀጥለው አስታዋሽ"
#. mFCfp
-#: sw/inc/strings.hrc:1205
+#: sw/inc/strings.hrc:1206
msgctxt "STR_IMGBTN_POSTIT_DOWN"
msgid "Next Comment"
msgstr "የሚቀጥለው አስተያየት"
#. gbnwp
-#: sw/inc/strings.hrc:1206
+#: sw/inc/strings.hrc:1207
msgctxt "STR_IMGBTN_SRCH_REP_DOWN"
msgid "Continue search forward"
msgstr "ፍለጋውን ወደፊት መቀጠያ"
#. TXYkA
-#: sw/inc/strings.hrc:1207
+#: sw/inc/strings.hrc:1208
msgctxt "STR_IMGBTN_INDEX_ENTRY_DOWN"
msgid "Next index entry"
msgstr "የሚቀጥለው ማውጫ ማስገቢያ"
#. EyvbV
-#: sw/inc/strings.hrc:1208
+#: sw/inc/strings.hrc:1209
msgctxt "STR_IMGBTN_TBL_UP"
msgid "Previous table"
msgstr "ቀደም ያለው ሰንጠረዥ"
#. cC5vJ
-#: sw/inc/strings.hrc:1209
+#: sw/inc/strings.hrc:1210
msgctxt "STR_IMGBTN_FRM_UP"
msgid "Previous frame"
msgstr "ያለፈው ክፈፍ"
#. eQPFD
-#: sw/inc/strings.hrc:1210
+#: sw/inc/strings.hrc:1211
msgctxt "STR_IMGBTN_PGE_UP"
msgid "Previous page"
msgstr "ያለፈው ገጽ"
#. p5jbU
-#: sw/inc/strings.hrc:1211
+#: sw/inc/strings.hrc:1212
msgctxt "STR_IMGBTN_DRW_UP"
msgid "Previous drawing"
msgstr "ያለፈው መሳያ"
#. 2WMmZ
-#: sw/inc/strings.hrc:1212
+#: sw/inc/strings.hrc:1213
msgctxt "STR_IMGBTN_CTRL_UP"
msgid "Previous control"
msgstr "ያለፈው መቆጣጠሪያ"
#. 6uGDP
-#: sw/inc/strings.hrc:1213
+#: sw/inc/strings.hrc:1214
msgctxt "STR_IMGBTN_REG_UP"
msgid "Previous section"
msgstr "ቀደም ያለው ክፍል"
#. YYCtk
-#: sw/inc/strings.hrc:1214
+#: sw/inc/strings.hrc:1215
msgctxt "STR_IMGBTN_BKM_UP"
msgid "Previous bookmark"
msgstr "ቀደም ያለው ምልክት ማድረጊያ"
#. nFLdX
-#: sw/inc/strings.hrc:1215
+#: sw/inc/strings.hrc:1216
msgctxt "STR_IMGBTN_GRF_UP"
msgid "Previous graphic"
msgstr "ቀደም ያለው ንድፍ"
#. VuxvB
-#: sw/inc/strings.hrc:1216
+#: sw/inc/strings.hrc:1217
msgctxt "STR_IMGBTN_OLE_UP"
msgid "Previous OLE object"
msgstr "ቀደም ያለው የ OLE እቃ"
#. QSuct
-#: sw/inc/strings.hrc:1217
+#: sw/inc/strings.hrc:1218
msgctxt "STR_IMGBTN_OUTL_UP"
msgid "Previous heading"
msgstr "ቀደም ያለው ራስጌ"
#. CzLBr
-#: sw/inc/strings.hrc:1218
+#: sw/inc/strings.hrc:1219
msgctxt "STR_IMGBTN_SEL_UP"
msgid "Previous selection"
msgstr "ቀደም ያለው ምርጫ"
#. B7PoL
-#: sw/inc/strings.hrc:1219
+#: sw/inc/strings.hrc:1220
msgctxt "STR_IMGBTN_FTN_UP"
msgid "Previous footnote"
msgstr "ቀደም ያለው የ ግርጌ ማስታወሻ"
#. AgtLD
-#: sw/inc/strings.hrc:1220
+#: sw/inc/strings.hrc:1221
msgctxt "STR_IMGBTN_MARK_UP"
msgid "Previous Reminder"
msgstr "ቀደም ያለው አስታዋሽ"
#. GJQ6F
-#: sw/inc/strings.hrc:1221
+#: sw/inc/strings.hrc:1222
msgctxt "STR_IMGBTN_POSTIT_UP"
msgid "Previous Comment"
msgstr "ቀደም ያለው አስተያየት"
#. GWnfD
-#: sw/inc/strings.hrc:1222
+#: sw/inc/strings.hrc:1223
msgctxt "STR_IMGBTN_SRCH_REP_UP"
msgid "Continue search backwards"
msgstr "የ ኋሊዮሽ ፍለጋውን መቀጠያ"
#. uDtcG
-#: sw/inc/strings.hrc:1223
+#: sw/inc/strings.hrc:1224
msgctxt "STR_IMGBTN_INDEX_ENTRY_UP"
msgid "Previous index entry"
msgstr "ቀደም ያለው የማውጫ ማስገቢያ"
#. VR6DX
-#: sw/inc/strings.hrc:1224
+#: sw/inc/strings.hrc:1225
msgctxt "STR_IMGBTN_TBLFML_UP"
msgid "Previous table formula"
msgstr "ቀደም ያለው የ ሰንጠረዥ መቀመሪያ"
#. GqESF
-#: sw/inc/strings.hrc:1225
+#: sw/inc/strings.hrc:1226
msgctxt "STR_IMGBTN_TBLFML_DOWN"
msgid "Next table formula"
msgstr "የሚቀጥለው የ ሰንጠረዥ መቀመሪያ"
#. gBgxo
-#: sw/inc/strings.hrc:1226
+#: sw/inc/strings.hrc:1227
msgctxt "STR_IMGBTN_TBLFML_ERR_UP"
msgid "Previous faulty table formula"
msgstr "ቀደም ያለው የተሳሳተ የ ሰንጠረዥ መቀመሪያ"
#. UAon9
-#: sw/inc/strings.hrc:1227
+#: sw/inc/strings.hrc:1228
msgctxt "STR_IMGBTN_TBLFML_ERR_DOWN"
msgid "Next faulty table formula"
msgstr "የሚቀጥለው የተሳሳተ የ ሰንጠረዥ መቀመሪያ"
#. L2Apv
-#: sw/inc/strings.hrc:1228
+#: sw/inc/strings.hrc:1229
msgctxt "STR_IMGBTN_RECENCY_UP"
msgid "Go back"
msgstr "ወደ ኋላ መሄጃ"
#. jCsGs
-#: sw/inc/strings.hrc:1229
+#: sw/inc/strings.hrc:1230
msgctxt "STR_IMGBTN_RECENCY_DOWN"
msgid "Go forward"
msgstr "ወደ ፊት መሄጃ"
#. o3BBz
-#: sw/inc/strings.hrc:1230
+#: sw/inc/strings.hrc:1231
msgctxt "STR_IMGBTN_FIELD_UP"
msgid "Previous field"
msgstr "ያለፈው ሜዳ"
#. bQ33Z
-#: sw/inc/strings.hrc:1231
+#: sw/inc/strings.hrc:1232
msgctxt "STR_IMGBTN_FIELD_DOWN"
msgid "Next field"
msgstr ""
#. bhUaK
-#: sw/inc/strings.hrc:1232
+#: sw/inc/strings.hrc:1233
msgctxt "STR_IMGBTN_FIELD_BYTYPE_UP"
msgid "Previous '%FIELDTYPE' field"
msgstr ""
#. A8HWi
-#: sw/inc/strings.hrc:1233
+#: sw/inc/strings.hrc:1234
msgctxt "STR_IMGBTN_FIELD_BYTYPE_DOWN"
msgid "Next '%FIELDTYPE' field"
msgstr ""
#. hSYa3
-#: sw/inc/strings.hrc:1235
+#: sw/inc/strings.hrc:1236
msgctxt "STR_REDLINE_INSERT"
msgid "Inserted"
msgstr "ተጨምሯል"
#. LnFkq
-#: sw/inc/strings.hrc:1236
+#: sw/inc/strings.hrc:1237
msgctxt "STR_REDLINE_DELETE"
msgid "Deleted"
msgstr "ጠፍቷል"
#. cTNEn
-#: sw/inc/strings.hrc:1237
+#: sw/inc/strings.hrc:1238
msgctxt "STR_REDLINE_FORMAT"
msgid "Formatted"
msgstr "አቀራረብ"
#. YWr7C
-#: sw/inc/strings.hrc:1238
+#: sw/inc/strings.hrc:1239
msgctxt "STR_REDLINE_TABLE"
msgid "Table changed"
msgstr "ሰንጠረዡ ተቀይሯል"
#. 6xVDN
-#: sw/inc/strings.hrc:1239
+#: sw/inc/strings.hrc:1240
msgctxt "STR_REDLINE_FMTCOLL"
msgid "Applied Paragraph Styles"
msgstr "የ ተፈጸሙ የ አንቀጽ ዘዴዎች"
#. 32AND
-#: sw/inc/strings.hrc:1240
+#: sw/inc/strings.hrc:1241
msgctxt "STR_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr "የ አንቀጽ አቀራረብ ተቀይሯል"
#. wLDkj
-#: sw/inc/strings.hrc:1241
+#: sw/inc/strings.hrc:1242
msgctxt "STR_REDLINE_TABLE_ROW_INSERT"
msgid "Row Inserted"
msgstr "ረድፍ ገብቷል"
#. Eb5Gb
-#: sw/inc/strings.hrc:1242
+#: sw/inc/strings.hrc:1243
msgctxt "STR_REDLINE_TABLE_ROW_DELETE"
msgid "Row Deleted"
msgstr "ረድፍ ጠፍቷል"
#. i5ZJt
-#: sw/inc/strings.hrc:1243
+#: sw/inc/strings.hrc:1244
msgctxt "STR_REDLINE_TABLE_CELL_INSERT"
msgid "Cell Inserted"
msgstr "ክፍል ገብቷል"
#. 4gE3z
-#: sw/inc/strings.hrc:1244
+#: sw/inc/strings.hrc:1245
msgctxt "STR_REDLINE_TABLE_CELL_DELETE"
msgid "Cell Deleted"
msgstr "ክፍል ጠፍቷል"
#. DRCyp
-#: sw/inc/strings.hrc:1245
+#: sw/inc/strings.hrc:1246
msgctxt "STR_ENDNOTE"
msgid "Endnote: "
msgstr "የ መጨረሻ ማስታወሻ: "
#. qpW2q
-#: sw/inc/strings.hrc:1246
+#: sw/inc/strings.hrc:1247
msgctxt "STR_FTNNOTE"
msgid "Footnote: "
msgstr "የ ግርጌ ማስታወሻ: "
#. 3RFUd
-#: sw/inc/strings.hrc:1247
+#: sw/inc/strings.hrc:1248
msgctxt "STR_SMARTTAG_CLICK"
msgid "%s-click to open Smart Tag menu"
msgstr "%s-ይጫኑ Smart Tag menu ለመክፈት"
#. QCD36
-#: sw/inc/strings.hrc:1248
+#: sw/inc/strings.hrc:1249
msgctxt "STR_HEADER_TITLE"
msgid "Header (%1)"
msgstr "ራስጌ (%1)"
#. AYjgB
-#: sw/inc/strings.hrc:1249
+#: sw/inc/strings.hrc:1250
msgctxt "STR_FIRST_HEADER_TITLE"
msgid "First Page Header (%1)"
msgstr "የ መጀመሪያ ገጽ ራስጌ (%1)"
#. qVX2k
-#: sw/inc/strings.hrc:1250
+#: sw/inc/strings.hrc:1251
msgctxt "STR_LEFT_HEADER_TITLE"
msgid "Left Page Header (%1)"
msgstr "የ ግራ ገጽ ራስጌ (%1)"
#. DSg3b
-#: sw/inc/strings.hrc:1251
+#: sw/inc/strings.hrc:1252
msgctxt "STR_RIGHT_HEADER_TITLE"
msgid "Right Page Header (%1)"
msgstr "የ ቀኝ ገጽ ራስጌ (%1)"
#. 6GzuM
-#: sw/inc/strings.hrc:1252
+#: sw/inc/strings.hrc:1253
msgctxt "STR_FOOTER_TITLE"
msgid "Footer (%1)"
msgstr "ግርጌ (%1)"
#. FDVNH
-#: sw/inc/strings.hrc:1253
+#: sw/inc/strings.hrc:1254
msgctxt "STR_FIRST_FOOTER_TITLE"
msgid "First Page Footer (%1)"
msgstr "የ መጀመሪያ ገጽ ግርጌ (%1)"
#. SL7r3
-#: sw/inc/strings.hrc:1254
+#: sw/inc/strings.hrc:1255
msgctxt "STR_LEFT_FOOTER_TITLE"
msgid "Left Page Footer (%1)"
msgstr "የ ግራ ገጽ ግርጌ (%1)"
#. CBvih
-#: sw/inc/strings.hrc:1255
+#: sw/inc/strings.hrc:1256
msgctxt "STR_RIGHT_FOOTER_TITLE"
msgid "Right Page Footer (%1)"
msgstr "የ ቀኝ ገጽ ግርጌ (%1)"
#. s8v3h
-#: sw/inc/strings.hrc:1256
+#: sw/inc/strings.hrc:1257
msgctxt "STR_DELETE_HEADER"
msgid "Delete Header..."
msgstr "ራስጌ ማጥፊያ..."
#. wL3Fr
-#: sw/inc/strings.hrc:1257
+#: sw/inc/strings.hrc:1258
msgctxt "STR_FORMAT_HEADER"
msgid "Format Header..."
msgstr "የ ራስጌ አቀራረብ..."
#. DrAUe
-#: sw/inc/strings.hrc:1258
+#: sw/inc/strings.hrc:1259
msgctxt "STR_DELETE_FOOTER"
msgid "Delete Footer..."
msgstr "ግርጌ ማጥፊያ..."
#. 9Xgou
-#: sw/inc/strings.hrc:1259
+#: sw/inc/strings.hrc:1260
msgctxt "STR_FORMAT_FOOTER"
msgid "Format Footer..."
msgstr "የ ግርጌ አቀራረብ..."
#. ApT5B
-#: sw/inc/strings.hrc:1261
+#: sw/inc/strings.hrc:1262
msgctxt "STR_UNFLOAT_TABLE"
msgid "Un-float Table"
msgstr "ሰንጠረዥ-አታንሳፍፍ"
#. wVAZJ
-#: sw/inc/strings.hrc:1263
+#: sw/inc/strings.hrc:1264
msgctxt "STR_PAGE_BREAK_BUTTON"
msgid "Edit page break"
msgstr ""
#. uvDKE
-#: sw/inc/strings.hrc:1265
+#: sw/inc/strings.hrc:1266
msgctxt "STR_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "የ ምስል ፋይል መክፈት አልተቻለም"
#. iJuAv
-#: sw/inc/strings.hrc:1266
+#: sw/inc/strings.hrc:1267
msgctxt "STR_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr "የ ምስል ፋይል ማንበብ አልተቻለም"
#. Bwwho
-#: sw/inc/strings.hrc:1267
+#: sw/inc/strings.hrc:1268
msgctxt "STR_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr "ያልታወቀ የምስል አቀራረብ"
#. bfog5
-#: sw/inc/strings.hrc:1268
+#: sw/inc/strings.hrc:1269
msgctxt "STR_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr "ይህ የምስል ፋይል አይነት የተደገፈ አይደለም"
#. xy4Vm
-#: sw/inc/strings.hrc:1269
+#: sw/inc/strings.hrc:1270
msgctxt "STR_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr "የምስል ማጣሪያ አልተገኘም"
#. tEqyq
-#: sw/inc/strings.hrc:1270
+#: sw/inc/strings.hrc:1271
msgctxt "STR_GRFILTER_TOOBIG"
msgid "Not enough memory to insert the image."
msgstr "ስእሉን ለማስገባት በቂ memory የለም"
#. 5ihue
-#: sw/inc/strings.hrc:1271
+#: sw/inc/strings.hrc:1272
msgctxt "STR_INSERT_GRAPHIC"
msgid "Insert Image"
msgstr "ምስል ማስገቢያ"
#. GWzLN
-#: sw/inc/strings.hrc:1272
+#: sw/inc/strings.hrc:1273
msgctxt "STR_REDLINE_COMMENT"
msgid "Comment: "
msgstr "አስተያየት : "
#. CoJc8
-#: sw/inc/strings.hrc:1273
+#: sw/inc/strings.hrc:1274
msgctxt "STR_REDLINE_INSERTED"
msgid "Insertion"
msgstr "ማስገቢያ"
#. dfMEF
-#: sw/inc/strings.hrc:1274
+#: sw/inc/strings.hrc:1275
msgctxt "STR_REDLINE_DELETED"
msgid "Deletion"
msgstr "ማጥፊያ"
#. NytQQ
-#: sw/inc/strings.hrc:1275
+#: sw/inc/strings.hrc:1276
msgctxt "STR_REDLINE_AUTOFMT"
msgid "AutoCorrect"
msgstr "በራሱ አራሚ"
#. YRAQL
-#: sw/inc/strings.hrc:1276
+#: sw/inc/strings.hrc:1277
msgctxt "STR_REDLINE_FORMATTED"
msgid "Formats"
msgstr "አቀራረብ"
#. ELCVU
-#: sw/inc/strings.hrc:1277
+#: sw/inc/strings.hrc:1278
msgctxt "STR_REDLINE_TABLECHG"
msgid "Table Changes"
msgstr "ሰንጠረዡ ተቀይሯል"
#. PzfQF
-#: sw/inc/strings.hrc:1278
+#: sw/inc/strings.hrc:1279
msgctxt "STR_REDLINE_FMTCOLLSET"
msgid "Applied Paragraph Styles"
msgstr "የ አንቀጽ ዘዴዎች መፈጸሚያ"
#. sgEbW
-#: sw/inc/strings.hrc:1279
+#: sw/inc/strings.hrc:1280
msgctxt "STR_PAGE"
msgid "Page "
msgstr "ገጽ "
#. 3DpEx
-#: sw/inc/strings.hrc:1280
+#: sw/inc/strings.hrc:1281
msgctxt "STR_PAGE_COUNT"
msgid "Page %1 of %2"
msgstr "ገጽ %1 ከ %2"
#. HSbzS
-#: sw/inc/strings.hrc:1281
+#: sw/inc/strings.hrc:1282
msgctxt "STR_PAGE_COUNT_CUSTOM"
msgid "Page %1 of %2 (Page %3)"
msgstr "ገጽ %1 ከ %2 (ገጽ %3)"
#. a7tDc
-#: sw/inc/strings.hrc:1282
+#: sw/inc/strings.hrc:1283
msgctxt "STR_PAGE_COUNT_PRINTED"
msgid "Page %1 of %2 (Page %3 of %4 to print)"
msgstr ""
#. KjML8
#. Strings for gallery/background
-#: sw/inc/strings.hrc:1284
+#: sw/inc/strings.hrc:1285
msgctxt "STR_SWBG_PARAGRAPH"
msgid "Paragraph"
msgstr "አንቀጽ"
#. aAtmp
-#: sw/inc/strings.hrc:1285
+#: sw/inc/strings.hrc:1286
msgctxt "STR_SWBG_GRAPHIC"
msgid "Image"
msgstr "ምስል"
#. UBDMK
-#: sw/inc/strings.hrc:1286
+#: sw/inc/strings.hrc:1287
msgctxt "STR_SWBG_OLE"
msgid "OLE object"
msgstr "የ OLE እቃ"
#. xEWbo
-#: sw/inc/strings.hrc:1287
+#: sw/inc/strings.hrc:1288
msgctxt "STR_SWBG_FRAME"
msgid "Frame"
msgstr "ክፈፍ"
#. hfJns
-#: sw/inc/strings.hrc:1288
+#: sw/inc/strings.hrc:1289
msgctxt "STR_SWBG_TABLE"
msgid "Table"
msgstr "ሰንጠረዥ"
#. GRqNY
-#: sw/inc/strings.hrc:1289
+#: sw/inc/strings.hrc:1290
msgctxt "STR_SWBG_TABLE_ROW"
msgid "Table row"
msgstr "የሰንጠረዥ ረድፍ"
#. CDQY4
-#: sw/inc/strings.hrc:1290
+#: sw/inc/strings.hrc:1291
msgctxt "STR_SWBG_TABLE_CELL"
msgid "Table cell"
msgstr "የሰንጠረዥ ክፍል"
#. 2Db9T
-#: sw/inc/strings.hrc:1291
+#: sw/inc/strings.hrc:1292
msgctxt "STR_SWBG_PAGE"
msgid "Page"
msgstr "ገጽ"
#. 63FuG
-#: sw/inc/strings.hrc:1292
+#: sw/inc/strings.hrc:1293
msgctxt "STR_SWBG_HEADER"
msgid "Header"
msgstr "ራስጌ"
#. aDuAY
-#: sw/inc/strings.hrc:1293
+#: sw/inc/strings.hrc:1294
msgctxt "STR_SWBG_FOOTER"
msgid "Footer"
msgstr "ግርጌ"
#. uAp9i
#. End: strings for gallery/background
-#: sw/inc/strings.hrc:1296
+#: sw/inc/strings.hrc:1297
msgctxt "STR_WRITER_WEBDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION HTML Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION HTML ሰነድ"
#. y2GBv
-#: sw/inc/strings.hrc:1298
+#: sw/inc/strings.hrc:1299
msgctxt "STR_TITLE"
msgid "Title"
msgstr "አርእስት"
#. AipGR
-#: sw/inc/strings.hrc:1299
+#: sw/inc/strings.hrc:1300
msgctxt "STR_ALPHA"
msgid "Separator"
msgstr "መለያያ"
#. CoSEf
-#: sw/inc/strings.hrc:1300
+#: sw/inc/strings.hrc:1301
msgctxt "STR_LEVEL"
msgid "Level "
msgstr "ደረጃ "
#. JdTF4
-#: sw/inc/strings.hrc:1301
+#: sw/inc/strings.hrc:1302
msgctxt "STR_FILE_NOT_FOUND"
msgid "The file, \"%1\" in the \"%2\" path could not be found."
msgstr "ፋይሉን \"%1\" በ \"%2\" መንገድ ውስጥ ማግኘት አልተቻለም"
#. zRWDZ
-#: sw/inc/strings.hrc:1302
+#: sw/inc/strings.hrc:1303
msgctxt "STR_USER_DEFINED_INDEX"
msgid "User-Defined Index"
msgstr "ተጠቃሚው-የተወሰነ ማውጫ"
#. t5uWs
-#: sw/inc/strings.hrc:1303
+#: sw/inc/strings.hrc:1304
msgctxt "STR_NOSORTKEY"
msgid "<None>"
msgstr "<ምንም>"
#. vSSnJ
-#: sw/inc/strings.hrc:1304
+#: sw/inc/strings.hrc:1305
msgctxt "STR_NO_CHAR_STYLE"
msgid "<None>"
msgstr "<ምንም>"
#. NSx98
-#: sw/inc/strings.hrc:1305
+#: sw/inc/strings.hrc:1306
msgctxt "STR_DELIM"
msgid "S"
msgstr "S"
#. hK8CX
-#: sw/inc/strings.hrc:1306
+#: sw/inc/strings.hrc:1307
msgctxt "STR_TOKEN_ENTRY_NO"
msgid "E#"
msgstr "E#"
#. 8EgTx
-#: sw/inc/strings.hrc:1307
+#: sw/inc/strings.hrc:1308
msgctxt "STR_TOKEN_ENTRY"
msgid "E"
msgstr "E"
#. gxt8B
-#: sw/inc/strings.hrc:1308
+#: sw/inc/strings.hrc:1309
msgctxt "STR_TOKEN_TAB_STOP"
msgid "T"
msgstr "T"
#. pGAb4
-#: sw/inc/strings.hrc:1309
+#: sw/inc/strings.hrc:1310
msgctxt "STR_TOKEN_PAGE_NUMS"
msgid "#"
msgstr "#"
#. teDm3
-#: sw/inc/strings.hrc:1310
+#: sw/inc/strings.hrc:1311
msgctxt "STR_TOKEN_CHAPTER_INFO"
msgid "CI"
msgstr "CI"
#. XWaFn
-#: sw/inc/strings.hrc:1311
+#: sw/inc/strings.hrc:1312
msgctxt "STR_TOKEN_LINK_START"
msgid "LS"
msgstr "LS"
#. xp6D6
-#: sw/inc/strings.hrc:1312
+#: sw/inc/strings.hrc:1313
msgctxt "STR_TOKEN_LINK_END"
msgid "LE"
msgstr "LE"
#. AogDK
-#: sw/inc/strings.hrc:1313
+#: sw/inc/strings.hrc:1314
msgctxt "STR_TOKEN_AUTHORITY"
msgid "A"
msgstr "A"
#. 5A4jw
-#: sw/inc/strings.hrc:1314
+#: sw/inc/strings.hrc:1315
msgctxt "STR_TOKEN_HELP_ENTRY_NO"
msgid "Chapter number"
msgstr "የምእራፍ ቁጥር"
#. FH365
-#: sw/inc/strings.hrc:1315
+#: sw/inc/strings.hrc:1316
msgctxt "STR_TOKEN_HELP_ENTRY"
msgid "Entry"
msgstr "ማስገቢያ"
#. xZjtZ
-#: sw/inc/strings.hrc:1316
+#: sw/inc/strings.hrc:1317
msgctxt "STR_TOKEN_HELP_TAB_STOP"
msgid "Tab stop"
msgstr "ማስረጊያ ማቆሚያ"
#. aXW8y
-#: sw/inc/strings.hrc:1317
+#: sw/inc/strings.hrc:1318
msgctxt "STR_TOKEN_HELP_TEXT"
msgid "Text"
msgstr "ጽሁፍ"
#. MCUd2
-#: sw/inc/strings.hrc:1318
+#: sw/inc/strings.hrc:1319
msgctxt "STR_TOKEN_HELP_PAGE_NUMS"
msgid "Page number"
msgstr "የ ገጽ ቁጥር"
#. pXqw3
-#: sw/inc/strings.hrc:1319
+#: sw/inc/strings.hrc:1320
msgctxt "STR_TOKEN_HELP_CHAPTER_INFO"
msgid "Chapter info"
msgstr "የምእራፍ መረጃ"
#. DRBSD
-#: sw/inc/strings.hrc:1320
+#: sw/inc/strings.hrc:1321
msgctxt "STR_TOKEN_HELP_LINK_START"
msgid "Hyperlink start"
msgstr "Hyperlink መጀመሪያ"
#. Ytn5g
-#: sw/inc/strings.hrc:1321
+#: sw/inc/strings.hrc:1322
msgctxt "STR_TOKEN_HELP_LINK_END"
msgid "Hyperlink end"
msgstr "Hyperlink መጨረሻ"
#. hRo3J
-#: sw/inc/strings.hrc:1322
+#: sw/inc/strings.hrc:1323
msgctxt "STR_TOKEN_HELP_AUTHORITY"
msgid "Bibliography entry: "
msgstr "የ ቢብሊዮግራፊ ማስገቢያ...: "
#. ZKG5v
-#: sw/inc/strings.hrc:1323
+#: sw/inc/strings.hrc:1324
msgctxt "STR_CHARSTYLE"
msgid "Character Style: "
msgstr "የ ባህሪ ዘዴ: "
#. d9BES
-#: sw/inc/strings.hrc:1324
+#: sw/inc/strings.hrc:1325
msgctxt "STR_STRUCTURE"
msgid "Structure text"
msgstr "የ ጽሁፍ አካል"
#. kwoGP
-#: sw/inc/strings.hrc:1325
+#: sw/inc/strings.hrc:1326
msgctxt "STR_ADDITIONAL_ACCNAME_STRING1"
msgid "Press Ctrl+Alt+A to move focus for more operations"
msgstr "ይጫኑ Ctrl+Alt+A ትኩረቱን ወደ ተጨማሪ ተግባሮች ለማንቀሳቀስ"
#. Avm9y
-#: sw/inc/strings.hrc:1326
+#: sw/inc/strings.hrc:1327
msgctxt "STR_ADDITIONAL_ACCNAME_STRING2"
msgid "Press left or right arrow to choose the structure controls"
msgstr "ይጫኑ የ ግራ ወይንም የ ቀኝ ቀስት የ መቆጣጠሪያ አካሎችን ለመምረጥ"
#. 59eRi
-#: sw/inc/strings.hrc:1327
+#: sw/inc/strings.hrc:1328
msgctxt "STR_ADDITIONAL_ACCNAME_STRING3"
msgid "Press Ctrl+Alt+B to move focus back to the current structure control"
msgstr "ይጫኑ Ctrl+Alt+B ወደ አሁኑ የ መቆጣጠሪያ አካል ትኩረቱን ለ መመለስ"
#. 8AagG
-#: sw/inc/strings.hrc:1328
+#: sw/inc/strings.hrc:1329
msgctxt "STR_AUTOMARK_TYPE"
msgid "Selection file for the alphabetical index (*.sdi)"
msgstr "የ ፋይል ምርጫዎች በ ፊደል ማውጫ (*.sdi)"
@@ -9473,259 +9479,259 @@ msgstr "የ ፋይል ምርጫዎች በ ፊደል ማውጫ (*.sdi)"
#. -----------------------------------------------------------------------
#. Description: character alignment for frmsh.cxx - context menu
#. -----------------------------------------------------------------------
-#: sw/inc/strings.hrc:1333
+#: sw/inc/strings.hrc:1334
msgctxt "STR_FRMUI_TOP_BASE"
msgid "Base line at ~top"
msgstr "መሰረታዊ መስመር ከ ~ላይ"
#. 5GiEA
-#: sw/inc/strings.hrc:1334
+#: sw/inc/strings.hrc:1335
msgctxt "STR_FRMUI_BOTTOM_BASE"
msgid "~Base line at bottom"
msgstr "~መሰረታዊ መስመር ከ ታች"
#. sdyVF
-#: sw/inc/strings.hrc:1335
+#: sw/inc/strings.hrc:1336
msgctxt "STR_FRMUI_CENTER_BASE"
msgid "Base line ~centered"
msgstr "መሰረታዊ መስመር ~መሀከል"
#. NAXyZ
-#: sw/inc/strings.hrc:1336
+#: sw/inc/strings.hrc:1337
msgctxt "STR_FRMUI_OLE_INSERT"
msgid "Insert object"
msgstr "እቃ ማስገቢያ"
#. 5C6Rc
-#: sw/inc/strings.hrc:1337
+#: sw/inc/strings.hrc:1338
msgctxt "STR_FRMUI_OLE_EDIT"
msgid "Edit object"
msgstr "እቃ ማረሚያ"
#. 3QFYB
-#: sw/inc/strings.hrc:1338
+#: sw/inc/strings.hrc:1339
msgctxt "STR_FRMUI_COLL_HEADER"
msgid " (Template: "
msgstr " (ቴምፕሌት: "
#. oUhnK
-#: sw/inc/strings.hrc:1339
+#: sw/inc/strings.hrc:1340
msgctxt "STR_FRMUI_BORDER"
msgid "Borders"
msgstr "ድንበሮች"
#. T2SH2
-#: sw/inc/strings.hrc:1340
+#: sw/inc/strings.hrc:1341
msgctxt "STR_FRMUI_PATTERN"
msgid "Background"
msgstr "መደብ"
#. K6Yvs
-#: sw/inc/strings.hrc:1342
+#: sw/inc/strings.hrc:1343
msgctxt "STR_TEXTCOLL_HEADER"
msgid "(Paragraph Style: "
msgstr "(የ አንቀጽ ዘዴ: "
#. Fsanh
-#: sw/inc/strings.hrc:1343
+#: sw/inc/strings.hrc:1344
msgctxt "STR_ILLEGAL_PAGENUM"
msgid "Page numbers cannot be applied to the current page. Even numbers can be used on left pages, odd numbers on right pages."
msgstr "የ ገጽ ቁጥሮች ወደ አሁኑ ገጽ መስጠት አልተቻለም: ሙሉ ቁጥሮች በ ግራ ገጾች ላይ ይሆናሉ: ጎዶሎ ቁጥሮች በ ቀኝ ገጾች ላይ ይሆናሉ"
#. VZnJf
-#: sw/inc/strings.hrc:1345
+#: sw/inc/strings.hrc:1346
msgctxt "STR_WRITER_GLOBALDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Master Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION ዋናው ሰነድ"
#. kWe9j
-#: sw/inc/strings.hrc:1347
+#: sw/inc/strings.hrc:1348
msgctxt "STR_QUERY_CONNECT"
msgid "A file connection will delete the contents of the current section. Connect anyway?"
msgstr "የፋይል ግንኙነት የአሁኑን ክፍል ይዞታዎች ያጠፋቸዋል ፡ ለማንኛውም ልቀጥል?"
#. dLuAF
-#: sw/inc/strings.hrc:1348
+#: sw/inc/strings.hrc:1349
msgctxt "STR_WRONG_PASSWORD"
msgid "The password entered is invalid."
msgstr "ያስገቡት የ መግቢያ ቃል ዋጋ የለውም"
#. oUR7Y
-#: sw/inc/strings.hrc:1349
+#: sw/inc/strings.hrc:1350
msgctxt "STR_WRONG_PASSWD_REPEAT"
msgid "The password has not been set."
msgstr "የመግቢያ ቃል አልተሰናዳም"
#. GBVqD
-#: sw/inc/strings.hrc:1351
+#: sw/inc/strings.hrc:1352
msgctxt "STR_HYP_OK"
msgid "Hyphenation completed"
msgstr "ጭረት ተጠናቋል"
#. rZBXF
-#: sw/inc/strings.hrc:1352
+#: sw/inc/strings.hrc:1353
msgctxt "STR_LANGSTATUS_NONE"
msgid "None (Do not check spelling)"
msgstr "ምንም (ፊደሎቹን አታርም)"
#. Z8EjG
-#: sw/inc/strings.hrc:1353
+#: sw/inc/strings.hrc:1354
msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE"
msgid "Reset to Default Language"
msgstr "ነባሩን ቋንቋ እንደነበረ መመለሻ"
#. YEXdS
-#: sw/inc/strings.hrc:1354
+#: sw/inc/strings.hrc:1355
msgctxt "STR_LANGSTATUS_MORE"
msgid "More..."
msgstr "ተጨማሪ..."
#. QecQ3
-#: sw/inc/strings.hrc:1355
+#: sw/inc/strings.hrc:1356
msgctxt "STR_IGNORE_SELECTION"
msgid "~Ignore"
msgstr "~መተው"
#. aaiBM
-#: sw/inc/strings.hrc:1356
+#: sw/inc/strings.hrc:1357
msgctxt "STR_EXPLANATION_LINK"
msgid "Explanations..."
msgstr "መግለጫዎች..."
#. kSDGu
-#: sw/inc/strings.hrc:1358
+#: sw/inc/strings.hrc:1359
msgctxt "STR_QUERY_SPECIAL_FORCED"
msgid "Check special regions is deactivated. Check anyway?"
msgstr "የተለዩ አካባቢዎች ተሰናክለው እንደሆን መመርመሪያ: ለማንኛውም ልመርምር?"
#. KiAdJ
-#: sw/inc/strings.hrc:1359
+#: sw/inc/strings.hrc:1360
msgctxt "STR_NO_MERGE_ENTRY"
msgid "Could not merge documents."
msgstr "ሰነዱን ማዋሀድ አልተቻለም"
#. FqsCt
-#: sw/inc/strings.hrc:1360
+#: sw/inc/strings.hrc:1361
msgctxt "STR_NO_BASE_FOR_MERGE"
msgid "%PRODUCTNAME Base component is absent, and it is required to use Mail Merge."
msgstr "%PRODUCTNAME መሰረታዊ አካል ጎድሏል: የ ደብዳቤ ማዋሀጃ መጠቀም ያስፈልጋል:"
#. wcuf4
-#: sw/inc/strings.hrc:1361
+#: sw/inc/strings.hrc:1362
msgctxt "STR_ERR_SRCSTREAM"
msgid "The source cannot be loaded."
msgstr "ምንጩን መጫን አልተቻለም"
#. K9qMS
-#: sw/inc/strings.hrc:1362
+#: sw/inc/strings.hrc:1363
msgctxt "STR_ERR_NO_FAX"
msgid "No fax printer has been set under Tools/Options/%1/Print."
msgstr "ምንም የ ፋክስ ማተሚያ አልተዘጋጀም በ መሳሪያዎች/ምርጫዎች/%1/ማተሚያ ስር"
#. XWQ8w
-#: sw/inc/strings.hrc:1363
+#: sw/inc/strings.hrc:1364
msgctxt "STR_WEBOPTIONS"
msgid "HTML document"
msgstr "የ HTML ሰነድ"
#. qVZBx
-#: sw/inc/strings.hrc:1364
+#: sw/inc/strings.hrc:1365
msgctxt "STR_TEXTOPTIONS"
msgid "Text document"
msgstr "የ ጽሁፍ ሰነድ"
#. qmmPU
-#: sw/inc/strings.hrc:1365
+#: sw/inc/strings.hrc:1366
msgctxt "STR_SCAN_NOSOURCE"
msgid "Source not specified."
msgstr "ምንጩ አልተገለጸም"
#. 2LgDJ
-#: sw/inc/strings.hrc:1366
+#: sw/inc/strings.hrc:1367
msgctxt "STR_NUM_LEVEL"
msgid "Level "
msgstr "ደረጃ "
#. AcAD8
-#: sw/inc/strings.hrc:1367
+#: sw/inc/strings.hrc:1368
msgctxt "STR_NUM_OUTLINE"
msgid "Outline "
msgstr "ረቂቅ "
#. DE9FZ
-#: sw/inc/strings.hrc:1368
+#: sw/inc/strings.hrc:1369
msgctxt "STR_EDIT_FOOTNOTE"
msgid "Edit Footnote/Endnote"
msgstr "የ ግርጌ/መጨረሻ ማስታወሻ ማረሚያ"
#. EzBCZ
-#: sw/inc/strings.hrc:1369
+#: sw/inc/strings.hrc:1370
msgctxt "STR_NB_REPLACED"
msgid "Search key replaced XX times."
msgstr "መፈለጊያው ቁልፍ በዚህ XX ያህል ጊዜ ተቀይሯል"
#. fgywB
-#: sw/inc/strings.hrc:1370
+#: sw/inc/strings.hrc:1371
msgctxt "STR_SRCVIEW_ROW"
msgid "Row "
msgstr "ረድፍ "
#. GUc4a
-#: sw/inc/strings.hrc:1371
+#: sw/inc/strings.hrc:1372
msgctxt "STR_SRCVIEW_COL"
msgid "Column "
msgstr "አምድ "
#. yMyuo
-#: sw/inc/strings.hrc:1372
+#: sw/inc/strings.hrc:1373
msgctxt "STR_SAVEAS_SRC"
msgid "~Export source..."
msgstr "ምንጩን ~መላኪያ..."
#. ywFCb
-#: sw/inc/strings.hrc:1373
+#: sw/inc/strings.hrc:1374
msgctxt "STR_SAVEACOPY_SRC"
msgid "~Export copy of source..."
msgstr "~መላኪያ የ ኮፒ ምንጭ..."
#. BT3M3
-#: sw/inc/strings.hrc:1375
+#: sw/inc/strings.hrc:1376
msgctxt "ST_CONTINUE"
msgid "~Continue"
msgstr "~ይቀጥሉ"
#. ZR9aw
-#: sw/inc/strings.hrc:1376
+#: sw/inc/strings.hrc:1377
msgctxt "ST_SENDINGTO"
msgid "Sending to: %1"
msgstr "በመላክ ላይ ወደ: %1"
#. YCNYb
-#: sw/inc/strings.hrc:1377
+#: sw/inc/strings.hrc:1378
msgctxt "ST_COMPLETED"
msgid "Successfully sent"
msgstr "ተሳክቶ ተልኳል"
#. fmHmE
-#: sw/inc/strings.hrc:1378
+#: sw/inc/strings.hrc:1379
msgctxt "ST_FAILED"
msgid "Sending failed"
msgstr "መላክ አልተቻለም"
#. yAAPM
-#: sw/inc/strings.hrc:1380
+#: sw/inc/strings.hrc:1381
msgctxt "STR_SENDER_TOKENS"
msgid "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
msgstr "ድርጅት;CR;የ መጀመሪያ ስም; ;የ አባት ስም;CR;አድራሻ ;CR;ከተማ ; ;ከፍለ ሀገር; ;ፖ.ሳ.ቁጥር ;CR;አገር;CR;"
#. mWrXk
-#: sw/inc/strings.hrc:1382
+#: sw/inc/strings.hrc:1383
msgctxt "STR_TBL_FORMULA"
msgid "Text formula"
msgstr "ጽሁፍ መቀመሪያ"
#. RmBFW
-#: sw/inc/strings.hrc:1384
+#: sw/inc/strings.hrc:1385
msgctxt "STR_DROP_DOWN_EMPTY_LIST"
msgid "No Item specified"
msgstr "ምንም እቃ አልተገለጸም"
@@ -9734,7 +9740,7 @@ msgstr "ምንም እቃ አልተገለጸም"
#. --------------------------------------------------------------------
#. Description: Classification strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1390
+#: sw/inc/strings.hrc:1391
msgctxt "STR_CLASSIFICATION_LEVEL_CHANGED"
msgid "Document classification has changed because a paragraph classification level is higher"
msgstr "ሰነድ መመደቢያ ተቀይሯል ምክንያቱም የ አንቀጽ መመደቢያ ደረጃ ከፍተኛ ነው"
@@ -9743,121 +9749,121 @@ msgstr "ሰነድ መመደቢያ ተቀይሯል ምክንያቱም የ አን
#. --------------------------------------------------------------------
#. Description: Paragraph Signature
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1395
+#: sw/inc/strings.hrc:1396
msgctxt "STR_VALID"
msgid " Valid "
msgstr " ዋጋ ያለው "
#. xAKRC
-#: sw/inc/strings.hrc:1396
+#: sw/inc/strings.hrc:1397
msgctxt "STR_INVALID"
msgid "Invalid"
msgstr "ዋጋ የሌለው"
#. pDAHz
-#: sw/inc/strings.hrc:1397
+#: sw/inc/strings.hrc:1398
msgctxt "STR_INVALID_SIGNATURE"
msgid "Invalid Signature"
msgstr "ዋጋ የሌለው ፊርማ"
#. etEEx
-#: sw/inc/strings.hrc:1398
+#: sw/inc/strings.hrc:1399
msgctxt "STR_SIGNED_BY"
msgid "Signed-by"
msgstr "የ ተፈረመው-በ"
#. BK7ub
-#: sw/inc/strings.hrc:1399
+#: sw/inc/strings.hrc:1400
msgctxt "STR_PARAGRAPH_SIGNATURE"
msgid "Paragraph Signature"
msgstr "የ አንቀጽ ፊርማ"
#. kZKCf
-#: sw/inc/strings.hrc:1401
+#: sw/inc/strings.hrc:1402
msgctxt "labeldialog|cards"
msgid "Business Cards"
msgstr "የ ንግድ ካርዶች"
#. ECFij
-#: sw/inc/strings.hrc:1403
+#: sw/inc/strings.hrc:1404
msgctxt "STR_MAILCONFIG_DLG_TITLE"
msgid "Email settings"
msgstr "ኢሜይል ማሰናጃ"
#. PwrB9
-#: sw/inc/strings.hrc:1405
+#: sw/inc/strings.hrc:1406
msgctxt "optredlinepage|insertedpreview"
msgid "Insert"
msgstr "ማስገቢያ"
#. NL48o
-#: sw/inc/strings.hrc:1406
+#: sw/inc/strings.hrc:1407
msgctxt "optredlinepage|deletedpreview"
msgid "Delete"
msgstr "ማጥፊያ"
#. PW4Bz
-#: sw/inc/strings.hrc:1407
+#: sw/inc/strings.hrc:1408
msgctxt "optredlinepage|changedpreview"
msgid "Attributes"
msgstr "መለያዎች"
#. yfgiq
-#: sw/inc/strings.hrc:1409
+#: sw/inc/strings.hrc:1410
msgctxt "createautomarkdialog|searchterm"
msgid "Search term"
msgstr "መፈለጊያ ደንብ"
#. fhLzk
-#: sw/inc/strings.hrc:1410
+#: sw/inc/strings.hrc:1411
msgctxt "createautomarkdialog|alternative"
msgid "Alternative entry"
msgstr "አማራጭ ማስገቢያ"
#. gD4D3
-#: sw/inc/strings.hrc:1411
+#: sw/inc/strings.hrc:1412
msgctxt "createautomarkdialog|key1"
msgid "1st key"
msgstr "1ኛ ቁልፍ"
#. BFszo
-#: sw/inc/strings.hrc:1412
+#: sw/inc/strings.hrc:1413
msgctxt "createautomarkdialog|key2"
msgid "2nd key"
msgstr "2ኛ ቁልፍ"
#. EoAB8
-#: sw/inc/strings.hrc:1413
+#: sw/inc/strings.hrc:1414
msgctxt "createautomarkdialog|comment"
msgid "Comment"
msgstr "አስተያየት"
#. Shstx
-#: sw/inc/strings.hrc:1414
+#: sw/inc/strings.hrc:1415
msgctxt "createautomarkdialog|casesensitive"
msgid "Match case"
msgstr "ጉዳዩን ማመሳሰያ"
#. 8Cjvb
-#: sw/inc/strings.hrc:1415
+#: sw/inc/strings.hrc:1416
msgctxt "createautomarkdialog|wordonly"
msgid "Word only"
msgstr "ቃላት ብቻ"
#. zD8rb
-#: sw/inc/strings.hrc:1416
+#: sw/inc/strings.hrc:1417
msgctxt "createautomarkdialog|yes"
msgid "Yes"
msgstr "አዎ"
#. 4tTop
-#: sw/inc/strings.hrc:1417
+#: sw/inc/strings.hrc:1418
msgctxt "createautomarkdialog|no"
msgid "No"
msgstr "አይ"
#. KhKwa
-#: sw/inc/strings.hrc:1419
+#: sw/inc/strings.hrc:1420
msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "ማስተካከያ"
@@ -10354,8 +10360,14 @@ msgctxt "asciifilterdialog|includebom"
msgid "Include byte-order mark"
msgstr ""
+#. 9E8VF
+#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:291
+msgctxt "asciifilterdialog|extended_tip|includebom"
+msgid "For Unicode character set only, a byte order mark (BOM) is a sequence of bytes used to indicate Unicode encoding of a text file."
+msgstr ""
+
#. B2ofV
-#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:304
+#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:309
msgctxt "asciifilterdialog|label1"
msgid "Properties"
msgstr "ባህሪዎች"
@@ -19802,44 +19814,50 @@ msgctxt "mmresultsavedialog|extended_tip|individualrb"
msgid "Saves the merged document as a separate file for each recipient. The file names of the documents are constructed from the name that you enter, followed by an underscore, and the number of the current record."
msgstr "የ ተዋሀደውን ሰነድ ማስቀመጫ እንደ የ ተለየ ፋይል ለ እያንዳንዱ ተቀባይ: የ ፋይል ስሞች ለ ሰነዶች የሚገነቡት እርስዎ ከሚያስገቡት ስም ውስጥ ነው: ተከትሎ ከ ስሩ ማስመሪያ እና የ አሁኑ የ መዝገብ ቁጥር "
+#. g3Knf
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:157
+msgctxt "mmresultsavedialog|label2"
+msgid "Save As Options"
+msgstr ""
+
#. xRGbs
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:159
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:191
msgctxt "mmresultsavedialog|fromrb"
msgid "_From"
msgstr "_ከ"
#. gvAQf
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:170
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:202
msgctxt "mmresultsavedialog|extended_tip|fromrb"
msgid "Selects a range of records starting at the record number in the From box and ending at the record number in the To box."
msgstr "የ መዝገብ መጠን መምረጫ ከ መዝገብ መጀመሪያ ቁጥር ጀምሮ ከ ሳጥን ውስጥ: እና እስከ መዝገብ መጨረሻ ቁጥር ድረስ በ ሳጥን "
#. LGEwR
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:183
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:215
msgctxt "mmresultsavedialog|toft"
msgid "_To"
msgstr "_ለ"
#. XML8V
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:205
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:238
msgctxt "mmresultsavedialog|extended_tip|from"
msgid "Enter the number of the first record to include in the mail merge."
msgstr "የ መጀመሪያውን መዝገብ ቁጥር ያስገቡ በ ደብዳቤ ማዋሀጃ ውስጥ ለማካተት "
#. dAWiB
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:224
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:258
msgctxt "mmresultsavedialog|extended_tip|to"
msgid "Enter the number of the last record to include in the mail merge."
msgstr "የ መጨረሻውን መዝገብ ቁጥር ያስገቡ በ ደብዳቤ ማዋሀጃ ውስጥ ለማካተት "
-#. g3Knf
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:245
-msgctxt "mmresultsavedialog|label2"
-msgid "Save As Options"
+#. VibGJ
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:273
+msgctxt "mmresultsavedialog|FromToRange"
+msgid "Range"
msgstr ""
#. 2BCiE
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:267
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:295
msgctxt "mmresultsavedialog|extended_tip|MMResultSaveDialog"
msgid "Save the mail merge output to file."
msgstr "የ ደብዳቤ ማዋሀጃ ውጤት ወደ ፋይል ማስቀመጫ "
@@ -20205,7 +20223,7 @@ msgid "Transfer Status"
msgstr ""
#. c2i5B
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:26
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:20
msgctxt "navigatorcontextmenu|STR_SEND_OUTLINE_TO_CLIPBOARD_ENTRY"
msgid "Send Outline to Clipboard"
msgstr ""
@@ -20217,143 +20235,215 @@ msgid "Go to"
msgstr ""
#. VCmAZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:49
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:43
msgctxt "navigatorcontextmenu|STR_SELECT"
msgid "Select"
msgstr ""
#. dajzZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:57
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:51
msgctxt "navigatorcontextmenu|STR_DELETE"
msgid "Delete"
msgstr ""
#. CQSp3
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:66
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:60
msgctxt "navigatorcontextmenu|STR_PROMOTE_CHAPTER"
msgid "Promote Chapter"
msgstr ""
#. ikRHB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:75
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:69
msgctxt "navigatorcontextmenu|STR_DEMOTE_CHAPTER"
msgid "Demote Chapter"
msgstr ""
#. MhtFa
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:84
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:78
msgctxt "navigatorcontextmenu|STR_PROMOTE_LEVEL"
msgid "Promote Level"
msgstr ""
#. dUM5D
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:93
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:87
msgctxt "navigatorcontextmenu|STR_DEMOTE_LEVEL"
msgid "Demote Level"
msgstr ""
#. tukRq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:102
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:96
msgctxt "navigatorcontextmenu|STR_REMOVE_INDEX"
msgid "_Remove Index"
msgstr ""
#. C4355
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:110
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:104
msgctxt "navigatorcontextmenu|STR_UPDATE"
msgid "_Update"
msgstr ""
#. BtCca
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:118
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:112
msgctxt "navigatorcontextmenu|STR_EDIT_ENTRY"
msgid "Edit..."
msgstr ""
#. BYyhD
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:126
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:120
msgctxt "navigatorcontextmenu|STR_REMOVE_TBL_PROTECTION"
msgid "_Unprotect"
msgstr ""
#. 6KWWG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:134
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:128
msgctxt "navigatorcontextmenu|STR_READONLY_IDX"
msgid "Read-_only"
msgstr ""
#. BUQRq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:142
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:136
msgctxt "navigatorcontextmenu|STR_DELETE_ENTRY"
msgid "_Delete"
msgstr "_ማጥፊያ"
#. CUqD5
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:151
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:145
msgctxt "navigatorcontextmenu|STR_RENAME"
msgid "_Rename..."
msgstr "_እንደገና መሰየሚያ..."
#. U5nAb
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:159
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:153
msgctxt "navigatorcontextmenu|STR_POSTIT_SHOW"
msgid "Show All"
msgstr "ሁሉንም ማሳያ"
#. E2wWp
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:167
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:161
msgctxt "navigatorcontextmenu|STR_POSTIT_HIDE"
msgid "Hide All"
msgstr "ሁሉንም መደበቂያ"
#. aDRke
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:175
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:169
msgctxt "navigatorcontextmenu|STR_POSTIT_DELETE"
msgid "Delete All"
msgstr "ሁሉንም መደበቂያ"
#. YBipC
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:189
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:183
msgctxt "navigatorcontextmenu|STR_OUTLINE_CONTENT"
msgid "Outline Folding"
msgstr ""
-#. EBK2E
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:209
-msgctxt "navigatorcontextmenu|STR_OUTLINE_TRACKING"
-msgid "Outline Tracking"
-msgstr ""
-
#. cECoG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:223
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:203
msgctxt "navigatorcontextmenu|STR_OUTLINE_LEVEL"
msgid "Outline Level"
msgstr ""
+#. EBK2E
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:217
+msgctxt "navigatorcontextmenu|STR_OUTLINE_TRACKING"
+msgid "Outline Tracking"
+msgstr ""
+
#. fZEEr
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:237
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:231
msgctxt "navigatorcontextmenu|STR_TABLE_TRACKING"
msgid "Table Tracking"
msgstr ""
#. 7oCFa
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:245
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:239
msgctxt "navigatorcontextmenu|STR_SECTION_TRACKING"
msgid "Section Tracking"
msgstr ""
+#. YmjQf
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:247
+msgctxt "navigatorcontextmenu|STR_FRAME_TRACKING"
+msgid "Frame Tracking"
+msgstr ""
+
+#. vhxX5
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:255
+msgctxt "navigatorcontextmenu|STR_IMAGE_TRACKING"
+msgid "Image Tracking"
+msgstr ""
+
+#. mcYqZ
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:263
+msgctxt "navigatorcontextmenu|STR_OLE_OBJECT_TRACKING"
+msgid "OLE Object Tracking"
+msgstr ""
+
+#. DRaED
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:271
+msgctxt "navigatorcontextmenu|STR_BOOKMARK_TRACKING"
+msgid "Bookmark Tracking"
+msgstr ""
+
+#. vpLmh
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:279
+msgctxt "navigatorcontextmenu|STR_HYPERLINK_TRACKING"
+msgid "Hyperlink Tracking"
+msgstr ""
+
+#. EvBzN
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:287
+msgctxt "navigatorcontextmenu|STR_REFERENCE_TRACKING"
+msgid "Reference Tracking"
+msgstr ""
+
+#. M8Bes
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:295
+msgctxt "navigatorcontextmenu|STR_INDEX_TRACKING"
+msgid "Index Tracking"
+msgstr ""
+
+#. KBFwM
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:303
+msgctxt "navigatorcontextmenu|STR_COMMENT_TRACKING"
+msgid "Comment Tracking"
+msgstr ""
+
+#. oGavB
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:311
+msgctxt "navigatorcontextmenu|STR_DRAWING_OBJECT_TRACKING"
+msgid "Drawing Object Tracking"
+msgstr ""
+
+#. w8FTW
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:319
+msgctxt "navigatorcontextmenu|STR_FIELD_TRACKING"
+msgid "Field Tracking"
+msgstr ""
+
+#. BoCeZ
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:327
+msgctxt "navigatorcontextmenu|STR_FOOTNOTE_TRACKING"
+msgid "Footnote Tracking"
+msgstr ""
+
#. GyAcG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:253
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:341
msgctxt "navigatorcontextmenu|STR_DRAGMODE"
msgid "Drag Mode"
msgstr ""
#. Zehx2
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:267
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:355
msgctxt "navigatorcontextmenu|STR_DISPLAY"
msgid "Display"
msgstr ""
+#. bgZoy
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:375
+msgctxt "navigatorcontextmenu|STR_COLLAPSE_ALL_CATEGORIES"
+msgid "Collapse All Categories"
+msgstr ""
+
#. ba8wC
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:18
msgctxt "navigatorpanel|hyperlink"
diff --git a/source/am/vcl/messages.po b/source/am/vcl/messages.po
index f930f382726..accf08e0ff1 100644
--- a/source/am/vcl/messages.po
+++ b/source/am/vcl/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-10 23:12+0200\n"
+"POT-Creation-Date: 2021-10-20 13:09+0200\n"
"PO-Revision-Date: 2021-09-12 07:36+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/am/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1563643746.000000\n"
#. k5jTM
@@ -1961,529 +1961,529 @@ msgid "_Print"
msgstr "_ማተሚያ"
#. M3L4L
-#: vcl/uiconfig/ui/printdialog.ui:157
+#: vcl/uiconfig/ui/printdialog.ui:160
msgctxt "printdialog|printpreview"
msgid "Print preview"
msgstr "የ ማተሚያ ቅድመ እይታ"
#. 67YPm
-#: vcl/uiconfig/ui/printdialog.ui:163
+#: vcl/uiconfig/ui/printdialog.ui:166
msgctxt "printdialog|extended_tip|preview"
msgid "The preview shows how each sheet of paper will look. You can browse through all sheets of paper with the buttons below the preview."
msgstr ""
#. dQEY8
-#: vcl/uiconfig/ui/printdialog.ui:193
+#: vcl/uiconfig/ui/printdialog.ui:196
msgctxt "printdialog|previewbox"
msgid "Pre_view"
msgstr "ቅድመ_ እይታ"
#. EpB5H
-#: vcl/uiconfig/ui/printdialog.ui:202
+#: vcl/uiconfig/ui/printdialog.ui:205
msgctxt "printdialog|extended_tip|previewbox"
msgid "Turn on or off display of the print preview."
msgstr "የ ማተሚያ ቅድመ እይታ ማብሪያ ወይንም ማጥፊያ"
#. SbgFv
-#: vcl/uiconfig/ui/printdialog.ui:232
+#: vcl/uiconfig/ui/printdialog.ui:235
msgctxt "printdialog|firstpage"
msgid "First page"
msgstr "መጀመሪያ ገጽ"
#. GVGSq
-#: vcl/uiconfig/ui/printdialog.ui:236
+#: vcl/uiconfig/ui/printdialog.ui:239
msgctxt "printdialog|extended_tip|btnFirst"
msgid "Shows preview of the first page."
msgstr "የ መጀመሪያ ገጽ ቅድመ እይታ ማሳያ"
#. ebceU
-#: vcl/uiconfig/ui/printdialog.ui:251
+#: vcl/uiconfig/ui/printdialog.ui:254
msgctxt "printdialog|backward"
msgid "Previous page"
msgstr "ያለፈው ገጽ"
#. uS5Ka
-#: vcl/uiconfig/ui/printdialog.ui:255
+#: vcl/uiconfig/ui/printdialog.ui:258
msgctxt "printdialog|extended_tip|backward"
msgid "Shows preview of the previous page."
msgstr "ያለፈውን ገጽ ቅድመ እይታ ማሳያ"
#. c7uMG
-#: vcl/uiconfig/ui/printdialog.ui:274
+#: vcl/uiconfig/ui/printdialog.ui:277
msgctxt "printdialog|extended_tip|pageedit"
msgid "Enter the number of page to be shown in the preview."
msgstr "በ ቅድመ ገጽታ እይታ ላይ የሚታየውን የ ገጽ ቁጥር ማስገቢያ:"
#. yyFVV
-#: vcl/uiconfig/ui/printdialog.ui:288
+#: vcl/uiconfig/ui/printdialog.ui:291
msgctxt "printdialog|totalnumpages"
msgid "/ %n"
msgstr "/ %n"
#. CZQLF
-#: vcl/uiconfig/ui/printdialog.ui:301
+#: vcl/uiconfig/ui/printdialog.ui:304
msgctxt "printdialog|forward"
msgid "Next page"
msgstr "የሚቀጥለው ገጽ"
#. emK9r
-#: vcl/uiconfig/ui/printdialog.ui:305
+#: vcl/uiconfig/ui/printdialog.ui:308
msgctxt "printdialog|extended_tip|forward"
msgid "Shows preview of the next page."
msgstr "የሚቀጥለውን ገጽ ቅድመ እይታ ማሳያ:"
#. Aq6Gv
-#: vcl/uiconfig/ui/printdialog.ui:320
+#: vcl/uiconfig/ui/printdialog.ui:323
msgctxt "printdialog|lastpage"
msgid "Last page"
msgstr "የ መጨረሻው ገጽ"
#. RwCmD
-#: vcl/uiconfig/ui/printdialog.ui:324
+#: vcl/uiconfig/ui/printdialog.ui:327
msgctxt "printdialog|extended_tip|btnLast"
msgid "Shows preview of the last page."
msgstr "የ መጨረሻውን ገጽ ቅድመ እይታ ማሳያ:"
#. PD6Aj
-#: vcl/uiconfig/ui/printdialog.ui:400
+#: vcl/uiconfig/ui/printdialog.ui:403
msgctxt "printdialog|extended_tip|printersbox"
msgid "The list box shows the installed printers. Click the printer to use for the current print job. Click the Properties button to change some of the printer properties."
msgstr ""
#. qgQDX
-#: vcl/uiconfig/ui/printdialog.ui:419
+#: vcl/uiconfig/ui/printdialog.ui:422
msgctxt "printdialog|labelstatus"
msgid "Status:"
msgstr "ሁኔታው:"
#. dyo2j
-#: vcl/uiconfig/ui/printdialog.ui:434
+#: vcl/uiconfig/ui/printdialog.ui:437
msgctxt "printdialog|status"
msgid "Default Printer"
msgstr "ነባር ማተሚያ"
#. McZgQ
-#: vcl/uiconfig/ui/printdialog.ui:440
+#: vcl/uiconfig/ui/printdialog.ui:443
msgctxt "printdialog|extended_tip|status"
msgid "Shows the availability of the selected printer."
msgstr ""
#. oBACQ
-#: vcl/uiconfig/ui/printdialog.ui:452
+#: vcl/uiconfig/ui/printdialog.ui:455
msgctxt "printdialog|setup"
msgid "Properties..."
msgstr "ባህሪዎች..."
#. 89CRC
-#: vcl/uiconfig/ui/printdialog.ui:459
+#: vcl/uiconfig/ui/printdialog.ui:462
msgctxt "printdialog|extended_tip|setup"
msgid "Opens the Printer Properties dialog. The printer properties vary according to the printer that you select."
msgstr ""
#. AJGau
-#: vcl/uiconfig/ui/printdialog.ui:483
+#: vcl/uiconfig/ui/printdialog.ui:486
msgctxt "printdialog|labelprinter"
msgid "Printer"
msgstr "ማተሚያ"
#. AyxGJ
-#: vcl/uiconfig/ui/printdialog.ui:521
+#: vcl/uiconfig/ui/printdialog.ui:524
msgctxt "printdialog|rbAllPages"
msgid "_All pages"
msgstr "_ሁሉንም ገጾች"
#. AQ7Ms
-#: vcl/uiconfig/ui/printdialog.ui:532
+#: vcl/uiconfig/ui/printdialog.ui:535
msgctxt "printdialog|extended_tip|rbAllPages"
msgid "Prints the entire document."
msgstr "ጠቅላላ ሰነዱን ማተሚያ"
#. pYtbq
-#: vcl/uiconfig/ui/printdialog.ui:543
+#: vcl/uiconfig/ui/printdialog.ui:546
msgctxt "printdialog|rbPageRange"
msgid "_Pages:"
msgstr "_ገጾች:"
#. azXfE
-#: vcl/uiconfig/ui/printdialog.ui:555
+#: vcl/uiconfig/ui/printdialog.ui:558
msgctxt "printdialog|extended_tip|rbRangePages"
msgid "Prints only the pages or slides that you specify in the Pages box."
msgstr "የሚታተሙት ገጾች ወይንም ተንሸራታቾች እርስዎ የወሰኑዋቸው ብቻ ናቸው በ ገጾች ሳጥን ውስጥ"
#. 786QC
-#: vcl/uiconfig/ui/printdialog.ui:571
+#: vcl/uiconfig/ui/printdialog.ui:574
msgctxt "printdialog|pagerange"
msgid "e.g.: 1, 3-5, 7, 9"
msgstr "ለምሳሌ: 1, 3-5, 7, 9"
#. FTtLK
-#: vcl/uiconfig/ui/printdialog.ui:574
+#: vcl/uiconfig/ui/printdialog.ui:577
msgctxt "printdialog|extended_tip|pagerange"
msgid "To print a range of pages, use a format like 3-6. To print single pages, use a format like 7;9;11. You can print a combination of page ranges and single pages, by using a format like 3-6;8;10;12."
msgstr ""
#. Z5kiB
-#: vcl/uiconfig/ui/printdialog.ui:585
+#: vcl/uiconfig/ui/printdialog.ui:588
msgctxt "printdialog|rbRangeSelection"
msgid "_Selection"
msgstr "_ምርጫው"
#. CJ2E7
-#: vcl/uiconfig/ui/printdialog.ui:595
+#: vcl/uiconfig/ui/printdialog.ui:598
msgctxt "printdialog|extended_tip|rbRangeSelection"
msgid "Prints only the selected area(s) or object(s) in the current document."
msgstr ""
#. UKYwM
-#: vcl/uiconfig/ui/printdialog.ui:609
+#: vcl/uiconfig/ui/printdialog.ui:612
msgctxt "printdialog|includeevenodd"
msgid "Include:"
msgstr "ማካተቻ:"
#. XmeFL
-#: vcl/uiconfig/ui/printdialog.ui:626
+#: vcl/uiconfig/ui/printdialog.ui:629
msgctxt "printdialog|liststore3"
msgid "Odd and Even Pages"
msgstr "ጎዶሎ እና ሙሉ ገጾች"
#. 49y67
-#: vcl/uiconfig/ui/printdialog.ui:627
+#: vcl/uiconfig/ui/printdialog.ui:630
msgctxt "printdialog|liststore3"
msgid "Odd Pages"
msgstr "ጎዶሎ ገጾች"
#. 6CkPE
-#: vcl/uiconfig/ui/printdialog.ui:628
+#: vcl/uiconfig/ui/printdialog.ui:631
msgctxt "printdialog|liststore3"
msgid "Even Pages"
msgstr "ሙሉ ገጾች"
#. ZeA37
-#: vcl/uiconfig/ui/printdialog.ui:632
+#: vcl/uiconfig/ui/printdialog.ui:635
msgctxt "printdialog|extended_tip|evenoddbox"
msgid "Select the subset of pages to print."
msgstr ""
#. wn2kB
-#: vcl/uiconfig/ui/printdialog.ui:663
+#: vcl/uiconfig/ui/printdialog.ui:666
msgctxt "printdialog|fromwhich"
msgid "_From which print:"
msgstr "ከ _የትኛው ህትመት:"
#. Cuc2u
-#: vcl/uiconfig/ui/printdialog.ui:688
+#: vcl/uiconfig/ui/printdialog.ui:691
msgctxt "printdialog|labelpapersides"
msgid "Paper _sides:"
msgstr "የ ወረቀት _ጎኖች:"
#. SYxRJ
-#: vcl/uiconfig/ui/printdialog.ui:704
+#: vcl/uiconfig/ui/printdialog.ui:707
msgctxt "printdialog|liststore4"
msgid "Print on one side (simplex)"
msgstr ""
#. hCZPg
-#: vcl/uiconfig/ui/printdialog.ui:705
+#: vcl/uiconfig/ui/printdialog.ui:708
msgctxt "printdialog|liststore4"
msgid "Print on both sides (duplex long edge)"
msgstr ""
#. iqr9C
-#: vcl/uiconfig/ui/printdialog.ui:706
+#: vcl/uiconfig/ui/printdialog.ui:709
msgctxt "printdialog|liststore4"
msgid "Print on both sides (duplex short edge)"
msgstr ""
#. CKpgL
-#: vcl/uiconfig/ui/printdialog.ui:710
+#: vcl/uiconfig/ui/printdialog.ui:713
msgctxt "printdialog|extended_tip|sidesbox"
msgid "If the printer is capable of duplex printing it's possible to choose between using only one side of the paper or both."
msgstr ""
#. AVv6D
-#: vcl/uiconfig/ui/printdialog.ui:724
+#: vcl/uiconfig/ui/printdialog.ui:727
msgctxt "printdialog|labelcopies"
msgid "_Number of copies:"
msgstr "የ ኮፒዎች _ቁጥር:"
#. NwD7S
-#: vcl/uiconfig/ui/printdialog.ui:747
+#: vcl/uiconfig/ui/printdialog.ui:750
msgctxt "printdialog|extended_tip|copycount"
msgid "Enter the number of copies that you want to print."
msgstr "ማተም የሚፈልጉትን የ ኮፒ ቁጥር ያስገቡ"
#. BT4nY
-#: vcl/uiconfig/ui/printdialog.ui:761
+#: vcl/uiconfig/ui/printdialog.ui:764
msgctxt "printdialog|cbPrintOrder"
msgid "Order:"
msgstr "ደንብ:"
#. vwjVt
-#: vcl/uiconfig/ui/printdialog.ui:774
+#: vcl/uiconfig/ui/printdialog.ui:777
msgctxt "printdialog|reverseorder"
msgid "Print in _reverse order"
msgstr "በ _ግልባጭ ደንብ ማተሚያ"
#. svd2Q
-#: vcl/uiconfig/ui/printdialog.ui:783
+#: vcl/uiconfig/ui/printdialog.ui:786
msgctxt "printdialog|extended_tip|reverseorder"
msgid "Check to print pages in reverse order."
msgstr "ገጾችን በ ግልባጭ ደንብ ለማተም ምልክት ያድርጉ"
#. G6QEr
-#: vcl/uiconfig/ui/printdialog.ui:800
+#: vcl/uiconfig/ui/printdialog.ui:803
msgctxt "printdialog|collate"
msgid "_Collate"
msgstr "_ማወዳደሪያ"
#. kR6bA
-#: vcl/uiconfig/ui/printdialog.ui:808
+#: vcl/uiconfig/ui/printdialog.ui:811
msgctxt "printdialog|extended_tip|collate"
msgid "Preserves the page order of the original document."
msgstr "የ ገጾችን ደንብ በ ዋናው ሰነድ መሰረት መጠበቂያ"
#. GZrpG
-#: vcl/uiconfig/ui/printdialog.ui:838
+#: vcl/uiconfig/ui/printdialog.ui:841
msgctxt "printdialog|singlejobs"
msgid "Create separate print jobs for collated output"
msgstr ""
#. X4Am9
-#: vcl/uiconfig/ui/printdialog.ui:846
+#: vcl/uiconfig/ui/printdialog.ui:849
msgctxt "printdialog|extended_tip|collate"
msgid "Check to not rely on the printer to create collated copies but create a print job for each copy instead."
msgstr "በ ማተሚያው ላይ አይተማመኑ: ኮፒዎች ለ መፍጠር እያንዳንዱን ኮፒ በ ማተሚያ ያትሙ:"
#. 2MdHu
-#: vcl/uiconfig/ui/printdialog.ui:867
+#: vcl/uiconfig/ui/printdialog.ui:870
msgctxt "printdialog|rangeexpander"
msgid "_More"
msgstr "_ተጨማሪ"
#. ehfCG
-#: vcl/uiconfig/ui/printdialog.ui:883
+#: vcl/uiconfig/ui/printdialog.ui:886
msgctxt "printdialog|label2"
msgid "Range and Copies"
msgstr "መጠን እና ኮፒዎች"
#. CBLet
-#: vcl/uiconfig/ui/printdialog.ui:922
+#: vcl/uiconfig/ui/printdialog.ui:925
msgctxt "printdialog|labelorientation"
msgid "Orientation:"
msgstr "አቅጣጫ:"
#. U4byk
-#: vcl/uiconfig/ui/printdialog.ui:937
+#: vcl/uiconfig/ui/printdialog.ui:940
msgctxt "printdialog|labelsize"
msgid "Paper size:"
msgstr "የ ወረቀት መጠን:"
#. X9iBj
-#: vcl/uiconfig/ui/printdialog.ui:954
+#: vcl/uiconfig/ui/printdialog.ui:957
msgctxt "printdialog|liststore3"
msgid "Automatic"
msgstr "ራሱ በራሱ"
#. vaWZE
-#: vcl/uiconfig/ui/printdialog.ui:955
+#: vcl/uiconfig/ui/printdialog.ui:958
msgctxt "printdialog|liststore3"
msgid "Portrait"
msgstr "ምስል"
#. Qnpje
-#: vcl/uiconfig/ui/printdialog.ui:956
+#: vcl/uiconfig/ui/printdialog.ui:959
msgctxt "printdialog|liststore3"
msgid "Landscape"
msgstr "በ መሬት አቀማመጥ"
#. PkAo9
-#: vcl/uiconfig/ui/printdialog.ui:960
+#: vcl/uiconfig/ui/printdialog.ui:963
msgctxt "printdialog|extended_tip|pageorientationbox"
msgid "Select the orientation of the paper."
msgstr "ለ አዲሱ እቃ መደርደሪያ ቦታ ያስገቡ"
#. DSFv2
-#: vcl/uiconfig/ui/printdialog.ui:976
+#: vcl/uiconfig/ui/printdialog.ui:979
msgctxt "printdialog|extended_tip|papersizebox"
msgid "Set the paper size you would like to use. The preview will show how the document would look on a paper of the given size."
msgstr ""
#. EZdsx
-#: vcl/uiconfig/ui/printdialog.ui:1011
+#: vcl/uiconfig/ui/printdialog.ui:1014
msgctxt "printdialog|pagespersheetbtn"
msgid "Pages per sheet:"
msgstr "ገጾች በ ወረቀት:"
#. ok8Lw
-#: vcl/uiconfig/ui/printdialog.ui:1025
+#: vcl/uiconfig/ui/printdialog.ui:1028
msgctxt "printdialog|extended_tip|pagespersheetbtn"
msgid "Print multiple pages per sheet of paper."
msgstr "በርካታ ገጾች በ ወረቀቱ ላይ ማተሚያ"
#. DKP5g
-#: vcl/uiconfig/ui/printdialog.ui:1066
+#: vcl/uiconfig/ui/printdialog.ui:1069
msgctxt "printdialog|liststore1"
msgid "Custom"
msgstr "ማስተካከያ"
#. duVEo
-#: vcl/uiconfig/ui/printdialog.ui:1073
+#: vcl/uiconfig/ui/printdialog.ui:1076
msgctxt "printdialog|extended_tip|pagespersheetbox"
msgid "Select how many pages to print per sheet of paper."
msgstr "ምን ያህል ተንሸራታች በ ገጽ ውስጥ እንደሚታተም ይምረጡ"
#. 65WWt
-#: vcl/uiconfig/ui/printdialog.ui:1086
+#: vcl/uiconfig/ui/printdialog.ui:1089
msgctxt "printdialog|pagespersheettxt"
msgid "Pages:"
msgstr "ገጾች:"
#. X8bjE
-#: vcl/uiconfig/ui/printdialog.ui:1106
+#: vcl/uiconfig/ui/printdialog.ui:1109
msgctxt "printdialog|extended_tip|pagerows"
msgid "Select number of rows."
msgstr "የ ረድፎች ቁጥር ይምረጡ"
#. DM5aX
-#: vcl/uiconfig/ui/printdialog.ui:1118
+#: vcl/uiconfig/ui/printdialog.ui:1121
msgctxt "printdialog|by"
msgid "by"
msgstr "በ"
#. Z2EDz
-#: vcl/uiconfig/ui/printdialog.ui:1137
+#: vcl/uiconfig/ui/printdialog.ui:1140
msgctxt "printdialog|extended_tip|pagecols"
msgid "Select number of columns."
msgstr "የ አምዶች ቁጥር ይምረጡ"
#. szcD7
-#: vcl/uiconfig/ui/printdialog.ui:1149
+#: vcl/uiconfig/ui/printdialog.ui:1152
msgctxt "printdialog|pagemargintxt1"
msgid "Margin:"
msgstr "መስመር:"
#. QxE58
-#: vcl/uiconfig/ui/printdialog.ui:1168
+#: vcl/uiconfig/ui/printdialog.ui:1171
msgctxt "printdialog|extended_tip|pagemarginsb"
msgid "Select margin between individual pages on each sheet of paper."
msgstr "ለ እያንዳንዱ በሚታተመው ገጽ እና በ ወረቀቱ ጠርዝ መካከል የሚኖረውን የ መስመር ስፋት ይምረጡ"
#. iGg2m
-#: vcl/uiconfig/ui/printdialog.ui:1181
+#: vcl/uiconfig/ui/printdialog.ui:1184
msgctxt "printdialog|pagemargintxt2"
msgid "between pages"
msgstr "በ ገጾች መካከል"
#. oryuw
-#: vcl/uiconfig/ui/printdialog.ui:1192
+#: vcl/uiconfig/ui/printdialog.ui:1195
msgctxt "printdialog|sheetmargintxt1"
msgid "Distance:"
msgstr "እርቀት:"
#. EDFnW
-#: vcl/uiconfig/ui/printdialog.ui:1211
+#: vcl/uiconfig/ui/printdialog.ui:1214
msgctxt "printdialog|extended_tip|sheetmarginsb"
msgid "Select margin between the printed pages and paper edge."
msgstr "በሚታተመው ገጽ እና በ ወረቀቱ ጠርዝ መካከል የሚኖረውን የ መስመር ስፋት ይምረጡ"
#. XhfvB
-#: vcl/uiconfig/ui/printdialog.ui:1224
+#: vcl/uiconfig/ui/printdialog.ui:1227
msgctxt "printdialog|sheetmargintxt2"
msgid "to sheet border"
msgstr "የ ወረቀቱ ድንበር"
#. AGWe3
-#: vcl/uiconfig/ui/printdialog.ui:1237
+#: vcl/uiconfig/ui/printdialog.ui:1240
msgctxt "printdialog|labelorder"
msgid "Order:"
msgstr "ደንብ:"
#. psAku
-#: vcl/uiconfig/ui/printdialog.ui:1254
+#: vcl/uiconfig/ui/printdialog.ui:1257
msgctxt "printdialog|liststore2"
msgid "Left to right, then down"
msgstr "ከ ግራ ወደ ቀኝ: ከዚያ ወደ ታች"
#. fnfLt
-#: vcl/uiconfig/ui/printdialog.ui:1255
+#: vcl/uiconfig/ui/printdialog.ui:1258
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then right"
msgstr "ከ ላይ ወደ ታች ከዚያ ወደ ቀኝ"
#. y6nZE
-#: vcl/uiconfig/ui/printdialog.ui:1256
+#: vcl/uiconfig/ui/printdialog.ui:1259
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then left"
msgstr "ከ ላይ ወደ ታች: ክዚያ ወደ ግራ"
#. PteTg
-#: vcl/uiconfig/ui/printdialog.ui:1257
+#: vcl/uiconfig/ui/printdialog.ui:1260
msgctxt "printdialog|liststore2"
msgid "Right to left, then down"
msgstr "ከ ቀኝ ወደ ግራ: ከዚያ ወደ ታች"
#. DvF8r
-#: vcl/uiconfig/ui/printdialog.ui:1261
+#: vcl/uiconfig/ui/printdialog.ui:1264
msgctxt "printdialog|extended_tip|orderbox"
msgid "Select order in which pages are to be printed."
msgstr "ለማተም የ ገጾች ቅደም ተከተል ይምረጡ"
#. QG59F
-#: vcl/uiconfig/ui/printdialog.ui:1273
+#: vcl/uiconfig/ui/printdialog.ui:1276
msgctxt "printdialog|bordercb"
msgid "Draw a border around each page"
msgstr "በ አያንዳንዱ ገጽ ዙሪያ ድንበር መሳያ"
#. 8aAGu
-#: vcl/uiconfig/ui/printdialog.ui:1282
+#: vcl/uiconfig/ui/printdialog.ui:1285
msgctxt "printdialog|extended_tip|bordercb"
msgid "Check to draw a border around each page."
msgstr "በ እያንዳንዱ ገጽ ዙሪያ ድንበር እንዲሳል ምልክት ያድርጉ"
#. Yo4xV
-#: vcl/uiconfig/ui/printdialog.ui:1294
+#: vcl/uiconfig/ui/printdialog.ui:1297
msgctxt "printdialog|brochure"
msgid "Brochure"
msgstr "መግለጫ ጽሁፍ"
#. 3zcKq
-#: vcl/uiconfig/ui/printdialog.ui:1304
+#: vcl/uiconfig/ui/printdialog.ui:1307
msgctxt "printdialog|extended_tip|brochure"
msgid "Select to print the document in brochure format."
msgstr ""
#. JMA7A
-#: vcl/uiconfig/ui/printdialog.ui:1327
+#: vcl/uiconfig/ui/printdialog.ui:1330
msgctxt "printdialog|collationpreview"
msgid "Collation preview"
msgstr ""
#. dePkB
-#: vcl/uiconfig/ui/printdialog.ui:1332
+#: vcl/uiconfig/ui/printdialog.ui:1335
msgctxt "printdialog|extended_tip|orderpreview"
msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look."
msgstr ""
#. fCjdq
-#: vcl/uiconfig/ui/printdialog.ui:1354
+#: vcl/uiconfig/ui/printdialog.ui:1357
msgctxt "printdialog|layoutexpander"
msgid "M_ore"
msgstr "ተ_ጨማሪ"
#. rCBA5
-#: vcl/uiconfig/ui/printdialog.ui:1370
+#: vcl/uiconfig/ui/printdialog.ui:1373
msgctxt "printdialog|label3"
msgid "Page Layout"
msgstr "የ ገጽ እቅድ"
#. A2iC5
-#: vcl/uiconfig/ui/printdialog.ui:1393
+#: vcl/uiconfig/ui/printdialog.ui:1396
msgctxt "printdialog|generallabel"
msgid "General"
msgstr "ባጠቃላይ"
#. CzGM4
-#: vcl/uiconfig/ui/printdialog.ui:1447
+#: vcl/uiconfig/ui/printdialog.ui:1450
msgctxt "printdialog|extended_tip|PrintDialog"
msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document."
msgstr "የ አሁኑን ሰነድ ማተሚያ: ምርጫ ወይንም እርስዎ መወሰን የሚፈልጉትን ገጽ: እርስዎ እንዲሁም ማስገባት ይችላሉ የ ማተሚያ ምርጫ ለ አሁኑ ሰነድ:"
diff --git a/source/an/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po b/source/an/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po
index 0c93f96884b..329cb2105f1 100644
--- a/source/an/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po
+++ b/source/an/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-11 18:38+0200\n"
+"POT-Creation-Date: 2021-10-20 13:07+0200\n"
"PO-Revision-Date: 2014-01-03 17:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -26,12 +26,12 @@ msgctxt ""
msgid "Firebird Embedded"
msgstr ""
-#. 3davX
+#. ZVyum
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
".Drivers.Installed.sdbc:firebird:*\n"
"DriverTypeDisplayName\n"
"value.text"
-msgid "Firebird File"
+msgid "Firebird External"
msgstr ""
diff --git a/source/an/cui/messages.po b/source/an/cui/messages.po
index 988a687a8b3..189e21019be 100644
--- a/source/an/cui/messages.po
+++ b/source/an/cui/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-10-04 19:50+0200\n"
-"PO-Revision-Date: 2021-09-29 21:36+0000\n"
+"PO-Revision-Date: 2021-10-21 11:33+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/an/>\n"
"Language: an\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.8.1\n"
"X-POOTLE-MTIME: 1542195185.000000\n"
#. GyY9M
@@ -8637,7 +8637,7 @@ msgstr ""
#: cui/uiconfig/ui/effectspage.ui:291
msgctxt "effectspage|effectsft2"
msgid "Effects"
-msgstr ""
+msgstr "Efectos"
#. FY52V
#: cui/uiconfig/ui/effectspage.ui:323
@@ -8919,7 +8919,7 @@ msgstr ""
#: cui/uiconfig/ui/entrycontextmenu.ui:28
msgctxt "entrycontextmenu|add"
msgid "_Add"
-msgstr ""
+msgstr "_Adhibir"
#. vs8sL
#: cui/uiconfig/ui/entrycontextmenu.ui:36
@@ -11858,10 +11858,9 @@ msgstr ""
#. F3A9L
#: cui/uiconfig/ui/javastartparametersdialog.ui:204
-#, fuzzy
msgctxt "javastartparametersdialog|assignbtn"
msgid "_Add"
-msgstr "Adhibir"
+msgstr "_Adhibir"
#. 5DJCP
#: cui/uiconfig/ui/javastartparametersdialog.ui:211
diff --git a/source/an/desktop/messages.po b/source/an/desktop/messages.po
index 2b577280ae0..cc5c842b888 100644
--- a/source/an/desktop/messages.po
+++ b/source/an/desktop/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-09-10 23:11+0200\n"
-"PO-Revision-Date: 2021-09-15 11:23+0000\n"
+"PO-Revision-Date: 2021-10-21 11:33+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/desktopmessages/an/>\n"
"Language: an\n"
@@ -903,10 +903,9 @@ msgstr ""
#. GehiB
#: desktop/uiconfig/ui/extensionmanager.ui:239
-#, fuzzy
msgctxt "extensionmanager|addbtn"
msgid "_Add"
-msgstr "Adhibir"
+msgstr "_Adhibir"
#. MuigK
#: desktop/uiconfig/ui/extensionmanager.ui:248
diff --git a/source/an/extensions/messages.po b/source/an/extensions/messages.po
index fab1a040def..0eb0b261fff 100644
--- a/source/an/extensions/messages.po
+++ b/source/an/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-10 23:11+0200\n"
+"POT-Creation-Date: 2021-10-20 13:07+0200\n"
"PO-Revision-Date: 2021-09-15 11:23+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/extensionsmessages/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 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542022400.000000\n"
#. cBx8W
@@ -4184,93 +4184,165 @@ msgid "Scanner"
msgstr ""
#. 8aFBr
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:66
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:78
msgctxt "sanedialog|deviceInfoButton"
msgid "About Dev_ice"
msgstr ""
+#. 3aG8b
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:85
+msgctxt "sanedialog|extended_tip|deviceInfoButton"
+msgid "Displays a popup window with information obtained from the scanner driver."
+msgstr ""
+
#. 3EeXn
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:80
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:97
msgctxt "sanedialog|previewButton"
msgid "Create Previe_w"
msgstr ""
+#. FPGEB
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:104
+msgctxt "sanedialog|extended_tip|previewButton"
+msgid "Scans and displays the document in the preview area."
+msgstr ""
+
#. ihLsf
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:94
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:116
msgctxt "sanedialog|scanButton"
msgid "_Scan"
msgstr ""
+#. a4hC3
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:123
+msgctxt "sanedialog|extended_tip|ok"
+msgid "Scans an image, and then inserts the result into the document and closes the dialog."
+msgstr ""
+
#. gFREe
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:160
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:187
msgctxt "sanedialog|label3"
msgid "_Left:"
msgstr ""
#. ErDB4
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:174
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:201
msgctxt "sanedialog|label4"
msgid "To_p:"
msgstr ""
#. bSfBR
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:188
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:215
msgctxt "sanedialog|label5"
msgid "_Right:"
msgstr ""
#. NGDq3
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:202
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:229
#, fuzzy
msgctxt "sanedialog|label6"
msgid "_Bottom:"
msgstr "Cobaixo"
+#. nu6SM
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:249
+msgctxt "sanedialog|extended_tip|topSpinbutton"
+msgid "Set the top margin of the scan area."
+msgstr ""
+
+#. oDppB
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:268
+msgctxt "sanedialog|extended_tip|rightSpinbutton"
+msgid "Set the right margin of the scan area."
+msgstr ""
+
+#. EdgNn
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:287
+msgctxt "sanedialog|extended_tip|bottomSpinbutton"
+msgid "Set the bottom margin of the scan area."
+msgstr ""
+
+#. L7tZS
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:306
+msgctxt "sanedialog|extended_tip|leftSpinbutton"
+msgid "Set the left margin of the scan area."
+msgstr ""
+
#. YfU4m
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:274
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:321
msgctxt "sanedialog|label1"
msgid "Scan Area"
msgstr ""
+#. wECiq
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:366
+msgctxt "sanedialog|extended_tip|preview"
+msgid "Displays a preview of the scanned image. The preview area contains eight handles. Drag the handles to adjust the scan area or enter a value in the corresponding margin spin box."
+msgstr ""
+
#. FZ7Vw
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:327
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:379
msgctxt "sanedialog|label2"
msgid "Preview"
msgstr ""
#. EiiLN
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:361
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:413
msgctxt "sanedialog|label7"
msgid "Device _used"
msgstr ""
#. W6hNP
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:375
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:427
msgctxt "sanedialog|label8"
msgid "Resolution [_DPI]"
msgstr ""
+#. diRy3
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:444
+msgctxt "sanedialog|extended_tip|deviceCombobox"
+msgid "Displays a list of available scanners detected in your system."
+msgstr ""
+
+#. nBuc6
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:466
+msgctxt "sanedialog|extended_tip|reslCombobox"
+msgid "Select the resolution in dots per inch for the scan job."
+msgstr ""
+
#. t3Tuq
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:430
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:492
msgctxt "sanedialog|advancedCheckbutton"
msgid "Show advanced options"
msgstr ""
+#. yXnEA
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:500
+msgctxt "sanedialog|extended_tip|advancedcheckbutton"
+msgid "Mark this checkbox to display more configuration options for the scanner device."
+msgstr ""
+
#. gneMZ
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:460
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:527
#, fuzzy
msgctxt "sanedialog|label10"
msgid "Options:"
msgstr "Opcions"
+#. 4FHyM
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:569
+msgctxt "sanedialog\\extended_tip|optionSvTreeListBox"
+msgid "Displays the list of available scanner driver advanced options. Double click an option to display its contents just below."
+msgstr ""
+
#. VDQay
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:536
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:607
msgctxt "sanedialog|optionsButton"
msgid "Se_t"
msgstr ""
#. bNTfS
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:609
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:680
msgctxt "sanedialog|vectorLabel"
msgid "Vector element"
msgstr ""
diff --git a/source/an/fpicker/messages.po b/source/an/fpicker/messages.po
index d7ac77b625d..a4eea9150b6 100644
--- a/source/an/fpicker/messages.po
+++ b/source/an/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
"PO-Revision-Date: 2021-09-15 11:23+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/fpickermessages/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 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1538496441.000000\n"
#. SJGCw
@@ -218,49 +218,49 @@ msgid "_Open"
msgstr ""
#. JnE2t
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:548
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:551
msgctxt "explorerfiledialog|play"
msgid "_Play"
msgstr ""
#. dWNqZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:586
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:589
msgctxt "explorerfiledialog|file_name_label"
msgid "File _name:"
msgstr ""
#. 9cjFB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:612
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:615
msgctxt "explorerfiledialog|file_type_label"
msgid "File _type:"
msgstr ""
#. quCXH
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:676
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:679
msgctxt "explorerfiledialog|readonly"
msgid "_Read-only"
msgstr ""
#. hm2xy
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:699
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:702
msgctxt "explorerfiledialog|password"
msgid "Save with password"
msgstr ""
#. 8EYcB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:712
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:715
msgctxt "explorerfiledialog|extension"
msgid "_Automatic file name extension"
msgstr ""
#. 2CgAZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:725
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:728
msgctxt "explorerfiledialog|options"
msgid "Edit _filter settings"
msgstr ""
#. 6XqLj
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:752
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:755
msgctxt "explorerfiledialog|gpgencrypt"
msgid "Encrypt with GPG key"
msgstr ""
@@ -319,69 +319,63 @@ msgctxt "remotefilesdialog|open"
msgid "_Open"
msgstr ""
-#. kKETY
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:157
-msgctxt "remotefilesdialog|save"
-msgid "_Save"
-msgstr ""
-
#. uGwr4
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:186
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:175
#, fuzzy
msgctxt "remotefilesdialog|label1"
msgid "Service:"
msgstr "~Servicio"
#. cwNkT
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:214
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:203
msgctxt "remotefilesdialog|add_service_btn"
msgid "_Manage services"
msgstr ""
#. Jnndg
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:264
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:253
msgctxt "remotefilesdialog|list_view|tooltip_text"
msgid "List view"
msgstr ""
#. xxBtB
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:279
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:268
msgctxt "remotefilesdialog|icon_view|tooltip_text"
msgid "Icon view"
msgstr ""
#. 6CiqC
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:295
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:284
msgctxt "remotefilesdialog|new_folder|tooltip_text"
msgid "Create New Folder"
msgstr ""
#. aXDaC
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:400
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:389
msgctxt "remotefilesdialog|name"
msgid "Name"
msgstr ""
#. qRHnF
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:420
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:409
msgctxt "remotefilesdialog|size"
msgid "Size"
msgstr ""
#. qeF3r
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:434
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:423
msgctxt "remotefilesdialog|date"
msgid "Date modified"
msgstr ""
#. cGNWD
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:508
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:499
msgctxt "remotefilesdialog|filterLabel"
msgid "Filter"
msgstr ""
#. rCVer
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:522
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:513
msgctxt "remotefilesdialog|nameLabel"
msgid "File name"
msgstr ""
diff --git a/source/an/officecfg/registry/data/org/openoffice/Office/UI.po b/source/an/officecfg/registry/data/org/openoffice/Office/UI.po
index 9ced0e35e2f..181613a570b 100644
--- a/source/an/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/an/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-04 19:52+0200\n"
-"PO-Revision-Date: 2021-09-15 11:23+0000\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
+"PO-Revision-Date: 2021-10-23 04:36+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"
"Language: an\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.8.1\n"
"X-POOTLE-MTIME: 1542022403.000000\n"
#. W5ukN
@@ -1223,6 +1223,16 @@ msgctxt ""
msgid "~Insert or Edit..."
msgstr ""
+#. dHdzP
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Commands..uno:InsertPivotTableNBLabel\n"
+"Label\n"
+"value.text"
+msgid "~Insert or Edit Pivot Table..."
+msgstr ""
+
#. vqC2u
#: CalcCommands.xcu
#, fuzzy
@@ -3351,16 +3361,15 @@ msgctxt ""
msgid "Merge Cells"
msgstr "Unir celdas"
-#. GGRNG
+#. APBqu
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:SplitCell\n"
"Label\n"
"value.text"
-msgid "Split Cells"
-msgstr "Dividir celdas"
+msgid "Unmerge Cells"
+msgstr ""
#. qJGdH
#: CalcCommands.xcu
@@ -3373,6 +3382,16 @@ msgctxt ""
msgid "M~erge and Center Cells"
msgstr "Combinar y cdentrar celdas"
+#. ET4vB
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Commands..uno:ToggleMergeCells\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Merge and center or unmerge cells depending on the current toggle state"
+msgstr ""
+
#. VZsps
#: CalcCommands.xcu
#, fuzzy
@@ -4617,16 +4636,15 @@ msgctxt ""
msgid "Cell ~Comments"
msgstr ""
-#. 3xhAF
+#. yqd4v
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:MergeCellsMenu\n"
"Label\n"
"value.text"
-msgid "M~erge Cells"
-msgstr "Combinar celdas"
+msgid "M~erge and Unmerge Cells"
+msgstr ""
#. G3E3Q
#: CalcCommands.xcu
@@ -10959,14 +10977,13 @@ msgstr "Convertir"
#. 6TUDH
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:ArrangeMenu\n"
"Label\n"
"value.text"
msgid "~Arrange"
-msgstr "Posición"
+msgstr "~Ordenar"
#. UFyrk
#: DrawImpressCommands.xcu
@@ -19854,6 +19871,16 @@ msgctxt ""
msgid "Line Spacing: 1"
msgstr "Interlineado: 1"
+#. jmAwA
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:SpacePara115\n"
+"Label\n"
+"value.text"
+msgid "Line Spacing: 1.15"
+msgstr ""
+
#. q8wJt
#: GenericCommands.xcu
#, fuzzy
diff --git a/source/an/sc/messages.po b/source/an/sc/messages.po
index 3e66c2787ce..f45b7387ad9 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: 2021-09-27 19:09+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
"PO-Revision-Date: 2021-09-15 11:23+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"
@@ -29046,321 +29046,351 @@ msgctxt "pastespecial|paste_values_only|tooltip_text"
msgid "Values Only"
msgstr ""
+#. tDknw
+#: sc/uiconfig/scalc/ui/pastespecial.ui:141
+msgctxt "pastespecial|extended_tip|paste_values_only"
+msgid "Pastes numbers, text, dates and the results of formulas."
+msgstr ""
+
#. CTEKF
-#: sc/uiconfig/scalc/ui/pastespecial.ui:148
+#: sc/uiconfig/scalc/ui/pastespecial.ui:153
msgctxt "pastespecial|paste_values_formats|label"
msgid "Values & _Formats"
msgstr ""
#. 7GuDi
-#: sc/uiconfig/scalc/ui/pastespecial.ui:152
+#: sc/uiconfig/scalc/ui/pastespecial.ui:157
msgctxt "pastespecial|paste_values_formats|tooltip_text"
msgid "Values & Formats"
msgstr ""
+#. FjJPU
+#: sc/uiconfig/scalc/ui/pastespecial.ui:164
+msgctxt "pastespecial|extended_tip|paste_values_formats"
+msgid "Pastes cell values, formula results and formats applied to cells."
+msgstr ""
+
#. Rb8KR
-#: sc/uiconfig/scalc/ui/pastespecial.ui:166
+#: sc/uiconfig/scalc/ui/pastespecial.ui:176
msgctxt "pastespecial|paste_format|label"
msgid "Formats Onl_y"
msgstr ""
#. Cvyjn
-#: sc/uiconfig/scalc/ui/pastespecial.ui:170
+#: sc/uiconfig/scalc/ui/pastespecial.ui:180
msgctxt "pastespecial|paste_format|tooltip_text"
msgid "Formats Only"
msgstr ""
+#. Jhc4o
+#: sc/uiconfig/scalc/ui/pastespecial.ui:187
+msgctxt "pastespecial|extended_tip|paste_formats"
+msgid "Pastes only the formats from the source range without changing the values in the destination range."
+msgstr ""
+
#. YGdhH
-#: sc/uiconfig/scalc/ui/pastespecial.ui:184
+#: sc/uiconfig/scalc/ui/pastespecial.ui:199
msgctxt "pastespecial|paste_transpose|label"
msgid "_Transpose All"
msgstr ""
#. sbLGi
-#: sc/uiconfig/scalc/ui/pastespecial.ui:188
+#: sc/uiconfig/scalc/ui/pastespecial.ui:203
msgctxt "pastespecial|paste_transpose|tooltip_text"
msgid "Transpose All"
msgstr ""
+#. 3BC6U
+#: sc/uiconfig/scalc/ui/pastespecial.ui:210
+msgctxt "pastespecial|extended_tip|paste_transpose"
+msgid "Pastes cell contents transposed, hence columns are converted to rows."
+msgstr ""
+
#. 4ETCT
-#: sc/uiconfig/scalc/ui/pastespecial.ui:209
+#: sc/uiconfig/scalc/ui/pastespecial.ui:229
msgctxt "pastespecial|cbImmediately"
msgid "_Run immediately"
msgstr ""
+#. 7a9JE
+#: sc/uiconfig/scalc/ui/pastespecial.ui:238
+msgctxt "pastespecial|extended_tip|cbImmediately"
+msgid "Check this option to run the preset immediately. Uncheck it to manipulate the options before clicking OK."
+msgstr ""
+
#. YD43i
-#: sc/uiconfig/scalc/ui/pastespecial.ui:229
+#: sc/uiconfig/scalc/ui/pastespecial.ui:254
msgctxt "pastespecial|frPresets"
msgid "Presets"
msgstr ""
#. g6DfA
-#: sc/uiconfig/scalc/ui/pastespecial.ui:265
+#: sc/uiconfig/scalc/ui/pastespecial.ui:290
msgctxt "pastespecial|paste_all"
msgid "_All"
msgstr ""
#. Labin
-#: sc/uiconfig/scalc/ui/pastespecial.ui:273
+#: sc/uiconfig/scalc/ui/pastespecial.ui:298
msgctxt "pastespecial|extended_tip|paste_all"
msgid "Pastes all cell contents, comments, formats, and objects into the current document."
msgstr ""
#. qzFbg
-#: sc/uiconfig/scalc/ui/pastespecial.ui:284
+#: sc/uiconfig/scalc/ui/pastespecial.ui:309
#, fuzzy
msgctxt "pastespecial|numbers"
msgid "_Numbers"
msgstr "Numero"
#. SCVEu
-#: sc/uiconfig/scalc/ui/pastespecial.ui:292
+#: sc/uiconfig/scalc/ui/pastespecial.ui:317
msgctxt "pastespecial|extended_tip|numbers"
msgid "Inserts cells containing numbers."
msgstr ""
#. BSEWE
-#: sc/uiconfig/scalc/ui/pastespecial.ui:303
+#: sc/uiconfig/scalc/ui/pastespecial.ui:328
#, fuzzy
msgctxt "pastespecial|text"
msgid "Te_xt"
msgstr "texto"
#. JWDk5
-#: sc/uiconfig/scalc/ui/pastespecial.ui:311
+#: sc/uiconfig/scalc/ui/pastespecial.ui:336
msgctxt "pastespecial|extended_tip|text"
msgid "Inserts cells containing text."
msgstr ""
#. DBaJD
-#: sc/uiconfig/scalc/ui/pastespecial.ui:322
+#: sc/uiconfig/scalc/ui/pastespecial.ui:347
msgctxt "pastespecial|datetime"
msgid "_Date & time"
msgstr ""
#. jq6Md
-#: sc/uiconfig/scalc/ui/pastespecial.ui:330
+#: sc/uiconfig/scalc/ui/pastespecial.ui:355
msgctxt "pastespecial|extended_tip|datetime"
msgid "Inserts cells containing date and time values."
msgstr ""
#. aHXF8
-#: sc/uiconfig/scalc/ui/pastespecial.ui:341
+#: sc/uiconfig/scalc/ui/pastespecial.ui:366
#, fuzzy
msgctxt "pastespecial|formats"
msgid "For_mats"
msgstr "formato"
#. ehyEf
-#: sc/uiconfig/scalc/ui/pastespecial.ui:349
+#: sc/uiconfig/scalc/ui/pastespecial.ui:374
msgctxt "pastespecial|extended_tip|formats"
msgid "Inserts cell format attributes."
msgstr ""
#. NT4Am
-#: sc/uiconfig/scalc/ui/pastespecial.ui:360
+#: sc/uiconfig/scalc/ui/pastespecial.ui:385
#, fuzzy
msgctxt "pastespecial|comments"
msgid "_Comments"
msgstr "Comentarios"
#. 3uP7i
-#: sc/uiconfig/scalc/ui/pastespecial.ui:368
+#: sc/uiconfig/scalc/ui/pastespecial.ui:393
msgctxt "pastespecial|extended_tip|comments"
msgid "Inserts comments that are attached to cells. If you want to add the comments to the existing cell content, select the \"Add\" operation."
msgstr ""
#. YZQBh
-#: sc/uiconfig/scalc/ui/pastespecial.ui:379
+#: sc/uiconfig/scalc/ui/pastespecial.ui:404
msgctxt "pastespecial|objects"
msgid "Ob_jects"
msgstr ""
#. DZsnr
-#: sc/uiconfig/scalc/ui/pastespecial.ui:387
+#: sc/uiconfig/scalc/ui/pastespecial.ui:412
msgctxt "pastespecial|extended_tip|objects"
msgid "Inserts objects contained within the selected cell range. These can be OLE objects, chart objects, or drawing objects."
msgstr ""
#. jrjYA
-#: sc/uiconfig/scalc/ui/pastespecial.ui:398
+#: sc/uiconfig/scalc/ui/pastespecial.ui:423
msgctxt "pastespecial|formulas"
msgid "F_ormulas"
msgstr ""
#. Na5Ba
-#: sc/uiconfig/scalc/ui/pastespecial.ui:406
+#: sc/uiconfig/scalc/ui/pastespecial.ui:431
msgctxt "pastespecial|extended_tip|formulas"
msgid "Inserts cells containing formulae."
msgstr ""
#. UtpWA
-#: sc/uiconfig/scalc/ui/pastespecial.ui:421
+#: sc/uiconfig/scalc/ui/pastespecial.ui:446
msgctxt "pastespecial|label1"
msgid "Paste"
msgstr ""
#. fonBJ
-#: sc/uiconfig/scalc/ui/pastespecial.ui:452
+#: sc/uiconfig/scalc/ui/pastespecial.ui:477
msgctxt "pastespecial|no_shift"
msgid "Don't sh_ift"
msgstr ""
#. q3Xv3
-#: sc/uiconfig/scalc/ui/pastespecial.ui:461
+#: sc/uiconfig/scalc/ui/pastespecial.ui:486
msgctxt "pastespecial|extended_tip|no_shift"
msgid "Inserted cells replace the target cells."
msgstr ""
#. RuiU6
-#: sc/uiconfig/scalc/ui/pastespecial.ui:473
+#: sc/uiconfig/scalc/ui/pastespecial.ui:498
msgctxt "pastespecial|move_down"
msgid "_Down"
msgstr ""
#. BNALN
-#: sc/uiconfig/scalc/ui/pastespecial.ui:482
+#: sc/uiconfig/scalc/ui/pastespecial.ui:507
msgctxt "pastespecial|extended_tip|move_down"
msgid "Target cells are shifted downward when you insert cells from the clipboard."
msgstr ""
#. obSAt
-#: sc/uiconfig/scalc/ui/pastespecial.ui:494
+#: sc/uiconfig/scalc/ui/pastespecial.ui:519
#, fuzzy
msgctxt "pastespecial|move_right"
msgid "_Right"
msgstr "Enta la dreita"
#. GEFe7
-#: sc/uiconfig/scalc/ui/pastespecial.ui:503
+#: sc/uiconfig/scalc/ui/pastespecial.ui:528
msgctxt "pastespecial|extended_tip|move_right"
msgid "Target cells are shifted to the right when you insert cells from the clipboard."
msgstr ""
#. fzYTm
-#: sc/uiconfig/scalc/ui/pastespecial.ui:519
+#: sc/uiconfig/scalc/ui/pastespecial.ui:544
msgctxt "pastespecial|label4"
msgid "Shift Cells"
msgstr ""
#. nuJd9
-#: sc/uiconfig/scalc/ui/pastespecial.ui:563
+#: sc/uiconfig/scalc/ui/pastespecial.ui:588
msgctxt "pastespecial|link"
msgid "As _Link"
msgstr ""
#. Bg9dc
-#: sc/uiconfig/scalc/ui/pastespecial.ui:571
+#: sc/uiconfig/scalc/ui/pastespecial.ui:596
msgctxt "pastespecial|extended_tip|link"
msgid "Inserts the cell range as a link, so that changes made to the cells in the source file are updated in the target file. To ensure that changes made to empty cells in the source file are updated in the target file, ensure that the \"Paste All\" option is also selected."
msgstr ""
#. qt6LA
-#: sc/uiconfig/scalc/ui/pastespecial.ui:582
+#: sc/uiconfig/scalc/ui/pastespecial.ui:607
msgctxt "pastespecial|transpose"
msgid "Trans_pose"
msgstr ""
#. P3eE4
-#: sc/uiconfig/scalc/ui/pastespecial.ui:590
+#: sc/uiconfig/scalc/ui/pastespecial.ui:615
msgctxt "pastespecial|extended_tip|transpose"
msgid "The rows of the range in the clipboard are pasted to become columns of the output range. The columns of the range in the clipboard are pasted to become rows."
msgstr ""
#. eG52z
-#: sc/uiconfig/scalc/ui/pastespecial.ui:601
+#: sc/uiconfig/scalc/ui/pastespecial.ui:626
msgctxt "pastespecial|skip_empty"
msgid "_Skip empty cells"
msgstr ""
#. BodqB
-#: sc/uiconfig/scalc/ui/pastespecial.ui:605
+#: sc/uiconfig/scalc/ui/pastespecial.ui:630
msgctxt "pastespecial|skip_empty"
msgid "If enabled, blank cells in source will not override the target."
msgstr ""
#. u2Cms
-#: sc/uiconfig/scalc/ui/pastespecial.ui:610
+#: sc/uiconfig/scalc/ui/pastespecial.ui:635
msgctxt "pastespecial|extended_tip|skip_empty"
msgid "Empty cells from the clipboard do not replace target cells. If you use this option in conjunction with the \"Multiply\" or the \"Divide\" operation, the operation is not applied to the target cell of an empty cell in the clipboard."
msgstr ""
#. jTFAJ
-#: sc/uiconfig/scalc/ui/pastespecial.ui:625
+#: sc/uiconfig/scalc/ui/pastespecial.ui:650
msgctxt "pastespecial|OptionsFrame"
msgid "Options"
msgstr ""
#. nJiy4
-#: sc/uiconfig/scalc/ui/pastespecial.ui:656
+#: sc/uiconfig/scalc/ui/pastespecial.ui:681
#, fuzzy
msgctxt "pastespecial|none"
msgid "Non_e"
msgstr "garra"
#. 7GKDG
-#: sc/uiconfig/scalc/ui/pastespecial.ui:665
+#: sc/uiconfig/scalc/ui/pastespecial.ui:690
msgctxt "pastespecial|extended_tip|none"
msgid "Does not apply an operation when you insert the cell range from the clipboard. The contents of the clipboard will replace existing cell contents."
msgstr ""
#. CEsbt
-#: sc/uiconfig/scalc/ui/pastespecial.ui:677
+#: sc/uiconfig/scalc/ui/pastespecial.ui:702
#, fuzzy
msgctxt "pastespecial|add"
msgid "_Add"
msgstr "Adhibir"
#. bNyh2
-#: sc/uiconfig/scalc/ui/pastespecial.ui:686
+#: sc/uiconfig/scalc/ui/pastespecial.ui:711
msgctxt "pastespecial|extended_tip|add"
msgid "Adds the values in the clipboard cells to the values in the target cells. Also, if the clipboard only contains comments, adds the comments to the target cells."
msgstr ""
#. iFTvh
-#: sc/uiconfig/scalc/ui/pastespecial.ui:698
+#: sc/uiconfig/scalc/ui/pastespecial.ui:723
msgctxt "pastespecial|subtract"
msgid "_Subtract"
msgstr ""
#. 2SKbT
-#: sc/uiconfig/scalc/ui/pastespecial.ui:707
+#: sc/uiconfig/scalc/ui/pastespecial.ui:732
msgctxt "pastespecial|extended_tip|subtract"
msgid "Subtracts the values in the clipboard cells from the values in the target cells."
msgstr ""
#. zdDUB
-#: sc/uiconfig/scalc/ui/pastespecial.ui:719
+#: sc/uiconfig/scalc/ui/pastespecial.ui:744
msgctxt "pastespecial|multiply"
msgid "_Multiply"
msgstr ""
#. jkRDm
-#: sc/uiconfig/scalc/ui/pastespecial.ui:728
+#: sc/uiconfig/scalc/ui/pastespecial.ui:753
msgctxt "pastespecial|extended_tip|multiply"
msgid "Multiplies the values in the clipboard cells with the values in the target cells."
msgstr ""
#. 7Nd8u
-#: sc/uiconfig/scalc/ui/pastespecial.ui:740
+#: sc/uiconfig/scalc/ui/pastespecial.ui:765
msgctxt "pastespecial|divide"
msgid "_Divide"
msgstr ""
#. 9VKdS
-#: sc/uiconfig/scalc/ui/pastespecial.ui:749
+#: sc/uiconfig/scalc/ui/pastespecial.ui:774
msgctxt "pastespecial|extended_tip|divide"
msgid "Divides the values in the target cells by the values in the clipboard cells."
msgstr ""
#. 9otLM
-#: sc/uiconfig/scalc/ui/pastespecial.ui:765
+#: sc/uiconfig/scalc/ui/pastespecial.ui:790
msgctxt "pastespecial|label2"
msgid "Operations"
msgstr ""
#. ypkML
-#: sc/uiconfig/scalc/ui/pastespecial.ui:800
+#: sc/uiconfig/scalc/ui/pastespecial.ui:825
msgctxt "pastespecial|extended_tip|PasteSpecial"
msgid "Inserts the contents of the clipboard into the current file in a format that you can specify."
msgstr ""
diff --git a/source/an/sd/messages.po b/source/an/sd/messages.po
index 17cad2226a3..4ccc4a2ce30 100644
--- a/source/an/sd/messages.po
+++ b/source/an/sd/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-14 12:01+0200\n"
-"PO-Revision-Date: 2021-09-15 11:23+0000\n"
+"POT-Creation-Date: 2021-10-20 13:09+0200\n"
+"PO-Revision-Date: 2021-10-21 11:33+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"
"Language: an\n"
@@ -5003,242 +5003,254 @@ msgid "Text Animation"
msgstr ""
#. FcztB
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:132
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:140
msgctxt "customanimationspanel|extended_tip|custom_animation_list"
msgid "The animation list displays all animations for the current slide."
msgstr ""
-#. KFRTW
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:163
+#. VBxbo
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:171
msgctxt "customanimationspanel|STR_CUSTOMANIMATION_LIST_HELPTEXT"
-msgid "First select the slide element and then click 'Add...' to add an animation effect."
+msgid "First select the slide element and then click 'Add' to add an animation effect."
msgstr ""
+#. wWeBD
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:215
+msgctxt "customanimationspanel|lbEffect"
+msgid "Effects"
+msgstr "Efectos"
+
+#. WGWNA
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:236
+msgctxt "customanimationspanel|add"
+msgid "_Add"
+msgstr "_Adhibir"
+
#. nRqGR
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:195
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:240
msgctxt "customanimationspanel|add_effect|tooltip_text"
msgid "Add Effect"
msgstr ""
#. CskWF
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:199
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:245
msgctxt "customanimationspanel|extended_tip|add_effect"
msgid "Adds another animation effect for the selected object on the slide."
msgstr ""
#. vitMM
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:214
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:260
msgctxt "customanimationspanel|remove_effect|tooltip_text"
msgid "Remove Effect"
msgstr ""
#. pvCFG
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:218
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:264
msgctxt "customanimationspanel|extended_tip|remove_effect"
msgid "Removes the selected animation effects from the animation list."
msgstr ""
#. 3wHRp
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:233
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:279
msgctxt "customanimationspanel|move_up|tooltip_text"
msgid "Move Up"
msgstr ""
#. buR2G
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:237
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:283
msgctxt "customanimationspanel|extended_tip|move_up"
msgid "Click one of the buttons to move the selected animation effect up or down in the list."
msgstr ""
#. jEksa
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:252
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:298
msgctxt "customanimationspanel|move_down|tooltip_text"
msgid "Move Down"
msgstr ""
#. x82hp
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:256
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:302
msgctxt "customanimationspanel|extended_tip|move_down"
msgid "Click one of the buttons to move the selected animation effect up or down in the list."
msgstr ""
#. wCc89
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:285
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:324
#, fuzzy
msgctxt "customanimationspanel|categorylabel"
msgid "Category:"
msgstr "ID Categoría"
-#. EHRAp
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:299
-msgctxt "customanimationspanel|effectlabel"
-msgid "Effect:"
-msgstr ""
-
#. jQcZZ
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:314
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:338
msgctxt "customanimationspanel|categorylb"
msgid "Entrance"
msgstr ""
#. 2qTvP
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:315
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:339
msgctxt "customanimationspanel|categorylb"
msgid "Emphasis"
msgstr ""
#. TZeh8
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:316
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:340
msgctxt "customanimationspanel|categorylb"
msgid "Exit"
msgstr ""
#. N8Xvu
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:317
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:341
msgctxt "customanimationspanel|categorylb"
msgid "Motion Paths"
msgstr ""
#. qDYCQ
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:318
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:342
msgctxt "customanimationspanel|categorylb"
msgid "Misc Effects"
msgstr ""
#. ozsMp
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:322
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:346
msgctxt "customanimationspanel|extended_tip|categorylb"
msgid "Select an animation effect category."
msgstr ""
+#. EHRAp
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:363
+msgctxt "customanimationspanel|effectlabel"
+msgid "Effect:"
+msgstr ""
+
#. MEJrn
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:366
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:412
msgctxt "customanimationspanel|extended_tip|effect_list"
msgid "Select an animation effect."
msgstr ""
+#. LGuGy
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:428
+msgctxt "customanimationspanel|effect_label"
+msgid "Options"
+msgstr "Opcions"
+
#. GDYfC
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:403
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:445
msgctxt "customanimationspanel|start_effect"
msgid "_Start:"
msgstr ""
-#. 8AUq9
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:417
-msgctxt "customanimationspanel|effect_property"
-msgid "_Direction:"
-msgstr ""
-
-#. QWndb
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:431
-msgctxt "customanimationspanel|effect_duration"
-msgid "D_uration:"
-msgstr ""
-
#. DhPiJ
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:446
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:459
msgctxt "customanimationspanel|start_effect_list"
msgid "On click"
msgstr ""
#. FNFGr
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:447
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:460
msgctxt "customanimationspanel|start_effect_list"
msgid "With previous"
msgstr ""
#. dCfj4
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:448
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:461
msgctxt "customanimationspanel|start_effect_list"
msgid "After previous"
msgstr ""
#. iboET
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:452
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:465
msgctxt "customanimationspanel|extended_tip|start_effect_list"
msgid "Displays when the selected animation effect should be started."
msgstr ""
+#. 8AUq9
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:479
+msgctxt "customanimationspanel|effect_property"
+msgid "_Direction:"
+msgstr ""
+
#. mMYic
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:481
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:492
msgctxt "customanimationspanel|more_properties|tooltip_text"
msgid "Options"
msgstr "Opcions"
#. PE6vL
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:486
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:497
msgctxt "customanimationspanel|extended_tip|more_properties"
msgid "Specifies additional properties for the selected element in the Custom Animations pane."
msgstr ""
+#. QWndb
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:511
+msgctxt "customanimationspanel|effect_duration"
+msgid "D_uration:"
+msgstr ""
+
#. Ewipq
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:505
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:529
msgctxt "customanimationspanel|extended_tip|anim_duration"
msgid "Specifies the duration of the selected animation effect."
msgstr ""
#. 2cGAb
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:519
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:543
msgctxt "customanimationspanel|delay_label"
msgid "_Delay:"
msgstr ""
#. g6bR3
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:538
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:561
msgctxt "customanimationspanel|extended_tip|delay_value"
msgid "The animation starts delayed by this amount of time."
msgstr ""
-#. FgkKZ
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:562
-msgctxt "customanimationspanel|effect_label"
-msgid "Effect"
-msgstr ""
-
#. J2bC5
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:600
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:583
msgctxt "customanimationspanel|auto_preview"
msgid "Automatic Preview"
msgstr ""
#. GufhE
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:608
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:591
msgctxt "customanimationspanel|extended_tip|auto_preview"
msgid "Select to preview new or edited effects on the slide while you assign them."
msgstr ""
#. KP8UC
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:620
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:603
msgctxt "customanimationspanel|play"
msgid "Play"
msgstr "Reproducir"
#. Bn67v
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:624
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:607
msgctxt "customanimationspanel|play|tooltip_text"
msgid "Preview Effect"
msgstr ""
#. sUTTG
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:631
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:614
msgctxt "customanimationspanel|extended_tip|play"
msgid "Plays the selected animation effect in the preview."
msgstr ""
#. LBEzG
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:658
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:626
msgctxt "customanimationspanel|box1_label"
msgid "Animation Deck"
msgstr ""
#. bUvjt
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:671
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:638
msgctxt "customanimationspanel|custom_animation_list_label"
msgid "Animation List"
msgstr ""
#. F7AZL
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:690
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:694
msgctxt "customanimationspanel|extended_tip|CustomAnimationsPanel"
msgid "Assigns effects to selected objects."
msgstr ""
@@ -9165,7 +9177,7 @@ msgstr ""
#: sd/uiconfig/simpress/ui/publishingdialog.ui:1287
msgctxt "publishingdialog|effectsLabel"
msgid "Effects"
-msgstr ""
+msgstr "Efectos"
#. 6QQcx
#: sd/uiconfig/simpress/ui/publishingdialog.ui:1330
diff --git a/source/an/sfx2/messages.po b/source/an/sfx2/messages.po
index 164e1548ac8..169aac5805c 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: 2021-09-27 19:09+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
"PO-Revision-Date: 2021-09-15 11:23+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"
@@ -2997,147 +2997,147 @@ msgid "Contains descriptive information about the document."
msgstr ""
#. tC2rt
-#: sfx2/uiconfig/ui/developmenttool.ui:96
+#: sfx2/uiconfig/ui/developmenttool.ui:117
msgctxt "developmenttool|dom_current_selection_toggle-tooltip"
msgid "Current Selection In Document"
msgstr ""
#. Po2S3
-#: sfx2/uiconfig/ui/developmenttool.ui:97
+#: sfx2/uiconfig/ui/developmenttool.ui:118
msgctxt "developmenttool|dom_current_selection_toggle"
msgid "Current Selection"
msgstr ""
#. eB6NR
-#: sfx2/uiconfig/ui/developmenttool.ui:109
+#: sfx2/uiconfig/ui/developmenttool.ui:130
msgctxt "developmenttool|dom_refresh_button-tooltip"
msgid "Refresh Document Model Tree View"
msgstr ""
#. FD2yt
-#: sfx2/uiconfig/ui/developmenttool.ui:110
+#: sfx2/uiconfig/ui/developmenttool.ui:131
msgctxt "developmenttool|dom_refresh_button"
msgid "Refresh"
msgstr ""
#. qVgcX
-#: sfx2/uiconfig/ui/developmenttool.ui:155
+#: sfx2/uiconfig/ui/developmenttool.ui:177
msgctxt "developmenttool|object"
msgid "Object"
msgstr ""
#. x6GLB
-#: sfx2/uiconfig/ui/developmenttool.ui:203
+#: sfx2/uiconfig/ui/developmenttool.ui:226
msgctxt "developmenttool|tooltip-back"
msgid "Back"
msgstr ""
#. SinPk
-#: sfx2/uiconfig/ui/developmenttool.ui:204
+#: sfx2/uiconfig/ui/developmenttool.ui:227
msgctxt "developmenttool|back"
msgid "Back"
msgstr ""
#. 4CBb3
-#: sfx2/uiconfig/ui/developmenttool.ui:217
+#: sfx2/uiconfig/ui/developmenttool.ui:240
msgctxt "developmenttool|tooltip-inspect"
msgid "Inspect"
msgstr ""
#. vCciB
-#: sfx2/uiconfig/ui/developmenttool.ui:218
+#: sfx2/uiconfig/ui/developmenttool.ui:241
msgctxt "developmenttool|inspect"
msgid "Inspect"
msgstr ""
#. nFMXe
-#: sfx2/uiconfig/ui/developmenttool.ui:231
+#: sfx2/uiconfig/ui/developmenttool.ui:254
msgctxt "developmenttool|tooltip-refresh"
msgid "Refresh"
msgstr ""
#. CFuvW
-#: sfx2/uiconfig/ui/developmenttool.ui:232
+#: sfx2/uiconfig/ui/developmenttool.ui:255
msgctxt "developmenttool|refresh"
msgid "Refresh"
msgstr ""
#. 6gFmn
-#: sfx2/uiconfig/ui/developmenttool.ui:256
+#: sfx2/uiconfig/ui/developmenttool.ui:278
msgctxt "developmenttool|classname"
msgid "Class name:"
msgstr ""
#. a9j7f
-#: sfx2/uiconfig/ui/developmenttool.ui:319
-#: sfx2/uiconfig/ui/developmenttool.ui:364
-#: sfx2/uiconfig/ui/developmenttool.ui:418
+#: sfx2/uiconfig/ui/developmenttool.ui:343
+#: sfx2/uiconfig/ui/developmenttool.ui:392
+#: sfx2/uiconfig/ui/developmenttool.ui:450
msgctxt "developmenttool|name"
msgid "Name"
msgstr ""
#. VFqAa
-#: sfx2/uiconfig/ui/developmenttool.ui:338
+#: sfx2/uiconfig/ui/developmenttool.ui:363
msgctxt "developmenttool|interfaces"
msgid "Interfaces"
msgstr ""
#. iCdWe
-#: sfx2/uiconfig/ui/developmenttool.ui:386
+#: sfx2/uiconfig/ui/developmenttool.ui:415
msgctxt "developmenttool|services"
msgid "Services"
msgstr ""
#. H7pYE
-#: sfx2/uiconfig/ui/developmenttool.ui:432
+#: sfx2/uiconfig/ui/developmenttool.ui:465
msgctxt "developmenttool|value"
msgid "Value"
msgstr ""
#. Jjkqh
-#: sfx2/uiconfig/ui/developmenttool.ui:446
+#: sfx2/uiconfig/ui/developmenttool.ui:479
msgctxt "developmenttool|type"
msgid "Type"
msgstr ""
#. zpXuY
-#: sfx2/uiconfig/ui/developmenttool.ui:460
+#: sfx2/uiconfig/ui/developmenttool.ui:493
msgctxt "developmenttool|info"
msgid "Info"
msgstr ""
#. AUktw
-#: sfx2/uiconfig/ui/developmenttool.ui:511
+#: sfx2/uiconfig/ui/developmenttool.ui:544
msgctxt "developmenttool|properties"
msgid "Properties"
msgstr ""
#. wGJtn
-#: sfx2/uiconfig/ui/developmenttool.ui:538
+#: sfx2/uiconfig/ui/developmenttool.ui:574
msgctxt "developmenttool|method"
msgid "Method"
msgstr ""
#. EnGfg
-#: sfx2/uiconfig/ui/developmenttool.ui:552
+#: sfx2/uiconfig/ui/developmenttool.ui:589
msgctxt "developmenttool|returntype"
msgid "Return Type"
msgstr ""
#. AKnSa
-#: sfx2/uiconfig/ui/developmenttool.ui:566
+#: sfx2/uiconfig/ui/developmenttool.ui:603
msgctxt "developmenttool|parameters"
msgid "Parameters"
msgstr ""
#. tmttq
-#: sfx2/uiconfig/ui/developmenttool.ui:580
+#: sfx2/uiconfig/ui/developmenttool.ui:617
msgctxt "developmenttool|implementation_class"
msgid "Implementation Class"
msgstr ""
#. Q2CBK
-#: sfx2/uiconfig/ui/developmenttool.ui:602
+#: sfx2/uiconfig/ui/developmenttool.ui:639
msgctxt "developmenttool|methods"
msgid "Methods"
msgstr ""
@@ -4426,7 +4426,7 @@ msgid "Do_n’t Save"
msgstr "_No alzar"
#. dzVqL
-#: sfx2/uiconfig/ui/querysavedialog.ui:53
+#: sfx2/uiconfig/ui/querysavedialog.ui:56
msgctxt "querysavedialog|save"
msgid "_Save"
msgstr ""
diff --git a/source/an/svtools/messages.po b/source/an/svtools/messages.po
index de6a6f78e7a..fb0fb3359ec 100644
--- a/source/an/svtools/messages.po
+++ b/source/an/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-20 13:03+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
"PO-Revision-Date: 2021-09-15 11:23+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/an/>\n"
@@ -4996,6 +4996,12 @@ msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Klingon"
msgstr ""
+#. xFYhC
+#: svtools/inc/langtab.hrc:437
+msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
+msgid "English (Israel)"
+msgstr ""
+
#. fXSja
#: svtools/uiconfig/ui/addresstemplatedialog.ui:8
msgctxt "addresstemplatedialog|AddressTemplateDialog"
@@ -5102,358 +5108,358 @@ msgid "Modify dimensions"
msgstr ""
#. pyd6J
-#: svtools/uiconfig/ui/graphicexport.ui:146
+#: svtools/uiconfig/ui/graphicexport.ui:145
msgctxt "graphicexport|label5"
msgid "Width:"
msgstr ""
#. drQDY
-#: svtools/uiconfig/ui/graphicexport.ui:160
+#: svtools/uiconfig/ui/graphicexport.ui:159
msgctxt "graphicexport|label6"
msgid "Height:"
msgstr ""
#. exCyd
-#: svtools/uiconfig/ui/graphicexport.ui:171
+#: svtools/uiconfig/ui/graphicexport.ui:170
msgctxt "graphicexport|modifyresolutioncb"
msgid "Modify resolution"
msgstr ""
#. ZWxGB
-#: svtools/uiconfig/ui/graphicexport.ui:189
+#: svtools/uiconfig/ui/graphicexport.ui:188
msgctxt "graphicexport|resolutionft"
msgid "Resolution:"
msgstr ""
#. 2rwEJ
-#: svtools/uiconfig/ui/graphicexport.ui:209
+#: svtools/uiconfig/ui/graphicexport.ui:208
msgctxt "graphicexport|extended_tip|widthmf"
msgid "Specifies the measurement units."
msgstr ""
#. BPaB3
-#: svtools/uiconfig/ui/graphicexport.ui:229
+#: svtools/uiconfig/ui/graphicexport.ui:228
msgctxt "graphicexport|extended_tip|heightmf"
msgid "Specifies the height."
msgstr ""
#. Da3fv
-#: svtools/uiconfig/ui/graphicexport.ui:249
+#: svtools/uiconfig/ui/graphicexport.ui:248
msgctxt "graphicexport|extended_tip|resolutionmf"
msgid "Enter the image resolution. Select the measurement units from the list box."
msgstr ""
#. S9aHs
-#: svtools/uiconfig/ui/graphicexport.ui:263
+#: svtools/uiconfig/ui/graphicexport.ui:262
msgctxt "graphicexport|liststore2"
msgid "inches"
msgstr ""
#. dCstP
-#: svtools/uiconfig/ui/graphicexport.ui:264
+#: svtools/uiconfig/ui/graphicexport.ui:263
msgctxt "graphicexport|liststore2"
msgid "cm"
msgstr ""
#. X5dLV
-#: svtools/uiconfig/ui/graphicexport.ui:265
+#: svtools/uiconfig/ui/graphicexport.ui:264
msgctxt "graphicexport|liststore2"
msgid "mm"
msgstr ""
#. 6vWVJ
-#: svtools/uiconfig/ui/graphicexport.ui:266
+#: svtools/uiconfig/ui/graphicexport.ui:265
msgctxt "graphicexport|liststore2"
msgid "points"
msgstr ""
#. ZqyAj
-#: svtools/uiconfig/ui/graphicexport.ui:267
+#: svtools/uiconfig/ui/graphicexport.ui:266
msgctxt "graphicexport|liststore2"
msgid "pixels"
msgstr ""
#. QL8mE
-#: svtools/uiconfig/ui/graphicexport.ui:271
+#: svtools/uiconfig/ui/graphicexport.ui:270
msgctxt "graphicexport|extended_tip|widthlb"
msgid "Specifies the width."
msgstr ""
#. kYLvv
-#: svtools/uiconfig/ui/graphicexport.ui:285
+#: svtools/uiconfig/ui/graphicexport.ui:284
msgctxt "graphicexport|liststore1"
msgid "pixels/cm"
msgstr ""
#. zjmFd
-#: svtools/uiconfig/ui/graphicexport.ui:286
+#: svtools/uiconfig/ui/graphicexport.ui:285
msgctxt "graphicexport|liststore1"
msgid "pixels/inch"
msgstr ""
#. iMZW3
-#: svtools/uiconfig/ui/graphicexport.ui:287
+#: svtools/uiconfig/ui/graphicexport.ui:286
msgctxt "graphicexport|liststore1"
msgid "pixels/meter"
msgstr ""
#. ND5ki
-#: svtools/uiconfig/ui/graphicexport.ui:291
+#: svtools/uiconfig/ui/graphicexport.ui:290
msgctxt "graphicexport|extended_tip|resolutionlb"
msgid "Enter the image resolution. Select the measurement units from the list box."
msgstr ""
#. ENaqm
-#: svtools/uiconfig/ui/graphicexport.ui:309
+#: svtools/uiconfig/ui/graphicexport.ui:308
msgctxt "graphicexport|label1"
msgid "Size"
msgstr ""
#. Dc5fy
-#: svtools/uiconfig/ui/graphicexport.ui:335
+#: svtools/uiconfig/ui/graphicexport.ui:334
msgctxt "graphicexport|extended_tip|colordepthlb"
msgid "Select the color depth from 8 bit grayscale or 24 bit true color."
msgstr ""
#. hFaPC
-#: svtools/uiconfig/ui/graphicexport.ui:344
+#: svtools/uiconfig/ui/graphicexport.ui:343
msgctxt "graphicexport|label2"
msgid "Color Depth"
msgstr ""
#. 5v8Jn
-#: svtools/uiconfig/ui/graphicexport.ui:380
+#: svtools/uiconfig/ui/graphicexport.ui:379
msgctxt "graphicexport|extended_tip|compressionjpgnf"
msgid "Sets the quality for the export. Choose from a low quality with minimal file size, up to a high quality and big file size."
msgstr ""
#. Tk5y2
-#: svtools/uiconfig/ui/graphicexport.ui:409
+#: svtools/uiconfig/ui/graphicexport.ui:408
msgctxt "graphicexport|label9"
msgid "Quality"
msgstr ""
#. AHkNV
-#: svtools/uiconfig/ui/graphicexport.ui:445
+#: svtools/uiconfig/ui/graphicexport.ui:444
msgctxt "graphicexport|extended_tip|compressionpngnf"
msgid "Sets the compression for the export. A high compression means a smaller, but slower to load image."
msgstr ""
#. f4LYz
-#: svtools/uiconfig/ui/graphicexport.ui:474
+#: svtools/uiconfig/ui/graphicexport.ui:473
msgctxt "graphicexport|label"
msgid "Compression"
msgstr ""
#. hQadL
-#: svtools/uiconfig/ui/graphicexport.ui:494
+#: svtools/uiconfig/ui/graphicexport.ui:493
msgctxt "graphicexport|rlecb"
msgid "RLE encoding"
msgstr ""
#. DqpKW
-#: svtools/uiconfig/ui/graphicexport.ui:505
+#: svtools/uiconfig/ui/graphicexport.ui:504
msgctxt "graphicexport|extended_tip|rlecb"
msgid "Applies RLE (Run Length Encoding) to the BMP graphics."
msgstr ""
#. EA7BF
-#: svtools/uiconfig/ui/graphicexport.ui:514
+#: svtools/uiconfig/ui/graphicexport.ui:513
msgctxt "graphicexport|label3"
msgid "Compression"
msgstr ""
#. qiLZK
-#: svtools/uiconfig/ui/graphicexport.ui:534
+#: svtools/uiconfig/ui/graphicexport.ui:533
msgctxt "graphicexport|interlacedcb"
msgid "Interlaced"
msgstr ""
#. cLvu6
-#: svtools/uiconfig/ui/graphicexport.ui:545
+#: svtools/uiconfig/ui/graphicexport.ui:544
msgctxt "graphicexport|extended_tip|interlacedcb"
msgid "Specifies whether the graphic is to be saved in interlaced mode."
msgstr ""
#. BkbD3
-#: svtools/uiconfig/ui/graphicexport.ui:554
+#: svtools/uiconfig/ui/graphicexport.ui:553
#, fuzzy
msgctxt "graphicexport|label12"
msgid "Mode"
msgstr "modo"
#. Nhj88
-#: svtools/uiconfig/ui/graphicexport.ui:574
+#: svtools/uiconfig/ui/graphicexport.ui:573
msgctxt "graphicexport|savetransparencycb"
msgid "Save transparency"
msgstr ""
#. kZ3uW
-#: svtools/uiconfig/ui/graphicexport.ui:585
+#: svtools/uiconfig/ui/graphicexport.ui:584
msgctxt "graphicexport|extended_tip|savetransparencycb"
msgid "Specifies whether to save the background of the picture as transparent. Only objects will be visible in the GIF image. Use the Color Replacer to set the transparent color in the picture."
msgstr ""
#. ZPmXf
-#: svtools/uiconfig/ui/graphicexport.ui:594
+#: svtools/uiconfig/ui/graphicexport.ui:593
#, fuzzy
msgctxt "graphicexport|labe"
msgid "Drawing Objects"
msgstr "Obchectos de dibuixo"
#. KMCxb
-#: svtools/uiconfig/ui/graphicexport.ui:621
+#: svtools/uiconfig/ui/graphicexport.ui:620
msgctxt "graphicexport|binarycb"
msgid "Binary"
msgstr "Binario"
#. qFTuj
-#: svtools/uiconfig/ui/graphicexport.ui:630
+#: svtools/uiconfig/ui/graphicexport.ui:629
msgctxt "graphicexport|extended_tip|binarycb"
msgid "Exports the file in binary format. The resulting file is smaller than a text file."
msgstr ""
#. 8cZsH
-#: svtools/uiconfig/ui/graphicexport.ui:641
+#: svtools/uiconfig/ui/graphicexport.ui:640
msgctxt "graphicexport|textcb"
msgid "Text"
msgstr "Texto"
#. GFbg2
-#: svtools/uiconfig/ui/graphicexport.ui:650
+#: svtools/uiconfig/ui/graphicexport.ui:649
msgctxt "graphicexport|extended_tip|textcb"
msgid "Exports the file in ASCII text format. The resulting file is larger than a binary file."
msgstr ""
#. ECUb9
-#: svtools/uiconfig/ui/graphicexport.ui:665
+#: svtools/uiconfig/ui/graphicexport.ui:664
msgctxt "graphicexport|label16"
msgid "Encoding"
msgstr ""
#. aeV52
-#: svtools/uiconfig/ui/graphicexport.ui:697
+#: svtools/uiconfig/ui/graphicexport.ui:696
msgctxt "graphicexport|tiffpreviewcb"
msgid "Image preview (TIFF)"
msgstr ""
#. H8vtD
-#: svtools/uiconfig/ui/graphicexport.ui:706
+#: svtools/uiconfig/ui/graphicexport.ui:705
msgctxt "graphicexport|extended_tip|tiffpreviewcb"
msgid "Specifies whether a preview image is exported in the TIFF format together with the actual PostScript file."
msgstr ""
#. AeEJu
-#: svtools/uiconfig/ui/graphicexport.ui:717
+#: svtools/uiconfig/ui/graphicexport.ui:716
msgctxt "graphicexport|epsipreviewcb"
msgid "Interchange (EPSI)"
msgstr ""
#. gLbUQ
-#: svtools/uiconfig/ui/graphicexport.ui:725
+#: svtools/uiconfig/ui/graphicexport.ui:724
msgctxt "graphicexport|extended_tip|epsipreviewcb"
msgid "Specifies whether a monochrome preview graphic in EPSI format is exported together with the PostScript file. This format only contains printable characters from the 7-bit ASCII code."
msgstr ""
#. sRbZb
-#: svtools/uiconfig/ui/graphicexport.ui:740
+#: svtools/uiconfig/ui/graphicexport.ui:739
msgctxt "graphicexport|label17"
msgid "Preview"
msgstr ""
#. Jfbgx
-#: svtools/uiconfig/ui/graphicexport.ui:767
+#: svtools/uiconfig/ui/graphicexport.ui:766
#, fuzzy
msgctxt "graphicexport|color1rb"
msgid "Color"
msgstr "~Color"
#. LNHEi
-#: svtools/uiconfig/ui/graphicexport.ui:776
+#: svtools/uiconfig/ui/graphicexport.ui:775
msgctxt "graphicexport|extended_tip|color1rb"
msgid "Exports the file in color."
msgstr ""
#. VeZFK
-#: svtools/uiconfig/ui/graphicexport.ui:787
+#: svtools/uiconfig/ui/graphicexport.ui:786
msgctxt "graphicexport|color2rb"
msgid "Grayscale"
msgstr ""
#. TWEx8
-#: svtools/uiconfig/ui/graphicexport.ui:796
+#: svtools/uiconfig/ui/graphicexport.ui:795
msgctxt "graphicexport|extended_tip|color2rb"
msgid "Exports the file in grayscale tones."
msgstr ""
#. BbSGF
-#: svtools/uiconfig/ui/graphicexport.ui:811
+#: svtools/uiconfig/ui/graphicexport.ui:810
msgctxt "graphicexport|label18"
msgid "Color Format"
msgstr ""
#. b6J7X
-#: svtools/uiconfig/ui/graphicexport.ui:838
+#: svtools/uiconfig/ui/graphicexport.ui:837
msgctxt "graphicexport|level1rb"
msgid "Level 1"
msgstr "Libel 1"
#. pEcBC
-#: svtools/uiconfig/ui/graphicexport.ui:847
+#: svtools/uiconfig/ui/graphicexport.ui:846
msgctxt "graphicexport|extended_tip|level1rb"
msgid "Compression is not available at this level. Select the Level 1 option if your PostScript printer does not offer the capabilities of Level 2."
msgstr ""
#. kuCNX
-#: svtools/uiconfig/ui/graphicexport.ui:858
+#: svtools/uiconfig/ui/graphicexport.ui:857
msgctxt "graphicexport|level2rb"
msgid "Level 2"
msgstr "Libel 2"
#. wiWrE
-#: svtools/uiconfig/ui/graphicexport.ui:867
+#: svtools/uiconfig/ui/graphicexport.ui:866
msgctxt "graphicexport|extended_tip|level2rb"
msgid "Select the Level 2 option if your output device supports colored bitmaps, palette graphics and compressed graphics."
msgstr ""
#. JUuBZ
-#: svtools/uiconfig/ui/graphicexport.ui:882
+#: svtools/uiconfig/ui/graphicexport.ui:881
msgctxt "graphicexport|label19"
msgid "Version"
msgstr ""
#. FjkbL
-#: svtools/uiconfig/ui/graphicexport.ui:909
+#: svtools/uiconfig/ui/graphicexport.ui:908
msgctxt "graphicexport|compresslzw"
msgid "LZW encoding"
msgstr ""
#. 5cYFM
-#: svtools/uiconfig/ui/graphicexport.ui:918
+#: svtools/uiconfig/ui/graphicexport.ui:917
msgctxt "graphicexport|extended_tip|compresslzw"
msgid "LZW compression is the compression of a file into a smaller file using a table-based lookup algorithm."
msgstr ""
#. vXGXe
-#: svtools/uiconfig/ui/graphicexport.ui:929
+#: svtools/uiconfig/ui/graphicexport.ui:928
msgctxt "graphicexport|compressnone"
msgid "None"
msgstr "Garra"
#. kW3QD
-#: svtools/uiconfig/ui/graphicexport.ui:938
+#: svtools/uiconfig/ui/graphicexport.ui:937
msgctxt "graphicexport|extended_tip|compressnone"
msgid "Specifies that you do not wish to use compression."
msgstr ""
#. ghAqZ
-#: svtools/uiconfig/ui/graphicexport.ui:953
+#: svtools/uiconfig/ui/graphicexport.ui:952
msgctxt "graphicexport|label20"
msgid "Compression"
msgstr ""
#. LmAeC
-#: svtools/uiconfig/ui/graphicexport.ui:992
+#: svtools/uiconfig/ui/graphicexport.ui:991
msgctxt "graphicexport|label4"
msgid "Information"
msgstr "Información"
@@ -5810,7 +5816,7 @@ msgid "For the Skia changes to take effect, %PRODUCTNAME must be restarted."
msgstr ""
#. v9FjK
-#: svtools/uiconfig/ui/thineditcontrol.ui:69
+#: svtools/uiconfig/ui/thineditcontrol.ui:72
msgctxt "thineditcontrol|button"
msgid "Pick Date"
msgstr ""
diff --git a/source/an/svx/messages.po b/source/an/svx/messages.po
index 142605c45a1..3defd7c4f23 100644
--- a/source/an/svx/messages.po
+++ b/source/an/svx/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-20 13:03+0200\n"
-"PO-Revision-Date: 2021-09-15 11:23+0000\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
+"PO-Revision-Date: 2021-10-21 11:33+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/an/>\n"
"Language: an\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.8.1\n"
"X-POOTLE-MTIME: 1542022409.000000\n"
#. 3GkZj
@@ -9979,125 +9979,125 @@ msgctxt "RID_SVXSTR_TRANSPARENCY"
msgid "Transparency:"
msgstr ""
-#. zvqUJ
+#. PGuXa
#. strings related to borders
#: include/svx/strings.hrc:1777
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
-msgid "Set No Borders"
+msgid "No Borders"
msgstr ""
-#. ABKEK
+#. LzhYZ
#: include/svx/strings.hrc:1778
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
-msgid "Set Outer Border Only"
+msgid "Outer Border Only"
msgstr ""
-#. ygU8P
+#. EniNF
#: include/svx/strings.hrc:1779
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
-msgid "Set Outer Border and Horizontal Lines"
+msgid "Outer Border and Horizontal Lines"
msgstr ""
-#. q5KJ8
+#. BuDWX
#: include/svx/strings.hrc:1780
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
-msgid "Set Outer Border and All Inner Lines"
+msgid "Outer Border and All Inner Lines"
msgstr ""
-#. TFuZb
+#. ckL2Z
#: include/svx/strings.hrc:1781
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
-msgid "Set Outer Border and Vertical Lines"
+msgid "Outer Border and Vertical Lines"
msgstr ""
-#. H5s9X
+#. Q9hj4
#: include/svx/strings.hrc:1782
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
-msgid "Set Outer Border Without Changing Inner Lines"
+msgid "Outer Border Without Changing Inner Lines"
msgstr ""
-#. T5crG
+#. b7wCr
#: include/svx/strings.hrc:1783
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
-msgid "Set Diagonal Lines Only"
+msgid "Diagonal Lines Only"
msgstr ""
-#. oodJY
+#. 8r98a
#: include/svx/strings.hrc:1784
-msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALLEFT"
-msgid "Set Diagonal Left Border"
+msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
+msgid "Diagonal Down Border"
msgstr ""
-#. gFFgD
+#. P4FGE
#: include/svx/strings.hrc:1785
-msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALRIGHT"
-msgid "Set Diagonal Right Border"
+msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
+msgid "Diagonal Up Border"
msgstr ""
-#. D6FCE
+#. VxBrT
#: include/svx/strings.hrc:1786
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
-msgid "Set Criss-Cross Border"
+msgid "Criss-Cross Border"
msgstr ""
-#. S6AAA
+#. hTi3j
#: include/svx/strings.hrc:1787
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
-msgid "Set All Four Borders"
+msgid "All Four Borders"
msgstr ""
-#. tknFJ
+#. o8fB8
#: include/svx/strings.hrc:1788
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
-msgid "Set Left and Right Borders Only"
+msgid "Left and Right Borders Only"
msgstr ""
-#. hSmnW
+#. 6NnM2
#: include/svx/strings.hrc:1789
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
-msgid "Set Top and Bottom Borders Only"
+msgid "Top and Bottom Borders Only"
msgstr ""
-#. DsEAB
+#. KTYVW
#: include/svx/strings.hrc:1790
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
-msgid "Set Top and Bottom Borders, and All Horizontal Lines"
+msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. Dy2UG
+#. fRcEu
#: include/svx/strings.hrc:1791
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Set Left Border Only"
+msgid "Left Border Only"
msgstr ""
-#. yF8RP
+#. uqzE7
#: include/svx/strings.hrc:1792
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Set Right Border Only"
+msgid "Right Border Only"
msgstr ""
-#. E2jZj
+#. 6ecLB
#: include/svx/strings.hrc:1793
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Set Top Border Only"
+msgid "Top Border Only"
msgstr ""
-#. 7ixEC
+#. B6KZc
#: include/svx/strings.hrc:1794
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Set Bottom Border Only"
+msgid "Bottom Border Only"
msgstr ""
-#. nCjXG
+#. aCMGz
#: include/svx/strings.hrc:1795
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
-msgid "Set Top and Bottom Borders, and All Inner Lines"
+msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
-#. 46Fq7
+#. t38dT
#: include/svx/strings.hrc:1796
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
-msgid "Set Left and Right Borders, and All Inner Lines"
+msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
#. wH3TZ
@@ -10259,7 +10259,7 @@ msgstr ""
#: include/svx/svxitems.hrc:48
msgctxt "RID_ATTR_NAMES"
msgid "Effects"
-msgstr ""
+msgstr "Efectos"
#. CYKY7
#: include/svx/svxitems.hrc:49
@@ -14448,13 +14448,13 @@ msgid "Delete footer?"
msgstr ""
#. GE3hT
-#: svx/uiconfig/ui/deletefooterdialog.ui:14
+#: svx/uiconfig/ui/deletefooterdialog.ui:13
msgctxt "deletefooterdialog|DeleteFooterDialog"
msgid "Are you sure you want to delete the footer?"
msgstr ""
#. EthWp
-#: svx/uiconfig/ui/deletefooterdialog.ui:15
+#: svx/uiconfig/ui/deletefooterdialog.ui:14
msgctxt "deletefooterdialog|DeleteFooterDialog"
msgid "All contents of the footer will be deleted and can not be restored."
msgstr ""
@@ -14466,13 +14466,13 @@ msgid "Delete header?"
msgstr ""
#. YfZTx
-#: svx/uiconfig/ui/deleteheaderdialog.ui:14
+#: svx/uiconfig/ui/deleteheaderdialog.ui:13
msgctxt "deleteheaderdialog|DeleteHeaderDialog"
msgid "Are you sure you want to delete the header?"
msgstr ""
#. 86Aks
-#: svx/uiconfig/ui/deleteheaderdialog.ui:15
+#: svx/uiconfig/ui/deleteheaderdialog.ui:14
msgctxt "deleteheaderdialog|DeleteHeaderDialog"
msgid "All contents of the header will be deleted and can not be restored."
msgstr ""
@@ -19012,19 +19012,19 @@ msgid "Standard selection"
msgstr ""
#. DGKv2
-#: svx/uiconfig/ui/selectionmenu.ui:20
+#: svx/uiconfig/ui/selectionmenu.ui:21
msgctxt "selectionmenu|extending"
msgid "Extending selection"
msgstr ""
#. fqC9L
-#: svx/uiconfig/ui/selectionmenu.ui:28
+#: svx/uiconfig/ui/selectionmenu.ui:30
msgctxt "selectionmenu|adding"
msgid "Adding selection"
msgstr ""
#. DbjFT
-#: svx/uiconfig/ui/selectionmenu.ui:36
+#: svx/uiconfig/ui/selectionmenu.ui:39
msgctxt "selectionmenu|block"
msgid "Block selection"
msgstr ""
@@ -19938,50 +19938,50 @@ msgid "More Options"
msgstr ""
#. DJ6vY
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:18
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:60
msgctxt "textcharacterspacingcontrol|very_tight"
msgid "Very Tight"
msgstr ""
#. GYD7d
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:34
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:77
#, fuzzy
msgctxt "textcharacterspacingcontrol|tight"
msgid "Tight"
msgstr "~Dreita"
#. 8EcPH
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:50
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:94
msgctxt "textcharacterspacingcontrol|normal"
msgid "Normal"
msgstr "Normal"
#. hEuRj
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:66
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:111
msgctxt "textcharacterspacingcontrol|loose"
msgid "Loose"
msgstr ""
#. 4kdQx
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:82
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:128
msgctxt "textcharacterspacingcontrol|very_loose"
msgid "Very Loose"
msgstr ""
#. hsu3c
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:98
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:145
msgctxt "textcharacterspacingcontrol|last_custom"
msgid "Last Custom Value"
msgstr ""
#. pZZ9u
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:127
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:177
msgctxt "textcharacterspacingcontrol|kerning"
msgid "0.0"
msgstr ""
#. 6kNQD
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:139
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:187
msgctxt "textcharacterspacingcontrol|label2"
msgid "Custom Value"
msgstr ""
@@ -20041,73 +20041,73 @@ msgid "Tabs"
msgstr ""
#. hHwzA
-#: svx/uiconfig/ui/textunderlinecontrol.ui:19
+#: svx/uiconfig/ui/textunderlinecontrol.ui:74
msgctxt "textunderlinecontrol|none"
msgid "(Without)"
msgstr ""
#. 9VDo4
-#: svx/uiconfig/ui/textunderlinecontrol.ui:37
+#: svx/uiconfig/ui/textunderlinecontrol.ui:93
msgctxt "textunderlinecontrol|single|tooltip_text"
msgid "Single"
msgstr ""
#. czS3W
-#: svx/uiconfig/ui/textunderlinecontrol.ui:54
+#: svx/uiconfig/ui/textunderlinecontrol.ui:110
msgctxt "textunderlinecontrol|double|tooltip_text"
msgid "Double"
msgstr ""
#. DBg8Y
-#: svx/uiconfig/ui/textunderlinecontrol.ui:71
+#: svx/uiconfig/ui/textunderlinecontrol.ui:127
msgctxt "textunderlinecontrol|bold|tooltip_text"
msgid "Bold"
msgstr ""
#. fNrBz
-#: svx/uiconfig/ui/textunderlinecontrol.ui:88
+#: svx/uiconfig/ui/textunderlinecontrol.ui:144
msgctxt "textunderlinecontrol|dot|tooltip_text"
msgid "Dotted"
msgstr ""
#. JEgvk
-#: svx/uiconfig/ui/textunderlinecontrol.ui:105
+#: svx/uiconfig/ui/textunderlinecontrol.ui:161
msgctxt "textunderlinecontrol|dotbold|tooltip_text"
msgid "Dotted (Bold)"
msgstr ""
#. 46nci
-#: svx/uiconfig/ui/textunderlinecontrol.ui:122
+#: svx/uiconfig/ui/textunderlinecontrol.ui:178
msgctxt "textunderlinecontrol|dash|tooltip_text"
msgid "Dash"
msgstr ""
#. D8gB4
-#: svx/uiconfig/ui/textunderlinecontrol.ui:139
+#: svx/uiconfig/ui/textunderlinecontrol.ui:195
msgctxt "textunderlinecontrol|dashlong|tooltip_text"
msgid "Long Dash"
msgstr ""
#. gkUzu
-#: svx/uiconfig/ui/textunderlinecontrol.ui:156
+#: svx/uiconfig/ui/textunderlinecontrol.ui:212
msgctxt "textunderlinecontrol|dashdot|tooltip_text"
msgid "Dot Dash"
msgstr ""
#. qMLxK
-#: svx/uiconfig/ui/textunderlinecontrol.ui:173
+#: svx/uiconfig/ui/textunderlinecontrol.ui:229
msgctxt "textunderlinecontrol|dashdotdot|tooltip_text"
msgid "Dot Dot Dash"
msgstr ""
#. dusMw
-#: svx/uiconfig/ui/textunderlinecontrol.ui:190
+#: svx/uiconfig/ui/textunderlinecontrol.ui:246
msgctxt "textunderlinecontrol|wave|tooltip_text"
msgid "Wave"
msgstr ""
#. xJTZe
-#: svx/uiconfig/ui/textunderlinecontrol.ui:204
+#: svx/uiconfig/ui/textunderlinecontrol.ui:260
msgctxt "textunderlinecontrol|moreoptions"
msgid "_More Options..."
msgstr ""
diff --git a/source/an/sw/messages.po b/source/an/sw/messages.po
index 96629ef593b..747cc9ca901 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: 2021-10-04 19:52+0200\n"
+"POT-Creation-Date: 2021-10-25 12:50+0200\n"
"PO-Revision-Date: 2021-09-29 21:36+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"
@@ -4465,20 +4465,26 @@ msgctxt "STR_CONTENT_ENDNOTE"
msgid "Endnote"
msgstr ""
-#. jThGW
+#. sEQCK
#: sw/inc/strings.hrc:407
+msgctxt "STR_FOOTNOTE_ENDNOTE_SEPARATOR_TIP"
+msgid "Footnotes are listed above this line and Endnotes are listed below"
+msgstr ""
+
+#. jThGW
+#: sw/inc/strings.hrc:408
msgctxt "STR_DEFINE_NUMBERFORMAT"
msgid "Additional formats..."
msgstr ""
#. Cfiyt
-#: sw/inc/strings.hrc:408
+#: sw/inc/strings.hrc:409
msgctxt "RID_STR_SYSTEM"
msgid "[System]"
msgstr ""
#. iD3WQ
-#: sw/inc/strings.hrc:409
+#: sw/inc/strings.hrc:410
msgctxt "STR_MULT_INTERACT_HYPH_WARN"
msgid ""
"The interactive hyphenation is already active\n"
@@ -4486,668 +4492,668 @@ msgid ""
msgstr ""
#. 68AYK
-#: sw/inc/strings.hrc:410
+#: sw/inc/strings.hrc:411
msgctxt "STR_HYPH_TITLE"
msgid "Hyphenation"
msgstr ""
#. EDxsk
-#: sw/inc/strings.hrc:411
+#: sw/inc/strings.hrc:412
msgctxt "STR_HYPH_MISSING"
msgid "Missing hyphenation data"
msgstr ""
#. TEP66
-#: sw/inc/strings.hrc:412
+#: sw/inc/strings.hrc:413
msgctxt "STR_HYPH_MISSING"
msgid "Please install the hyphenation package for locale “%1”."
msgstr ""
#. bJFYS
-#: sw/inc/strings.hrc:413
+#: sw/inc/strings.hrc:414
msgctxt "STR_HIDDEN_CHANGES"
msgid "Track Changes"
msgstr ""
#. DcXvE
-#: sw/inc/strings.hrc:414
+#: sw/inc/strings.hrc:415
msgctxt "STR_HIDDEN_CHANGES_DETAIL"
msgid "Document contains tracked changes and recording is enabled."
msgstr ""
#. zxuEu
-#: sw/inc/strings.hrc:415
+#: sw/inc/strings.hrc:416
msgctxt "STR_HIDDEN_CHANGES_DETAIL2"
msgid "Recording of changes is enabled."
msgstr ""
#. BH7Ud
-#: sw/inc/strings.hrc:416
+#: sw/inc/strings.hrc:417
msgctxt "STR_HIDDEN_CHANGES_DETAIL3"
msgid "Document contains tracked changes."
msgstr ""
#. MEN2d
#. Undo
-#: sw/inc/strings.hrc:419
+#: sw/inc/strings.hrc:420
msgctxt "STR_CANT_UNDO"
msgid "not possible"
msgstr ""
#. 5GdxN
-#: sw/inc/strings.hrc:420
+#: sw/inc/strings.hrc:421
#, fuzzy
msgctxt "STR_DELETE_UNDO"
msgid "Delete $1"
msgstr "Eliminar R²"
#. i6vB4
-#: sw/inc/strings.hrc:421
+#: sw/inc/strings.hrc:422
#, fuzzy
msgctxt "STR_INSERT_UNDO"
msgid "Insert $1"
msgstr "Ficar R²"
#. JESFv
-#: sw/inc/strings.hrc:422
+#: sw/inc/strings.hrc:423
msgctxt "STR_OVR_UNDO"
msgid "Overwrite: $1"
msgstr ""
#. FVqpL
-#: sw/inc/strings.hrc:423
+#: sw/inc/strings.hrc:424
msgctxt "STR_SPLITNODE_UNDO"
msgid "New Paragraph"
msgstr ""
#. r3iVE
-#: sw/inc/strings.hrc:424
+#: sw/inc/strings.hrc:425
#, fuzzy
msgctxt "STR_MOVE_UNDO"
msgid "Move"
msgstr "modo"
#. Z2Ft8
-#: sw/inc/strings.hrc:425
+#: sw/inc/strings.hrc:426
msgctxt "STR_INSATTR_UNDO"
msgid "Apply attributes"
msgstr ""
#. hetuZ
-#: sw/inc/strings.hrc:426
+#: sw/inc/strings.hrc:427
msgctxt "STR_SETFMTCOLL_UNDO"
msgid "Apply Styles: $1"
msgstr ""
#. GokWu
-#: sw/inc/strings.hrc:427
+#: sw/inc/strings.hrc:428
#, fuzzy
msgctxt "STR_RESET_ATTR_UNDO"
msgid "Reset attributes"
msgstr "Atributos de texto"
#. mDgEJ
-#: sw/inc/strings.hrc:428
+#: sw/inc/strings.hrc:429
msgctxt "STR_INSFMT_ATTR_UNDO"
msgid "Change style: $1"
msgstr ""
#. onBFE
-#: sw/inc/strings.hrc:429
+#: sw/inc/strings.hrc:430
msgctxt "STR_INSERT_DOC_UNDO"
msgid "Insert file"
msgstr ""
#. WCCkF
-#: sw/inc/strings.hrc:430
+#: sw/inc/strings.hrc:431
msgctxt "STR_INSERT_GLOSSARY"
msgid "Insert AutoText"
msgstr ""
#. CyNXC
-#: sw/inc/strings.hrc:431
+#: sw/inc/strings.hrc:432
msgctxt "STR_DELBOOKMARK"
msgid "Delete bookmark: $1"
msgstr ""
#. 54y8f
-#: sw/inc/strings.hrc:432
+#: sw/inc/strings.hrc:433
msgctxt "STR_INSBOOKMARK"
msgid "Insert bookmark: $1"
msgstr ""
#. XHkEY
-#: sw/inc/strings.hrc:433
+#: sw/inc/strings.hrc:434
msgctxt "STR_SORT_TBL"
msgid "Sort table"
msgstr ""
#. gui6q
-#: sw/inc/strings.hrc:434
+#: sw/inc/strings.hrc:435
msgctxt "STR_SORT_TXT"
msgid "Sort text"
msgstr ""
#. APAMG
-#: sw/inc/strings.hrc:435
+#: sw/inc/strings.hrc:436
msgctxt "STR_INSTABLE_UNDO"
msgid "Insert table: $1$2$3"
msgstr ""
#. 4pGhz
-#: sw/inc/strings.hrc:436
+#: sw/inc/strings.hrc:437
msgctxt "STR_TEXTTOTABLE_UNDO"
msgid "Convert text -> table"
msgstr ""
#. h3EH7
-#: sw/inc/strings.hrc:437
+#: sw/inc/strings.hrc:438
msgctxt "STR_TABLETOTEXT_UNDO"
msgid "Convert table -> text"
msgstr ""
#. uKreq
-#: sw/inc/strings.hrc:438
+#: sw/inc/strings.hrc:439
msgctxt "STR_COPY_UNDO"
msgid "Copy: $1"
msgstr ""
#. BfGaZ
-#: sw/inc/strings.hrc:439
+#: sw/inc/strings.hrc:440
msgctxt "STR_REPLACE_UNDO"
msgid "Replace $1 $2 $3"
msgstr ""
#. GEC4C
-#: sw/inc/strings.hrc:440
+#: sw/inc/strings.hrc:441
msgctxt "STR_INSERT_PAGE_BREAK_UNDO"
msgid "Insert page break"
msgstr ""
#. mrWg2
-#: sw/inc/strings.hrc:441
+#: sw/inc/strings.hrc:442
msgctxt "STR_INSERT_COLUMN_BREAK_UNDO"
msgid "Insert column break"
msgstr ""
#. MGqRt
-#: sw/inc/strings.hrc:442
+#: sw/inc/strings.hrc:443
msgctxt "STR_INSERT_ENV_UNDO"
msgid "Insert Envelope"
msgstr ""
#. g8ALR
-#: sw/inc/strings.hrc:443
+#: sw/inc/strings.hrc:444
msgctxt "STR_DRAG_AND_COPY"
msgid "Copy: $1"
msgstr ""
#. qHdLG
-#: sw/inc/strings.hrc:444
+#: sw/inc/strings.hrc:445
msgctxt "STR_DRAG_AND_MOVE"
msgid "Move: $1"
msgstr ""
#. xqxPn
-#: sw/inc/strings.hrc:445
+#: sw/inc/strings.hrc:446
msgctxt "STR_INSERT_CHART"
msgid "Insert %PRODUCTNAME Chart"
msgstr ""
#. qWEVG
-#: sw/inc/strings.hrc:446
+#: sw/inc/strings.hrc:447
msgctxt "STR_INSERTFLY"
msgid "Insert frame"
msgstr ""
#. GmqXE
-#: sw/inc/strings.hrc:447
+#: sw/inc/strings.hrc:448
msgctxt "STR_DELETEFLY"
msgid "Delete frame"
msgstr ""
#. z9Eai
-#: sw/inc/strings.hrc:448
+#: sw/inc/strings.hrc:449
msgctxt "STR_AUTOFORMAT"
msgid "AutoFormat"
msgstr "Formatación automatica"
#. E6uaH
-#: sw/inc/strings.hrc:449
+#: sw/inc/strings.hrc:450
msgctxt "STR_TABLEHEADLINE"
msgid "Table heading"
msgstr ""
#. gnndv
-#: sw/inc/strings.hrc:450
+#: sw/inc/strings.hrc:451
msgctxt "STR_REPLACE"
msgid "Replace: $1 $2 $3"
msgstr ""
#. WwuFC
-#: sw/inc/strings.hrc:451
+#: sw/inc/strings.hrc:452
msgctxt "STR_INSERTSECTION"
msgid "Insert section"
msgstr ""
#. 7pzWX
-#: sw/inc/strings.hrc:452
+#: sw/inc/strings.hrc:453
msgctxt "STR_DELETESECTION"
msgid "Delete section"
msgstr ""
#. AFkoM
-#: sw/inc/strings.hrc:453
+#: sw/inc/strings.hrc:454
msgctxt "STR_CHANGESECTION"
msgid "Modify section"
msgstr ""
#. BY9gB
-#: sw/inc/strings.hrc:454
+#: sw/inc/strings.hrc:455
msgctxt "STR_CHANGEDEFATTR"
msgid "Modify default values"
msgstr ""
#. X7eMx
-#: sw/inc/strings.hrc:455
+#: sw/inc/strings.hrc:456
msgctxt "STR_REPLACE_STYLE"
msgid "Replace style: $1 $2 $3"
msgstr ""
#. EXFvJ
-#: sw/inc/strings.hrc:456
+#: sw/inc/strings.hrc:457
msgctxt "STR_DELETE_PAGE_BREAK"
msgid "Delete page break"
msgstr ""
#. kHVr9
-#: sw/inc/strings.hrc:457
+#: sw/inc/strings.hrc:458
msgctxt "STR_TEXT_CORRECTION"
msgid "Text Correction"
msgstr ""
#. ZPCQf
-#: sw/inc/strings.hrc:458
+#: sw/inc/strings.hrc:459
msgctxt "STR_OUTLINE_LR"
msgid "Promote/demote outline"
msgstr ""
#. WQJz2
-#: sw/inc/strings.hrc:459
+#: sw/inc/strings.hrc:460
msgctxt "STR_OUTLINE_UD"
msgid "Move outline"
msgstr ""
#. 3UGKP
-#: sw/inc/strings.hrc:460
+#: sw/inc/strings.hrc:461
msgctxt "STR_OUTLINE_EDIT"
msgid "Modify outline"
msgstr ""
#. RjcRH
-#: sw/inc/strings.hrc:461
+#: sw/inc/strings.hrc:462
msgctxt "STR_INSNUM"
msgid "Insert numbering"
msgstr ""
#. hbCQa
-#: sw/inc/strings.hrc:462
+#: sw/inc/strings.hrc:463
msgctxt "STR_NUMUP"
msgid "Promote level"
msgstr ""
#. 63Ec4
-#: sw/inc/strings.hrc:463
+#: sw/inc/strings.hrc:464
msgctxt "STR_NUMDOWN"
msgid "Demote level"
msgstr ""
#. FGciC
-#: sw/inc/strings.hrc:464
+#: sw/inc/strings.hrc:465
msgctxt "STR_MOVENUM"
msgid "Move paragraphs"
msgstr ""
#. WdMCK
-#: sw/inc/strings.hrc:465
+#: sw/inc/strings.hrc:466
msgctxt "STR_INSERTDRAW"
msgid "Insert drawing object: $1"
msgstr ""
#. ErB3W
-#: sw/inc/strings.hrc:466
+#: sw/inc/strings.hrc:467
msgctxt "STR_NUMORNONUM"
msgid "Number On/Off"
msgstr ""
#. rEZvN
-#: sw/inc/strings.hrc:467
+#: sw/inc/strings.hrc:468
msgctxt "STR_INC_LEFTMARGIN"
msgid "Increase Indent"
msgstr ""
#. aJxcG
-#: sw/inc/strings.hrc:468
+#: sw/inc/strings.hrc:469
msgctxt "STR_DEC_LEFTMARGIN"
msgid "Decrease indent"
msgstr ""
#. 4GP7c
-#: sw/inc/strings.hrc:469
+#: sw/inc/strings.hrc:470
msgctxt "STR_INSERTLABEL"
msgid "Insert caption: $1"
msgstr ""
#. GGFM8
-#: sw/inc/strings.hrc:470
+#: sw/inc/strings.hrc:471
msgctxt "STR_SETNUMRULESTART"
msgid "Restart numbering"
msgstr ""
#. pHfp7
-#: sw/inc/strings.hrc:471
+#: sw/inc/strings.hrc:472
msgctxt "STR_CHANGEFTN"
msgid "Modify footnote"
msgstr ""
#. Knr9y
-#: sw/inc/strings.hrc:472
+#: sw/inc/strings.hrc:473
msgctxt "STR_ACCEPT_REDLINE"
msgid "Accept change: $1"
msgstr ""
#. jAvjr
-#: sw/inc/strings.hrc:473
+#: sw/inc/strings.hrc:474
msgctxt "STR_REJECT_REDLINE"
msgid "Reject change: $1"
msgstr ""
#. uCGqy
-#: sw/inc/strings.hrc:474
+#: sw/inc/strings.hrc:475
msgctxt "STR_SPLIT_TABLE"
msgid "Split Table"
msgstr ""
#. TJCZ8
-#: sw/inc/strings.hrc:475
+#: sw/inc/strings.hrc:476
msgctxt "STR_DONTEXPAND"
msgid "Stop attribute"
msgstr ""
#. qyCiy
-#: sw/inc/strings.hrc:476
+#: sw/inc/strings.hrc:477
msgctxt "STR_AUTOCORRECT"
msgid "AutoCorrect"
msgstr ""
#. f4Jfr
-#: sw/inc/strings.hrc:477
+#: sw/inc/strings.hrc:478
msgctxt "STR_MERGE_TABLE"
msgid "Merge table"
msgstr ""
#. BLcCC
-#: sw/inc/strings.hrc:478
+#: sw/inc/strings.hrc:479
msgctxt "STR_TRANSLITERATE"
msgid "Change Case"
msgstr ""
#. BTGyD
-#: sw/inc/strings.hrc:479
+#: sw/inc/strings.hrc:480
msgctxt "STR_DELNUM"
msgid "Delete numbering"
msgstr ""
#. TMvTD
-#: sw/inc/strings.hrc:480
+#: sw/inc/strings.hrc:481
#, fuzzy
msgctxt "STR_DRAWUNDO"
msgid "Drawing objects: $1"
msgstr "Obchectos de dibuixo"
#. FG7rN
-#: sw/inc/strings.hrc:481
+#: sw/inc/strings.hrc:482
msgctxt "STR_DRAWGROUP"
msgid "Group draw objects"
msgstr ""
#. xZqoJ
-#: sw/inc/strings.hrc:482
+#: sw/inc/strings.hrc:483
msgctxt "STR_DRAWUNGROUP"
msgid "Ungroup drawing objects"
msgstr ""
#. FA3Vo
-#: sw/inc/strings.hrc:483
+#: sw/inc/strings.hrc:484
msgctxt "STR_DRAWDELETE"
msgid "Delete drawing objects"
msgstr ""
#. MbJSs
-#: sw/inc/strings.hrc:484
+#: sw/inc/strings.hrc:485
msgctxt "STR_REREAD"
msgid "Replace Image"
msgstr ""
#. 6GmVr
-#: sw/inc/strings.hrc:485
+#: sw/inc/strings.hrc:486
msgctxt "STR_DELGRF"
msgid "Delete Image"
msgstr ""
#. PAmBF
-#: sw/inc/strings.hrc:486
+#: sw/inc/strings.hrc:487
msgctxt "STR_TABLE_ATTR"
msgid "Apply table attributes"
msgstr ""
#. GA8gF
-#: sw/inc/strings.hrc:487
+#: sw/inc/strings.hrc:488
msgctxt "STR_UNDO_TABLE_AUTOFMT"
msgid "AutoFormat Table"
msgstr ""
#. AAPTL
-#: sw/inc/strings.hrc:488
+#: sw/inc/strings.hrc:489
#, fuzzy
msgctxt "STR_UNDO_TABLE_INSCOL"
msgid "Insert Column"
msgstr "~Ficar columnas"
#. tA7ss
-#: sw/inc/strings.hrc:489
+#: sw/inc/strings.hrc:490
#, fuzzy
msgctxt "STR_UNDO_TABLE_INSROW"
msgid "Insert Row"
msgstr "F~icar ringleras"
#. LAzxr
-#: sw/inc/strings.hrc:490
+#: sw/inc/strings.hrc:491
#, fuzzy
msgctxt "STR_UNDO_TABLE_DELBOX"
msgid "Delete row/column"
msgstr "Eliminar columna~s"
#. yFDYp
-#: sw/inc/strings.hrc:491
+#: sw/inc/strings.hrc:492
#, fuzzy
msgctxt "STR_UNDO_COL_DELETE"
msgid "Delete column"
msgstr "Eliminar columna~s"
#. 9SF9L
-#: sw/inc/strings.hrc:492
+#: sw/inc/strings.hrc:493
#, fuzzy
msgctxt "STR_UNDO_ROW_DELETE"
msgid "Delete row"
msgstr "Eliminar ringlera~s"
#. FnLC7
-#: sw/inc/strings.hrc:493
+#: sw/inc/strings.hrc:494
msgctxt "STR_UNDO_TABLE_SPLIT"
msgid "Split Cells"
msgstr ""
#. 3Em7B
-#: sw/inc/strings.hrc:494
+#: sw/inc/strings.hrc:495
msgctxt "STR_UNDO_TABLE_MERGE"
msgid "Merge Cells"
msgstr ""
#. 3VVmF
-#: sw/inc/strings.hrc:495
+#: sw/inc/strings.hrc:496
msgctxt "STR_TABLE_NUMFORMAT"
msgid "Format cell"
msgstr ""
#. UbSKw
-#: sw/inc/strings.hrc:496
+#: sw/inc/strings.hrc:497
msgctxt "STR_INSERT_TOX"
msgid "Insert index/table"
msgstr ""
#. szpbj
-#: sw/inc/strings.hrc:497
+#: sw/inc/strings.hrc:498
msgctxt "STR_CLEAR_TOX_RANGE"
msgid "Remove index/table"
msgstr ""
#. cN5DN
-#: sw/inc/strings.hrc:498
+#: sw/inc/strings.hrc:499
msgctxt "STR_TABLE_TBLCPYTBL"
msgid "Copy table"
msgstr ""
#. eUFgx
-#: sw/inc/strings.hrc:499
+#: sw/inc/strings.hrc:500
msgctxt "STR_TABLE_CPYTBL"
msgid "Copy table"
msgstr ""
#. TC6mz
-#: sw/inc/strings.hrc:500
+#: sw/inc/strings.hrc:501
msgctxt "STR_INS_FROM_SHADOWCRSR"
msgid "Set cursor"
msgstr ""
#. 4GStA
-#: sw/inc/strings.hrc:501
+#: sw/inc/strings.hrc:502
msgctxt "STR_UNDO_CHAIN"
msgid "Link frames"
msgstr ""
#. XV4Ap
-#: sw/inc/strings.hrc:502
+#: sw/inc/strings.hrc:503
msgctxt "STR_UNDO_UNCHAIN"
msgid "Unlink frames"
msgstr ""
#. vUJG9
-#: sw/inc/strings.hrc:503
+#: sw/inc/strings.hrc:504
msgctxt "STR_UNDO_FTNINFO"
msgid "Modify footnote options"
msgstr ""
#. AgREs
-#: sw/inc/strings.hrc:504
+#: sw/inc/strings.hrc:505
#, fuzzy
msgctxt "STR_UNDO_COMPAREDOC"
msgid "Compare Document"
msgstr "Compartir o documento"
#. kZATW
-#: sw/inc/strings.hrc:505
+#: sw/inc/strings.hrc:506
msgctxt "STR_UNDO_SETFLYFRMFMT"
msgid "Apply frame style: $1"
msgstr ""
#. 4Ae2X
-#: sw/inc/strings.hrc:506
+#: sw/inc/strings.hrc:507
msgctxt "STR_UNDO_SETRUBYATTR"
msgid "Ruby Setting"
msgstr ""
#. J4AUR
-#: sw/inc/strings.hrc:507
+#: sw/inc/strings.hrc:508
msgctxt "STR_INSERT_FOOTNOTE"
msgid "Insert footnote"
msgstr ""
#. RMgFD
-#: sw/inc/strings.hrc:508
+#: sw/inc/strings.hrc:509
msgctxt "STR_INSERT_URLBTN"
msgid "insert URL button"
msgstr ""
#. UKN7k
-#: sw/inc/strings.hrc:509
+#: sw/inc/strings.hrc:510
#, fuzzy
msgctxt "STR_INSERT_URLTXT"
msgid "Insert Hyperlink"
msgstr "Ficar como enlaz"
#. 9odT8
-#: sw/inc/strings.hrc:510
+#: sw/inc/strings.hrc:511
msgctxt "STR_DELETE_INVISIBLECNTNT"
msgid "remove invisible content"
msgstr ""
#. e6U2R
-#: sw/inc/strings.hrc:511
+#: sw/inc/strings.hrc:512
msgctxt "STR_TOXCHANGE"
msgid "Table/index changed"
msgstr ""
#. JpGh6
-#: sw/inc/strings.hrc:512
+#: sw/inc/strings.hrc:513
msgctxt "STR_START_QUOTE"
msgid "“"
msgstr "«"
#. kZoAG
-#: sw/inc/strings.hrc:513
+#: sw/inc/strings.hrc:514
msgctxt "STR_END_QUOTE"
msgid "”"
msgstr "»"
#. wNZDq
-#: sw/inc/strings.hrc:514
+#: sw/inc/strings.hrc:515
msgctxt "STR_LDOTS"
msgid "..."
msgstr ""
#. yiQgo
-#: sw/inc/strings.hrc:515
+#: sw/inc/strings.hrc:516
msgctxt "STR_MULTISEL"
msgid "multiple selection"
msgstr ""
#. qFESB
-#: sw/inc/strings.hrc:516
+#: sw/inc/strings.hrc:517
msgctxt "STR_TYPING_UNDO"
msgid "Typing: $1"
msgstr ""
#. A6HSG
-#: sw/inc/strings.hrc:517
+#: sw/inc/strings.hrc:518
msgctxt "STR_PASTE_CLIPBOARD_UNDO"
msgid "Paste clipboard"
msgstr ""
#. mfDMF
-#: sw/inc/strings.hrc:518
+#: sw/inc/strings.hrc:519
msgctxt "STR_YIELDS"
msgid "→"
msgstr "→"
#. wNRhZ
-#: sw/inc/strings.hrc:519
+#: sw/inc/strings.hrc:520
msgctxt "STR_OCCURRENCES_OF"
msgid "occurrences of"
msgstr ""
#. hHUZi
-#: sw/inc/strings.hrc:520
+#: sw/inc/strings.hrc:521
msgctxt "STR_UNDO_TABS"
msgid "One tab"
msgid_plural "$1 tabs"
@@ -5155,7 +5161,7 @@ msgstr[0] ""
msgstr[1] ""
#. eP6mC
-#: sw/inc/strings.hrc:521
+#: sw/inc/strings.hrc:522
msgctxt "STR_UNDO_NLS"
msgid "One line break"
msgid_plural "$1 line breaks"
@@ -5163,316 +5169,316 @@ msgstr[0] ""
msgstr[1] ""
#. yS3nP
-#: sw/inc/strings.hrc:522
+#: sw/inc/strings.hrc:523
#, fuzzy
msgctxt "STR_UNDO_PAGEBREAKS"
msgid "page break"
msgstr "Brinco de ~pachina"
#. Q4YVg
-#: sw/inc/strings.hrc:523
+#: sw/inc/strings.hrc:524
msgctxt "STR_UNDO_COLBRKS"
msgid "column break"
msgstr ""
#. L6qva
-#: sw/inc/strings.hrc:524
+#: sw/inc/strings.hrc:525
#, fuzzy
msgctxt "STR_UNDO_REDLINE_INSERT"
msgid "Insert $1"
msgstr "Ficar R²"
#. i8ZQo
-#: sw/inc/strings.hrc:525
+#: sw/inc/strings.hrc:526
#, fuzzy
msgctxt "STR_UNDO_REDLINE_DELETE"
msgid "Delete $1"
msgstr "Eliminar R²"
#. 5KECk
-#: sw/inc/strings.hrc:526
+#: sw/inc/strings.hrc:527
msgctxt "STR_UNDO_REDLINE_FORMAT"
msgid "Attributes changed"
msgstr ""
#. N7CUk
-#: sw/inc/strings.hrc:527
+#: sw/inc/strings.hrc:528
msgctxt "STR_UNDO_REDLINE_TABLE"
msgid "Table changed"
msgstr ""
#. DCGPF
-#: sw/inc/strings.hrc:528
+#: sw/inc/strings.hrc:529
msgctxt "STR_UNDO_REDLINE_FMTCOLL"
msgid "Style changed"
msgstr ""
#. p77WZ
-#: sw/inc/strings.hrc:529
+#: sw/inc/strings.hrc:530
msgctxt "STR_UNDO_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr ""
#. nehrq
-#: sw/inc/strings.hrc:530
+#: sw/inc/strings.hrc:531
#, fuzzy
msgctxt "STR_UNDO_REDLINE_TABLE_ROW_INSERT"
msgid "Insert Row"
msgstr "F~icar ringleras"
#. Ud4qT
-#: sw/inc/strings.hrc:531
+#: sw/inc/strings.hrc:532
#, fuzzy
msgctxt "STR_UNDO_REDLINE_TABLE_ROW_DELETE"
msgid "Delete Row"
msgstr "Eliminar ringlera~s"
#. GvxsC
-#: sw/inc/strings.hrc:532
+#: sw/inc/strings.hrc:533
msgctxt "STR_UNDO_REDLINE_TABLE_CELL_INSERT"
msgid "Insert Cell"
msgstr ""
#. ZMrVY
-#: sw/inc/strings.hrc:533
+#: sw/inc/strings.hrc:534
msgctxt "STR_UNDO_REDLINE_TABLE_CELL_DELETE"
msgid "Delete Cell"
msgstr ""
#. DqprY
-#: sw/inc/strings.hrc:534
+#: sw/inc/strings.hrc:535
msgctxt "STR_N_REDLINES"
msgid "$1 changes"
msgstr ""
#. ve5ZA
-#: sw/inc/strings.hrc:535
+#: sw/inc/strings.hrc:536
msgctxt "STR_UNDO_PAGEDESC"
msgid "Change page style: $1"
msgstr ""
#. RDkdy
-#: sw/inc/strings.hrc:536
+#: sw/inc/strings.hrc:537
msgctxt "STR_UNDO_PAGEDESC_CREATE"
msgid "Create page style: $1"
msgstr ""
#. tBVzV
-#: sw/inc/strings.hrc:537
+#: sw/inc/strings.hrc:538
msgctxt "STR_UNDO_PAGEDESC_DELETE"
msgid "Delete page style: $1"
msgstr ""
#. wzjRB
-#: sw/inc/strings.hrc:538
+#: sw/inc/strings.hrc:539
msgctxt "STR_UNDO_PAGEDESC_RENAME"
msgid "Rename page style: $1 $2 $3"
msgstr ""
#. UcTVv
-#: sw/inc/strings.hrc:539
+#: sw/inc/strings.hrc:540
msgctxt "STR_UNDO_HEADER_FOOTER"
msgid "Header/footer changed"
msgstr ""
#. tGyeC
-#: sw/inc/strings.hrc:540
+#: sw/inc/strings.hrc:541
msgctxt "STR_UNDO_FIELD"
msgid "Field changed"
msgstr ""
#. xh3dq
-#: sw/inc/strings.hrc:541
+#: sw/inc/strings.hrc:542
msgctxt "STR_UNDO_TXTFMTCOL_CREATE"
msgid "Create paragraph style: $1"
msgstr ""
#. aRf6Z
-#: sw/inc/strings.hrc:542
+#: sw/inc/strings.hrc:543
msgctxt "STR_UNDO_TXTFMTCOL_DELETE"
msgid "Delete paragraph style: $1"
msgstr ""
#. DtD6w
-#: sw/inc/strings.hrc:543
+#: sw/inc/strings.hrc:544
msgctxt "STR_UNDO_TXTFMTCOL_RENAME"
msgid "Rename paragraph style: $1 $2 $3"
msgstr ""
#. J2FcF
-#: sw/inc/strings.hrc:544
+#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_CHARFMT_CREATE"
msgid "Create character style: $1"
msgstr ""
#. FjT56
-#: sw/inc/strings.hrc:545
+#: sw/inc/strings.hrc:546
msgctxt "STR_UNDO_CHARFMT_DELETE"
msgid "Delete character style: $1"
msgstr ""
#. mT2GJ
-#: sw/inc/strings.hrc:546
+#: sw/inc/strings.hrc:547
msgctxt "STR_UNDO_CHARFMT_RENAME"
msgid "Rename character style: $1 $2 $3"
msgstr ""
#. AvK4p
-#: sw/inc/strings.hrc:547
+#: sw/inc/strings.hrc:548
msgctxt "STR_UNDO_FRMFMT_CREATE"
msgid "Create frame style: $1"
msgstr ""
#. zHLcd
-#: sw/inc/strings.hrc:548
+#: sw/inc/strings.hrc:549
msgctxt "STR_UNDO_FRMFMT_DELETE"
msgid "Delete frame style: $1"
msgstr ""
#. BUdbD
-#: sw/inc/strings.hrc:549
+#: sw/inc/strings.hrc:550
msgctxt "STR_UNDO_FRMFMT_RENAME"
msgid "Rename frame style: $1 $2 $3"
msgstr ""
#. GG9BH
-#: sw/inc/strings.hrc:550
+#: sw/inc/strings.hrc:551
msgctxt "STR_UNDO_NUMRULE_CREATE"
msgid "Create numbering style: $1"
msgstr ""
#. zYZW8
-#: sw/inc/strings.hrc:551
+#: sw/inc/strings.hrc:552
msgctxt "STR_UNDO_NUMRULE_DELETE"
msgid "Delete numbering style: $1"
msgstr ""
#. QhDFe
-#: sw/inc/strings.hrc:552
+#: sw/inc/strings.hrc:553
msgctxt "STR_UNDO_NUMRULE_RENAME"
msgid "Rename numbering style: $1 $2 $3"
msgstr ""
#. oWrh9
-#: sw/inc/strings.hrc:553
+#: sw/inc/strings.hrc:554
msgctxt "STR_UNDO_BOOKMARK_RENAME"
msgid "Rename bookmark: $1 $2 $3"
msgstr ""
#. WTcEw
-#: sw/inc/strings.hrc:554
+#: sw/inc/strings.hrc:555
msgctxt "STR_UNDO_INDEX_ENTRY_INSERT"
msgid "Insert index entry"
msgstr ""
#. fbidx
-#: sw/inc/strings.hrc:555
+#: sw/inc/strings.hrc:556
msgctxt "STR_UNDO_INDEX_ENTRY_DELETE"
msgid "Delete index entry"
msgstr ""
#. WCDy7
-#: sw/inc/strings.hrc:556
+#: sw/inc/strings.hrc:557
msgctxt "STR_FIELD"
msgid "field"
msgstr ""
#. aC9iU
-#: sw/inc/strings.hrc:557
+#: sw/inc/strings.hrc:558
msgctxt "STR_UNDO_INSERT_TEXTBOX"
msgid "text box"
msgstr ""
#. yNjem
#. undo: STR_PARAGRAPHS, string.text
-#: sw/inc/strings.hrc:559
+#: sw/inc/strings.hrc:560
msgctxt "STR_PARAGRAPHS"
msgid "Paragraphs"
msgstr "Paragrafos"
#. 9fb4z
-#: sw/inc/strings.hrc:560
+#: sw/inc/strings.hrc:561
msgctxt "STR_FRAME"
msgid "frame"
msgstr ""
#. gcZ3a
-#: sw/inc/strings.hrc:561
+#: sw/inc/strings.hrc:562
#, fuzzy
msgctxt "STR_OLE"
msgid "OLE-object"
msgstr "Obchectos OLE"
#. db5Tg
-#: sw/inc/strings.hrc:562
+#: sw/inc/strings.hrc:563
#, fuzzy
msgctxt "STR_MATH_FORMULA"
msgid "formula"
msgstr "~Formula"
#. BirkF
-#: sw/inc/strings.hrc:563
+#: sw/inc/strings.hrc:564
msgctxt "STR_CHART"
msgid "chart"
msgstr ""
#. YxCuu
-#: sw/inc/strings.hrc:564
+#: sw/inc/strings.hrc:565
#, fuzzy
msgctxt "STR_NOTE"
msgid "comment"
msgstr "Comentario"
#. CKqsU
-#: sw/inc/strings.hrc:565
+#: sw/inc/strings.hrc:566
msgctxt "STR_REFERENCE"
msgid "cross-reference"
msgstr ""
#. q9BGR
-#: sw/inc/strings.hrc:566
+#: sw/inc/strings.hrc:567
msgctxt "STR_SCRIPT"
msgid "script"
msgstr ""
#. o6FWi
-#: sw/inc/strings.hrc:567
+#: sw/inc/strings.hrc:568
msgctxt "STR_AUTHORITY_ENTRY"
msgid "bibliography entry"
msgstr ""
#. qbRLG
-#: sw/inc/strings.hrc:568
+#: sw/inc/strings.hrc:569
msgctxt "STR_SPECIALCHAR"
msgid "special character"
msgstr ""
#. qJd8G
-#: sw/inc/strings.hrc:569
+#: sw/inc/strings.hrc:570
msgctxt "STR_FOOTNOTE"
msgid "footnote"
msgstr ""
#. bKvaD
-#: sw/inc/strings.hrc:570
+#: sw/inc/strings.hrc:571
msgctxt "STR_GRAPHIC"
msgid "image"
msgstr "imachen"
#. J7CgG
-#: sw/inc/strings.hrc:571
+#: sw/inc/strings.hrc:572
msgctxt "STR_DRAWING_OBJECTS"
msgid "drawing object(s)"
msgstr "obchectos de dibuixo"
#. rYPFG
-#: sw/inc/strings.hrc:572
+#: sw/inc/strings.hrc:573
msgctxt "STR_TABLE_NAME"
msgid "table: $1$2$3"
msgstr ""
#. AtWxA
-#: sw/inc/strings.hrc:573
+#: sw/inc/strings.hrc:574
msgctxt "STR_CHAPTERS"
msgid "chapter"
msgid_plural "chapters"
@@ -5480,1680 +5486,1680 @@ msgstr[0] "capitulo"
msgstr[1] "capitulos"
#. 2JCL2
-#: sw/inc/strings.hrc:574
+#: sw/inc/strings.hrc:575
msgctxt "STR_PARAGRAPH_UNDO"
msgid "paragraph"
msgstr "paragrafo"
#. DvnGA
-#: sw/inc/strings.hrc:575
+#: sw/inc/strings.hrc:576
msgctxt "STR_PARAGRAPH_SIGN_UNDO"
msgid "Paragraph sign"
msgstr ""
#. oL9GG
-#: sw/inc/strings.hrc:576
+#: sw/inc/strings.hrc:577
msgctxt "STR_UNDO_FLYFRMFMT_TITLE"
msgid "Change object title of $1"
msgstr ""
#. 3Cv7E
-#: sw/inc/strings.hrc:577
+#: sw/inc/strings.hrc:578
msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr ""
#. rWw8U
-#: sw/inc/strings.hrc:578
+#: sw/inc/strings.hrc:579
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
msgid "Create table style: $1"
msgstr ""
#. jGxgy
-#: sw/inc/strings.hrc:579
+#: sw/inc/strings.hrc:580
msgctxt "STR_UNDO_TBLSTYLE_DELETE"
msgid "Delete table style: $1"
msgstr ""
#. 6NWP3
-#: sw/inc/strings.hrc:580
+#: sw/inc/strings.hrc:581
msgctxt "STR_UNDO_TBLSTYLE_UPDATE"
msgid "Update table style: $1"
msgstr ""
#. JegfU
-#: sw/inc/strings.hrc:581
+#: sw/inc/strings.hrc:582
msgctxt "STR_UNDO_TABLE_DELETE"
msgid "Delete table"
msgstr ""
#. KSMpJ
-#: sw/inc/strings.hrc:582
+#: sw/inc/strings.hrc:583
msgctxt "STR_UNDO_INSERT_FORM_FIELD"
msgid "Insert form field"
msgstr ""
#. 2zJmG
-#: sw/inc/strings.hrc:583
+#: sw/inc/strings.hrc:584
msgctxt "STR_DROP_DOWN_FIELD_ITEM_LIMIT"
msgid "You can specify maximum of 25 items for a drop-down form field."
msgstr ""
#. CUXeF
-#: sw/inc/strings.hrc:585
+#: sw/inc/strings.hrc:586
msgctxt "STR_ACCESS_DOC_NAME"
msgid "Document view"
msgstr ""
#. FrBrC
-#: sw/inc/strings.hrc:586
+#: sw/inc/strings.hrc:587
msgctxt "STR_ACCESS_DOC_DESC"
msgid "Document view"
msgstr ""
#. BCEgS
-#: sw/inc/strings.hrc:587
+#: sw/inc/strings.hrc:588
msgctxt "STR_ACCESS_HEADER_NAME"
msgid "Header $(ARG1)"
msgstr ""
#. zKdDR
-#: sw/inc/strings.hrc:588
+#: sw/inc/strings.hrc:589
msgctxt "STR_ACCESS_HEADER_DESC"
msgid "Header page $(ARG1)"
msgstr ""
#. NhFrV
-#: sw/inc/strings.hrc:589
+#: sw/inc/strings.hrc:590
msgctxt "STR_ACCESS_FOOTER_NAME"
msgid "Footer $(ARG1)"
msgstr ""
#. 6GJNd
-#: sw/inc/strings.hrc:590
+#: sw/inc/strings.hrc:591
msgctxt "STR_ACCESS_FOOTER_DESC"
msgid "Footer page $(ARG1)"
msgstr ""
#. VGUwW
-#: sw/inc/strings.hrc:591
+#: sw/inc/strings.hrc:592
msgctxt "STR_ACCESS_FOOTNOTE_NAME"
msgid "Footnote $(ARG1)"
msgstr ""
#. a7XMU
-#: sw/inc/strings.hrc:592
+#: sw/inc/strings.hrc:593
msgctxt "STR_ACCESS_FOOTNOTE_DESC"
msgid "Footnote $(ARG1)"
msgstr ""
#. 3ExiP
-#: sw/inc/strings.hrc:593
+#: sw/inc/strings.hrc:594
msgctxt "STR_ACCESS_ENDNOTE_NAME"
msgid "Endnote $(ARG1)"
msgstr ""
#. 8XdTm
-#: sw/inc/strings.hrc:594
+#: sw/inc/strings.hrc:595
msgctxt "STR_ACCESS_ENDNOTE_DESC"
msgid "Endnote $(ARG1)"
msgstr ""
#. 4sTZN
-#: sw/inc/strings.hrc:595
+#: sw/inc/strings.hrc:596
msgctxt "STR_ACCESS_TABLE_DESC"
msgid "$(ARG1) on page $(ARG2)"
msgstr ""
#. Z5Uy9
-#: sw/inc/strings.hrc:596
+#: sw/inc/strings.hrc:597
msgctxt "STR_ACCESS_PAGE_NAME"
msgid "Page $(ARG1)"
msgstr ""
#. CWroT
-#: sw/inc/strings.hrc:597
+#: sw/inc/strings.hrc:598
msgctxt "STR_ACCESS_PAGE_DESC"
msgid "Page: $(ARG1)"
msgstr ""
#. iwfxM
-#: sw/inc/strings.hrc:598
+#: sw/inc/strings.hrc:599
msgctxt "STR_ACCESS_ANNOTATION_AUTHOR_NAME"
msgid "Author"
msgstr "Autor"
#. sff9t
-#: sw/inc/strings.hrc:599
+#: sw/inc/strings.hrc:600
msgctxt "STR_ACCESS_ANNOTATION_DATE_NAME"
msgid "Date"
msgstr "Calendata"
#. VScXC
-#: sw/inc/strings.hrc:600
+#: sw/inc/strings.hrc:601
msgctxt "STR_ACCESS_ANNOTATION_RESOLVED_NAME"
msgid "Resolved"
msgstr ""
#. JtzA4
-#: sw/inc/strings.hrc:601
+#: sw/inc/strings.hrc:602
#, fuzzy
msgctxt "STR_ACCESS_ANNOTATION_BUTTON_NAME"
msgid "Actions"
msgstr "Acción"
#. cHWqM
-#: sw/inc/strings.hrc:602
+#: sw/inc/strings.hrc:603
msgctxt "STR_ACCESS_ANNOTATION_BUTTON_DESC"
msgid "Activate this button to open a list of actions which can be performed on this comment and other comments"
msgstr ""
#. 9YxaB
-#: sw/inc/strings.hrc:603
+#: sw/inc/strings.hrc:604
msgctxt "STR_ACCESS_PREVIEW_DOC_NAME"
msgid "Document preview"
msgstr ""
#. eYFFo
-#: sw/inc/strings.hrc:604
+#: sw/inc/strings.hrc:605
msgctxt "STR_ACCESS_PREVIEW_DOC_SUFFIX"
msgid "(Preview mode)"
msgstr ""
#. Fp7Hn
-#: sw/inc/strings.hrc:605
+#: sw/inc/strings.hrc:606
#, fuzzy
msgctxt "STR_ACCESS_DOC_WORDPROCESSING"
msgid "%PRODUCTNAME Document"
msgstr "Documentos de %PRODNAME"
#. CsQKH
-#: sw/inc/strings.hrc:607
+#: sw/inc/strings.hrc:608
msgctxt "STR_COMCORE_READERROR"
msgid "Read Error"
msgstr ""
#. ztbVu
-#: sw/inc/strings.hrc:608
+#: sw/inc/strings.hrc:609
msgctxt "STR_COMCORE_CANT_SHOW"
msgid "Image cannot be displayed."
msgstr ""
#. iJsFt
-#: sw/inc/strings.hrc:609
+#: sw/inc/strings.hrc:610
msgctxt "STR_ERROR_CLPBRD_READ"
msgid "Error reading from the clipboard."
msgstr ""
#. bXZQD
-#: sw/inc/strings.hrc:611
+#: sw/inc/strings.hrc:612
msgctxt "STR_COLUMN_BREAK"
msgid "Manual Column Break"
msgstr ""
#. 7DzNG
-#: sw/inc/strings.hrc:613
+#: sw/inc/strings.hrc:614
msgctxt "STR_CHART2_ROW_LABEL_TEXT"
msgid "Row %ROWNUMBER"
msgstr ""
#. GYFVF
-#: sw/inc/strings.hrc:614
+#: sw/inc/strings.hrc:615
msgctxt "STR_CHART2_COL_LABEL_TEXT"
msgid "Column %COLUMNLETTER"
msgstr ""
#. GGS2b
-#: sw/inc/strings.hrc:615
+#: sw/inc/strings.hrc:616
#, fuzzy
msgctxt "STR_STYLE_FAMILY_CHARACTER"
msgid "Character"
msgstr "Importar"
#. KBw5e
-#: sw/inc/strings.hrc:616
+#: sw/inc/strings.hrc:617
msgctxt "STR_STYLE_FAMILY_PARAGRAPH"
msgid "Paragraph"
msgstr "Paragrafo"
#. ERH8o
-#: sw/inc/strings.hrc:617
+#: sw/inc/strings.hrc:618
msgctxt "STR_STYLE_FAMILY_FRAME"
msgid "Frame"
msgstr ""
#. Cqjn8
-#: sw/inc/strings.hrc:618
+#: sw/inc/strings.hrc:619
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Pages"
msgstr "Pachinas"
#. FFZEr
-#: sw/inc/strings.hrc:619
+#: sw/inc/strings.hrc:620
msgctxt "STR_STYLE_FAMILY_NUMBERING"
msgid "List"
msgstr ""
#. NydLs
-#: sw/inc/strings.hrc:620
+#: sw/inc/strings.hrc:621
msgctxt "STR_STYLE_FAMILY_TABLE"
msgid "Table"
msgstr "Tabla"
#. XUhuM
-#: sw/inc/strings.hrc:621
+#: sw/inc/strings.hrc:622
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell"
msgstr ""
#. DRqDZ
-#: sw/inc/strings.hrc:623
+#: sw/inc/strings.hrc:624
msgctxt "ST_SCRIPT_ASIAN"
msgid "Asian"
msgstr ""
#. owFtq
-#: sw/inc/strings.hrc:624
+#: sw/inc/strings.hrc:625
msgctxt "ST_SCRIPT_CTL"
msgid "CTL"
msgstr ""
#. ap5iF
-#: sw/inc/strings.hrc:625
+#: sw/inc/strings.hrc:626
msgctxt "ST_SCRIPT_WESTERN"
msgid "Western"
msgstr ""
#. HD64i
-#: sw/inc/strings.hrc:626
+#: sw/inc/strings.hrc:627
#, fuzzy
msgctxt "STR_PRINTOPTUI_PRODUCTNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. q6egu
-#: sw/inc/strings.hrc:627
+#: sw/inc/strings.hrc:628
msgctxt "STR_PRINTOPTUI_CONTENTS"
msgid "Contents"
msgstr "Conteniu"
#. Ka4fM
-#: sw/inc/strings.hrc:628
+#: sw/inc/strings.hrc:629
msgctxt "STR_PRINTOPTUI_PAGE_BACKGROUND"
msgid "Page ba~ckground"
msgstr ""
#. YPEEH
-#: sw/inc/strings.hrc:629
+#: sw/inc/strings.hrc:630
msgctxt "STR_PRINTOPTUI_PICTURES"
msgid "~Images and other graphic objects"
msgstr ""
#. L6GSj
-#: sw/inc/strings.hrc:630
+#: sw/inc/strings.hrc:631
msgctxt "STR_PRINTOPTUI_HIDDEN"
msgid "Hidden te~xt"
msgstr ""
#. pXiRN
-#: sw/inc/strings.hrc:631
+#: sw/inc/strings.hrc:632
msgctxt "STR_PRINTOPTUI_TEXT_PLACEHOLDERS"
msgid "~Text placeholders"
msgstr ""
#. JBWVd
-#: sw/inc/strings.hrc:632
+#: sw/inc/strings.hrc:633
msgctxt "STR_PRINTOPTUI_FORM_CONTROLS"
msgid "Form control~s"
msgstr ""
#. X8Bfu
-#: sw/inc/strings.hrc:633
+#: sw/inc/strings.hrc:634
#, fuzzy
msgctxt "STR_PRINTOPTUI_COLOR"
msgid "Color"
msgstr "~Color"
#. kQDcq
-#: sw/inc/strings.hrc:634
+#: sw/inc/strings.hrc:635
msgctxt "STR_PRINTOPTUI_PRINT_BLACK"
msgid "Print text in blac~k"
msgstr ""
#. DEELn
-#: sw/inc/strings.hrc:635
+#: sw/inc/strings.hrc:636
msgctxt "STR_PRINTOPTUI_PAGES_TEXT"
msgid "Pages:"
msgstr ""
#. uddbB
-#: sw/inc/strings.hrc:636
+#: sw/inc/strings.hrc:637
msgctxt "STR_PRINTOPTUI_PRINT_BLANK"
msgid "Print ~automatically inserted blank pages"
msgstr ""
#. MTJt2
-#: sw/inc/strings.hrc:637
+#: sw/inc/strings.hrc:638
msgctxt "STR_PRINTOPTUI_ONLY_PAPER"
msgid "~Use only paper tray from printer preferences"
msgstr ""
#. 4uBam
-#: sw/inc/strings.hrc:638
+#: sw/inc/strings.hrc:639
msgctxt "STR_PRINTOPTUI_NONE"
msgid "None (document only)"
msgstr ""
#. pbQtA
-#: sw/inc/strings.hrc:639
+#: sw/inc/strings.hrc:640
msgctxt "STR_PRINTOPTUI_COMMENTS_ONLY"
msgid "Comments only"
msgstr ""
#. sVnbD
-#: sw/inc/strings.hrc:640
+#: sw/inc/strings.hrc:641
msgctxt "STR_PRINTOPTUI_PLACE_END"
msgid "Place at end of document"
msgstr ""
#. D4BXH
-#: sw/inc/strings.hrc:641
+#: sw/inc/strings.hrc:642
msgctxt "STR_PRINTOPTUI_PLACE_PAGE"
msgid "Place at end of page"
msgstr ""
#. 6rzab
-#: sw/inc/strings.hrc:642
+#: sw/inc/strings.hrc:643
#, fuzzy
msgctxt "STR_PRINTOPTUI_COMMENTS"
msgid "~Comments"
msgstr "~Comentarios"
#. cnqLU
-#: sw/inc/strings.hrc:643
+#: sw/inc/strings.hrc:644
msgctxt "STR_PRINTOPTUI_BROCHURE"
msgid "Broch~ure"
msgstr ""
#. t6drz
-#: sw/inc/strings.hrc:644
+#: sw/inc/strings.hrc:645
msgctxt "STR_PRINTOPTUI_LEFT_SCRIPT"
msgid "Left-to-right script"
msgstr ""
#. QgmxB
-#: sw/inc/strings.hrc:645
+#: sw/inc/strings.hrc:646
msgctxt "STR_PRINTOPTUI_RIGHT_SCRIPT"
msgid "Right-to-left script"
msgstr ""
#. t4Cm7
-#: sw/inc/strings.hrc:646
+#: sw/inc/strings.hrc:647
msgctxt "STR_PRINTOPTUI_PRINTALLPAGES"
msgid "~All Pages"
msgstr ""
#. ZDRM2
-#: sw/inc/strings.hrc:647
+#: sw/inc/strings.hrc:648
msgctxt "STR_PRINTOPTUI_PRINTPAGES"
msgid "Pa~ges:"
msgstr ""
#. rajyx
-#: sw/inc/strings.hrc:648
+#: sw/inc/strings.hrc:649
msgctxt "STR_PRINTOPTUI_PRINTSELECTION"
msgid "~Selection"
msgstr ""
#. 9EXcV
-#: sw/inc/strings.hrc:649
+#: sw/inc/strings.hrc:650
msgctxt "STR_PRINTOPTUI_PLACE_MARGINS"
msgid "Place in margins"
msgstr ""
#. NGQw3
-#: sw/inc/strings.hrc:651
+#: sw/inc/strings.hrc:652
msgctxt "STR_FORMULA_CALC"
msgid "Functions"
msgstr "Funcions"
#. D3RCG
-#: sw/inc/strings.hrc:652
+#: sw/inc/strings.hrc:653
msgctxt "STR_FORMULA_CANCEL"
msgid "Cancel"
msgstr "Cancelar"
#. 3Tg3C
-#: sw/inc/strings.hrc:653
+#: sw/inc/strings.hrc:654
msgctxt "STR_FORMULA_APPLY"
msgid "Apply"
msgstr "Aplicar"
#. UDkFb
-#: sw/inc/strings.hrc:654
+#: sw/inc/strings.hrc:655
msgctxt "STR_ACCESS_FORMULA_TOOLBAR"
msgid "Formula Tool Bar"
msgstr ""
#. Z3CB5
-#: sw/inc/strings.hrc:655
+#: sw/inc/strings.hrc:656
msgctxt "STR_ACCESS_FORMULA_TYPE"
msgid "Formula Type"
msgstr ""
#. 3CCa7
-#: sw/inc/strings.hrc:656
+#: sw/inc/strings.hrc:657
msgctxt "STR_ACCESS_FORMULA_TEXT"
msgid "Formula Text"
msgstr ""
#. FXNer
-#: sw/inc/strings.hrc:658
+#: sw/inc/strings.hrc:659
msgctxt "STR_ACCESS_TL_GLOBAL"
msgid "Global View"
msgstr ""
#. aeeRP
-#: sw/inc/strings.hrc:659
+#: sw/inc/strings.hrc:660
msgctxt "STR_ACCESS_TL_CONTENT"
msgid "Content Navigation View"
msgstr ""
#. UAExA
-#: sw/inc/strings.hrc:660
+#: sw/inc/strings.hrc:661
msgctxt "STR_OUTLINE_LEVEL"
msgid "Outline Level"
msgstr ""
#. yERK6
-#: sw/inc/strings.hrc:661
+#: sw/inc/strings.hrc:662
#, fuzzy
msgctxt "STR_DRAGMODE"
msgid "Drag Mode"
msgstr "Modo d'arrocegue"
#. PAB4k
-#: sw/inc/strings.hrc:662
+#: sw/inc/strings.hrc:663
msgctxt "STR_SEND_OUTLINE_TO_CLIPBOARD_ENTRY"
msgid "Send Outline to Clipboard"
msgstr ""
#. b5tPU
-#: sw/inc/strings.hrc:663
+#: sw/inc/strings.hrc:664
msgctxt "STR_OUTLINE_TRACKING"
msgid "Outline Tracking"
msgstr ""
#. qzXwn
-#: sw/inc/strings.hrc:664
+#: sw/inc/strings.hrc:665
msgctxt "STR_OUTLINE_TRACKING_DEFAULT"
msgid "Default"
msgstr ""
#. HGDgJ
-#: sw/inc/strings.hrc:665
+#: sw/inc/strings.hrc:666
msgctxt "STR_OUTLINE_TRACKING_FOCUS"
msgid "Focus"
msgstr ""
#. BYRpF
-#: sw/inc/strings.hrc:666
+#: sw/inc/strings.hrc:667
msgctxt "STR_OUTLINE_TRACKING_OFF"
msgid "Off"
msgstr ""
#. NGgt3
-#: sw/inc/strings.hrc:667
+#: sw/inc/strings.hrc:668
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle outline folding"
msgstr ""
#. 44jEc
-#: sw/inc/strings.hrc:668
+#: sw/inc/strings.hrc:669
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
msgstr ""
#. mnZA9
-#: sw/inc/strings.hrc:669
+#: sw/inc/strings.hrc:670
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle outline folding"
msgstr ""
#. rkD8H
-#: sw/inc/strings.hrc:670
+#: sw/inc/strings.hrc:671
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
msgstr ""
#. oBH6y
-#: sw/inc/strings.hrc:671
+#: sw/inc/strings.hrc:672
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_TOGGLE"
msgid "Toggle"
msgstr ""
#. YBDFD
-#: sw/inc/strings.hrc:672
+#: sw/inc/strings.hrc:673
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_SHOW_ALL"
msgid "Unfold All"
msgstr ""
#. Cj4js
-#: sw/inc/strings.hrc:673
+#: sw/inc/strings.hrc:674
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_HIDE_ALL"
msgid "Fold All"
msgstr ""
#. 9Fipd
-#: sw/inc/strings.hrc:675
+#: sw/inc/strings.hrc:676
msgctxt "STR_EXPANDALL"
msgid "Expand All"
msgstr ""
#. FxGVt
-#: sw/inc/strings.hrc:676
+#: sw/inc/strings.hrc:677
msgctxt "STR_COLLAPSEALL"
msgid "Collapse All"
msgstr ""
#. xvSRm
-#: sw/inc/strings.hrc:677
+#: sw/inc/strings.hrc:678
#, fuzzy
msgctxt "STR_HYPERLINK"
msgid "Insert as Hyperlink"
msgstr "Ficar como enlaz"
#. sdfGe
-#: sw/inc/strings.hrc:678
+#: sw/inc/strings.hrc:679
#, fuzzy
msgctxt "STR_LINK_REGION"
msgid "Insert as Link"
msgstr "Ficar como enlaz"
#. Suaiz
-#: sw/inc/strings.hrc:679
+#: sw/inc/strings.hrc:680
#, fuzzy
msgctxt "STR_COPY_REGION"
msgid "Insert as Copy"
msgstr "Ficar como copia"
#. VgdhT
-#: sw/inc/strings.hrc:680
+#: sw/inc/strings.hrc:681
#, fuzzy
msgctxt "STR_DISPLAY"
msgid "Display"
msgstr "Visualizar"
#. 3VXp5
-#: sw/inc/strings.hrc:681
+#: sw/inc/strings.hrc:682
#, fuzzy
msgctxt "STR_ACTIVE_VIEW"
msgid "Active Window"
msgstr "Finestra activa"
#. fAAUc
-#: sw/inc/strings.hrc:682
+#: sw/inc/strings.hrc:683
#, fuzzy
msgctxt "STR_HIDDEN"
msgid "hidden"
msgstr "amagau"
#. 3VWjq
-#: sw/inc/strings.hrc:683
+#: sw/inc/strings.hrc:684
#, fuzzy
msgctxt "STR_ACTIVE"
msgid "active"
msgstr "activo"
#. YjPvg
-#: sw/inc/strings.hrc:684
+#: sw/inc/strings.hrc:685
#, fuzzy
msgctxt "STR_INACTIVE"
msgid "inactive"
msgstr "inactivo"
#. tBPKU
-#: sw/inc/strings.hrc:685
+#: sw/inc/strings.hrc:686
#, fuzzy
msgctxt "STR_EDIT_ENTRY"
msgid "Edit..."
msgstr "~Editar..."
#. ppC87
-#: sw/inc/strings.hrc:686
+#: sw/inc/strings.hrc:687
msgctxt "STR_UPDATE"
msgid "~Update"
msgstr ""
#. 44Esc
-#: sw/inc/strings.hrc:687
+#: sw/inc/strings.hrc:688
msgctxt "STR_EDIT_CONTENT"
msgid "Edit"
msgstr ""
#. w3ZrD
-#: sw/inc/strings.hrc:688
+#: sw/inc/strings.hrc:689
msgctxt "STR_EDIT_LINK"
msgid "Edit link"
msgstr ""
#. xyPWE
-#: sw/inc/strings.hrc:689
+#: sw/inc/strings.hrc:690
msgctxt "STR_EDIT_INSERT"
msgid "Insert"
msgstr ""
#. AT9SS
-#: sw/inc/strings.hrc:690
+#: sw/inc/strings.hrc:691
#, fuzzy
msgctxt "STR_INDEX"
msgid "~Index"
msgstr "Indiz"
#. MnBLc
-#: sw/inc/strings.hrc:691
+#: sw/inc/strings.hrc:692
#, fuzzy
msgctxt "STR_FILE"
msgid "File"
msgstr "~Fichero"
#. DdBgh
-#: sw/inc/strings.hrc:692
+#: sw/inc/strings.hrc:693
msgctxt "STR_NEW_FILE"
msgid "New Document"
msgstr ""
#. aV9Uy
-#: sw/inc/strings.hrc:693
+#: sw/inc/strings.hrc:694
msgctxt "STR_INSERT_TEXT"
msgid "Text"
msgstr "Texto"
#. 5rD3D
-#: sw/inc/strings.hrc:694
+#: sw/inc/strings.hrc:695
msgctxt "STR_DELETE"
msgid "Delete"
msgstr "Eliminar"
#. 9MrsU
-#: sw/inc/strings.hrc:695
+#: sw/inc/strings.hrc:696
#, fuzzy
msgctxt "STR_DELETE_ENTRY"
msgid "~Delete"
msgstr "Eli~minar"
#. A28Rb
-#: sw/inc/strings.hrc:696
+#: sw/inc/strings.hrc:697
msgctxt "STR_UPDATE_SEL"
msgid "Selection"
msgstr "Selección"
#. gRBxA
-#: sw/inc/strings.hrc:697
+#: sw/inc/strings.hrc:698
msgctxt "STR_UPDATE_INDEX"
msgid "Indexes"
msgstr ""
#. WKwLS
-#: sw/inc/strings.hrc:698
+#: sw/inc/strings.hrc:699
msgctxt "STR_UPDATE_LINK"
msgid "Links"
msgstr ""
#. TaaJK
-#: sw/inc/strings.hrc:699
+#: sw/inc/strings.hrc:700
#, fuzzy
msgctxt "STR_UPDATE_ALL"
msgid "All"
msgstr "Totz"
#. HpMeb
-#: sw/inc/strings.hrc:701
+#: sw/inc/strings.hrc:702
#, fuzzy
msgctxt "STR_INVISIBLE"
msgid "hidden"
msgstr "amagau"
#. XcCnB
-#: sw/inc/strings.hrc:702
+#: sw/inc/strings.hrc:703
msgctxt "STR_BROKEN_LINK"
msgid "File not found: "
msgstr ""
#. UC53U
-#: sw/inc/strings.hrc:704
+#: sw/inc/strings.hrc:705
msgctxt "STR_RESOLVED"
msgid "RESOLVED"
msgstr ""
#. 3ceMF
-#: sw/inc/strings.hrc:706
+#: sw/inc/strings.hrc:707
msgctxt "STR_MARGIN_TOOLTIP_LEFT"
msgid "Left: "
msgstr ""
#. EiXF2
-#: sw/inc/strings.hrc:707
+#: sw/inc/strings.hrc:708
msgctxt "STR_MARGIN_TOOLTIP_RIGHT"
msgid ". Right: "
msgstr ""
#. UFpVa
-#: sw/inc/strings.hrc:708
+#: sw/inc/strings.hrc:709
msgctxt "STR_MARGIN_TOOLTIP_INNER"
msgid "Inner: "
msgstr ""
#. XE7Wb
-#: sw/inc/strings.hrc:709
+#: sw/inc/strings.hrc:710
msgctxt "STR_MARGIN_TOOLTIP_OUTER"
msgid ". Outer: "
msgstr ""
#. 3A8Vg
-#: sw/inc/strings.hrc:710
+#: sw/inc/strings.hrc:711
msgctxt "STR_MARGIN_TOOLTIP_TOP"
msgid ". Top: "
msgstr ""
#. dRhyZ
-#: sw/inc/strings.hrc:711
+#: sw/inc/strings.hrc:712
msgctxt "STR_MARGIN_TOOLTIP_BOT"
msgid ". Bottom: "
msgstr ""
#. XuC4Y
#. Error calculator
-#: sw/inc/strings.hrc:714
+#: sw/inc/strings.hrc:715
msgctxt "STR_POSTIT_PAGE"
msgid "Page"
msgstr "Pachina"
#. AeDYh
-#: sw/inc/strings.hrc:715
+#: sw/inc/strings.hrc:716
msgctxt "STR_POSTIT_LINE"
msgid "Line"
msgstr ""
#. kfJG6
-#: sw/inc/strings.hrc:716
+#: sw/inc/strings.hrc:717
msgctxt "STR_POSTIT_AUTHOR"
msgid "Author"
msgstr "Autor"
#. gejqG
-#: sw/inc/strings.hrc:717
+#: sw/inc/strings.hrc:718
msgctxt "STR_CALC_SYNTAX"
msgid "** Syntax Error **"
msgstr ""
#. q6dUT
-#: sw/inc/strings.hrc:718
+#: sw/inc/strings.hrc:719
msgctxt "STR_CALC_ZERODIV"
msgid "** Division by zero **"
msgstr ""
#. HSo6d
-#: sw/inc/strings.hrc:719
+#: sw/inc/strings.hrc:720
msgctxt "STR_CALC_BRACK"
msgid "** Wrong use of brackets **"
msgstr ""
#. jcNfg
-#: sw/inc/strings.hrc:720
+#: sw/inc/strings.hrc:721
msgctxt "STR_CALC_POW"
msgid "** Square function overflow **"
msgstr ""
#. C453V
-#: sw/inc/strings.hrc:721
+#: sw/inc/strings.hrc:722
msgctxt "STR_CALC_OVERFLOW"
msgid "** Overflow **"
msgstr ""
#. KEQfz
-#: sw/inc/strings.hrc:722
+#: sw/inc/strings.hrc:723
msgctxt "STR_CALC_DEFAULT"
msgid "** Error **"
msgstr ""
#. hxrg9
-#: sw/inc/strings.hrc:723
+#: sw/inc/strings.hrc:724
msgctxt "STR_CALC_ERROR"
msgid "** Expression is faulty **"
msgstr ""
#. 2yBhF
-#: sw/inc/strings.hrc:724
+#: sw/inc/strings.hrc:725
msgctxt "STR_GETREFFLD_REFITEMNOTFOUND"
msgid "Error: Reference source not found"
msgstr ""
#. jgRW7
-#: sw/inc/strings.hrc:725
+#: sw/inc/strings.hrc:726
msgctxt "STR_TEMPLATE_NONE"
msgid "None"
msgstr "Garra"
#. KRD6s
-#: sw/inc/strings.hrc:726
+#: sw/inc/strings.hrc:727
msgctxt "STR_FIELD_FIXED"
msgid "(fixed)"
msgstr ""
#. FCRUB
-#: sw/inc/strings.hrc:727
+#: sw/inc/strings.hrc:728
msgctxt "STR_DURATION_FORMAT"
msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr ""
#. ocA84
-#: sw/inc/strings.hrc:728
+#: sw/inc/strings.hrc:729
msgctxt "STR_TOI"
msgid "Alphabetical Index"
msgstr ""
#. GDCRF
-#: sw/inc/strings.hrc:729
+#: sw/inc/strings.hrc:730
#, fuzzy
msgctxt "STR_TOU"
msgid "User-Defined"
msgstr "Definiu por l'~usuario"
#. vnaNc
-#: sw/inc/strings.hrc:730
+#: sw/inc/strings.hrc:731
msgctxt "STR_TOC"
msgid "Table of Contents"
msgstr ""
#. BESjb
-#: sw/inc/strings.hrc:731
+#: sw/inc/strings.hrc:732
msgctxt "STR_TOX_AUTH"
msgid "Bibliography"
msgstr ""
#. ZFBUD
-#: sw/inc/strings.hrc:732
+#: sw/inc/strings.hrc:733
msgctxt "STR_TOX_CITATION"
msgid "Citation"
msgstr ""
#. WAs8q
-#: sw/inc/strings.hrc:733
+#: sw/inc/strings.hrc:734
msgctxt "STR_TOX_TBL"
msgid "Index of Tables"
msgstr ""
#. NFzTx
-#: sw/inc/strings.hrc:734
+#: sw/inc/strings.hrc:735
msgctxt "STR_TOX_OBJ"
msgid "Table of Objects"
msgstr ""
#. mSyms
-#: sw/inc/strings.hrc:735
+#: sw/inc/strings.hrc:736
msgctxt "STR_TOX_ILL"
msgid "Table of Figures"
msgstr ""
#. TspkU
#. SubType DocInfo
-#: sw/inc/strings.hrc:737
+#: sw/inc/strings.hrc:738
msgctxt "FLD_DOCINFO_TITEL"
msgid "Title"
msgstr "Titol"
#. ziEpC
-#: sw/inc/strings.hrc:738
+#: sw/inc/strings.hrc:739
msgctxt "FLD_DOCINFO_THEMA"
msgid "Subject"
msgstr ""
#. FCVZS
-#: sw/inc/strings.hrc:739
+#: sw/inc/strings.hrc:740
msgctxt "FLD_DOCINFO_KEYS"
msgid "Keywords"
msgstr ""
#. kHC7q
-#: sw/inc/strings.hrc:740
+#: sw/inc/strings.hrc:741
msgctxt "FLD_DOCINFO_COMMENT"
msgid "Comments"
msgstr "Comentarios"
#. i6psX
-#: sw/inc/strings.hrc:741
+#: sw/inc/strings.hrc:742
msgctxt "FLD_DOCINFO_CREATE"
msgid "Created"
msgstr ""
#. L2Bxp
-#: sw/inc/strings.hrc:742
+#: sw/inc/strings.hrc:743
msgctxt "FLD_DOCINFO_CHANGE"
msgid "Modified"
msgstr ""
#. D2YKS
-#: sw/inc/strings.hrc:743
+#: sw/inc/strings.hrc:744
msgctxt "FLD_DOCINFO_PRINT"
msgid "Last printed"
msgstr ""
#. QtuZM
-#: sw/inc/strings.hrc:744
+#: sw/inc/strings.hrc:745
msgctxt "FLD_DOCINFO_DOCNO"
msgid "Revision number"
msgstr ""
#. YDFbi
-#: sw/inc/strings.hrc:745
+#: sw/inc/strings.hrc:746
msgctxt "FLD_DOCINFO_EDIT"
msgid "Total editing time"
msgstr ""
#. EpZ9C
-#: sw/inc/strings.hrc:746
+#: sw/inc/strings.hrc:747
msgctxt "STR_PAGEDESC_NAME"
msgid "Convert $(ARG1)"
msgstr ""
#. nY3NU
-#: sw/inc/strings.hrc:747
+#: sw/inc/strings.hrc:748
msgctxt "STR_PAGEDESC_FIRSTNAME"
msgid "First convert $(ARG1)"
msgstr ""
#. eQtGV
-#: sw/inc/strings.hrc:748
+#: sw/inc/strings.hrc:749
msgctxt "STR_PAGEDESC_FOLLOWNAME"
msgid "Next convert $(ARG1)"
msgstr ""
#. aBwxC
-#: sw/inc/strings.hrc:749
+#: sw/inc/strings.hrc:750
msgctxt "STR_AUTH_TYPE_ARTICLE"
msgid "Article"
msgstr ""
#. di8ud
-#: sw/inc/strings.hrc:750
+#: sw/inc/strings.hrc:751
msgctxt "STR_AUTH_TYPE_BOOK"
msgid "Book"
msgstr ""
#. GD5KJ
-#: sw/inc/strings.hrc:751
+#: sw/inc/strings.hrc:752
msgctxt "STR_AUTH_TYPE_BOOKLET"
msgid "Brochures"
msgstr ""
#. mfFSf
-#: sw/inc/strings.hrc:752
+#: sw/inc/strings.hrc:753
msgctxt "STR_AUTH_TYPE_CONFERENCE"
msgid "Conference proceedings"
msgstr ""
#. Et2Px
-#: sw/inc/strings.hrc:753
+#: sw/inc/strings.hrc:754
msgctxt "STR_AUTH_TYPE_INBOOK"
msgid "Book excerpt"
msgstr ""
#. ys2B8
-#: sw/inc/strings.hrc:754
+#: sw/inc/strings.hrc:755
msgctxt "STR_AUTH_TYPE_INCOLLECTION"
msgid "Book excerpt with title"
msgstr ""
#. mdEqj
-#: sw/inc/strings.hrc:755
+#: sw/inc/strings.hrc:756
msgctxt "STR_AUTH_TYPE_INPROCEEDINGS"
msgid "Conference proceedings"
msgstr ""
#. jNmVD
-#: sw/inc/strings.hrc:756
+#: sw/inc/strings.hrc:757
msgctxt "STR_AUTH_TYPE_JOURNAL"
msgid "Journal"
msgstr ""
#. M3xkM
-#: sw/inc/strings.hrc:757
+#: sw/inc/strings.hrc:758
msgctxt "STR_AUTH_TYPE_MANUAL"
msgid "Techn. documentation"
msgstr ""
#. EJAj4
-#: sw/inc/strings.hrc:758
+#: sw/inc/strings.hrc:759
msgctxt "STR_AUTH_TYPE_MASTERSTHESIS"
msgid "Thesis"
msgstr ""
#. NoUCv
-#: sw/inc/strings.hrc:759
+#: sw/inc/strings.hrc:760
msgctxt "STR_AUTH_TYPE_MISC"
msgid "Miscellaneous"
msgstr ""
#. qNGGE
-#: sw/inc/strings.hrc:760
+#: sw/inc/strings.hrc:761
msgctxt "STR_AUTH_TYPE_PHDTHESIS"
msgid "Dissertation"
msgstr ""
#. L7W7R
-#: sw/inc/strings.hrc:761
+#: sw/inc/strings.hrc:762
msgctxt "STR_AUTH_TYPE_PROCEEDINGS"
msgid "Conference proceedings"
msgstr ""
#. X8bGG
-#: sw/inc/strings.hrc:762
+#: sw/inc/strings.hrc:763
msgctxt "STR_AUTH_TYPE_TECHREPORT"
msgid "Research report"
msgstr ""
#. 4dDC9
-#: sw/inc/strings.hrc:763
+#: sw/inc/strings.hrc:764
msgctxt "STR_AUTH_TYPE_UNPUBLISHED"
msgid "Unpublished"
msgstr ""
#. Gb38d
-#: sw/inc/strings.hrc:764
+#: sw/inc/strings.hrc:765
msgctxt "STR_AUTH_TYPE_EMAIL"
msgid "Email"
msgstr ""
#. 9HKD6
-#: sw/inc/strings.hrc:765
+#: sw/inc/strings.hrc:766
msgctxt "STR_AUTH_TYPE_WWW"
msgid "WWW document"
msgstr ""
#. qA449
-#: sw/inc/strings.hrc:766
+#: sw/inc/strings.hrc:767
msgctxt "STR_AUTH_TYPE_CUSTOM1"
msgid "User-defined1"
msgstr "Definiu por l'~usuario"
#. nyzxz
-#: sw/inc/strings.hrc:767
+#: sw/inc/strings.hrc:768
msgctxt "STR_AUTH_TYPE_CUSTOM2"
msgid "User-defined2"
msgstr "Definiu por l'~usuario"
#. cCFTF
-#: sw/inc/strings.hrc:768
+#: sw/inc/strings.hrc:769
msgctxt "STR_AUTH_TYPE_CUSTOM3"
msgid "User-defined3"
msgstr "Definiu por l'~usuario"
#. mrqJC
-#: sw/inc/strings.hrc:769
+#: sw/inc/strings.hrc:770
msgctxt "STR_AUTH_TYPE_CUSTOM4"
msgid "User-defined4"
msgstr "Definiu por l'~usuario"
#. fFs86
-#: sw/inc/strings.hrc:770
+#: sw/inc/strings.hrc:771
msgctxt "STR_AUTH_TYPE_CUSTOM5"
msgid "User-defined5"
msgstr "Definiu por l'~usuario"
#. nsCwi
-#: sw/inc/strings.hrc:771
+#: sw/inc/strings.hrc:772
msgctxt "STR_AUTH_FIELD_IDENTIFIER"
msgid "Short name"
msgstr ""
#. CpKgc
-#: sw/inc/strings.hrc:772
+#: sw/inc/strings.hrc:773
msgctxt "STR_AUTH_FIELD_AUTHORITY_TYPE"
msgid "Type"
msgstr "Tipo"
#. kUGDr
-#: sw/inc/strings.hrc:773
+#: sw/inc/strings.hrc:774
msgctxt "STR_AUTH_FIELD_ADDRESS"
msgid "Address"
msgstr "Adreza"
#. DquVQ
-#: sw/inc/strings.hrc:774
+#: sw/inc/strings.hrc:775
msgctxt "STR_AUTH_FIELD_ANNOTE"
msgid "Annotation"
msgstr ""
#. sduuV
-#: sw/inc/strings.hrc:775
+#: sw/inc/strings.hrc:776
msgctxt "STR_AUTH_FIELD_AUTHOR"
msgid "Author(s)"
msgstr ""
#. fXvz6
-#: sw/inc/strings.hrc:776
+#: sw/inc/strings.hrc:777
msgctxt "STR_AUTH_FIELD_BOOKTITLE"
msgid "Book title"
msgstr ""
#. c8PFE
-#: sw/inc/strings.hrc:777
+#: sw/inc/strings.hrc:778
msgctxt "STR_AUTH_FIELD_CHAPTER"
msgid "Chapter"
msgstr "Capítol"
#. GXqxF
-#: sw/inc/strings.hrc:778
+#: sw/inc/strings.hrc:779
msgctxt "STR_AUTH_FIELD_EDITION"
msgid "Edition"
msgstr ""
#. p7A3p
-#: sw/inc/strings.hrc:779
+#: sw/inc/strings.hrc:780
msgctxt "STR_AUTH_FIELD_EDITOR"
msgid "Editor"
msgstr ""
#. aAFEz
-#: sw/inc/strings.hrc:780
+#: sw/inc/strings.hrc:781
msgctxt "STR_AUTH_FIELD_HOWPUBLISHED"
msgid "Publication type"
msgstr ""
#. 8DwdJ
-#: sw/inc/strings.hrc:781
+#: sw/inc/strings.hrc:782
msgctxt "STR_AUTH_FIELD_INSTITUTION"
msgid "Institution"
msgstr ""
#. VWNxy
-#: sw/inc/strings.hrc:782
+#: sw/inc/strings.hrc:783
msgctxt "STR_AUTH_FIELD_JOURNAL"
msgid "Journal"
msgstr ""
#. Da4fW
-#: sw/inc/strings.hrc:783
+#: sw/inc/strings.hrc:784
#, fuzzy
msgctxt "STR_AUTH_FIELD_MONTH"
msgid "Month"
msgstr "mes"
#. SdSBt
-#: sw/inc/strings.hrc:784
+#: sw/inc/strings.hrc:785
msgctxt "STR_AUTH_FIELD_NOTE"
msgid "Note"
msgstr "Nota"
#. MZYpD
-#: sw/inc/strings.hrc:785
+#: sw/inc/strings.hrc:786
msgctxt "STR_AUTH_FIELD_NUMBER"
msgid "Number"
msgstr "Numero"
#. ZB7Go
-#: sw/inc/strings.hrc:786
+#: sw/inc/strings.hrc:787
#, fuzzy
msgctxt "STR_AUTH_FIELD_ORGANIZATIONS"
msgid "Organization"
msgstr "NombreOrganización"
#. C4CdP
-#: sw/inc/strings.hrc:787
+#: sw/inc/strings.hrc:788
msgctxt "STR_AUTH_FIELD_PAGES"
msgid "Page(s)"
msgstr ""
#. yFPFa
-#: sw/inc/strings.hrc:788
+#: sw/inc/strings.hrc:789
msgctxt "STR_AUTH_FIELD_PUBLISHER"
msgid "Publisher"
msgstr ""
#. d9u3p
-#: sw/inc/strings.hrc:789
+#: sw/inc/strings.hrc:790
msgctxt "STR_AUTH_FIELD_SCHOOL"
msgid "University"
msgstr ""
#. Qxsdb
-#: sw/inc/strings.hrc:790
+#: sw/inc/strings.hrc:791
msgctxt "STR_AUTH_FIELD_SERIES"
msgid "Series"
msgstr ""
#. YhXPg
-#: sw/inc/strings.hrc:791
+#: sw/inc/strings.hrc:792
msgctxt "STR_AUTH_FIELD_TITLE"
msgid "Title"
msgstr "Titol"
#. qEBhL
-#: sw/inc/strings.hrc:792
+#: sw/inc/strings.hrc:793
msgctxt "STR_AUTH_FIELD_TYPE"
msgid "Type of report"
msgstr ""
#. Sij9w
-#: sw/inc/strings.hrc:793
+#: sw/inc/strings.hrc:794
msgctxt "STR_AUTH_FIELD_VOLUME"
msgid "Volume"
msgstr ""
#. K8miv
-#: sw/inc/strings.hrc:794
+#: sw/inc/strings.hrc:795
#, fuzzy
msgctxt "STR_AUTH_FIELD_YEAR"
msgid "Year"
msgstr "anyo"
#. pFMSV
-#: sw/inc/strings.hrc:795
+#: sw/inc/strings.hrc:796
msgctxt "STR_AUTH_FIELD_URL"
msgid "URL"
msgstr ""
#. xFG3c
-#: sw/inc/strings.hrc:796
+#: sw/inc/strings.hrc:797
msgctxt "STR_AUTH_FIELD_CUSTOM1"
msgid "User-defined1"
msgstr "Definiu por l'~usuario"
#. wtDyU
-#: sw/inc/strings.hrc:797
+#: sw/inc/strings.hrc:798
msgctxt "STR_AUTH_FIELD_CUSTOM2"
msgid "User-defined2"
msgstr "Definiu por l'~usuario"
#. VH3Se
-#: sw/inc/strings.hrc:798
+#: sw/inc/strings.hrc:799
msgctxt "STR_AUTH_FIELD_CUSTOM3"
msgid "User-defined3"
msgstr "Definiu por l'~usuario"
#. twuKb
-#: sw/inc/strings.hrc:799
+#: sw/inc/strings.hrc:800
msgctxt "STR_AUTH_FIELD_CUSTOM4"
msgid "User-defined4"
msgstr "Definiu por l'~usuario"
#. WAo7Z
-#: sw/inc/strings.hrc:800
+#: sw/inc/strings.hrc:801
msgctxt "STR_AUTH_FIELD_CUSTOM5"
msgid "User-defined5"
msgstr "Definiu por l'~usuario"
#. 3r6Wg
-#: sw/inc/strings.hrc:801
+#: sw/inc/strings.hrc:802
msgctxt "STR_AUTH_FIELD_ISBN"
msgid "ISBN"
msgstr ""
#. BhDrt
-#: sw/inc/strings.hrc:802
+#: sw/inc/strings.hrc:803
msgctxt "STR_AUTH_FIELD_LOCAL_URL"
msgid "Local copy"
msgstr ""
#. eFnnx
-#: sw/inc/strings.hrc:804
+#: sw/inc/strings.hrc:805
msgctxt "STR_IDXMRK_EDIT"
msgid "Edit Index Entry"
msgstr ""
#. EHTHH
-#: sw/inc/strings.hrc:805
+#: sw/inc/strings.hrc:806
msgctxt "STR_IDXMRK_INSERT"
msgid "Insert Index Entry"
msgstr ""
#. D2gkA
-#: sw/inc/strings.hrc:806
+#: sw/inc/strings.hrc:807
msgctxt "STR_QUERY_CHANGE_AUTH_ENTRY"
msgid "The document already contains the bibliography entry but with different data. Do you want to adjust the existing entries?"
msgstr ""
#. mK84T
-#: sw/inc/strings.hrc:808
+#: sw/inc/strings.hrc:809
#, fuzzy
msgctxt "STR_COMMENTS_LABEL"
msgid "Comments"
msgstr "Comentario"
#. fwecS
-#: sw/inc/strings.hrc:809
+#: sw/inc/strings.hrc:810
#, fuzzy
msgctxt "STR_SHOW_COMMENTS"
msgid "Show comments"
msgstr "Amostrar comentarios"
#. HkUvy
-#: sw/inc/strings.hrc:810
+#: sw/inc/strings.hrc:811
msgctxt "STR_HIDE_COMMENTS"
msgid "Hide comments"
msgstr ""
#. FcmEy
-#: sw/inc/strings.hrc:812
+#: sw/inc/strings.hrc:813
msgctxt "STR_DOUBLE_SHORTNAME"
msgid "Shortcut name already exists. Please choose another name."
msgstr ""
#. VhMST
-#: sw/inc/strings.hrc:813
+#: sw/inc/strings.hrc:814
msgctxt "STR_QUERY_DELETE"
msgid "Delete AutoText?"
msgstr ""
#. E5MLr
-#: sw/inc/strings.hrc:814
+#: sw/inc/strings.hrc:815
msgctxt "STR_QUERY_DELETE_GROUP1"
msgid "Delete the category "
msgstr ""
#. qndNh
-#: sw/inc/strings.hrc:815
+#: sw/inc/strings.hrc:816
msgctxt "STR_QUERY_DELETE_GROUP2"
msgid "?"
msgstr ""
#. B6xah
-#: sw/inc/strings.hrc:816
+#: sw/inc/strings.hrc:817
msgctxt "STR_GLOSSARY"
msgid "AutoText :"
msgstr ""
#. ChetY
-#: sw/inc/strings.hrc:817
+#: sw/inc/strings.hrc:818
msgctxt "STR_SAVE_GLOSSARY"
msgid "Save AutoText"
msgstr ""
#. QxAiF
-#: sw/inc/strings.hrc:818
+#: sw/inc/strings.hrc:819
msgctxt "STR_NO_GLOSSARIES"
msgid "There is no AutoText in this file."
msgstr ""
#. sG8Xt
-#: sw/inc/strings.hrc:819
+#: sw/inc/strings.hrc:820
msgctxt "STR_MY_AUTOTEXT"
msgid "My AutoText"
msgstr ""
#. GaoqR
-#: sw/inc/strings.hrc:821
+#: sw/inc/strings.hrc:822
msgctxt "STR_NOGLOS"
msgid "AutoText for Shortcut '%1' not found."
msgstr ""
#. MwUEP
-#: sw/inc/strings.hrc:822
+#: sw/inc/strings.hrc:823
msgctxt "STR_NO_TABLE"
msgid "A table with no rows or no cells cannot be inserted"
msgstr ""
#. AawM4
-#: sw/inc/strings.hrc:823
+#: sw/inc/strings.hrc:824
msgctxt "STR_TABLE_TOO_LARGE"
msgid "The table cannot be inserted because it is too large"
msgstr ""
#. GGo8i
-#: sw/inc/strings.hrc:824
+#: sw/inc/strings.hrc:825
msgctxt "STR_ERR_INSERT_GLOS"
msgid "AutoText could not be created."
msgstr ""
#. DCPSB
-#: sw/inc/strings.hrc:825
+#: sw/inc/strings.hrc:826
msgctxt "STR_CLPBRD_FORMAT_ERROR"
msgid "Requested clipboard format is not available."
msgstr ""
#. YxCCF
-#: sw/inc/strings.hrc:826
+#: sw/inc/strings.hrc:827
msgctxt "STR_PRIVATETEXT"
msgid "%PRODUCTNAME %PRODUCTVERSION Text Document"
msgstr ""
#. 8ygN3
-#: sw/inc/strings.hrc:827
+#: sw/inc/strings.hrc:828
msgctxt "STR_PRIVATEGRAPHIC"
msgid "Image (%PRODUCTNAME %PRODUCTVERSION Text Document)"
msgstr ""
#. ewPPB
-#: sw/inc/strings.hrc:828
+#: sw/inc/strings.hrc:829
msgctxt "STR_PRIVATEOLE"
msgid "Object (%PRODUCTNAME %PRODUCTVERSION Text Document)"
msgstr ""
#. 9VEc3
-#: sw/inc/strings.hrc:829
+#: sw/inc/strings.hrc:830
msgctxt "STR_DDEFORMAT"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
#. svrE7
-#: sw/inc/strings.hrc:831
+#: sw/inc/strings.hrc:832
msgctxt "STR_DELETE_ALL_NOTES"
msgid "All Comments"
msgstr ""
#. YGNN4
-#: sw/inc/strings.hrc:832
+#: sw/inc/strings.hrc:833
msgctxt "STR_FORMAT_ALL_NOTES"
msgid "All Comments"
msgstr ""
#. GDH49
-#: sw/inc/strings.hrc:833
+#: sw/inc/strings.hrc:834
msgctxt "STR_DELETE_AUTHOR_NOTES"
msgid "Comments by "
msgstr ""
#. RwAcm
-#: sw/inc/strings.hrc:834
+#: sw/inc/strings.hrc:835
msgctxt "STR_NODATE"
msgid "(no date)"
msgstr ""
#. ytxKG
-#: sw/inc/strings.hrc:835
+#: sw/inc/strings.hrc:836
msgctxt "STR_NOAUTHOR"
msgid "(no author)"
msgstr ""
#. nAwMG
-#: sw/inc/strings.hrc:836
+#: sw/inc/strings.hrc:837
msgctxt "STR_REPLY"
msgid "Reply to $1"
msgstr ""
#. CVVa6
-#: sw/inc/strings.hrc:838
+#: sw/inc/strings.hrc:839
msgctxt "ST_TITLE_EDIT"
msgid "Edit Address Block"
msgstr ""
#. njGGA
-#: sw/inc/strings.hrc:839
+#: sw/inc/strings.hrc:840
msgctxt "ST_TITLE_MALE"
msgid "Custom Salutation (Male Recipients)"
msgstr ""
#. ZVuKY
-#: sw/inc/strings.hrc:840
+#: sw/inc/strings.hrc:841
msgctxt "ST_TITLE_FEMALE"
msgid "Custom Salutation (Female Recipients)"
msgstr ""
#. h4yuq
-#: sw/inc/strings.hrc:841
+#: sw/inc/strings.hrc:842
msgctxt "ST_SALUTATIONELEMENTS"
msgid "Salutation e~lements"
msgstr ""
#. kWhqT
-#: sw/inc/strings.hrc:842
+#: sw/inc/strings.hrc:843
msgctxt "ST_INSERTSALUTATIONFIELD"
msgid "Add to salutation"
msgstr ""
#. hvF3V
-#: sw/inc/strings.hrc:843
+#: sw/inc/strings.hrc:844
msgctxt "ST_REMOVESALUTATIONFIELD"
msgid "Remove from salutation"
msgstr ""
#. A6XaR
-#: sw/inc/strings.hrc:844
+#: sw/inc/strings.hrc:845
msgctxt "ST_DRAGSALUTATION"
msgid "1. ~Drag salutation elements into the box below"
msgstr ""
#. 4VJWL
-#: sw/inc/strings.hrc:845
+#: sw/inc/strings.hrc:846
msgctxt "ST_SALUTATION"
msgid "Salutation"
msgstr ""
#. Vj6XT
-#: sw/inc/strings.hrc:846
+#: sw/inc/strings.hrc:847
msgctxt "ST_PUNCTUATION"
msgid "Punctuation Mark"
msgstr ""
#. bafeG
-#: sw/inc/strings.hrc:847
+#: sw/inc/strings.hrc:848
msgctxt "ST_TEXT"
msgid "Text"
msgstr "Texto"
#. tt6sA
-#: sw/inc/strings.hrc:848
+#: sw/inc/strings.hrc:849
msgctxt "ST_SALUTATIONMATCHING"
msgid "Assign the fields from your data source to match the salutation elements."
msgstr ""
#. zrUsN
-#: sw/inc/strings.hrc:849
+#: sw/inc/strings.hrc:850
msgctxt "ST_SALUTATIONPREVIEW"
msgid "Salutation preview"
msgstr ""
#. 2UVE6
-#: sw/inc/strings.hrc:850
+#: sw/inc/strings.hrc:851
msgctxt "ST_ADDRESSELEMENT"
msgid "Address elements"
msgstr ""
#. Bd6pd
-#: sw/inc/strings.hrc:851
+#: sw/inc/strings.hrc:852
msgctxt "ST_SALUTATIONELEMENT"
msgid "Salutation elements"
msgstr ""
#. 9krzf
-#: sw/inc/strings.hrc:852
+#: sw/inc/strings.hrc:853
msgctxt "ST_MATCHESTO"
msgid "Matches to field:"
msgstr ""
#. oahCQ
-#: sw/inc/strings.hrc:853
+#: sw/inc/strings.hrc:854
msgctxt "ST_PREVIEW"
msgid "Preview"
msgstr ""
#. ijdxe
-#: sw/inc/strings.hrc:854
+#: sw/inc/strings.hrc:855
msgctxt "ST_DELETE_CONFIRM"
msgid "Do you want to delete this registered data source?"
msgstr ""
#. kE5C3
-#: sw/inc/strings.hrc:856
+#: sw/inc/strings.hrc:857
msgctxt "STR_NOTASSIGNED"
msgid " not yet matched "
msgstr ""
#. Y6FhG
-#: sw/inc/strings.hrc:857
+#: sw/inc/strings.hrc:858
msgctxt "STR_FILTER_ALL"
msgid "All files"
msgstr "Totz os fichers"
#. 7cNjh
-#: sw/inc/strings.hrc:858
+#: sw/inc/strings.hrc:859
msgctxt "STR_FILTER_ALL_DATA"
msgid "Address lists(*.*)"
msgstr ""
#. Ef8TY
-#: sw/inc/strings.hrc:859
+#: sw/inc/strings.hrc:860
msgctxt "STR_FILTER_SXB"
msgid "%PRODUCTNAME Base (*.odb)"
msgstr ""
#. 24opW
-#: sw/inc/strings.hrc:860
+#: sw/inc/strings.hrc:861
msgctxt "STR_FILTER_SXC"
msgid "%PRODUCTNAME Calc (*.ods;*.sxc)"
msgstr ""
#. sq73T
-#: sw/inc/strings.hrc:861
+#: sw/inc/strings.hrc:862
msgctxt "STR_FILTER_SXW"
msgid "%PRODUCTNAME Writer (*.odt;*.sxw)"
msgstr ""
#. QupGC
-#: sw/inc/strings.hrc:862
+#: sw/inc/strings.hrc:863
msgctxt "STR_FILTER_DBF"
msgid "dBase (*.dbf)"
msgstr ""
#. SzqRv
-#: sw/inc/strings.hrc:863
+#: sw/inc/strings.hrc:864
msgctxt "STR_FILTER_XLS"
msgid "Microsoft Excel (*.xls;*.xlsx)"
msgstr ""
#. zAUu8
-#: sw/inc/strings.hrc:864
+#: sw/inc/strings.hrc:865
msgctxt "STR_FILTER_DOC"
msgid "Microsoft Word (*.doc;*.docx)"
msgstr ""
#. JBZFc
-#: sw/inc/strings.hrc:865
+#: sw/inc/strings.hrc:866
msgctxt "STR_FILTER_TXT"
msgid "Plain text (*.txt)"
msgstr ""
#. CRJb6
-#: sw/inc/strings.hrc:866
+#: sw/inc/strings.hrc:867
msgctxt "STR_FILTER_CSV"
msgid "Text Comma Separated (*.csv)"
msgstr ""
#. U4H2j
-#: sw/inc/strings.hrc:867
+#: sw/inc/strings.hrc:868
msgctxt "STR_FILTER_MDB"
msgid "Microsoft Access (*.mdb;*.mde)"
msgstr ""
#. DwxF8
-#: sw/inc/strings.hrc:868
+#: sw/inc/strings.hrc:869
msgctxt "STR_FILTER_ACCDB"
msgid "Microsoft Access 2007 (*.accdb,*.accde)"
msgstr ""
#. uDNRt
-#: sw/inc/strings.hrc:869
+#: sw/inc/strings.hrc:870
msgctxt "ST_CONFIGUREMAIL"
msgid ""
"In order to be able to send mail merge documents by email, %PRODUCTNAME requires information about the email account to be used.\n"
@@ -7162,91 +7168,91 @@ msgid ""
msgstr ""
#. r9BVg
-#: sw/inc/strings.hrc:870
+#: sw/inc/strings.hrc:871
msgctxt "ST_FILTERNAME"
msgid "%PRODUCTNAME Address List (.csv)"
msgstr ""
#. jiJuZ
-#: sw/inc/strings.hrc:872
+#: sw/inc/strings.hrc:873
msgctxt "ST_STARTING"
msgid "Select Starting Document"
msgstr ""
#. FiUyK
-#: sw/inc/strings.hrc:873
+#: sw/inc/strings.hrc:874
msgctxt "ST_DOCUMENTTYPE"
msgid "Select Document Type"
msgstr ""
#. QwrpS
-#: sw/inc/strings.hrc:874
+#: sw/inc/strings.hrc:875
msgctxt "ST_ADDRESSBLOCK"
msgid "Insert Address Block"
msgstr ""
#. omRZF
-#: sw/inc/strings.hrc:875
+#: sw/inc/strings.hrc:876
msgctxt "ST_ADDRESSLIST"
msgid "Select Address List"
msgstr ""
#. YrDuD
-#: sw/inc/strings.hrc:876
+#: sw/inc/strings.hrc:877
msgctxt "ST_GREETINGSLINE"
msgid "Create Salutation"
msgstr ""
#. tTr4B
-#: sw/inc/strings.hrc:877
+#: sw/inc/strings.hrc:878
msgctxt "ST_LAYOUT"
msgid "Adjust Layout"
msgstr ""
#. S4p5M
-#: sw/inc/strings.hrc:878
+#: sw/inc/strings.hrc:879
msgctxt "ST_EXCLUDE"
msgid "Exclude recipient"
msgstr ""
#. N5YUH
-#: sw/inc/strings.hrc:879
+#: sw/inc/strings.hrc:880
msgctxt "ST_FINISH"
msgid "~Finish"
msgstr ""
#. L5FEG
-#: sw/inc/strings.hrc:880
+#: sw/inc/strings.hrc:881
msgctxt "ST_MMWTITLE"
msgid "Mail Merge Wizard"
msgstr ""
#. CEhZj
-#: sw/inc/strings.hrc:882
+#: sw/inc/strings.hrc:883
msgctxt "ST_TABLE"
msgid "Table"
msgstr "Tabla"
#. v9hEB
-#: sw/inc/strings.hrc:883
+#: sw/inc/strings.hrc:884
msgctxt "ST_QUERY"
msgid "Query"
msgstr "Consulta"
#. HxGAu
-#: sw/inc/strings.hrc:885
+#: sw/inc/strings.hrc:886
msgctxt "STR_QUERY_SPELL_CONTINUE"
msgid "Continue checking at beginning of document?"
msgstr ""
#. gE7CA
-#: sw/inc/strings.hrc:886
+#: sw/inc/strings.hrc:887
msgctxt "STR_SPELLING_COMPLETED"
msgid "The spellcheck is complete."
msgstr ""
#. 2SuqF
-#: sw/inc/strings.hrc:887
+#: sw/inc/strings.hrc:888
msgctxt "STR_DICTIONARY_UNAVAILABLE"
msgid "No dictionary available"
msgstr ""
@@ -7256,255 +7262,255 @@ msgstr ""
#. Description: strings for the types
#. --------------------------------------------------------------------
#. range document
-#: sw/inc/strings.hrc:893
+#: sw/inc/strings.hrc:894
msgctxt "STR_DATEFLD"
msgid "Date"
msgstr "Calendata"
#. V9cQp
-#: sw/inc/strings.hrc:894
+#: sw/inc/strings.hrc:895
msgctxt "STR_TIMEFLD"
msgid "Time"
msgstr "Hora"
#. 2zgWi
-#: sw/inc/strings.hrc:895
+#: sw/inc/strings.hrc:896
#, fuzzy
msgctxt "STR_FILENAMEFLD"
msgid "File name"
msgstr "Nombre d'o fichero"
#. FdSaU
-#: sw/inc/strings.hrc:896
+#: sw/inc/strings.hrc:897
msgctxt "STR_DBNAMEFLD"
msgid "Database Name"
msgstr ""
#. XZADh
-#: sw/inc/strings.hrc:897
+#: sw/inc/strings.hrc:898
msgctxt "STR_CHAPTERFLD"
msgid "Chapter"
msgstr "Capítol"
#. wYWy2
-#: sw/inc/strings.hrc:898
+#: sw/inc/strings.hrc:899
msgctxt "STR_PAGENUMBERFLD"
msgid "Page number"
msgstr ""
#. EXC6N
-#: sw/inc/strings.hrc:899
+#: sw/inc/strings.hrc:900
#, fuzzy
msgctxt "STR_DOCSTATFLD"
msgid "Statistics"
msgstr "Estatistica"
#. EW86G
-#: sw/inc/strings.hrc:900
+#: sw/inc/strings.hrc:901
msgctxt "STR_AUTHORFLD"
msgid "Author"
msgstr "Autor"
#. 5aFak
-#: sw/inc/strings.hrc:901
+#: sw/inc/strings.hrc:902
msgctxt "STR_TEMPLNAMEFLD"
msgid "Templates"
msgstr ""
#. 3wdud
-#: sw/inc/strings.hrc:902
+#: sw/inc/strings.hrc:903
msgctxt "STR_EXTUSERFLD"
msgid "Sender"
msgstr ""
#. LxZEm
#. range functions
-#: sw/inc/strings.hrc:904
+#: sw/inc/strings.hrc:905
msgctxt "STR_SETFLD"
msgid "Set variable"
msgstr ""
#. ckA26
-#: sw/inc/strings.hrc:905
+#: sw/inc/strings.hrc:906
msgctxt "STR_GETFLD"
msgid "Show variable"
msgstr ""
#. Fjzgu
-#: sw/inc/strings.hrc:906
+#: sw/inc/strings.hrc:907
msgctxt "STR_FORMELFLD"
msgid "Insert Formula"
msgstr ""
#. AXoAT
-#: sw/inc/strings.hrc:907
+#: sw/inc/strings.hrc:908
msgctxt "STR_INPUTFLD"
msgid "Input field"
msgstr ""
#. VfqNE
-#: sw/inc/strings.hrc:908
+#: sw/inc/strings.hrc:909
msgctxt "STR_SETINPUTFLD"
msgid "Input field (variable)"
msgstr ""
#. E8JAd
-#: sw/inc/strings.hrc:909
+#: sw/inc/strings.hrc:910
msgctxt "STR_USRINPUTFLD"
msgid "Input field (user)"
msgstr ""
#. 8LGEQ
-#: sw/inc/strings.hrc:910
+#: sw/inc/strings.hrc:911
msgctxt "STR_CONDTXTFLD"
msgid "Conditional text"
msgstr ""
#. jrZ7i
-#: sw/inc/strings.hrc:911
+#: sw/inc/strings.hrc:912
msgctxt "STR_DDEFLD"
msgid "DDE field"
msgstr ""
#. 9WAT9
-#: sw/inc/strings.hrc:912
+#: sw/inc/strings.hrc:913
msgctxt "STR_MACROFLD"
msgid "Execute macro"
msgstr ""
#. qEBxa
-#: sw/inc/strings.hrc:913
+#: sw/inc/strings.hrc:914
msgctxt "STR_SEQFLD"
msgid "Number range"
msgstr ""
#. ACE5s
-#: sw/inc/strings.hrc:914
+#: sw/inc/strings.hrc:915
msgctxt "STR_SETREFPAGEFLD"
msgid "Set page variable"
msgstr ""
#. ayB3N
-#: sw/inc/strings.hrc:915
+#: sw/inc/strings.hrc:916
msgctxt "STR_GETREFPAGEFLD"
msgid "Show page variable"
msgstr ""
#. DBM4P
-#: sw/inc/strings.hrc:916
+#: sw/inc/strings.hrc:917
msgctxt "STR_INTERNETFLD"
msgid "Load URL"
msgstr ""
#. LJFF5
-#: sw/inc/strings.hrc:917
+#: sw/inc/strings.hrc:918
msgctxt "STR_JUMPEDITFLD"
msgid "Placeholder"
msgstr ""
#. zZCg6
-#: sw/inc/strings.hrc:918
+#: sw/inc/strings.hrc:919
msgctxt "STR_COMBINED_CHARS"
msgid "Combine characters"
msgstr ""
#. 9MGU6
-#: sw/inc/strings.hrc:919
+#: sw/inc/strings.hrc:920
msgctxt "STR_DROPDOWN"
msgid "Input list"
msgstr ""
#. 7BWSk
#. range references
-#: sw/inc/strings.hrc:921
+#: sw/inc/strings.hrc:922
msgctxt "STR_SETREFFLD"
msgid "Set Reference"
msgstr ""
#. FJ2X8
-#: sw/inc/strings.hrc:922
+#: sw/inc/strings.hrc:923
msgctxt "STR_GETREFFLD"
msgid "Insert Reference"
msgstr ""
#. sztLS
#. range database
-#: sw/inc/strings.hrc:924
+#: sw/inc/strings.hrc:925
msgctxt "STR_DBFLD"
msgid "Mail merge fields"
msgstr ""
#. JP2DU
-#: sw/inc/strings.hrc:925
+#: sw/inc/strings.hrc:926
#, fuzzy
msgctxt "STR_DBNEXTSETFLD"
msgid "Next record"
msgstr "Rechistro siguient"
#. GizhA
-#: sw/inc/strings.hrc:926
+#: sw/inc/strings.hrc:927
msgctxt "STR_DBNUMSETFLD"
msgid "Any record"
msgstr ""
#. aMGxm
-#: sw/inc/strings.hrc:927
+#: sw/inc/strings.hrc:928
msgctxt "STR_DBSETNUMBERFLD"
msgid "Record number"
msgstr ""
#. DtYzi
-#: sw/inc/strings.hrc:928
+#: sw/inc/strings.hrc:929
msgctxt "STR_PREVPAGEFLD"
msgid "Previous page"
msgstr ""
#. UCSej
-#: sw/inc/strings.hrc:929
+#: sw/inc/strings.hrc:930
msgctxt "STR_NEXTPAGEFLD"
msgid "Next page"
msgstr ""
#. M8Fac
-#: sw/inc/strings.hrc:930
+#: sw/inc/strings.hrc:931
msgctxt "STR_HIDDENTXTFLD"
msgid "Hidden text"
msgstr ""
#. WvBF2
#. range user fields
-#: sw/inc/strings.hrc:932
+#: sw/inc/strings.hrc:933
msgctxt "STR_USERFLD"
msgid "User Field"
msgstr ""
#. XELYN
-#: sw/inc/strings.hrc:933
+#: sw/inc/strings.hrc:934
msgctxt "STR_POSTITFLD"
msgid "Note"
msgstr "Nota"
#. MB6kt
-#: sw/inc/strings.hrc:934
+#: sw/inc/strings.hrc:935
msgctxt "STR_SCRIPTFLD"
msgid "Script"
msgstr ""
#. BWU6A
-#: sw/inc/strings.hrc:935
+#: sw/inc/strings.hrc:936
msgctxt "STR_AUTHORITY"
msgid "Bibliography entry"
msgstr ""
#. 7EGCR
-#: sw/inc/strings.hrc:936
+#: sw/inc/strings.hrc:937
msgctxt "STR_HIDDENPARAFLD"
msgid "Hidden Paragraph"
msgstr ""
#. dRBRK
#. range DocumentInfo
-#: sw/inc/strings.hrc:938
+#: sw/inc/strings.hrc:939
#, fuzzy
msgctxt "STR_DOCINFOFLD"
msgid "DocInformation"
@@ -7514,89 +7520,89 @@ msgstr "Información"
#. --------------------------------------------------------------------
#. Description: SubCmd-Strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:942
+#: sw/inc/strings.hrc:943
msgctxt "FLD_DATE_STD"
msgid "Date"
msgstr "Calendata"
#. qMCEh
-#: sw/inc/strings.hrc:943
+#: sw/inc/strings.hrc:944
msgctxt "FLD_DATE_FIX"
msgid "Date (fixed)"
msgstr ""
#. AXmyw
-#: sw/inc/strings.hrc:944
+#: sw/inc/strings.hrc:945
msgctxt "FLD_TIME_STD"
msgid "Time"
msgstr "Hora"
#. 6dxVs
-#: sw/inc/strings.hrc:945
+#: sw/inc/strings.hrc:946
msgctxt "FLD_TIME_FIX"
msgid "Time (fixed)"
msgstr ""
#. U3SW8
#. SubCmd Statistic
-#: sw/inc/strings.hrc:947
+#: sw/inc/strings.hrc:948
#, fuzzy
msgctxt "FLD_STAT_TABLE"
msgid "Tables"
msgstr "Tabla"
#. 7qW4K
-#: sw/inc/strings.hrc:948
+#: sw/inc/strings.hrc:949
#, fuzzy
msgctxt "FLD_STAT_CHAR"
msgid "Characters"
msgstr "Importar"
#. zDRCp
-#: sw/inc/strings.hrc:949
+#: sw/inc/strings.hrc:950
msgctxt "FLD_STAT_WORD"
msgid "Words"
msgstr ""
#. 2wgLC
-#: sw/inc/strings.hrc:950
+#: sw/inc/strings.hrc:951
msgctxt "FLD_STAT_PARA"
msgid "Paragraphs"
msgstr "Paragrafos"
#. JPGG7
-#: sw/inc/strings.hrc:951
+#: sw/inc/strings.hrc:952
msgctxt "FLD_STAT_GRF"
msgid "Image"
msgstr "Imachen"
#. CzoFh
-#: sw/inc/strings.hrc:952
+#: sw/inc/strings.hrc:953
msgctxt "FLD_STAT_OBJ"
msgid "Objects"
msgstr "Obchectos"
#. bDG6R
-#: sw/inc/strings.hrc:953
+#: sw/inc/strings.hrc:954
msgctxt "FLD_STAT_PAGE"
msgid "Pages"
msgstr "Pachinas"
#. yqhF5
#. SubCmd DDETypes
-#: sw/inc/strings.hrc:955
+#: sw/inc/strings.hrc:956
msgctxt "FMT_DDE_HOT"
msgid "DDE automatic"
msgstr ""
#. xPP2E
-#: sw/inc/strings.hrc:956
+#: sw/inc/strings.hrc:957
msgctxt "FMT_DDE_NORMAL"
msgid "DDE manual"
msgstr ""
#. spdXd
-#: sw/inc/strings.hrc:957
+#: sw/inc/strings.hrc:958
msgctxt "FLD_INPUT_TEXT"
msgid "[Text]"
msgstr ""
@@ -7605,103 +7611,103 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: SubType Extuser
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:962
+#: sw/inc/strings.hrc:963
msgctxt "FLD_EU_FIRMA"
msgid "Company"
msgstr "Interpresa"
#. WWxTK
-#: sw/inc/strings.hrc:963
+#: sw/inc/strings.hrc:964
msgctxt "FLD_EU_VORNAME"
msgid "First Name"
msgstr "Nombres"
#. 4tdAc
-#: sw/inc/strings.hrc:964
+#: sw/inc/strings.hrc:965
msgctxt "FLD_EU_NAME"
msgid "Last Name"
msgstr "Apellidos"
#. xTV7n
-#: sw/inc/strings.hrc:965
+#: sw/inc/strings.hrc:966
msgctxt "FLD_EU_ABK"
msgid "Initials"
msgstr ""
#. AKD3k
-#: sw/inc/strings.hrc:966
+#: sw/inc/strings.hrc:967
msgctxt "FLD_EU_STRASSE"
msgid "Street"
msgstr ""
#. ErMju
-#: sw/inc/strings.hrc:967
+#: sw/inc/strings.hrc:968
msgctxt "FLD_EU_LAND"
msgid "Country"
msgstr "País"
#. ESbkx
-#: sw/inc/strings.hrc:968
+#: sw/inc/strings.hrc:969
msgctxt "FLD_EU_PLZ"
msgid "Zip code"
msgstr ""
#. WDAc2
-#: sw/inc/strings.hrc:969
+#: sw/inc/strings.hrc:970
msgctxt "FLD_EU_ORT"
msgid "City"
msgstr "Ciudat"
#. pg7MV
-#: sw/inc/strings.hrc:970
+#: sw/inc/strings.hrc:971
msgctxt "FLD_EU_TITEL"
msgid "Title"
msgstr "Titol"
#. DwLhZ
-#: sw/inc/strings.hrc:971
+#: sw/inc/strings.hrc:972
msgctxt "FLD_EU_POS"
msgid "Position"
msgstr "Posición"
#. LDTdu
-#: sw/inc/strings.hrc:972
+#: sw/inc/strings.hrc:973
msgctxt "FLD_EU_TELPRIV"
msgid "Tel. (Home)"
msgstr ""
#. JBZyj
-#: sw/inc/strings.hrc:973
+#: sw/inc/strings.hrc:974
msgctxt "FLD_EU_TELFIRMA"
msgid "Tel. (Work)"
msgstr ""
#. 5EmGH
-#: sw/inc/strings.hrc:974
+#: sw/inc/strings.hrc:975
msgctxt "FLD_EU_FAX"
msgid "Fax"
msgstr ""
#. AtN9J
-#: sw/inc/strings.hrc:975
+#: sw/inc/strings.hrc:976
msgctxt "FLD_EU_EMAIL"
msgid "Email"
msgstr ""
#. 6GBRm
-#: sw/inc/strings.hrc:976
+#: sw/inc/strings.hrc:977
msgctxt "FLD_EU_STATE"
msgid "State"
msgstr "Estau/Provincia"
#. pbrdQ
-#: sw/inc/strings.hrc:977
+#: sw/inc/strings.hrc:978
msgctxt "FLD_PAGEREF_OFF"
msgid "off"
msgstr ""
#. wC8SE
-#: sw/inc/strings.hrc:978
+#: sw/inc/strings.hrc:979
msgctxt "FLD_PAGEREF_ON"
msgid "on"
msgstr "o"
@@ -7711,39 +7717,39 @@ msgstr "o"
#. Description: path name
#. --------------------------------------------------------------------
#. Format FileName
-#: sw/inc/strings.hrc:983
+#: sw/inc/strings.hrc:984
#, fuzzy
msgctxt "FMT_FF_NAME"
msgid "File name"
msgstr "Nombre d'o fichero"
#. RBpz3
-#: sw/inc/strings.hrc:984
+#: sw/inc/strings.hrc:985
msgctxt "FMT_FF_NAME_NOEXT"
msgid "File name without extension"
msgstr ""
#. BCzy8
-#: sw/inc/strings.hrc:985
+#: sw/inc/strings.hrc:986
#, fuzzy
msgctxt "FMT_FF_PATHNAME"
msgid "Path/File name"
msgstr "Rota/Nombre d'o fichero"
#. ChFwM
-#: sw/inc/strings.hrc:986
+#: sw/inc/strings.hrc:987
msgctxt "FMT_FF_PATH"
msgid "Path"
msgstr ""
#. R6KrL
-#: sw/inc/strings.hrc:987
+#: sw/inc/strings.hrc:988
msgctxt "FMT_FF_UI_NAME"
msgid "Template name"
msgstr ""
#. ANM2H
-#: sw/inc/strings.hrc:988
+#: sw/inc/strings.hrc:989
#, fuzzy
msgctxt "FMT_FF_UI_RANGE"
msgid "Category"
@@ -7753,25 +7759,25 @@ msgstr "ID Categoría"
#. --------------------------------------------------------------------
#. Description: format chapter
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:992
+#: sw/inc/strings.hrc:993
msgctxt "FMT_CHAPTER_NAME"
msgid "Chapter name"
msgstr ""
#. tnLqE
-#: sw/inc/strings.hrc:993
+#: sw/inc/strings.hrc:994
msgctxt "FMT_CHAPTER_NO"
msgid "Chapter number"
msgstr ""
#. qGEAs
-#: sw/inc/strings.hrc:994
+#: sw/inc/strings.hrc:995
msgctxt "FMT_CHAPTER_NO_NOSEPARATOR"
msgid "Chapter number without separator"
msgstr ""
#. WFA5R
-#: sw/inc/strings.hrc:995
+#: sw/inc/strings.hrc:996
msgctxt "FMT_CHAPTER_NAMENO"
msgid "Chapter number and name"
msgstr ""
@@ -7780,56 +7786,56 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: formats
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:999
+#: sw/inc/strings.hrc:1000
msgctxt "FMT_NUM_ABC"
msgid "A B C"
msgstr ""
#. jm7G7
-#: sw/inc/strings.hrc:1000
+#: sw/inc/strings.hrc:1001
msgctxt "FMT_NUM_SABC"
msgid "a b c"
msgstr ""
#. ETgy7
-#: sw/inc/strings.hrc:1001
+#: sw/inc/strings.hrc:1002
msgctxt "FMT_NUM_ABC_N"
msgid "A .. AA .. AAA"
msgstr ""
#. m84Fb
-#: sw/inc/strings.hrc:1002
+#: sw/inc/strings.hrc:1003
msgctxt "FMT_NUM_SABC_N"
msgid "a .. aa .. aaa"
msgstr ""
#. d9YtB
-#: sw/inc/strings.hrc:1003
+#: sw/inc/strings.hrc:1004
msgctxt "FMT_NUM_ROMAN"
msgid "Roman (I II III)"
msgstr ""
#. vA5RT
-#: sw/inc/strings.hrc:1004
+#: sw/inc/strings.hrc:1005
msgctxt "FMT_NUM_SROMAN"
msgid "Roman (i ii iii)"
msgstr ""
#. 3ZDgc
-#: sw/inc/strings.hrc:1005
+#: sw/inc/strings.hrc:1006
msgctxt "FMT_NUM_ARABIC"
msgid "Arabic (1 2 3)"
msgstr ""
#. CHmdp
-#: sw/inc/strings.hrc:1006
+#: sw/inc/strings.hrc:1007
#, fuzzy
msgctxt "FMT_NUM_PAGEDESC"
msgid "As Page Style"
msgstr "Estilo d'a fuella"
#. xBKwZ
-#: sw/inc/strings.hrc:1007
+#: sw/inc/strings.hrc:1008
msgctxt "FMT_NUM_PAGESPECIAL"
msgid "Text"
msgstr "Texto"
@@ -7838,13 +7844,13 @@ msgstr "Texto"
#. --------------------------------------------------------------------
#. Description: Author
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1011
+#: sw/inc/strings.hrc:1012
msgctxt "FMT_AUTHOR_NAME"
msgid "Name"
msgstr "Nombre"
#. RCnZb
-#: sw/inc/strings.hrc:1012
+#: sw/inc/strings.hrc:1013
msgctxt "FMT_AUTHOR_SCUT"
msgid "Initials"
msgstr ""
@@ -7853,50 +7859,50 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: set variable
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1016
+#: sw/inc/strings.hrc:1017
msgctxt "FMT_SETVAR_SYS"
msgid "System"
msgstr ""
#. qKXLW
-#: sw/inc/strings.hrc:1017
+#: sw/inc/strings.hrc:1018
msgctxt "FMT_SETVAR_TEXT"
msgid "Text"
msgstr "Texto"
#. E86ZD
-#: sw/inc/strings.hrc:1018
+#: sw/inc/strings.hrc:1019
msgctxt "FMT_GETVAR_NAME"
msgid "Name"
msgstr "Nombre"
#. FB3Rp
-#: sw/inc/strings.hrc:1019
+#: sw/inc/strings.hrc:1020
msgctxt "FMT_GETVAR_TEXT"
msgid "Text"
msgstr "Texto"
#. KiBai
-#: sw/inc/strings.hrc:1020
+#: sw/inc/strings.hrc:1021
#, fuzzy
msgctxt "FMT_USERVAR_CMD"
msgid "Formula"
msgstr "~Formula"
#. 9AsdS
-#: sw/inc/strings.hrc:1021
+#: sw/inc/strings.hrc:1022
msgctxt "FMT_USERVAR_TEXT"
msgid "Text"
msgstr "Texto"
#. GokUf
-#: sw/inc/strings.hrc:1022
+#: sw/inc/strings.hrc:1023
msgctxt "FMT_DBFLD_DB"
msgid "Database"
msgstr "Base de datos"
#. UBADL
-#: sw/inc/strings.hrc:1023
+#: sw/inc/strings.hrc:1024
msgctxt "FMT_DBFLD_SYS"
msgid "System"
msgstr ""
@@ -7905,19 +7911,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: storage fields
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1027
+#: sw/inc/strings.hrc:1028
msgctxt "FMT_REG_AUTHOR"
msgid "Author"
msgstr "Autor"
#. aqFVp
-#: sw/inc/strings.hrc:1028
+#: sw/inc/strings.hrc:1029
msgctxt "FMT_REG_TIME"
msgid "Time"
msgstr "Hora"
#. FaZKx
-#: sw/inc/strings.hrc:1029
+#: sw/inc/strings.hrc:1030
msgctxt "FMT_REG_DATE"
msgid "Date"
msgstr "Calendata"
@@ -7926,79 +7932,79 @@ msgstr "Calendata"
#. --------------------------------------------------------------------
#. Description: formats references
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1033
+#: sw/inc/strings.hrc:1034
msgctxt "FMT_REF_TEXT"
msgid "Referenced text"
msgstr ""
#. eeSAu
-#: sw/inc/strings.hrc:1034
+#: sw/inc/strings.hrc:1035
msgctxt "FMT_REF_PAGE"
msgid "Page number (unstyled)"
msgstr ""
#. MaB3q
-#: sw/inc/strings.hrc:1035
+#: sw/inc/strings.hrc:1036
msgctxt "FMT_REF_CHAPTER"
msgid "Chapter"
msgstr "Capítol"
#. VBMno
-#: sw/inc/strings.hrc:1036
+#: sw/inc/strings.hrc:1037
msgctxt "FMT_REF_UPDOWN"
msgid "“Above”/“Below”"
msgstr ""
#. 96emU
-#: sw/inc/strings.hrc:1037
+#: sw/inc/strings.hrc:1038
msgctxt "FMT_REF_PAGE_PGDSC"
msgid "Page number (styled)"
msgstr ""
#. CQitd
-#: sw/inc/strings.hrc:1038
+#: sw/inc/strings.hrc:1039
msgctxt "FMT_REF_ONLYNUMBER"
msgid "Category and Number"
msgstr ""
#. BsvCn
-#: sw/inc/strings.hrc:1039
+#: sw/inc/strings.hrc:1040
msgctxt "FMT_REF_ONLYCAPTION"
msgid "Caption Text"
msgstr ""
#. P7wiX
-#: sw/inc/strings.hrc:1040
+#: sw/inc/strings.hrc:1041
msgctxt "FMT_REF_ONLYSEQNO"
msgid "Numbering"
msgstr ""
#. QBGit
-#: sw/inc/strings.hrc:1041
+#: sw/inc/strings.hrc:1042
msgctxt "FMT_REF_NUMBER"
msgid "Number"
msgstr "Numero"
#. CGkV7
-#: sw/inc/strings.hrc:1042
+#: sw/inc/strings.hrc:1043
msgctxt "FMT_REF_NUMBER_NO_CONTEXT"
msgid "Number (no context)"
msgstr ""
#. XgSb3
-#: sw/inc/strings.hrc:1043
+#: sw/inc/strings.hrc:1044
msgctxt "FMT_REF_NUMBER_FULL_CONTEXT"
msgid "Number (full context)"
msgstr ""
#. zQTNF
-#: sw/inc/strings.hrc:1045
+#: sw/inc/strings.hrc:1046
msgctxt "FMT_REF_WITH_LOWERCASE_HU_ARTICLE"
msgid "Article a/az + "
msgstr ""
#. 97Vs7
-#: sw/inc/strings.hrc:1046
+#: sw/inc/strings.hrc:1047
msgctxt "FMT_REF_WITH_UPPERCASE_HU_ARTICLE"
msgid "Article A/Az + "
msgstr ""
@@ -8007,31 +8013,31 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: placeholder
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1050
+#: sw/inc/strings.hrc:1051
msgctxt "FMT_MARK_TEXT"
msgid "Text"
msgstr "Texto"
#. rAQoE
-#: sw/inc/strings.hrc:1051
+#: sw/inc/strings.hrc:1052
msgctxt "FMT_MARK_TABLE"
msgid "Table"
msgstr "Tabla"
#. biUa2
-#: sw/inc/strings.hrc:1052
+#: sw/inc/strings.hrc:1053
msgctxt "FMT_MARK_FRAME"
msgid "Frame"
msgstr ""
#. 7mkZb
-#: sw/inc/strings.hrc:1053
+#: sw/inc/strings.hrc:1054
msgctxt "FMT_MARK_GRAFIC"
msgid "Image"
msgstr "Imachen"
#. GgbFY
-#: sw/inc/strings.hrc:1054
+#: sw/inc/strings.hrc:1055
msgctxt "FMT_MARK_OLE"
msgid "Object"
msgstr "Obchecto"
@@ -8040,1557 +8046,1557 @@ msgstr "Obchecto"
#. --------------------------------------------------------------------
#. Description: ExchangeStrings for Edit/NameFT
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1058
+#: sw/inc/strings.hrc:1059
msgctxt "STR_COND"
msgid "~Condition"
msgstr ""
#. X9cqJ
-#: sw/inc/strings.hrc:1059
+#: sw/inc/strings.hrc:1060
msgctxt "STR_TEXT"
msgid "Then, Else"
msgstr ""
#. bo8yF
-#: sw/inc/strings.hrc:1060
+#: sw/inc/strings.hrc:1061
msgctxt "STR_DDE_CMD"
msgid "DDE Statement"
msgstr ""
#. LixXA
-#: sw/inc/strings.hrc:1061
+#: sw/inc/strings.hrc:1062
msgctxt "STR_INSTEXT"
msgid "Hidden t~ext"
msgstr ""
#. EX3bJ
-#: sw/inc/strings.hrc:1062
+#: sw/inc/strings.hrc:1063
msgctxt "STR_MACNAME"
msgid "~Macro name"
msgstr ""
#. dNZtd
-#: sw/inc/strings.hrc:1063
+#: sw/inc/strings.hrc:1064
msgctxt "STR_PROMPT"
msgid "~Reference"
msgstr ""
#. bfRPa
-#: sw/inc/strings.hrc:1064
+#: sw/inc/strings.hrc:1065
#, fuzzy
msgctxt "STR_COMBCHRS_FT"
msgid "Ch~aracters"
msgstr "Importar"
#. j2G5G
-#: sw/inc/strings.hrc:1065
+#: sw/inc/strings.hrc:1066
msgctxt "STR_OFFSET"
msgid "O~ffset"
msgstr ""
#. vEgGo
-#: sw/inc/strings.hrc:1066
+#: sw/inc/strings.hrc:1067
msgctxt "STR_VALUE"
msgid "Value"
msgstr "Valura"
#. YQesU
-#: sw/inc/strings.hrc:1067
+#: sw/inc/strings.hrc:1068
#, fuzzy
msgctxt "STR_FORMULA"
msgid "Formula"
msgstr "~Formula"
#. Eq5xq
-#: sw/inc/strings.hrc:1068
+#: sw/inc/strings.hrc:1069
#, fuzzy
msgctxt "STR_CUSTOM_FIELD"
msgid "Custom"
msgstr "Personalizau 1"
#. 32NzA
-#: sw/inc/strings.hrc:1070
+#: sw/inc/strings.hrc:1071
msgctxt "STR_CUSTOM_LABEL"
msgid "[User]"
msgstr ""
#. dYQTU
-#: sw/inc/strings.hrc:1072
+#: sw/inc/strings.hrc:1073
msgctxt "STR_HDIST"
msgid "H. Pitch"
msgstr ""
#. xELZY
-#: sw/inc/strings.hrc:1073
+#: sw/inc/strings.hrc:1074
msgctxt "STR_VDIST"
msgid "V. Pitch"
msgstr ""
#. F9Ldz
-#: sw/inc/strings.hrc:1074
+#: sw/inc/strings.hrc:1075
msgctxt "STR_WIDTH"
msgid "Width"
msgstr ""
#. rdxcb
-#: sw/inc/strings.hrc:1075
+#: sw/inc/strings.hrc:1076
msgctxt "STR_HEIGHT"
msgid "Height"
msgstr ""
#. DQm2h
-#: sw/inc/strings.hrc:1076
+#: sw/inc/strings.hrc:1077
msgctxt "STR_LEFT"
msgid "Left margin"
msgstr ""
#. imDMU
-#: sw/inc/strings.hrc:1077
+#: sw/inc/strings.hrc:1078
msgctxt "STR_UPPER"
msgid "Top margin"
msgstr ""
#. ayQss
-#: sw/inc/strings.hrc:1078
+#: sw/inc/strings.hrc:1079
#, fuzzy
msgctxt "STR_COLS"
msgid "Columns"
msgstr "Columna"
#. 3moLd
-#: sw/inc/strings.hrc:1079
+#: sw/inc/strings.hrc:1080
#, fuzzy
msgctxt "STR_ROWS"
msgid "Rows"
msgstr "Ringlera"
#. XWMSH
-#: sw/inc/strings.hrc:1081
+#: sw/inc/strings.hrc:1082
msgctxt "STR_WORDCOUNT_HINT"
msgid "Word and character count. Click to open Word Count dialog."
msgstr ""
#. nxGNq
-#: sw/inc/strings.hrc:1082
+#: sw/inc/strings.hrc:1083
msgctxt "STR_VIEWLAYOUT_ONE"
msgid "Single-page view"
msgstr ""
#. 57ju6
-#: sw/inc/strings.hrc:1083
+#: sw/inc/strings.hrc:1084
msgctxt "STR_VIEWLAYOUT_MULTI"
msgid "Multiple-page view"
msgstr ""
#. tbig8
-#: sw/inc/strings.hrc:1084
+#: sw/inc/strings.hrc:1085
msgctxt "STR_VIEWLAYOUT_BOOK"
msgid "Book view"
msgstr ""
#. xBHUG
-#: sw/inc/strings.hrc:1085
+#: sw/inc/strings.hrc:1086
msgctxt "STR_BOOKCTRL_HINT"
msgid "Page number in document. Click to open Go to Page dialog or right-click for bookmark list."
msgstr ""
#. XaF3v
-#: sw/inc/strings.hrc:1086
+#: sw/inc/strings.hrc:1087
msgctxt "STR_BOOKCTRL_HINT_EXTENDED"
msgid "Page number in document (Page number on printed document). Click to open Go to Page dialog."
msgstr ""
#. EWtd2
-#: sw/inc/strings.hrc:1087
+#: sw/inc/strings.hrc:1088
msgctxt "STR_TMPLCTRL_HINT"
msgid "Page Style. Right-click to change style or click to open Style dialog."
msgstr ""
#. jQAym
#. Strings for textual attributes.
-#: sw/inc/strings.hrc:1090
+#: sw/inc/strings.hrc:1091
msgctxt "STR_DROP_OVER"
msgid "Drop Caps over"
msgstr ""
#. PLAVt
-#: sw/inc/strings.hrc:1091
+#: sw/inc/strings.hrc:1092
#, fuzzy
msgctxt "STR_DROP_LINES"
msgid "rows"
msgstr "Ringlera"
#. sg6Za
-#: sw/inc/strings.hrc:1092
+#: sw/inc/strings.hrc:1093
msgctxt "STR_NO_DROP_LINES"
msgid "No Drop Caps"
msgstr ""
#. gueRC
-#: sw/inc/strings.hrc:1093
+#: sw/inc/strings.hrc:1094
#, fuzzy
msgctxt "STR_NO_PAGEDESC"
msgid "No page break"
msgstr "Brinco de ~pachina"
#. G3CQN
-#: sw/inc/strings.hrc:1094
+#: sw/inc/strings.hrc:1095
msgctxt "STR_NO_MIRROR"
msgid "Don't mirror"
msgstr ""
#. MVEk8
-#: sw/inc/strings.hrc:1095
+#: sw/inc/strings.hrc:1096
msgctxt "STR_VERT_MIRROR"
msgid "Flip vertically"
msgstr ""
#. Dns6t
-#: sw/inc/strings.hrc:1096
+#: sw/inc/strings.hrc:1097
msgctxt "STR_HORI_MIRROR"
msgid "Flip horizontal"
msgstr ""
#. ZUKCy
-#: sw/inc/strings.hrc:1097
+#: sw/inc/strings.hrc:1098
msgctxt "STR_BOTH_MIRROR"
msgid "Horizontal and Vertical Flip"
msgstr ""
#. LoQic
-#: sw/inc/strings.hrc:1098
+#: sw/inc/strings.hrc:1099
msgctxt "STR_MIRROR_TOGGLE"
msgid "+ mirror horizontal on even pages"
msgstr ""
#. kbnTf
-#: sw/inc/strings.hrc:1099
+#: sw/inc/strings.hrc:1100
msgctxt "STR_CHARFMT"
msgid "Character Style"
msgstr ""
#. D99ZJ
-#: sw/inc/strings.hrc:1100
+#: sw/inc/strings.hrc:1101
msgctxt "STR_NO_CHARFMT"
msgid "No Character Style"
msgstr ""
#. fzG3P
-#: sw/inc/strings.hrc:1101
+#: sw/inc/strings.hrc:1102
msgctxt "STR_FOOTER"
msgid "Footer"
msgstr "Piet de pachina"
#. 9RCsQ
-#: sw/inc/strings.hrc:1102
+#: sw/inc/strings.hrc:1103
msgctxt "STR_NO_FOOTER"
msgid "No footer"
msgstr ""
#. zFTin
-#: sw/inc/strings.hrc:1103
+#: sw/inc/strings.hrc:1104
msgctxt "STR_HEADER"
msgid "Header"
msgstr "Capitero"
#. PcYEB
-#: sw/inc/strings.hrc:1104
+#: sw/inc/strings.hrc:1105
msgctxt "STR_NO_HEADER"
msgid "No header"
msgstr ""
#. 8Jgfg
-#: sw/inc/strings.hrc:1105
+#: sw/inc/strings.hrc:1106
msgctxt "STR_SURROUND_IDEAL"
msgid "Optimal"
msgstr ""
#. HEuGy
-#: sw/inc/strings.hrc:1106
+#: sw/inc/strings.hrc:1107
msgctxt "STR_SURROUND_NONE"
msgid "None"
msgstr "Garra"
#. 4tA4q
-#: sw/inc/strings.hrc:1107
+#: sw/inc/strings.hrc:1108
msgctxt "STR_SURROUND_THROUGH"
msgid "Through"
msgstr ""
#. ypvD6
-#: sw/inc/strings.hrc:1108
+#: sw/inc/strings.hrc:1109
msgctxt "STR_SURROUND_PARALLEL"
msgid "Parallel"
msgstr ""
#. hyEQ5
-#: sw/inc/strings.hrc:1109
+#: sw/inc/strings.hrc:1110
msgctxt "STR_SURROUND_LEFT"
msgid "Before"
msgstr ""
#. bGBtQ
-#: sw/inc/strings.hrc:1110
+#: sw/inc/strings.hrc:1111
msgctxt "STR_SURROUND_RIGHT"
msgid "After"
msgstr ""
#. SrG3D
-#: sw/inc/strings.hrc:1111
+#: sw/inc/strings.hrc:1112
msgctxt "STR_SURROUND_ANCHORONLY"
msgid "(Anchor only)"
msgstr ""
#. 9Ywzb
-#: sw/inc/strings.hrc:1112
+#: sw/inc/strings.hrc:1113
msgctxt "STR_FRM_WIDTH"
msgid "Width:"
msgstr ""
#. 2GYT7
-#: sw/inc/strings.hrc:1113
+#: sw/inc/strings.hrc:1114
msgctxt "STR_FRM_FIXEDHEIGHT"
msgid "Fixed height:"
msgstr ""
#. QrFMi
-#: sw/inc/strings.hrc:1114
+#: sw/inc/strings.hrc:1115
msgctxt "STR_FRM_MINHEIGHT"
msgid "Min. height:"
msgstr ""
#. kLiYd
-#: sw/inc/strings.hrc:1115
+#: sw/inc/strings.hrc:1116
msgctxt "STR_FLY_AT_PARA"
msgid "to paragraph"
msgstr ""
#. A8nAb
-#: sw/inc/strings.hrc:1116
+#: sw/inc/strings.hrc:1117
msgctxt "STR_FLY_AS_CHAR"
msgid "as character"
msgstr ""
#. Uszmm
-#: sw/inc/strings.hrc:1117
+#: sw/inc/strings.hrc:1118
msgctxt "STR_FLY_AT_CHAR"
msgid "to character"
msgstr ""
#. hDUSa
-#: sw/inc/strings.hrc:1118
+#: sw/inc/strings.hrc:1119
msgctxt "STR_FLY_AT_PAGE"
msgid "to page"
msgstr ""
#. JMHRz
-#: sw/inc/strings.hrc:1119
+#: sw/inc/strings.hrc:1120
msgctxt "STR_POS_X"
msgid "X Coordinate:"
msgstr ""
#. oCZWW
-#: sw/inc/strings.hrc:1120
+#: sw/inc/strings.hrc:1121
msgctxt "STR_POS_Y"
msgid "Y Coordinate:"
msgstr ""
#. YNKE6
-#: sw/inc/strings.hrc:1121
+#: sw/inc/strings.hrc:1122
msgctxt "STR_VERT_TOP"
msgid "at top"
msgstr ""
#. GPTAu
-#: sw/inc/strings.hrc:1122
+#: sw/inc/strings.hrc:1123
msgctxt "STR_VERT_CENTER"
msgid "Centered vertically"
msgstr ""
#. fcpTS
-#: sw/inc/strings.hrc:1123
+#: sw/inc/strings.hrc:1124
msgctxt "STR_VERT_BOTTOM"
msgid "at bottom"
msgstr ""
#. 37hos
-#: sw/inc/strings.hrc:1124
+#: sw/inc/strings.hrc:1125
msgctxt "STR_LINE_TOP"
msgid "Top of line"
msgstr ""
#. MU7hC
-#: sw/inc/strings.hrc:1125
+#: sw/inc/strings.hrc:1126
msgctxt "STR_LINE_CENTER"
msgid "Line centered"
msgstr ""
#. ZvEq7
-#: sw/inc/strings.hrc:1126
+#: sw/inc/strings.hrc:1127
msgctxt "STR_LINE_BOTTOM"
msgid "Bottom of line"
msgstr ""
#. jypsG
-#: sw/inc/strings.hrc:1127
+#: sw/inc/strings.hrc:1128
msgctxt "STR_REGISTER_ON"
msgid "Page line-spacing"
msgstr ""
#. Cui3U
-#: sw/inc/strings.hrc:1128
+#: sw/inc/strings.hrc:1129
msgctxt "STR_REGISTER_OFF"
msgid "Not page line-spacing"
msgstr ""
#. 4RL9X
-#: sw/inc/strings.hrc:1129
+#: sw/inc/strings.hrc:1130
msgctxt "STR_HORI_RIGHT"
msgid "at the right"
msgstr ""
#. wzGK7
-#: sw/inc/strings.hrc:1130
+#: sw/inc/strings.hrc:1131
msgctxt "STR_HORI_CENTER"
msgid "Centered horizontally"
msgstr ""
#. ngRmB
-#: sw/inc/strings.hrc:1131
+#: sw/inc/strings.hrc:1132
msgctxt "STR_HORI_LEFT"
msgid "at the left"
msgstr ""
#. JyHkM
-#: sw/inc/strings.hrc:1132
+#: sw/inc/strings.hrc:1133
msgctxt "STR_HORI_INSIDE"
msgid "inside"
msgstr ""
#. iXSZZ
-#: sw/inc/strings.hrc:1133
+#: sw/inc/strings.hrc:1134
msgctxt "STR_HORI_OUTSIDE"
msgid "outside"
msgstr ""
#. kDY9Z
-#: sw/inc/strings.hrc:1134
+#: sw/inc/strings.hrc:1135
msgctxt "STR_HORI_FULL"
msgid "Full width"
msgstr ""
#. Hvn8D
-#: sw/inc/strings.hrc:1135
+#: sw/inc/strings.hrc:1136
#, fuzzy
msgctxt "STR_COLUMNS"
msgid "Columns"
msgstr "Columna"
#. 6j6TA
-#: sw/inc/strings.hrc:1136
+#: sw/inc/strings.hrc:1137
msgctxt "STR_LINE_WIDTH"
msgid "Separator Width:"
msgstr ""
#. dvdDt
-#: sw/inc/strings.hrc:1137
+#: sw/inc/strings.hrc:1138
msgctxt "STR_MAX_FTN_HEIGHT"
msgid "Max. footnote area:"
msgstr ""
#. BWqF3
-#: sw/inc/strings.hrc:1138
+#: sw/inc/strings.hrc:1139
msgctxt "STR_EDIT_IN_READONLY"
msgid "Editable in read-only document"
msgstr ""
#. SCL5F
-#: sw/inc/strings.hrc:1139
+#: sw/inc/strings.hrc:1140
msgctxt "STR_LAYOUT_SPLIT"
msgid "Split"
msgstr ""
#. CFmBk
-#: sw/inc/strings.hrc:1140
+#: sw/inc/strings.hrc:1141
msgctxt "STR_NUMRULE_ON"
msgid "List Style: (%LISTSTYLENAME)"
msgstr ""
#. HvZBm
-#: sw/inc/strings.hrc:1141
+#: sw/inc/strings.hrc:1142
msgctxt "STR_NUMRULE_OFF"
msgid "List Style: (None)"
msgstr ""
#. QDaFk
-#: sw/inc/strings.hrc:1142
+#: sw/inc/strings.hrc:1143
msgctxt "STR_CONNECT1"
msgid "linked to "
msgstr ""
#. rWmT8
-#: sw/inc/strings.hrc:1143
+#: sw/inc/strings.hrc:1144
msgctxt "STR_CONNECT2"
msgid "and "
msgstr ""
#. H2Kwq
-#: sw/inc/strings.hrc:1144
+#: sw/inc/strings.hrc:1145
msgctxt "STR_LINECOUNT"
msgid "Count lines"
msgstr ""
#. yjSiJ
-#: sw/inc/strings.hrc:1145
+#: sw/inc/strings.hrc:1146
msgctxt "STR_DONTLINECOUNT"
msgid "don't count lines"
msgstr ""
#. HE4BV
-#: sw/inc/strings.hrc:1146
+#: sw/inc/strings.hrc:1147
msgctxt "STR_LINCOUNT_START"
msgid "restart line count with: "
msgstr ""
#. 7Q8qC
-#: sw/inc/strings.hrc:1147
+#: sw/inc/strings.hrc:1148
msgctxt "STR_LUMINANCE"
msgid "Brightness: "
msgstr ""
#. sNxPE
-#: sw/inc/strings.hrc:1148
+#: sw/inc/strings.hrc:1149
msgctxt "STR_CHANNELR"
msgid "Red: "
msgstr ""
#. u73NC
-#: sw/inc/strings.hrc:1149
+#: sw/inc/strings.hrc:1150
msgctxt "STR_CHANNELG"
msgid "Green: "
msgstr ""
#. qQsPp
-#: sw/inc/strings.hrc:1150
+#: sw/inc/strings.hrc:1151
msgctxt "STR_CHANNELB"
msgid "Blue: "
msgstr ""
#. BS4nZ
-#: sw/inc/strings.hrc:1151
+#: sw/inc/strings.hrc:1152
#, fuzzy
msgctxt "STR_CONTRAST"
msgid "Contrast: "
msgstr "Contraste"
#. avJBK
-#: sw/inc/strings.hrc:1152
+#: sw/inc/strings.hrc:1153
msgctxt "STR_GAMMA"
msgid "Gamma: "
msgstr ""
#. HQCJZ
-#: sw/inc/strings.hrc:1153
+#: sw/inc/strings.hrc:1154
msgctxt "STR_TRANSPARENCY"
msgid "Transparency: "
msgstr ""
#. 5jDK3
-#: sw/inc/strings.hrc:1154
+#: sw/inc/strings.hrc:1155
msgctxt "STR_INVERT"
msgid "Invert"
msgstr ""
#. DVSAx
-#: sw/inc/strings.hrc:1155
+#: sw/inc/strings.hrc:1156
msgctxt "STR_INVERT_NOT"
msgid "do not invert"
msgstr ""
#. Z7tXB
-#: sw/inc/strings.hrc:1156
+#: sw/inc/strings.hrc:1157
msgctxt "STR_DRAWMODE"
msgid "Graphics mode: "
msgstr ""
#. RXuUF
-#: sw/inc/strings.hrc:1157
+#: sw/inc/strings.hrc:1158
msgctxt "STR_DRAWMODE_STD"
msgid "Standard"
msgstr "Estandar"
#. kbALJ
-#: sw/inc/strings.hrc:1158
+#: sw/inc/strings.hrc:1159
msgctxt "STR_DRAWMODE_GREY"
msgid "Grayscales"
msgstr ""
#. eSHEj
-#: sw/inc/strings.hrc:1159
+#: sw/inc/strings.hrc:1160
msgctxt "STR_DRAWMODE_BLACKWHITE"
msgid "Black & White"
msgstr ""
#. tABTr
-#: sw/inc/strings.hrc:1160
+#: sw/inc/strings.hrc:1161
msgctxt "STR_DRAWMODE_WATERMARK"
msgid "Watermark"
msgstr ""
#. 8SwC3
-#: sw/inc/strings.hrc:1161
+#: sw/inc/strings.hrc:1162
msgctxt "STR_ROTATION"
msgid "Rotation"
msgstr ""
#. hWEeF
-#: sw/inc/strings.hrc:1162
+#: sw/inc/strings.hrc:1163
msgctxt "STR_GRID_NONE"
msgid "No grid"
msgstr ""
#. HEuEv
-#: sw/inc/strings.hrc:1163
+#: sw/inc/strings.hrc:1164
msgctxt "STR_GRID_LINES_ONLY"
msgid "Grid (lines only)"
msgstr ""
#. VFgMq
-#: sw/inc/strings.hrc:1164
+#: sw/inc/strings.hrc:1165
msgctxt "STR_GRID_LINES_CHARS"
msgid "Grid (lines and characters)"
msgstr ""
#. VRJrB
-#: sw/inc/strings.hrc:1165
+#: sw/inc/strings.hrc:1166
msgctxt "STR_FOLLOW_TEXT_FLOW"
msgid "Follow text flow"
msgstr ""
#. Sb3Je
-#: sw/inc/strings.hrc:1166
+#: sw/inc/strings.hrc:1167
msgctxt "STR_DONT_FOLLOW_TEXT_FLOW"
msgid "Do not follow text flow"
msgstr ""
#. yXFKP
-#: sw/inc/strings.hrc:1167
+#: sw/inc/strings.hrc:1168
msgctxt "STR_CONNECT_BORDER_ON"
msgid "Merge borders"
msgstr ""
#. vwHbS
-#: sw/inc/strings.hrc:1168
+#: sw/inc/strings.hrc:1169
msgctxt "STR_CONNECT_BORDER_OFF"
msgid "Do not merge borders"
msgstr ""
#. 3874B
-#: sw/inc/strings.hrc:1170
+#: sw/inc/strings.hrc:1171
msgctxt "ST_TBL"
msgid "Table"
msgstr "Tabla"
#. T9JAj
-#: sw/inc/strings.hrc:1171
+#: sw/inc/strings.hrc:1172
msgctxt "ST_FRM"
msgid "Frame"
msgstr ""
#. Fsnm6
-#: sw/inc/strings.hrc:1172
+#: sw/inc/strings.hrc:1173
msgctxt "ST_PGE"
msgid "Page"
msgstr "Pachina"
#. pKFCz
-#: sw/inc/strings.hrc:1173
+#: sw/inc/strings.hrc:1174
#, fuzzy
msgctxt "ST_DRW"
msgid "Drawing"
msgstr "~Debuxo"
#. amiSY
-#: sw/inc/strings.hrc:1174
+#: sw/inc/strings.hrc:1175
msgctxt "ST_CTRL"
msgid "Control"
msgstr ""
#. GEw9u
-#: sw/inc/strings.hrc:1175
+#: sw/inc/strings.hrc:1176
#, fuzzy
msgctxt "ST_REG"
msgid "Section"
msgstr "Selección"
#. bEiyL
-#: sw/inc/strings.hrc:1176
+#: sw/inc/strings.hrc:1177
msgctxt "ST_BKM"
msgid "Bookmark"
msgstr ""
#. 6gXCo
-#: sw/inc/strings.hrc:1177
+#: sw/inc/strings.hrc:1178
msgctxt "ST_GRF"
msgid "Graphics"
msgstr "Graficos"
#. d5eSc
-#: sw/inc/strings.hrc:1178
+#: sw/inc/strings.hrc:1179
msgctxt "ST_OLE"
msgid "OLE object"
msgstr "Obchecto OLE"
#. h5QQ8
-#: sw/inc/strings.hrc:1179
+#: sw/inc/strings.hrc:1180
msgctxt "ST_OUTL"
msgid "Headings"
msgstr ""
#. Cbktp
-#: sw/inc/strings.hrc:1180
+#: sw/inc/strings.hrc:1181
msgctxt "ST_SEL"
msgid "Selection"
msgstr "Selección"
#. nquvS
-#: sw/inc/strings.hrc:1181
+#: sw/inc/strings.hrc:1182
msgctxt "ST_FTN"
msgid "Footnote"
msgstr ""
#. GpAUo
-#: sw/inc/strings.hrc:1182
+#: sw/inc/strings.hrc:1183
msgctxt "ST_MARK"
msgid "Reminder"
msgstr ""
#. nDFKa
-#: sw/inc/strings.hrc:1183
+#: sw/inc/strings.hrc:1184
msgctxt "ST_POSTIT"
msgid "Comment"
msgstr "Comentario"
#. qpbDE
-#: sw/inc/strings.hrc:1184
+#: sw/inc/strings.hrc:1185
msgctxt "ST_SRCH_REP"
msgid "Repeat search"
msgstr ""
#. ipxfH
-#: sw/inc/strings.hrc:1185
+#: sw/inc/strings.hrc:1186
msgctxt "ST_INDEX_ENTRY"
msgid "Index entry"
msgstr ""
#. sfmff
-#: sw/inc/strings.hrc:1186
+#: sw/inc/strings.hrc:1187
msgctxt "ST_TABLE_FORMULA"
msgid "Table formula"
msgstr ""
#. DtkuT
-#: sw/inc/strings.hrc:1187
+#: sw/inc/strings.hrc:1188
msgctxt "ST_TABLE_FORMULA_ERROR"
msgid "Wrong table formula"
msgstr ""
#. A6Vgk
-#: sw/inc/strings.hrc:1188
+#: sw/inc/strings.hrc:1189
msgctxt "ST_RECENCY"
msgid "Recency"
msgstr ""
#. pCp7u
-#: sw/inc/strings.hrc:1189
+#: sw/inc/strings.hrc:1190
msgctxt "ST_FIELD"
msgid "Field"
msgstr ""
#. LYuHA
-#: sw/inc/strings.hrc:1190
+#: sw/inc/strings.hrc:1191
msgctxt "ST_FIELD_BYTYPE"
msgid "Field by type"
msgstr ""
#. ECFxw
#. Strings for the quickhelp of the View-PgUp/Down-Buttons
-#: sw/inc/strings.hrc:1192
+#: sw/inc/strings.hrc:1193
msgctxt "STR_IMGBTN_TBL_DOWN"
msgid "Next table"
msgstr ""
#. yhnpi
-#: sw/inc/strings.hrc:1193
+#: sw/inc/strings.hrc:1194
msgctxt "STR_IMGBTN_FRM_DOWN"
msgid "Next frame"
msgstr ""
#. M4BCA
-#: sw/inc/strings.hrc:1194
+#: sw/inc/strings.hrc:1195
msgctxt "STR_IMGBTN_PGE_DOWN"
msgid "Next page"
msgstr ""
#. UWeq4
-#: sw/inc/strings.hrc:1195
+#: sw/inc/strings.hrc:1196
msgctxt "STR_IMGBTN_DRW_DOWN"
msgid "Next drawing"
msgstr ""
#. ZVCrD
-#: sw/inc/strings.hrc:1196
+#: sw/inc/strings.hrc:1197
msgctxt "STR_IMGBTN_CTRL_DOWN"
msgid "Next control"
msgstr ""
#. NGAqr
-#: sw/inc/strings.hrc:1197
+#: sw/inc/strings.hrc:1198
msgctxt "STR_IMGBTN_REG_DOWN"
msgid "Next section"
msgstr ""
#. Mwcvm
-#: sw/inc/strings.hrc:1198
+#: sw/inc/strings.hrc:1199
msgctxt "STR_IMGBTN_BKM_DOWN"
msgid "Next bookmark"
msgstr ""
#. xbxDs
-#: sw/inc/strings.hrc:1199
+#: sw/inc/strings.hrc:1200
msgctxt "STR_IMGBTN_GRF_DOWN"
msgid "Next graphic"
msgstr ""
#. 4ovAF
-#: sw/inc/strings.hrc:1200
+#: sw/inc/strings.hrc:1201
msgctxt "STR_IMGBTN_OLE_DOWN"
msgid "Next OLE object"
msgstr ""
#. YzK6w
-#: sw/inc/strings.hrc:1201
+#: sw/inc/strings.hrc:1202
msgctxt "STR_IMGBTN_OUTL_DOWN"
msgid "Next heading"
msgstr ""
#. skdRc
-#: sw/inc/strings.hrc:1202
+#: sw/inc/strings.hrc:1203
msgctxt "STR_IMGBTN_SEL_DOWN"
msgid "Next selection"
msgstr ""
#. RBFga
-#: sw/inc/strings.hrc:1203
+#: sw/inc/strings.hrc:1204
msgctxt "STR_IMGBTN_FTN_DOWN"
msgid "Next footnote"
msgstr ""
#. GNLrx
-#: sw/inc/strings.hrc:1204
+#: sw/inc/strings.hrc:1205
msgctxt "STR_IMGBTN_MARK_DOWN"
msgid "Next Reminder"
msgstr ""
#. mFCfp
-#: sw/inc/strings.hrc:1205
+#: sw/inc/strings.hrc:1206
msgctxt "STR_IMGBTN_POSTIT_DOWN"
msgid "Next Comment"
msgstr ""
#. gbnwp
-#: sw/inc/strings.hrc:1206
+#: sw/inc/strings.hrc:1207
msgctxt "STR_IMGBTN_SRCH_REP_DOWN"
msgid "Continue search forward"
msgstr ""
#. TXYkA
-#: sw/inc/strings.hrc:1207
+#: sw/inc/strings.hrc:1208
msgctxt "STR_IMGBTN_INDEX_ENTRY_DOWN"
msgid "Next index entry"
msgstr ""
#. EyvbV
-#: sw/inc/strings.hrc:1208
+#: sw/inc/strings.hrc:1209
msgctxt "STR_IMGBTN_TBL_UP"
msgid "Previous table"
msgstr ""
#. cC5vJ
-#: sw/inc/strings.hrc:1209
+#: sw/inc/strings.hrc:1210
msgctxt "STR_IMGBTN_FRM_UP"
msgid "Previous frame"
msgstr ""
#. eQPFD
-#: sw/inc/strings.hrc:1210
+#: sw/inc/strings.hrc:1211
msgctxt "STR_IMGBTN_PGE_UP"
msgid "Previous page"
msgstr ""
#. p5jbU
-#: sw/inc/strings.hrc:1211
+#: sw/inc/strings.hrc:1212
msgctxt "STR_IMGBTN_DRW_UP"
msgid "Previous drawing"
msgstr ""
#. 2WMmZ
-#: sw/inc/strings.hrc:1212
+#: sw/inc/strings.hrc:1213
msgctxt "STR_IMGBTN_CTRL_UP"
msgid "Previous control"
msgstr ""
#. 6uGDP
-#: sw/inc/strings.hrc:1213
+#: sw/inc/strings.hrc:1214
msgctxt "STR_IMGBTN_REG_UP"
msgid "Previous section"
msgstr ""
#. YYCtk
-#: sw/inc/strings.hrc:1214
+#: sw/inc/strings.hrc:1215
msgctxt "STR_IMGBTN_BKM_UP"
msgid "Previous bookmark"
msgstr ""
#. nFLdX
-#: sw/inc/strings.hrc:1215
+#: sw/inc/strings.hrc:1216
msgctxt "STR_IMGBTN_GRF_UP"
msgid "Previous graphic"
msgstr ""
#. VuxvB
-#: sw/inc/strings.hrc:1216
+#: sw/inc/strings.hrc:1217
msgctxt "STR_IMGBTN_OLE_UP"
msgid "Previous OLE object"
msgstr ""
#. QSuct
-#: sw/inc/strings.hrc:1217
+#: sw/inc/strings.hrc:1218
msgctxt "STR_IMGBTN_OUTL_UP"
msgid "Previous heading"
msgstr ""
#. CzLBr
-#: sw/inc/strings.hrc:1218
+#: sw/inc/strings.hrc:1219
msgctxt "STR_IMGBTN_SEL_UP"
msgid "Previous selection"
msgstr ""
#. B7PoL
-#: sw/inc/strings.hrc:1219
+#: sw/inc/strings.hrc:1220
msgctxt "STR_IMGBTN_FTN_UP"
msgid "Previous footnote"
msgstr ""
#. AgtLD
-#: sw/inc/strings.hrc:1220
+#: sw/inc/strings.hrc:1221
msgctxt "STR_IMGBTN_MARK_UP"
msgid "Previous Reminder"
msgstr ""
#. GJQ6F
-#: sw/inc/strings.hrc:1221
+#: sw/inc/strings.hrc:1222
msgctxt "STR_IMGBTN_POSTIT_UP"
msgid "Previous Comment"
msgstr ""
#. GWnfD
-#: sw/inc/strings.hrc:1222
+#: sw/inc/strings.hrc:1223
msgctxt "STR_IMGBTN_SRCH_REP_UP"
msgid "Continue search backwards"
msgstr ""
#. uDtcG
-#: sw/inc/strings.hrc:1223
+#: sw/inc/strings.hrc:1224
msgctxt "STR_IMGBTN_INDEX_ENTRY_UP"
msgid "Previous index entry"
msgstr ""
#. VR6DX
-#: sw/inc/strings.hrc:1224
+#: sw/inc/strings.hrc:1225
msgctxt "STR_IMGBTN_TBLFML_UP"
msgid "Previous table formula"
msgstr ""
#. GqESF
-#: sw/inc/strings.hrc:1225
+#: sw/inc/strings.hrc:1226
msgctxt "STR_IMGBTN_TBLFML_DOWN"
msgid "Next table formula"
msgstr ""
#. gBgxo
-#: sw/inc/strings.hrc:1226
+#: sw/inc/strings.hrc:1227
msgctxt "STR_IMGBTN_TBLFML_ERR_UP"
msgid "Previous faulty table formula"
msgstr ""
#. UAon9
-#: sw/inc/strings.hrc:1227
+#: sw/inc/strings.hrc:1228
msgctxt "STR_IMGBTN_TBLFML_ERR_DOWN"
msgid "Next faulty table formula"
msgstr ""
#. L2Apv
-#: sw/inc/strings.hrc:1228
+#: sw/inc/strings.hrc:1229
msgctxt "STR_IMGBTN_RECENCY_UP"
msgid "Go back"
msgstr ""
#. jCsGs
-#: sw/inc/strings.hrc:1229
+#: sw/inc/strings.hrc:1230
msgctxt "STR_IMGBTN_RECENCY_DOWN"
msgid "Go forward"
msgstr ""
#. o3BBz
-#: sw/inc/strings.hrc:1230
+#: sw/inc/strings.hrc:1231
msgctxt "STR_IMGBTN_FIELD_UP"
msgid "Previous field"
msgstr ""
#. bQ33Z
-#: sw/inc/strings.hrc:1231
+#: sw/inc/strings.hrc:1232
msgctxt "STR_IMGBTN_FIELD_DOWN"
msgid "Next field"
msgstr ""
#. bhUaK
-#: sw/inc/strings.hrc:1232
+#: sw/inc/strings.hrc:1233
msgctxt "STR_IMGBTN_FIELD_BYTYPE_UP"
msgid "Previous '%FIELDTYPE' field"
msgstr ""
#. A8HWi
-#: sw/inc/strings.hrc:1233
+#: sw/inc/strings.hrc:1234
msgctxt "STR_IMGBTN_FIELD_BYTYPE_DOWN"
msgid "Next '%FIELDTYPE' field"
msgstr ""
#. hSYa3
-#: sw/inc/strings.hrc:1235
+#: sw/inc/strings.hrc:1236
msgctxt "STR_REDLINE_INSERT"
msgid "Inserted"
msgstr ""
#. LnFkq
-#: sw/inc/strings.hrc:1236
+#: sw/inc/strings.hrc:1237
#, fuzzy
msgctxt "STR_REDLINE_DELETE"
msgid "Deleted"
msgstr "Eliminar"
#. cTNEn
-#: sw/inc/strings.hrc:1237
+#: sw/inc/strings.hrc:1238
msgctxt "STR_REDLINE_FORMAT"
msgid "Formatted"
msgstr ""
#. YWr7C
-#: sw/inc/strings.hrc:1238
+#: sw/inc/strings.hrc:1239
msgctxt "STR_REDLINE_TABLE"
msgid "Table changed"
msgstr ""
#. 6xVDN
-#: sw/inc/strings.hrc:1239
+#: sw/inc/strings.hrc:1240
msgctxt "STR_REDLINE_FMTCOLL"
msgid "Applied Paragraph Styles"
msgstr ""
#. 32AND
-#: sw/inc/strings.hrc:1240
+#: sw/inc/strings.hrc:1241
msgctxt "STR_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr ""
#. wLDkj
-#: sw/inc/strings.hrc:1241
+#: sw/inc/strings.hrc:1242
msgctxt "STR_REDLINE_TABLE_ROW_INSERT"
msgid "Row Inserted"
msgstr ""
#. Eb5Gb
-#: sw/inc/strings.hrc:1242
+#: sw/inc/strings.hrc:1243
msgctxt "STR_REDLINE_TABLE_ROW_DELETE"
msgid "Row Deleted"
msgstr ""
#. i5ZJt
-#: sw/inc/strings.hrc:1243
+#: sw/inc/strings.hrc:1244
msgctxt "STR_REDLINE_TABLE_CELL_INSERT"
msgid "Cell Inserted"
msgstr ""
#. 4gE3z
-#: sw/inc/strings.hrc:1244
+#: sw/inc/strings.hrc:1245
msgctxt "STR_REDLINE_TABLE_CELL_DELETE"
msgid "Cell Deleted"
msgstr ""
#. DRCyp
-#: sw/inc/strings.hrc:1245
+#: sw/inc/strings.hrc:1246
msgctxt "STR_ENDNOTE"
msgid "Endnote: "
msgstr ""
#. qpW2q
-#: sw/inc/strings.hrc:1246
+#: sw/inc/strings.hrc:1247
msgctxt "STR_FTNNOTE"
msgid "Footnote: "
msgstr ""
#. 3RFUd
-#: sw/inc/strings.hrc:1247
+#: sw/inc/strings.hrc:1248
msgctxt "STR_SMARTTAG_CLICK"
msgid "%s-click to open Smart Tag menu"
msgstr ""
#. QCD36
-#: sw/inc/strings.hrc:1248
+#: sw/inc/strings.hrc:1249
msgctxt "STR_HEADER_TITLE"
msgid "Header (%1)"
msgstr ""
#. AYjgB
-#: sw/inc/strings.hrc:1249
+#: sw/inc/strings.hrc:1250
msgctxt "STR_FIRST_HEADER_TITLE"
msgid "First Page Header (%1)"
msgstr ""
#. qVX2k
-#: sw/inc/strings.hrc:1250
+#: sw/inc/strings.hrc:1251
msgctxt "STR_LEFT_HEADER_TITLE"
msgid "Left Page Header (%1)"
msgstr ""
#. DSg3b
-#: sw/inc/strings.hrc:1251
+#: sw/inc/strings.hrc:1252
msgctxt "STR_RIGHT_HEADER_TITLE"
msgid "Right Page Header (%1)"
msgstr ""
#. 6GzuM
-#: sw/inc/strings.hrc:1252
+#: sw/inc/strings.hrc:1253
msgctxt "STR_FOOTER_TITLE"
msgid "Footer (%1)"
msgstr ""
#. FDVNH
-#: sw/inc/strings.hrc:1253
+#: sw/inc/strings.hrc:1254
msgctxt "STR_FIRST_FOOTER_TITLE"
msgid "First Page Footer (%1)"
msgstr ""
#. SL7r3
-#: sw/inc/strings.hrc:1254
+#: sw/inc/strings.hrc:1255
msgctxt "STR_LEFT_FOOTER_TITLE"
msgid "Left Page Footer (%1)"
msgstr ""
#. CBvih
-#: sw/inc/strings.hrc:1255
+#: sw/inc/strings.hrc:1256
msgctxt "STR_RIGHT_FOOTER_TITLE"
msgid "Right Page Footer (%1)"
msgstr ""
#. s8v3h
-#: sw/inc/strings.hrc:1256
+#: sw/inc/strings.hrc:1257
msgctxt "STR_DELETE_HEADER"
msgid "Delete Header..."
msgstr ""
#. wL3Fr
-#: sw/inc/strings.hrc:1257
+#: sw/inc/strings.hrc:1258
msgctxt "STR_FORMAT_HEADER"
msgid "Format Header..."
msgstr ""
#. DrAUe
-#: sw/inc/strings.hrc:1258
+#: sw/inc/strings.hrc:1259
msgctxt "STR_DELETE_FOOTER"
msgid "Delete Footer..."
msgstr ""
#. 9Xgou
-#: sw/inc/strings.hrc:1259
+#: sw/inc/strings.hrc:1260
msgctxt "STR_FORMAT_FOOTER"
msgid "Format Footer..."
msgstr ""
#. ApT5B
-#: sw/inc/strings.hrc:1261
+#: sw/inc/strings.hrc:1262
msgctxt "STR_UNFLOAT_TABLE"
msgid "Un-float Table"
msgstr ""
#. wVAZJ
-#: sw/inc/strings.hrc:1263
+#: sw/inc/strings.hrc:1264
msgctxt "STR_PAGE_BREAK_BUTTON"
msgid "Edit page break"
msgstr ""
#. uvDKE
-#: sw/inc/strings.hrc:1265
+#: sw/inc/strings.hrc:1266
msgctxt "STR_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr ""
#. iJuAv
-#: sw/inc/strings.hrc:1266
+#: sw/inc/strings.hrc:1267
msgctxt "STR_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr ""
#. Bwwho
-#: sw/inc/strings.hrc:1267
+#: sw/inc/strings.hrc:1268
msgctxt "STR_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr ""
#. bfog5
-#: sw/inc/strings.hrc:1268
+#: sw/inc/strings.hrc:1269
msgctxt "STR_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr ""
#. xy4Vm
-#: sw/inc/strings.hrc:1269
+#: sw/inc/strings.hrc:1270
msgctxt "STR_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr ""
#. tEqyq
-#: sw/inc/strings.hrc:1270
+#: sw/inc/strings.hrc:1271
msgctxt "STR_GRFILTER_TOOBIG"
msgid "Not enough memory to insert the image."
msgstr ""
#. 5ihue
-#: sw/inc/strings.hrc:1271
+#: sw/inc/strings.hrc:1272
msgctxt "STR_INSERT_GRAPHIC"
msgid "Insert Image"
msgstr ""
#. GWzLN
-#: sw/inc/strings.hrc:1272
+#: sw/inc/strings.hrc:1273
#, fuzzy
msgctxt "STR_REDLINE_COMMENT"
msgid "Comment: "
msgstr "Comentario"
#. CoJc8
-#: sw/inc/strings.hrc:1273
+#: sw/inc/strings.hrc:1274
msgctxt "STR_REDLINE_INSERTED"
msgid "Insertion"
msgstr ""
#. dfMEF
-#: sw/inc/strings.hrc:1274
+#: sw/inc/strings.hrc:1275
#, fuzzy
msgctxt "STR_REDLINE_DELETED"
msgid "Deletion"
msgstr "Selección"
#. NytQQ
-#: sw/inc/strings.hrc:1275
+#: sw/inc/strings.hrc:1276
msgctxt "STR_REDLINE_AUTOFMT"
msgid "AutoCorrect"
msgstr ""
#. YRAQL
-#: sw/inc/strings.hrc:1276
+#: sw/inc/strings.hrc:1277
msgctxt "STR_REDLINE_FORMATTED"
msgid "Formats"
msgstr ""
#. ELCVU
-#: sw/inc/strings.hrc:1277
+#: sw/inc/strings.hrc:1278
msgctxt "STR_REDLINE_TABLECHG"
msgid "Table Changes"
msgstr ""
#. PzfQF
-#: sw/inc/strings.hrc:1278
+#: sw/inc/strings.hrc:1279
msgctxt "STR_REDLINE_FMTCOLLSET"
msgid "Applied Paragraph Styles"
msgstr ""
#. sgEbW
-#: sw/inc/strings.hrc:1279
+#: sw/inc/strings.hrc:1280
msgctxt "STR_PAGE"
msgid "Page "
msgstr "Pachina "
#. 3DpEx
-#: sw/inc/strings.hrc:1280
+#: sw/inc/strings.hrc:1281
msgctxt "STR_PAGE_COUNT"
msgid "Page %1 of %2"
msgstr ""
#. HSbzS
-#: sw/inc/strings.hrc:1281
+#: sw/inc/strings.hrc:1282
msgctxt "STR_PAGE_COUNT_CUSTOM"
msgid "Page %1 of %2 (Page %3)"
msgstr ""
#. a7tDc
-#: sw/inc/strings.hrc:1282
+#: sw/inc/strings.hrc:1283
msgctxt "STR_PAGE_COUNT_PRINTED"
msgid "Page %1 of %2 (Page %3 of %4 to print)"
msgstr ""
#. KjML8
#. Strings for gallery/background
-#: sw/inc/strings.hrc:1284
+#: sw/inc/strings.hrc:1285
msgctxt "STR_SWBG_PARAGRAPH"
msgid "Paragraph"
msgstr "Paragrafo"
#. aAtmp
-#: sw/inc/strings.hrc:1285
+#: sw/inc/strings.hrc:1286
msgctxt "STR_SWBG_GRAPHIC"
msgid "Image"
msgstr "Imachen"
#. UBDMK
-#: sw/inc/strings.hrc:1286
+#: sw/inc/strings.hrc:1287
msgctxt "STR_SWBG_OLE"
msgid "OLE object"
msgstr "Obchecto OLE"
#. xEWbo
-#: sw/inc/strings.hrc:1287
+#: sw/inc/strings.hrc:1288
msgctxt "STR_SWBG_FRAME"
msgid "Frame"
msgstr ""
#. hfJns
-#: sw/inc/strings.hrc:1288
+#: sw/inc/strings.hrc:1289
msgctxt "STR_SWBG_TABLE"
msgid "Table"
msgstr "Tabla"
#. GRqNY
-#: sw/inc/strings.hrc:1289
+#: sw/inc/strings.hrc:1290
msgctxt "STR_SWBG_TABLE_ROW"
msgid "Table row"
msgstr ""
#. CDQY4
-#: sw/inc/strings.hrc:1290
+#: sw/inc/strings.hrc:1291
msgctxt "STR_SWBG_TABLE_CELL"
msgid "Table cell"
msgstr ""
#. 2Db9T
-#: sw/inc/strings.hrc:1291
+#: sw/inc/strings.hrc:1292
msgctxt "STR_SWBG_PAGE"
msgid "Page"
msgstr "Pachina"
#. 63FuG
-#: sw/inc/strings.hrc:1292
+#: sw/inc/strings.hrc:1293
msgctxt "STR_SWBG_HEADER"
msgid "Header"
msgstr "Capitero"
#. aDuAY
-#: sw/inc/strings.hrc:1293
+#: sw/inc/strings.hrc:1294
msgctxt "STR_SWBG_FOOTER"
msgid "Footer"
msgstr "Piet de pachina"
#. uAp9i
#. End: strings for gallery/background
-#: sw/inc/strings.hrc:1296
+#: sw/inc/strings.hrc:1297
msgctxt "STR_WRITER_WEBDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION HTML Document"
msgstr ""
#. y2GBv
-#: sw/inc/strings.hrc:1298
+#: sw/inc/strings.hrc:1299
msgctxt "STR_TITLE"
msgid "Title"
msgstr "Titol"
#. AipGR
-#: sw/inc/strings.hrc:1299
+#: sw/inc/strings.hrc:1300
#, fuzzy
msgctxt "STR_ALPHA"
msgid "Separator"
msgstr "Separadors"
#. CoSEf
-#: sw/inc/strings.hrc:1300
+#: sw/inc/strings.hrc:1301
msgctxt "STR_LEVEL"
msgid "Level "
msgstr ""
#. JdTF4
-#: sw/inc/strings.hrc:1301
+#: sw/inc/strings.hrc:1302
msgctxt "STR_FILE_NOT_FOUND"
msgid "The file, \"%1\" in the \"%2\" path could not be found."
msgstr ""
#. zRWDZ
-#: sw/inc/strings.hrc:1302
+#: sw/inc/strings.hrc:1303
msgctxt "STR_USER_DEFINED_INDEX"
msgid "User-Defined Index"
msgstr ""
#. t5uWs
-#: sw/inc/strings.hrc:1303
+#: sw/inc/strings.hrc:1304
msgctxt "STR_NOSORTKEY"
msgid "<None>"
msgstr ""
#. vSSnJ
-#: sw/inc/strings.hrc:1304
+#: sw/inc/strings.hrc:1305
msgctxt "STR_NO_CHAR_STYLE"
msgid "<None>"
msgstr ""
#. NSx98
-#: sw/inc/strings.hrc:1305
+#: sw/inc/strings.hrc:1306
msgctxt "STR_DELIM"
msgid "S"
msgstr ""
#. hK8CX
-#: sw/inc/strings.hrc:1306
+#: sw/inc/strings.hrc:1307
msgctxt "STR_TOKEN_ENTRY_NO"
msgid "E#"
msgstr ""
#. 8EgTx
-#: sw/inc/strings.hrc:1307
+#: sw/inc/strings.hrc:1308
msgctxt "STR_TOKEN_ENTRY"
msgid "E"
msgstr ""
#. gxt8B
-#: sw/inc/strings.hrc:1308
+#: sw/inc/strings.hrc:1309
msgctxt "STR_TOKEN_TAB_STOP"
msgid "T"
msgstr ""
#. pGAb4
-#: sw/inc/strings.hrc:1309
+#: sw/inc/strings.hrc:1310
msgctxt "STR_TOKEN_PAGE_NUMS"
msgid "#"
msgstr ""
#. teDm3
-#: sw/inc/strings.hrc:1310
+#: sw/inc/strings.hrc:1311
msgctxt "STR_TOKEN_CHAPTER_INFO"
msgid "CI"
msgstr ""
#. XWaFn
-#: sw/inc/strings.hrc:1311
+#: sw/inc/strings.hrc:1312
msgctxt "STR_TOKEN_LINK_START"
msgid "LS"
msgstr ""
#. xp6D6
-#: sw/inc/strings.hrc:1312
+#: sw/inc/strings.hrc:1313
msgctxt "STR_TOKEN_LINK_END"
msgid "LE"
msgstr ""
#. AogDK
-#: sw/inc/strings.hrc:1313
+#: sw/inc/strings.hrc:1314
msgctxt "STR_TOKEN_AUTHORITY"
msgid "A"
msgstr ""
#. 5A4jw
-#: sw/inc/strings.hrc:1314
+#: sw/inc/strings.hrc:1315
msgctxt "STR_TOKEN_HELP_ENTRY_NO"
msgid "Chapter number"
msgstr ""
#. FH365
-#: sw/inc/strings.hrc:1315
+#: sw/inc/strings.hrc:1316
msgctxt "STR_TOKEN_HELP_ENTRY"
msgid "Entry"
msgstr ""
#. xZjtZ
-#: sw/inc/strings.hrc:1316
+#: sw/inc/strings.hrc:1317
#, fuzzy
msgctxt "STR_TOKEN_HELP_TAB_STOP"
msgid "Tab stop"
msgstr "~Tabulacions"
#. aXW8y
-#: sw/inc/strings.hrc:1317
+#: sw/inc/strings.hrc:1318
msgctxt "STR_TOKEN_HELP_TEXT"
msgid "Text"
msgstr "Texto"
#. MCUd2
-#: sw/inc/strings.hrc:1318
+#: sw/inc/strings.hrc:1319
msgctxt "STR_TOKEN_HELP_PAGE_NUMS"
msgid "Page number"
msgstr ""
#. pXqw3
-#: sw/inc/strings.hrc:1319
+#: sw/inc/strings.hrc:1320
msgctxt "STR_TOKEN_HELP_CHAPTER_INFO"
msgid "Chapter info"
msgstr ""
#. DRBSD
-#: sw/inc/strings.hrc:1320
+#: sw/inc/strings.hrc:1321
msgctxt "STR_TOKEN_HELP_LINK_START"
msgid "Hyperlink start"
msgstr ""
#. Ytn5g
-#: sw/inc/strings.hrc:1321
+#: sw/inc/strings.hrc:1322
msgctxt "STR_TOKEN_HELP_LINK_END"
msgid "Hyperlink end"
msgstr ""
#. hRo3J
-#: sw/inc/strings.hrc:1322
+#: sw/inc/strings.hrc:1323
msgctxt "STR_TOKEN_HELP_AUTHORITY"
msgid "Bibliography entry: "
msgstr ""
#. ZKG5v
-#: sw/inc/strings.hrc:1323
+#: sw/inc/strings.hrc:1324
msgctxt "STR_CHARSTYLE"
msgid "Character Style: "
msgstr ""
#. d9BES
-#: sw/inc/strings.hrc:1324
+#: sw/inc/strings.hrc:1325
msgctxt "STR_STRUCTURE"
msgid "Structure text"
msgstr ""
#. kwoGP
-#: sw/inc/strings.hrc:1325
+#: sw/inc/strings.hrc:1326
msgctxt "STR_ADDITIONAL_ACCNAME_STRING1"
msgid "Press Ctrl+Alt+A to move focus for more operations"
msgstr ""
#. Avm9y
-#: sw/inc/strings.hrc:1326
+#: sw/inc/strings.hrc:1327
msgctxt "STR_ADDITIONAL_ACCNAME_STRING2"
msgid "Press left or right arrow to choose the structure controls"
msgstr ""
#. 59eRi
-#: sw/inc/strings.hrc:1327
+#: sw/inc/strings.hrc:1328
msgctxt "STR_ADDITIONAL_ACCNAME_STRING3"
msgid "Press Ctrl+Alt+B to move focus back to the current structure control"
msgstr ""
#. 8AagG
-#: sw/inc/strings.hrc:1328
+#: sw/inc/strings.hrc:1329
msgctxt "STR_AUTOMARK_TYPE"
msgid "Selection file for the alphabetical index (*.sdi)"
msgstr ""
@@ -9599,263 +9605,263 @@ msgstr ""
#. -----------------------------------------------------------------------
#. Description: character alignment for frmsh.cxx - context menu
#. -----------------------------------------------------------------------
-#: sw/inc/strings.hrc:1333
+#: sw/inc/strings.hrc:1334
msgctxt "STR_FRMUI_TOP_BASE"
msgid "Base line at ~top"
msgstr ""
#. 5GiEA
-#: sw/inc/strings.hrc:1334
+#: sw/inc/strings.hrc:1335
msgctxt "STR_FRMUI_BOTTOM_BASE"
msgid "~Base line at bottom"
msgstr ""
#. sdyVF
-#: sw/inc/strings.hrc:1335
+#: sw/inc/strings.hrc:1336
msgctxt "STR_FRMUI_CENTER_BASE"
msgid "Base line ~centered"
msgstr ""
#. NAXyZ
-#: sw/inc/strings.hrc:1336
+#: sw/inc/strings.hrc:1337
msgctxt "STR_FRMUI_OLE_INSERT"
msgid "Insert object"
msgstr ""
#. 5C6Rc
-#: sw/inc/strings.hrc:1337
+#: sw/inc/strings.hrc:1338
msgctxt "STR_FRMUI_OLE_EDIT"
msgid "Edit object"
msgstr ""
#. 3QFYB
-#: sw/inc/strings.hrc:1338
+#: sw/inc/strings.hrc:1339
msgctxt "STR_FRMUI_COLL_HEADER"
msgid " (Template: "
msgstr ""
#. oUhnK
-#: sw/inc/strings.hrc:1339
+#: sw/inc/strings.hrc:1340
msgctxt "STR_FRMUI_BORDER"
msgid "Borders"
msgstr "Cantos"
#. T2SH2
-#: sw/inc/strings.hrc:1340
+#: sw/inc/strings.hrc:1341
msgctxt "STR_FRMUI_PATTERN"
msgid "Background"
msgstr "Fundo"
#. K6Yvs
-#: sw/inc/strings.hrc:1342
+#: sw/inc/strings.hrc:1343
msgctxt "STR_TEXTCOLL_HEADER"
msgid "(Paragraph Style: "
msgstr ""
#. Fsanh
-#: sw/inc/strings.hrc:1343
+#: sw/inc/strings.hrc:1344
msgctxt "STR_ILLEGAL_PAGENUM"
msgid "Page numbers cannot be applied to the current page. Even numbers can be used on left pages, odd numbers on right pages."
msgstr ""
#. VZnJf
-#: sw/inc/strings.hrc:1345
+#: sw/inc/strings.hrc:1346
msgctxt "STR_WRITER_GLOBALDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Master Document"
msgstr ""
#. kWe9j
-#: sw/inc/strings.hrc:1347
+#: sw/inc/strings.hrc:1348
msgctxt "STR_QUERY_CONNECT"
msgid "A file connection will delete the contents of the current section. Connect anyway?"
msgstr ""
#. dLuAF
-#: sw/inc/strings.hrc:1348
+#: sw/inc/strings.hrc:1349
msgctxt "STR_WRONG_PASSWORD"
msgid "The password entered is invalid."
msgstr ""
#. oUR7Y
-#: sw/inc/strings.hrc:1349
+#: sw/inc/strings.hrc:1350
msgctxt "STR_WRONG_PASSWD_REPEAT"
msgid "The password has not been set."
msgstr ""
#. GBVqD
-#: sw/inc/strings.hrc:1351
+#: sw/inc/strings.hrc:1352
msgctxt "STR_HYP_OK"
msgid "Hyphenation completed"
msgstr ""
#. rZBXF
-#: sw/inc/strings.hrc:1352
+#: sw/inc/strings.hrc:1353
msgctxt "STR_LANGSTATUS_NONE"
msgid "None (Do not check spelling)"
msgstr ""
#. Z8EjG
-#: sw/inc/strings.hrc:1353
+#: sw/inc/strings.hrc:1354
msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE"
msgid "Reset to Default Language"
msgstr ""
#. YEXdS
-#: sw/inc/strings.hrc:1354
+#: sw/inc/strings.hrc:1355
msgctxt "STR_LANGSTATUS_MORE"
msgid "More..."
msgstr ""
#. QecQ3
-#: sw/inc/strings.hrc:1355
+#: sw/inc/strings.hrc:1356
msgctxt "STR_IGNORE_SELECTION"
msgid "~Ignore"
msgstr ""
#. aaiBM
-#: sw/inc/strings.hrc:1356
+#: sw/inc/strings.hrc:1357
msgctxt "STR_EXPLANATION_LINK"
msgid "Explanations..."
msgstr ""
#. kSDGu
-#: sw/inc/strings.hrc:1358
+#: sw/inc/strings.hrc:1359
msgctxt "STR_QUERY_SPECIAL_FORCED"
msgid "Check special regions is deactivated. Check anyway?"
msgstr ""
#. KiAdJ
-#: sw/inc/strings.hrc:1359
+#: sw/inc/strings.hrc:1360
msgctxt "STR_NO_MERGE_ENTRY"
msgid "Could not merge documents."
msgstr ""
#. FqsCt
-#: sw/inc/strings.hrc:1360
+#: sw/inc/strings.hrc:1361
msgctxt "STR_NO_BASE_FOR_MERGE"
msgid "%PRODUCTNAME Base component is absent, and it is required to use Mail Merge."
msgstr ""
#. wcuf4
-#: sw/inc/strings.hrc:1361
+#: sw/inc/strings.hrc:1362
msgctxt "STR_ERR_SRCSTREAM"
msgid "The source cannot be loaded."
msgstr ""
#. K9qMS
-#: sw/inc/strings.hrc:1362
+#: sw/inc/strings.hrc:1363
msgctxt "STR_ERR_NO_FAX"
msgid "No fax printer has been set under Tools/Options/%1/Print."
msgstr ""
#. XWQ8w
-#: sw/inc/strings.hrc:1363
+#: sw/inc/strings.hrc:1364
#, fuzzy
msgctxt "STR_WEBOPTIONS"
msgid "HTML document"
msgstr "Documento HTML"
#. qVZBx
-#: sw/inc/strings.hrc:1364
+#: sw/inc/strings.hrc:1365
#, fuzzy
msgctxt "STR_TEXTOPTIONS"
msgid "Text document"
msgstr "Documento de texto"
#. qmmPU
-#: sw/inc/strings.hrc:1365
+#: sw/inc/strings.hrc:1366
msgctxt "STR_SCAN_NOSOURCE"
msgid "Source not specified."
msgstr ""
#. 2LgDJ
-#: sw/inc/strings.hrc:1366
+#: sw/inc/strings.hrc:1367
msgctxt "STR_NUM_LEVEL"
msgid "Level "
msgstr ""
#. AcAD8
-#: sw/inc/strings.hrc:1367
+#: sw/inc/strings.hrc:1368
msgctxt "STR_NUM_OUTLINE"
msgid "Outline "
msgstr ""
#. DE9FZ
-#: sw/inc/strings.hrc:1368
+#: sw/inc/strings.hrc:1369
msgctxt "STR_EDIT_FOOTNOTE"
msgid "Edit Footnote/Endnote"
msgstr ""
#. EzBCZ
-#: sw/inc/strings.hrc:1369
+#: sw/inc/strings.hrc:1370
msgctxt "STR_NB_REPLACED"
msgid "Search key replaced XX times."
msgstr ""
#. fgywB
-#: sw/inc/strings.hrc:1370
+#: sw/inc/strings.hrc:1371
#, fuzzy
msgctxt "STR_SRCVIEW_ROW"
msgid "Row "
msgstr "Ringlera"
#. GUc4a
-#: sw/inc/strings.hrc:1371
+#: sw/inc/strings.hrc:1372
#, fuzzy
msgctxt "STR_SRCVIEW_COL"
msgid "Column "
msgstr "Columna"
#. yMyuo
-#: sw/inc/strings.hrc:1372
+#: sw/inc/strings.hrc:1373
msgctxt "STR_SAVEAS_SRC"
msgid "~Export source..."
msgstr ""
#. ywFCb
-#: sw/inc/strings.hrc:1373
+#: sw/inc/strings.hrc:1374
msgctxt "STR_SAVEACOPY_SRC"
msgid "~Export copy of source..."
msgstr ""
#. BT3M3
-#: sw/inc/strings.hrc:1375
+#: sw/inc/strings.hrc:1376
msgctxt "ST_CONTINUE"
msgid "~Continue"
msgstr ""
#. ZR9aw
-#: sw/inc/strings.hrc:1376
+#: sw/inc/strings.hrc:1377
msgctxt "ST_SENDINGTO"
msgid "Sending to: %1"
msgstr ""
#. YCNYb
-#: sw/inc/strings.hrc:1377
+#: sw/inc/strings.hrc:1378
msgctxt "ST_COMPLETED"
msgid "Successfully sent"
msgstr ""
#. fmHmE
-#: sw/inc/strings.hrc:1378
+#: sw/inc/strings.hrc:1379
msgctxt "ST_FAILED"
msgid "Sending failed"
msgstr ""
#. yAAPM
-#: sw/inc/strings.hrc:1380
+#: sw/inc/strings.hrc:1381
msgctxt "STR_SENDER_TOKENS"
msgid "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
msgstr ""
#. mWrXk
-#: sw/inc/strings.hrc:1382
+#: sw/inc/strings.hrc:1383
msgctxt "STR_TBL_FORMULA"
msgid "Text formula"
msgstr ""
#. RmBFW
-#: sw/inc/strings.hrc:1384
+#: sw/inc/strings.hrc:1385
msgctxt "STR_DROP_DOWN_EMPTY_LIST"
msgid "No Item specified"
msgstr ""
@@ -9864,7 +9870,7 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Classification strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1390
+#: sw/inc/strings.hrc:1391
msgctxt "STR_CLASSIFICATION_LEVEL_CHANGED"
msgid "Document classification has changed because a paragraph classification level is higher"
msgstr ""
@@ -9873,123 +9879,123 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Paragraph Signature
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1395
+#: sw/inc/strings.hrc:1396
msgctxt "STR_VALID"
msgid " Valid "
msgstr ""
#. xAKRC
-#: sw/inc/strings.hrc:1396
+#: sw/inc/strings.hrc:1397
msgctxt "STR_INVALID"
msgid "Invalid"
msgstr ""
#. pDAHz
-#: sw/inc/strings.hrc:1397
+#: sw/inc/strings.hrc:1398
msgctxt "STR_INVALID_SIGNATURE"
msgid "Invalid Signature"
msgstr ""
#. etEEx
-#: sw/inc/strings.hrc:1398
+#: sw/inc/strings.hrc:1399
msgctxt "STR_SIGNED_BY"
msgid "Signed-by"
msgstr ""
#. BK7ub
-#: sw/inc/strings.hrc:1399
+#: sw/inc/strings.hrc:1400
msgctxt "STR_PARAGRAPH_SIGNATURE"
msgid "Paragraph Signature"
msgstr ""
#. kZKCf
-#: sw/inc/strings.hrc:1401
+#: sw/inc/strings.hrc:1402
#, fuzzy
msgctxt "labeldialog|cards"
msgid "Business Cards"
msgstr "Tarchetas de pr~esentación"
#. ECFij
-#: sw/inc/strings.hrc:1403
+#: sw/inc/strings.hrc:1404
msgctxt "STR_MAILCONFIG_DLG_TITLE"
msgid "Email settings"
msgstr ""
#. PwrB9
-#: sw/inc/strings.hrc:1405
+#: sw/inc/strings.hrc:1406
msgctxt "optredlinepage|insertedpreview"
msgid "Insert"
msgstr ""
#. NL48o
-#: sw/inc/strings.hrc:1406
+#: sw/inc/strings.hrc:1407
msgctxt "optredlinepage|deletedpreview"
msgid "Delete"
msgstr "Eliminar"
#. PW4Bz
-#: sw/inc/strings.hrc:1407
+#: sw/inc/strings.hrc:1408
msgctxt "optredlinepage|changedpreview"
msgid "Attributes"
msgstr ""
#. yfgiq
-#: sw/inc/strings.hrc:1409
+#: sw/inc/strings.hrc:1410
msgctxt "createautomarkdialog|searchterm"
msgid "Search term"
msgstr ""
#. fhLzk
-#: sw/inc/strings.hrc:1410
+#: sw/inc/strings.hrc:1411
msgctxt "createautomarkdialog|alternative"
msgid "Alternative entry"
msgstr ""
#. gD4D3
-#: sw/inc/strings.hrc:1411
+#: sw/inc/strings.hrc:1412
msgctxt "createautomarkdialog|key1"
msgid "1st key"
msgstr ""
#. BFszo
-#: sw/inc/strings.hrc:1412
+#: sw/inc/strings.hrc:1413
msgctxt "createautomarkdialog|key2"
msgid "2nd key"
msgstr ""
#. EoAB8
-#: sw/inc/strings.hrc:1413
+#: sw/inc/strings.hrc:1414
#, fuzzy
msgctxt "createautomarkdialog|comment"
msgid "Comment"
msgstr "Conteniu"
#. Shstx
-#: sw/inc/strings.hrc:1414
+#: sw/inc/strings.hrc:1415
msgctxt "createautomarkdialog|casesensitive"
msgid "Match case"
msgstr ""
#. 8Cjvb
-#: sw/inc/strings.hrc:1415
+#: sw/inc/strings.hrc:1416
msgctxt "createautomarkdialog|wordonly"
msgid "Word only"
msgstr ""
#. zD8rb
-#: sw/inc/strings.hrc:1416
+#: sw/inc/strings.hrc:1417
msgctxt "createautomarkdialog|yes"
msgid "Yes"
msgstr ""
#. 4tTop
-#: sw/inc/strings.hrc:1417
+#: sw/inc/strings.hrc:1418
msgctxt "createautomarkdialog|no"
msgid "No"
msgstr ""
#. KhKwa
-#: sw/inc/strings.hrc:1419
+#: sw/inc/strings.hrc:1420
#, fuzzy
msgctxt "sidebarwrap|customlabel"
msgid "Custom"
@@ -10488,8 +10494,14 @@ msgctxt "asciifilterdialog|includebom"
msgid "Include byte-order mark"
msgstr ""
+#. 9E8VF
+#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:291
+msgctxt "asciifilterdialog|extended_tip|includebom"
+msgid "For Unicode character set only, a byte order mark (BOM) is a sequence of bytes used to indicate Unicode encoding of a text file."
+msgstr ""
+
#. B2ofV
-#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:304
+#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:309
#, fuzzy
msgctxt "asciifilterdialog|label1"
msgid "Properties"
@@ -20105,44 +20117,50 @@ msgctxt "mmresultsavedialog|extended_tip|individualrb"
msgid "Saves the merged document as a separate file for each recipient. The file names of the documents are constructed from the name that you enter, followed by an underscore, and the number of the current record."
msgstr ""
+#. g3Knf
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:157
+msgctxt "mmresultsavedialog|label2"
+msgid "Save As Options"
+msgstr ""
+
#. xRGbs
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:159
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:191
msgctxt "mmresultsavedialog|fromrb"
msgid "_From"
msgstr ""
#. gvAQf
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:170
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:202
msgctxt "mmresultsavedialog|extended_tip|fromrb"
msgid "Selects a range of records starting at the record number in the From box and ending at the record number in the To box."
msgstr ""
#. LGEwR
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:183
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:215
msgctxt "mmresultsavedialog|toft"
msgid "_To"
msgstr ""
#. XML8V
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:205
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:238
msgctxt "mmresultsavedialog|extended_tip|from"
msgid "Enter the number of the first record to include in the mail merge."
msgstr ""
#. dAWiB
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:224
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:258
msgctxt "mmresultsavedialog|extended_tip|to"
msgid "Enter the number of the last record to include in the mail merge."
msgstr ""
-#. g3Knf
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:245
-msgctxt "mmresultsavedialog|label2"
-msgid "Save As Options"
+#. VibGJ
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:273
+msgctxt "mmresultsavedialog|FromToRange"
+msgid "Range"
msgstr ""
#. 2BCiE
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:267
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:295
msgctxt "mmresultsavedialog|extended_tip|MMResultSaveDialog"
msgid "Save the mail merge output to file."
msgstr ""
@@ -20511,7 +20529,7 @@ msgid "Transfer Status"
msgstr ""
#. c2i5B
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:26
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:20
msgctxt "navigatorcontextmenu|STR_SEND_OUTLINE_TO_CLIPBOARD_ENTRY"
msgid "Send Outline to Clipboard"
msgstr ""
@@ -20523,143 +20541,215 @@ msgid "Go to"
msgstr ""
#. VCmAZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:49
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:43
msgctxt "navigatorcontextmenu|STR_SELECT"
msgid "Select"
msgstr ""
#. dajzZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:57
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:51
msgctxt "navigatorcontextmenu|STR_DELETE"
msgid "Delete"
msgstr ""
#. CQSp3
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:66
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:60
msgctxt "navigatorcontextmenu|STR_PROMOTE_CHAPTER"
msgid "Promote Chapter"
msgstr ""
#. ikRHB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:75
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:69
msgctxt "navigatorcontextmenu|STR_DEMOTE_CHAPTER"
msgid "Demote Chapter"
msgstr ""
#. MhtFa
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:84
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:78
msgctxt "navigatorcontextmenu|STR_PROMOTE_LEVEL"
msgid "Promote Level"
msgstr ""
#. dUM5D
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:93
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:87
msgctxt "navigatorcontextmenu|STR_DEMOTE_LEVEL"
msgid "Demote Level"
msgstr ""
#. tukRq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:102
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:96
msgctxt "navigatorcontextmenu|STR_REMOVE_INDEX"
msgid "_Remove Index"
msgstr ""
#. C4355
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:110
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:104
msgctxt "navigatorcontextmenu|STR_UPDATE"
msgid "_Update"
msgstr ""
#. BtCca
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:118
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:112
msgctxt "navigatorcontextmenu|STR_EDIT_ENTRY"
msgid "Edit..."
msgstr ""
#. BYyhD
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:126
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:120
msgctxt "navigatorcontextmenu|STR_REMOVE_TBL_PROTECTION"
msgid "_Unprotect"
msgstr ""
#. 6KWWG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:134
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:128
msgctxt "navigatorcontextmenu|STR_READONLY_IDX"
msgid "Read-_only"
msgstr ""
#. BUQRq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:142
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:136
msgctxt "navigatorcontextmenu|STR_DELETE_ENTRY"
msgid "_Delete"
msgstr ""
#. CUqD5
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:151
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:145
msgctxt "navigatorcontextmenu|STR_RENAME"
msgid "_Rename..."
msgstr ""
#. U5nAb
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:159
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:153
msgctxt "navigatorcontextmenu|STR_POSTIT_SHOW"
msgid "Show All"
msgstr ""
#. E2wWp
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:167
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:161
msgctxt "navigatorcontextmenu|STR_POSTIT_HIDE"
msgid "Hide All"
msgstr ""
#. aDRke
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:175
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:169
msgctxt "navigatorcontextmenu|STR_POSTIT_DELETE"
msgid "Delete All"
msgstr ""
#. YBipC
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:189
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:183
msgctxt "navigatorcontextmenu|STR_OUTLINE_CONTENT"
msgid "Outline Folding"
msgstr ""
-#. EBK2E
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:209
-msgctxt "navigatorcontextmenu|STR_OUTLINE_TRACKING"
-msgid "Outline Tracking"
-msgstr ""
-
#. cECoG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:223
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:203
msgctxt "navigatorcontextmenu|STR_OUTLINE_LEVEL"
msgid "Outline Level"
msgstr ""
+#. EBK2E
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:217
+msgctxt "navigatorcontextmenu|STR_OUTLINE_TRACKING"
+msgid "Outline Tracking"
+msgstr ""
+
#. fZEEr
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:237
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:231
msgctxt "navigatorcontextmenu|STR_TABLE_TRACKING"
msgid "Table Tracking"
msgstr ""
#. 7oCFa
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:245
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:239
msgctxt "navigatorcontextmenu|STR_SECTION_TRACKING"
msgid "Section Tracking"
msgstr ""
+#. YmjQf
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:247
+msgctxt "navigatorcontextmenu|STR_FRAME_TRACKING"
+msgid "Frame Tracking"
+msgstr ""
+
+#. vhxX5
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:255
+msgctxt "navigatorcontextmenu|STR_IMAGE_TRACKING"
+msgid "Image Tracking"
+msgstr ""
+
+#. mcYqZ
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:263
+msgctxt "navigatorcontextmenu|STR_OLE_OBJECT_TRACKING"
+msgid "OLE Object Tracking"
+msgstr ""
+
+#. DRaED
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:271
+msgctxt "navigatorcontextmenu|STR_BOOKMARK_TRACKING"
+msgid "Bookmark Tracking"
+msgstr ""
+
+#. vpLmh
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:279
+msgctxt "navigatorcontextmenu|STR_HYPERLINK_TRACKING"
+msgid "Hyperlink Tracking"
+msgstr ""
+
+#. EvBzN
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:287
+msgctxt "navigatorcontextmenu|STR_REFERENCE_TRACKING"
+msgid "Reference Tracking"
+msgstr ""
+
+#. M8Bes
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:295
+msgctxt "navigatorcontextmenu|STR_INDEX_TRACKING"
+msgid "Index Tracking"
+msgstr ""
+
+#. KBFwM
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:303
+msgctxt "navigatorcontextmenu|STR_COMMENT_TRACKING"
+msgid "Comment Tracking"
+msgstr ""
+
+#. oGavB
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:311
+msgctxt "navigatorcontextmenu|STR_DRAWING_OBJECT_TRACKING"
+msgid "Drawing Object Tracking"
+msgstr ""
+
+#. w8FTW
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:319
+msgctxt "navigatorcontextmenu|STR_FIELD_TRACKING"
+msgid "Field Tracking"
+msgstr ""
+
+#. BoCeZ
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:327
+msgctxt "navigatorcontextmenu|STR_FOOTNOTE_TRACKING"
+msgid "Footnote Tracking"
+msgstr ""
+
#. GyAcG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:253
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:341
msgctxt "navigatorcontextmenu|STR_DRAGMODE"
msgid "Drag Mode"
msgstr ""
#. Zehx2
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:267
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:355
msgctxt "navigatorcontextmenu|STR_DISPLAY"
msgid "Display"
msgstr ""
+#. bgZoy
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:375
+msgctxt "navigatorcontextmenu|STR_COLLAPSE_ALL_CATEGORIES"
+msgid "Collapse All Categories"
+msgstr ""
+
#. ba8wC
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:18
msgctxt "navigatorpanel|hyperlink"
diff --git a/source/an/vcl/messages.po b/source/an/vcl/messages.po
index 79a452448f3..d1b7dc54de3 100644
--- a/source/an/vcl/messages.po
+++ b/source/an/vcl/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-10 23:12+0200\n"
+"POT-Creation-Date: 2021-10-20 13:09+0200\n"
"PO-Revision-Date: 2021-09-15 11:23+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/an/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542022411.000000\n"
#. k5jTM
@@ -1975,530 +1975,530 @@ msgid "_Print"
msgstr ""
#. M3L4L
-#: vcl/uiconfig/ui/printdialog.ui:157
+#: vcl/uiconfig/ui/printdialog.ui:160
msgctxt "printdialog|printpreview"
msgid "Print preview"
msgstr ""
#. 67YPm
-#: vcl/uiconfig/ui/printdialog.ui:163
+#: vcl/uiconfig/ui/printdialog.ui:166
msgctxt "printdialog|extended_tip|preview"
msgid "The preview shows how each sheet of paper will look. You can browse through all sheets of paper with the buttons below the preview."
msgstr ""
#. dQEY8
-#: vcl/uiconfig/ui/printdialog.ui:193
+#: vcl/uiconfig/ui/printdialog.ui:196
msgctxt "printdialog|previewbox"
msgid "Pre_view"
msgstr ""
#. EpB5H
-#: vcl/uiconfig/ui/printdialog.ui:202
+#: vcl/uiconfig/ui/printdialog.ui:205
msgctxt "printdialog|extended_tip|previewbox"
msgid "Turn on or off display of the print preview."
msgstr ""
#. SbgFv
-#: vcl/uiconfig/ui/printdialog.ui:232
+#: vcl/uiconfig/ui/printdialog.ui:235
msgctxt "printdialog|firstpage"
msgid "First page"
msgstr ""
#. GVGSq
-#: vcl/uiconfig/ui/printdialog.ui:236
+#: vcl/uiconfig/ui/printdialog.ui:239
msgctxt "printdialog|extended_tip|btnFirst"
msgid "Shows preview of the first page."
msgstr ""
#. ebceU
-#: vcl/uiconfig/ui/printdialog.ui:251
+#: vcl/uiconfig/ui/printdialog.ui:254
msgctxt "printdialog|backward"
msgid "Previous page"
msgstr ""
#. uS5Ka
-#: vcl/uiconfig/ui/printdialog.ui:255
+#: vcl/uiconfig/ui/printdialog.ui:258
msgctxt "printdialog|extended_tip|backward"
msgid "Shows preview of the previous page."
msgstr ""
#. c7uMG
-#: vcl/uiconfig/ui/printdialog.ui:274
+#: vcl/uiconfig/ui/printdialog.ui:277
msgctxt "printdialog|extended_tip|pageedit"
msgid "Enter the number of page to be shown in the preview."
msgstr ""
#. yyFVV
-#: vcl/uiconfig/ui/printdialog.ui:288
+#: vcl/uiconfig/ui/printdialog.ui:291
msgctxt "printdialog|totalnumpages"
msgid "/ %n"
msgstr ""
#. CZQLF
-#: vcl/uiconfig/ui/printdialog.ui:301
+#: vcl/uiconfig/ui/printdialog.ui:304
msgctxt "printdialog|forward"
msgid "Next page"
msgstr ""
#. emK9r
-#: vcl/uiconfig/ui/printdialog.ui:305
+#: vcl/uiconfig/ui/printdialog.ui:308
msgctxt "printdialog|extended_tip|forward"
msgid "Shows preview of the next page."
msgstr ""
#. Aq6Gv
-#: vcl/uiconfig/ui/printdialog.ui:320
+#: vcl/uiconfig/ui/printdialog.ui:323
msgctxt "printdialog|lastpage"
msgid "Last page"
msgstr ""
#. RwCmD
-#: vcl/uiconfig/ui/printdialog.ui:324
+#: vcl/uiconfig/ui/printdialog.ui:327
msgctxt "printdialog|extended_tip|btnLast"
msgid "Shows preview of the last page."
msgstr ""
#. PD6Aj
-#: vcl/uiconfig/ui/printdialog.ui:400
+#: vcl/uiconfig/ui/printdialog.ui:403
msgctxt "printdialog|extended_tip|printersbox"
msgid "The list box shows the installed printers. Click the printer to use for the current print job. Click the Properties button to change some of the printer properties."
msgstr ""
#. qgQDX
-#: vcl/uiconfig/ui/printdialog.ui:419
+#: vcl/uiconfig/ui/printdialog.ui:422
msgctxt "printdialog|labelstatus"
msgid "Status:"
msgstr ""
#. dyo2j
-#: vcl/uiconfig/ui/printdialog.ui:434
+#: vcl/uiconfig/ui/printdialog.ui:437
msgctxt "printdialog|status"
msgid "Default Printer"
msgstr ""
#. McZgQ
-#: vcl/uiconfig/ui/printdialog.ui:440
+#: vcl/uiconfig/ui/printdialog.ui:443
msgctxt "printdialog|extended_tip|status"
msgid "Shows the availability of the selected printer."
msgstr ""
#. oBACQ
-#: vcl/uiconfig/ui/printdialog.ui:452
+#: vcl/uiconfig/ui/printdialog.ui:455
msgctxt "printdialog|setup"
msgid "Properties..."
msgstr "Propiedatz..."
#. 89CRC
-#: vcl/uiconfig/ui/printdialog.ui:459
+#: vcl/uiconfig/ui/printdialog.ui:462
msgctxt "printdialog|extended_tip|setup"
msgid "Opens the Printer Properties dialog. The printer properties vary according to the printer that you select."
msgstr ""
#. AJGau
-#: vcl/uiconfig/ui/printdialog.ui:483
+#: vcl/uiconfig/ui/printdialog.ui:486
msgctxt "printdialog|labelprinter"
msgid "Printer"
msgstr ""
#. AyxGJ
-#: vcl/uiconfig/ui/printdialog.ui:521
+#: vcl/uiconfig/ui/printdialog.ui:524
msgctxt "printdialog|rbAllPages"
msgid "_All pages"
msgstr ""
#. AQ7Ms
-#: vcl/uiconfig/ui/printdialog.ui:532
+#: vcl/uiconfig/ui/printdialog.ui:535
msgctxt "printdialog|extended_tip|rbAllPages"
msgid "Prints the entire document."
msgstr ""
#. pYtbq
-#: vcl/uiconfig/ui/printdialog.ui:543
+#: vcl/uiconfig/ui/printdialog.ui:546
msgctxt "printdialog|rbPageRange"
msgid "_Pages:"
msgstr ""
#. azXfE
-#: vcl/uiconfig/ui/printdialog.ui:555
+#: vcl/uiconfig/ui/printdialog.ui:558
msgctxt "printdialog|extended_tip|rbRangePages"
msgid "Prints only the pages or slides that you specify in the Pages box."
msgstr ""
#. 786QC
-#: vcl/uiconfig/ui/printdialog.ui:571
+#: vcl/uiconfig/ui/printdialog.ui:574
msgctxt "printdialog|pagerange"
msgid "e.g.: 1, 3-5, 7, 9"
msgstr ""
#. FTtLK
-#: vcl/uiconfig/ui/printdialog.ui:574
+#: vcl/uiconfig/ui/printdialog.ui:577
msgctxt "printdialog|extended_tip|pagerange"
msgid "To print a range of pages, use a format like 3-6. To print single pages, use a format like 7;9;11. You can print a combination of page ranges and single pages, by using a format like 3-6;8;10;12."
msgstr ""
#. Z5kiB
-#: vcl/uiconfig/ui/printdialog.ui:585
+#: vcl/uiconfig/ui/printdialog.ui:588
msgctxt "printdialog|rbRangeSelection"
msgid "_Selection"
msgstr ""
#. CJ2E7
-#: vcl/uiconfig/ui/printdialog.ui:595
+#: vcl/uiconfig/ui/printdialog.ui:598
msgctxt "printdialog|extended_tip|rbRangeSelection"
msgid "Prints only the selected area(s) or object(s) in the current document."
msgstr ""
#. UKYwM
-#: vcl/uiconfig/ui/printdialog.ui:609
+#: vcl/uiconfig/ui/printdialog.ui:612
msgctxt "printdialog|includeevenodd"
msgid "Include:"
msgstr ""
#. XmeFL
-#: vcl/uiconfig/ui/printdialog.ui:626
+#: vcl/uiconfig/ui/printdialog.ui:629
msgctxt "printdialog|liststore3"
msgid "Odd and Even Pages"
msgstr ""
#. 49y67
-#: vcl/uiconfig/ui/printdialog.ui:627
+#: vcl/uiconfig/ui/printdialog.ui:630
msgctxt "printdialog|liststore3"
msgid "Odd Pages"
msgstr ""
#. 6CkPE
-#: vcl/uiconfig/ui/printdialog.ui:628
+#: vcl/uiconfig/ui/printdialog.ui:631
msgctxt "printdialog|liststore3"
msgid "Even Pages"
msgstr ""
#. ZeA37
-#: vcl/uiconfig/ui/printdialog.ui:632
+#: vcl/uiconfig/ui/printdialog.ui:635
msgctxt "printdialog|extended_tip|evenoddbox"
msgid "Select the subset of pages to print."
msgstr ""
#. wn2kB
-#: vcl/uiconfig/ui/printdialog.ui:663
+#: vcl/uiconfig/ui/printdialog.ui:666
msgctxt "printdialog|fromwhich"
msgid "_From which print:"
msgstr ""
#. Cuc2u
-#: vcl/uiconfig/ui/printdialog.ui:688
+#: vcl/uiconfig/ui/printdialog.ui:691
msgctxt "printdialog|labelpapersides"
msgid "Paper _sides:"
msgstr ""
#. SYxRJ
-#: vcl/uiconfig/ui/printdialog.ui:704
+#: vcl/uiconfig/ui/printdialog.ui:707
msgctxt "printdialog|liststore4"
msgid "Print on one side (simplex)"
msgstr ""
#. hCZPg
-#: vcl/uiconfig/ui/printdialog.ui:705
+#: vcl/uiconfig/ui/printdialog.ui:708
msgctxt "printdialog|liststore4"
msgid "Print on both sides (duplex long edge)"
msgstr ""
#. iqr9C
-#: vcl/uiconfig/ui/printdialog.ui:706
+#: vcl/uiconfig/ui/printdialog.ui:709
msgctxt "printdialog|liststore4"
msgid "Print on both sides (duplex short edge)"
msgstr ""
#. CKpgL
-#: vcl/uiconfig/ui/printdialog.ui:710
+#: vcl/uiconfig/ui/printdialog.ui:713
msgctxt "printdialog|extended_tip|sidesbox"
msgid "If the printer is capable of duplex printing it's possible to choose between using only one side of the paper or both."
msgstr ""
#. AVv6D
-#: vcl/uiconfig/ui/printdialog.ui:724
+#: vcl/uiconfig/ui/printdialog.ui:727
msgctxt "printdialog|labelcopies"
msgid "_Number of copies:"
msgstr ""
#. NwD7S
-#: vcl/uiconfig/ui/printdialog.ui:747
+#: vcl/uiconfig/ui/printdialog.ui:750
msgctxt "printdialog|extended_tip|copycount"
msgid "Enter the number of copies that you want to print."
msgstr ""
#. BT4nY
-#: vcl/uiconfig/ui/printdialog.ui:761
+#: vcl/uiconfig/ui/printdialog.ui:764
msgctxt "printdialog|cbPrintOrder"
msgid "Order:"
msgstr ""
#. vwjVt
-#: vcl/uiconfig/ui/printdialog.ui:774
+#: vcl/uiconfig/ui/printdialog.ui:777
msgctxt "printdialog|reverseorder"
msgid "Print in _reverse order"
msgstr ""
#. svd2Q
-#: vcl/uiconfig/ui/printdialog.ui:783
+#: vcl/uiconfig/ui/printdialog.ui:786
msgctxt "printdialog|extended_tip|reverseorder"
msgid "Check to print pages in reverse order."
msgstr ""
#. G6QEr
-#: vcl/uiconfig/ui/printdialog.ui:800
+#: vcl/uiconfig/ui/printdialog.ui:803
msgctxt "printdialog|collate"
msgid "_Collate"
msgstr ""
#. kR6bA
-#: vcl/uiconfig/ui/printdialog.ui:808
+#: vcl/uiconfig/ui/printdialog.ui:811
msgctxt "printdialog|extended_tip|collate"
msgid "Preserves the page order of the original document."
msgstr ""
#. GZrpG
-#: vcl/uiconfig/ui/printdialog.ui:838
+#: vcl/uiconfig/ui/printdialog.ui:841
msgctxt "printdialog|singlejobs"
msgid "Create separate print jobs for collated output"
msgstr ""
#. X4Am9
-#: vcl/uiconfig/ui/printdialog.ui:846
+#: vcl/uiconfig/ui/printdialog.ui:849
msgctxt "printdialog|extended_tip|collate"
msgid "Check to not rely on the printer to create collated copies but create a print job for each copy instead."
msgstr ""
#. 2MdHu
-#: vcl/uiconfig/ui/printdialog.ui:867
+#: vcl/uiconfig/ui/printdialog.ui:870
msgctxt "printdialog|rangeexpander"
msgid "_More"
msgstr ""
#. ehfCG
-#: vcl/uiconfig/ui/printdialog.ui:883
+#: vcl/uiconfig/ui/printdialog.ui:886
msgctxt "printdialog|label2"
msgid "Range and Copies"
msgstr ""
#. CBLet
-#: vcl/uiconfig/ui/printdialog.ui:922
+#: vcl/uiconfig/ui/printdialog.ui:925
msgctxt "printdialog|labelorientation"
msgid "Orientation:"
msgstr ""
#. U4byk
-#: vcl/uiconfig/ui/printdialog.ui:937
+#: vcl/uiconfig/ui/printdialog.ui:940
msgctxt "printdialog|labelsize"
msgid "Paper size:"
msgstr ""
#. X9iBj
-#: vcl/uiconfig/ui/printdialog.ui:954
+#: vcl/uiconfig/ui/printdialog.ui:957
msgctxt "printdialog|liststore3"
msgid "Automatic"
msgstr "Automatica"
#. vaWZE
-#: vcl/uiconfig/ui/printdialog.ui:955
+#: vcl/uiconfig/ui/printdialog.ui:958
msgctxt "printdialog|liststore3"
msgid "Portrait"
msgstr ""
#. Qnpje
-#: vcl/uiconfig/ui/printdialog.ui:956
+#: vcl/uiconfig/ui/printdialog.ui:959
msgctxt "printdialog|liststore3"
msgid "Landscape"
msgstr ""
#. PkAo9
-#: vcl/uiconfig/ui/printdialog.ui:960
+#: vcl/uiconfig/ui/printdialog.ui:963
msgctxt "printdialog|extended_tip|pageorientationbox"
msgid "Select the orientation of the paper."
msgstr ""
#. DSFv2
-#: vcl/uiconfig/ui/printdialog.ui:976
+#: vcl/uiconfig/ui/printdialog.ui:979
msgctxt "printdialog|extended_tip|papersizebox"
msgid "Set the paper size you would like to use. The preview will show how the document would look on a paper of the given size."
msgstr ""
#. EZdsx
-#: vcl/uiconfig/ui/printdialog.ui:1011
+#: vcl/uiconfig/ui/printdialog.ui:1014
msgctxt "printdialog|pagespersheetbtn"
msgid "Pages per sheet:"
msgstr ""
#. ok8Lw
-#: vcl/uiconfig/ui/printdialog.ui:1025
+#: vcl/uiconfig/ui/printdialog.ui:1028
msgctxt "printdialog|extended_tip|pagespersheetbtn"
msgid "Print multiple pages per sheet of paper."
msgstr ""
#. DKP5g
-#: vcl/uiconfig/ui/printdialog.ui:1066
+#: vcl/uiconfig/ui/printdialog.ui:1069
#, fuzzy
msgctxt "printdialog|liststore1"
msgid "Custom"
msgstr "Personalizau 1"
#. duVEo
-#: vcl/uiconfig/ui/printdialog.ui:1073
+#: vcl/uiconfig/ui/printdialog.ui:1076
msgctxt "printdialog|extended_tip|pagespersheetbox"
msgid "Select how many pages to print per sheet of paper."
msgstr ""
#. 65WWt
-#: vcl/uiconfig/ui/printdialog.ui:1086
+#: vcl/uiconfig/ui/printdialog.ui:1089
msgctxt "printdialog|pagespersheettxt"
msgid "Pages:"
msgstr ""
#. X8bjE
-#: vcl/uiconfig/ui/printdialog.ui:1106
+#: vcl/uiconfig/ui/printdialog.ui:1109
msgctxt "printdialog|extended_tip|pagerows"
msgid "Select number of rows."
msgstr ""
#. DM5aX
-#: vcl/uiconfig/ui/printdialog.ui:1118
+#: vcl/uiconfig/ui/printdialog.ui:1121
msgctxt "printdialog|by"
msgid "by"
msgstr ""
#. Z2EDz
-#: vcl/uiconfig/ui/printdialog.ui:1137
+#: vcl/uiconfig/ui/printdialog.ui:1140
msgctxt "printdialog|extended_tip|pagecols"
msgid "Select number of columns."
msgstr ""
#. szcD7
-#: vcl/uiconfig/ui/printdialog.ui:1149
+#: vcl/uiconfig/ui/printdialog.ui:1152
msgctxt "printdialog|pagemargintxt1"
msgid "Margin:"
msgstr ""
#. QxE58
-#: vcl/uiconfig/ui/printdialog.ui:1168
+#: vcl/uiconfig/ui/printdialog.ui:1171
msgctxt "printdialog|extended_tip|pagemarginsb"
msgid "Select margin between individual pages on each sheet of paper."
msgstr ""
#. iGg2m
-#: vcl/uiconfig/ui/printdialog.ui:1181
+#: vcl/uiconfig/ui/printdialog.ui:1184
msgctxt "printdialog|pagemargintxt2"
msgid "between pages"
msgstr ""
#. oryuw
-#: vcl/uiconfig/ui/printdialog.ui:1192
+#: vcl/uiconfig/ui/printdialog.ui:1195
msgctxt "printdialog|sheetmargintxt1"
msgid "Distance:"
msgstr ""
#. EDFnW
-#: vcl/uiconfig/ui/printdialog.ui:1211
+#: vcl/uiconfig/ui/printdialog.ui:1214
msgctxt "printdialog|extended_tip|sheetmarginsb"
msgid "Select margin between the printed pages and paper edge."
msgstr ""
#. XhfvB
-#: vcl/uiconfig/ui/printdialog.ui:1224
+#: vcl/uiconfig/ui/printdialog.ui:1227
msgctxt "printdialog|sheetmargintxt2"
msgid "to sheet border"
msgstr ""
#. AGWe3
-#: vcl/uiconfig/ui/printdialog.ui:1237
+#: vcl/uiconfig/ui/printdialog.ui:1240
msgctxt "printdialog|labelorder"
msgid "Order:"
msgstr ""
#. psAku
-#: vcl/uiconfig/ui/printdialog.ui:1254
+#: vcl/uiconfig/ui/printdialog.ui:1257
msgctxt "printdialog|liststore2"
msgid "Left to right, then down"
msgstr ""
#. fnfLt
-#: vcl/uiconfig/ui/printdialog.ui:1255
+#: vcl/uiconfig/ui/printdialog.ui:1258
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then right"
msgstr ""
#. y6nZE
-#: vcl/uiconfig/ui/printdialog.ui:1256
+#: vcl/uiconfig/ui/printdialog.ui:1259
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then left"
msgstr ""
#. PteTg
-#: vcl/uiconfig/ui/printdialog.ui:1257
+#: vcl/uiconfig/ui/printdialog.ui:1260
msgctxt "printdialog|liststore2"
msgid "Right to left, then down"
msgstr ""
#. DvF8r
-#: vcl/uiconfig/ui/printdialog.ui:1261
+#: vcl/uiconfig/ui/printdialog.ui:1264
msgctxt "printdialog|extended_tip|orderbox"
msgid "Select order in which pages are to be printed."
msgstr ""
#. QG59F
-#: vcl/uiconfig/ui/printdialog.ui:1273
+#: vcl/uiconfig/ui/printdialog.ui:1276
msgctxt "printdialog|bordercb"
msgid "Draw a border around each page"
msgstr ""
#. 8aAGu
-#: vcl/uiconfig/ui/printdialog.ui:1282
+#: vcl/uiconfig/ui/printdialog.ui:1285
msgctxt "printdialog|extended_tip|bordercb"
msgid "Check to draw a border around each page."
msgstr ""
#. Yo4xV
-#: vcl/uiconfig/ui/printdialog.ui:1294
+#: vcl/uiconfig/ui/printdialog.ui:1297
msgctxt "printdialog|brochure"
msgid "Brochure"
msgstr ""
#. 3zcKq
-#: vcl/uiconfig/ui/printdialog.ui:1304
+#: vcl/uiconfig/ui/printdialog.ui:1307
msgctxt "printdialog|extended_tip|brochure"
msgid "Select to print the document in brochure format."
msgstr ""
#. JMA7A
-#: vcl/uiconfig/ui/printdialog.ui:1327
+#: vcl/uiconfig/ui/printdialog.ui:1330
msgctxt "printdialog|collationpreview"
msgid "Collation preview"
msgstr ""
#. dePkB
-#: vcl/uiconfig/ui/printdialog.ui:1332
+#: vcl/uiconfig/ui/printdialog.ui:1335
msgctxt "printdialog|extended_tip|orderpreview"
msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look."
msgstr ""
#. fCjdq
-#: vcl/uiconfig/ui/printdialog.ui:1354
+#: vcl/uiconfig/ui/printdialog.ui:1357
msgctxt "printdialog|layoutexpander"
msgid "M_ore"
msgstr ""
#. rCBA5
-#: vcl/uiconfig/ui/printdialog.ui:1370
+#: vcl/uiconfig/ui/printdialog.ui:1373
msgctxt "printdialog|label3"
msgid "Page Layout"
msgstr ""
#. A2iC5
-#: vcl/uiconfig/ui/printdialog.ui:1393
+#: vcl/uiconfig/ui/printdialog.ui:1396
msgctxt "printdialog|generallabel"
msgid "General"
msgstr ""
#. CzGM4
-#: vcl/uiconfig/ui/printdialog.ui:1447
+#: vcl/uiconfig/ui/printdialog.ui:1450
msgctxt "printdialog|extended_tip|PrintDialog"
msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document."
msgstr ""
diff --git a/source/ar/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po b/source/ar/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po
index 46412388342..7ed22c03e33 100644
--- a/source/ar/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po
+++ b/source/ar/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-11 18:38+0200\n"
+"POT-Creation-Date: 2021-10-20 13:07+0200\n"
"PO-Revision-Date: 2015-07-02 10:44+0000\n"
"Last-Translator: صفا الفليج <safa1996alfulaij@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -26,12 +26,12 @@ msgctxt ""
msgid "Firebird Embedded"
msgstr "فيربيرد مضمّنة"
-#. 3davX
+#. ZVyum
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
".Drivers.Installed.sdbc:firebird:*\n"
"DriverTypeDisplayName\n"
"value.text"
-msgid "Firebird File"
-msgstr "ملفّ فيربيرد"
+msgid "Firebird External"
+msgstr ""
diff --git a/source/ar/cui/messages.po b/source/ar/cui/messages.po
index c41c71a0c04..58f25f2d016 100644
--- a/source/ar/cui/messages.po
+++ b/source/ar/cui/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-10-04 19:50+0200\n"
-"PO-Revision-Date: 2021-06-27 17:05+0000\n"
+"PO-Revision-Date: 2021-10-16 19:38+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.8.1\n"
"X-POOTLE-MTIME: 1563567066.000000\n"
#. GyY9M
@@ -2196,7 +2196,7 @@ msgstr "لا يمكنك رؤية كل النص في الخلية؟ وسّع سط
#: cui/inc/tipoftheday.hrc:60
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Optimize your table layout with Table ▸ Size ▸ Distribute Rows / Columns Evenly."
-msgstr ""
+msgstr "حسّن تخطيط جدولك بـ جدول ▸ حجم ▸ وزّع الصفوف،الأعمدة بالتساوي."
#. prXEA
#: cui/inc/tipoftheday.hrc:61
@@ -5127,7 +5127,7 @@ msgstr ""
#: cui/uiconfig/ui/areatabpage.ui:36
msgctxt "areatabpage|tablelb"
msgid "Table"
-msgstr ""
+msgstr "جدول"
#. WxC4H
#: cui/uiconfig/ui/areatabpage.ui:40
@@ -6759,7 +6759,7 @@ msgstr "حدود الجدول"
#: cui/uiconfig/ui/colorconfigwin.ui:215
msgctxt "colorconfigwin|tblboundaries_lb"
msgid "Table boundaries color"
-msgstr ""
+msgstr "لون حدود الجدول"
#. TkNp4
#: cui/uiconfig/ui/colorconfigwin.ui:229
@@ -6849,7 +6849,7 @@ msgstr "ظلال الفهارس والجداول"
#: cui/uiconfig/ui/colorconfigwin.ui:597
msgctxt "colorconfigwin|index_lb"
msgid "Index and table shadings color"
-msgstr ""
+msgstr "لون تظليل الفهرس والجدول"
#. wBw2w
#: cui/uiconfig/ui/colorconfigwin.ui:611
@@ -13832,7 +13832,7 @@ msgstr "مخطط اللون"
#: cui/uiconfig/ui/optappearancepage.ui:189
msgctxt "extended_tip|colorconfig"
msgid "Select the colors for the user interface elements."
-msgstr ""
+msgstr "حدد ألوان عناصر واجهة المستخدم."
#. BtFUJ
#: cui/uiconfig/ui/optappearancepage.ui:222
@@ -13862,7 +13862,7 @@ msgstr "ألوان مخصّصة"
#: cui/uiconfig/ui/optappearancepage.ui:284
msgctxt "extended_tip|OptAppearancePage"
msgid "Sets the colors for the %PRODUCTNAME user interface."
-msgstr ""
+msgstr "يعيّن ألوان واجهة مستخدم %PRODUCTNAME"
#. nRFne
#: cui/uiconfig/ui/optasianpage.ui:27
@@ -21337,7 +21337,7 @@ msgstr ""
#: cui/uiconfig/ui/toolbarmodedialog.ui:13
msgctxt "ToolbarmodeDialog|Name"
msgid "Select Your Preferred User Interface"
-msgstr ""
+msgstr "حدد واجهة المستخدم التي تفضلها"
#. rSnx7
#: cui/uiconfig/ui/toolbarmodedialog.ui:33
diff --git a/source/ar/extensions/messages.po b/source/ar/extensions/messages.po
index f903b163402..9ae6aca3c6f 100644
--- a/source/ar/extensions/messages.po
+++ b/source/ar/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-10 23:11+0200\n"
+"POT-Creation-Date: 2021-10-20 13:07+0200\n"
"PO-Revision-Date: 2021-04-06 08:37+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/extensionsmessages/ar/>\n"
@@ -4255,91 +4255,163 @@ msgid "Scanner"
msgstr "ماسح ضوئي"
#. 8aFBr
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:66
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:78
msgctxt "sanedialog|deviceInfoButton"
msgid "About Dev_ice"
msgstr "_عن الجهاز"
+#. 3aG8b
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:85
+msgctxt "sanedialog|extended_tip|deviceInfoButton"
+msgid "Displays a popup window with information obtained from the scanner driver."
+msgstr ""
+
#. 3EeXn
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:80
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:97
msgctxt "sanedialog|previewButton"
msgid "Create Previe_w"
msgstr "أ_نشئ معاينة"
+#. FPGEB
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:104
+msgctxt "sanedialog|extended_tip|previewButton"
+msgid "Scans and displays the document in the preview area."
+msgstr ""
+
#. ihLsf
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:94
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:116
msgctxt "sanedialog|scanButton"
msgid "_Scan"
msgstr "ا_مسح"
+#. a4hC3
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:123
+msgctxt "sanedialog|extended_tip|ok"
+msgid "Scans an image, and then inserts the result into the document and closes the dialog."
+msgstr ""
+
#. gFREe
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:160
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:187
msgctxt "sanedialog|label3"
msgid "_Left:"
msgstr "ي_سار:"
#. ErDB4
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:174
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:201
msgctxt "sanedialog|label4"
msgid "To_p:"
msgstr "_فوق:"
#. bSfBR
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:188
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:215
msgctxt "sanedialog|label5"
msgid "_Right:"
msgstr "ي_مين:"
#. NGDq3
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:202
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:229
msgctxt "sanedialog|label6"
msgid "_Bottom:"
msgstr "_تحت:"
+#. nu6SM
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:249
+msgctxt "sanedialog|extended_tip|topSpinbutton"
+msgid "Set the top margin of the scan area."
+msgstr ""
+
+#. oDppB
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:268
+msgctxt "sanedialog|extended_tip|rightSpinbutton"
+msgid "Set the right margin of the scan area."
+msgstr ""
+
+#. EdgNn
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:287
+msgctxt "sanedialog|extended_tip|bottomSpinbutton"
+msgid "Set the bottom margin of the scan area."
+msgstr ""
+
+#. L7tZS
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:306
+msgctxt "sanedialog|extended_tip|leftSpinbutton"
+msgid "Set the left margin of the scan area."
+msgstr ""
+
#. YfU4m
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:274
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:321
msgctxt "sanedialog|label1"
msgid "Scan Area"
msgstr ""
+#. wECiq
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:366
+msgctxt "sanedialog|extended_tip|preview"
+msgid "Displays a preview of the scanned image. The preview area contains eight handles. Drag the handles to adjust the scan area or enter a value in the corresponding margin spin box."
+msgstr ""
+
#. FZ7Vw
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:327
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:379
msgctxt "sanedialog|label2"
msgid "Preview"
msgstr "معاينة"
#. EiiLN
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:361
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:413
msgctxt "sanedialog|label7"
msgid "Device _used"
msgstr "الجهاز المست_خدم"
#. W6hNP
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:375
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:427
msgctxt "sanedialog|label8"
msgid "Resolution [_DPI]"
msgstr "الدقة [_نقطة في البوصة]"
+#. diRy3
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:444
+msgctxt "sanedialog|extended_tip|deviceCombobox"
+msgid "Displays a list of available scanners detected in your system."
+msgstr ""
+
+#. nBuc6
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:466
+msgctxt "sanedialog|extended_tip|reslCombobox"
+msgid "Select the resolution in dots per inch for the scan job."
+msgstr ""
+
#. t3Tuq
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:430
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:492
msgctxt "sanedialog|advancedCheckbutton"
msgid "Show advanced options"
msgstr "اعرض الخيارات المتقدمة"
+#. yXnEA
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:500
+msgctxt "sanedialog|extended_tip|advancedcheckbutton"
+msgid "Mark this checkbox to display more configuration options for the scanner device."
+msgstr ""
+
#. gneMZ
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:460
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:527
msgctxt "sanedialog|label10"
msgid "Options:"
msgstr "الخيارات:"
+#. 4FHyM
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:569
+msgctxt "sanedialog\\extended_tip|optionSvTreeListBox"
+msgid "Displays the list of available scanner driver advanced options. Double click an option to display its contents just below."
+msgstr ""
+
#. VDQay
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:536
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:607
msgctxt "sanedialog|optionsButton"
msgid "Se_t"
msgstr "_حدد"
#. bNTfS
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:609
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:680
msgctxt "sanedialog|vectorLabel"
msgid "Vector element"
msgstr "عنصر متجهي"
diff --git a/source/ar/fpicker/messages.po b/source/ar/fpicker/messages.po
index 2032beaeec4..b54f023f5d3 100644
--- a/source/ar/fpicker/messages.po
+++ b/source/ar/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
"PO-Revision-Date: 2021-03-16 04:36+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/fpickermessages/ar/>\n"
@@ -222,49 +222,49 @@ msgid "_Open"
msgstr ""
#. JnE2t
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:548
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:551
msgctxt "explorerfiledialog|play"
msgid "_Play"
msgstr ""
#. dWNqZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:586
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:589
msgctxt "explorerfiledialog|file_name_label"
msgid "File _name:"
msgstr "ا_سم الملفّ:"
#. 9cjFB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:612
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:615
msgctxt "explorerfiledialog|file_type_label"
msgid "File _type:"
msgstr "_نوع الملفّ:"
#. quCXH
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:676
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:679
msgctxt "explorerfiledialog|readonly"
msgid "_Read-only"
msgstr "لل_قراءة فقط"
#. hm2xy
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:699
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:702
msgctxt "explorerfiledialog|password"
msgid "Save with password"
msgstr "احفظ بكلمة سر"
#. 8EYcB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:712
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:715
msgctxt "explorerfiledialog|extension"
msgid "_Automatic file name extension"
msgstr "ألحق ا_متداد اسم الملفّ آليًّا"
#. 2CgAZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:725
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:728
msgctxt "explorerfiledialog|options"
msgid "Edit _filter settings"
msgstr "حرّر إعدادات المر_شّح"
#. 6XqLj
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:752
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:755
msgctxt "explorerfiledialog|gpgencrypt"
msgid "Encrypt with GPG key"
msgstr "عمِّ بمفتاح GPG"
@@ -323,68 +323,62 @@ msgctxt "remotefilesdialog|open"
msgid "_Open"
msgstr ""
-#. kKETY
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:157
-msgctxt "remotefilesdialog|save"
-msgid "_Save"
-msgstr ""
-
#. uGwr4
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:186
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:175
msgctxt "remotefilesdialog|label1"
msgid "Service:"
msgstr "الخدمة:"
#. cwNkT
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:214
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:203
msgctxt "remotefilesdialog|add_service_btn"
msgid "_Manage services"
msgstr "أ_در الخدمات"
#. Jnndg
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:264
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:253
msgctxt "remotefilesdialog|list_view|tooltip_text"
msgid "List view"
msgstr "منظور القائمة"
#. xxBtB
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:279
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:268
msgctxt "remotefilesdialog|icon_view|tooltip_text"
msgid "Icon view"
msgstr "منظور الأيقونات"
#. 6CiqC
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:295
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:284
msgctxt "remotefilesdialog|new_folder|tooltip_text"
msgid "Create New Folder"
msgstr "أنشئ مجلدًا جديدًا"
#. aXDaC
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:400
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:389
msgctxt "remotefilesdialog|name"
msgid "Name"
msgstr "الاسم"
#. qRHnF
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:420
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:409
msgctxt "remotefilesdialog|size"
msgid "Size"
msgstr "الحجم"
#. qeF3r
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:434
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:423
msgctxt "remotefilesdialog|date"
msgid "Date modified"
msgstr "تاريخ التعديل"
#. cGNWD
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:508
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:499
msgctxt "remotefilesdialog|filterLabel"
msgid "Filter"
msgstr "رشّح"
#. rCVer
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:522
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:513
msgctxt "remotefilesdialog|nameLabel"
msgid "File name"
msgstr "اسم الملف"
diff --git a/source/ar/helpcontent2/source/auxiliary.po b/source/ar/helpcontent2/source/auxiliary.po
index 9904be3d0bc..d503ab0aabc 100644
--- a/source/ar/helpcontent2/source/auxiliary.po
+++ b/source/ar/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-10 23:11+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
"PO-Revision-Date: 2021-06-04 11:14+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/auxiliary/ar/>\n"
@@ -304,6 +304,15 @@ msgctxt ""
msgid "Protection"
msgstr "الحماية"
+#. m2Dpj
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"0815\n"
+"node.text"
+msgid "Writing Calc Macros"
+msgstr ""
+
#. Q59GN
#: scalc.tree
msgctxt ""
diff --git a/source/ar/helpcontent2/source/text/sbasic/guide.po b/source/ar/helpcontent2/source/text/sbasic/guide.po
index d5e125beb5c..110c7a2e851 100644
--- a/source/ar/helpcontent2/source/text/sbasic/guide.po
+++ b/source/ar/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-20 13:02+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
"PO-Revision-Date: 2021-02-18 20:36+0000\n"
"Last-Translator: kimy <kimy747@zohomail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicguide/ar/>\n"
@@ -1249,6 +1249,348 @@ msgctxt ""
msgid "On the dialog, drag the button to the size you want."
msgstr "في مربع الحوار، اسحب الزر إلى الحجم الذي تريده."
+#. fRi68
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"tit\n"
+"help.text"
+msgid "Reading and Writing values to Ranges"
+msgstr ""
+
+#. 3hH3s
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"hd_id461623364876507\n"
+"help.text"
+msgid "<variable id=\"title\"><link href=\"text/sbasic/guide/read_write_values.xhp\" name=\"ReadWriteValues_h1\">Reading and Writing values to Ranges</link></variable>"
+msgstr ""
+
+#. ZKUBE
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id781633210592228\n"
+"help.text"
+msgid "Macros in %PRODUCTNAME Calc often need to read and write values from/to sheets. This help page describes the various approaches to accessing sheets and ranges to read or write their values."
+msgstr ""
+
+#. D4ZJu
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id191633214565965\n"
+"help.text"
+msgid "All examples presented in this page can be implemented both in Basic and Python."
+msgstr ""
+
+#. LfNCy
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"hd_id331633213558740\n"
+"help.text"
+msgid "Accessing a Single Cell"
+msgstr ""
+
+#. A5M3f
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id731633213581386\n"
+"help.text"
+msgid "The example below enters the numeric value 123 into cell \"A1\" of the current sheet."
+msgstr ""
+
+#. G6yWX
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id131633213887433\n"
+"help.text"
+msgid "The same can be accomplished with Python:"
+msgstr ""
+
+#. CDmg6
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id861633214219511\n"
+"help.text"
+msgid "Note that in the previous examples the cell is accessed using its range name \"A1\". It is also possible to access cells using indices as though the sheet were a matrix where columns and rows are indexed starting from zero."
+msgstr ""
+
+#. Jja4D
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id161633214461067\n"
+"help.text"
+msgid "This can be done using the <literal>getCellByPosition(colIndex, rowIndex)</literal> method, that takes in a column and a row index. The example below in Basic changes the text value in cell \"C1\" (column 2, row 0)."
+msgstr ""
+
+#. 5tsZR
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id221633214713436\n"
+"help.text"
+msgid "This example can also be implemented in Python as follows:"
+msgstr ""
+
+#. h6eq5
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id101633215142970\n"
+"help.text"
+msgid "The main difference between Python and Basic scripts lies on how to get access to the sheet object by using the <literal>XSCRIPTCONTEXT</literal> context variable. After that, all methods and properties are identical in Basic and Python."
+msgstr ""
+
+#. PmETF
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"hd_id411633215666257\n"
+"help.text"
+msgid "Values, Strings and Formulas"
+msgstr ""
+
+#. MBHDg
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id861633215682610\n"
+"help.text"
+msgid "Calc cells can have three types of values: numeric, strings and formulas. Each type has its own set and get methods:"
+msgstr ""
+
+#. RXE76
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id191633215791905\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. rYCuZ
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id181633215791905\n"
+"help.text"
+msgid "Numeric"
+msgstr ""
+
+#. ywHfC
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id961633215932180\n"
+"help.text"
+msgid "Text"
+msgstr ""
+
+#. KH9Ya
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id651633215984116\n"
+"help.text"
+msgid "Formula"
+msgstr ""
+
+#. nGhov
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id21633215845395\n"
+"help.text"
+msgid "Dates and currency values are considered as numeric values in Calc."
+msgstr ""
+
+#. t87Qx
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id221633216111353\n"
+"help.text"
+msgid "The following example enters numeric values into cells \"A1\" and \"A2\" and inserts a formula in cell \"A3\" that returns the multiplication of these values."
+msgstr ""
+
+#. r6BG6
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"hd_id321633216630043\n"
+"help.text"
+msgid "Accessing Ranges in Different Sheets"
+msgstr ""
+
+#. TFU8U
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id371633216672570\n"
+"help.text"
+msgid "The previous examples used only the active sheet to perform operations. It is possible to access cell ranges in different sheets by their indices or names."
+msgstr ""
+
+#. c3yhF
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id861633216843382\n"
+"help.text"
+msgid "The example below enters a numeric value into cell \"A1\" of the sheet named \"Sheet2\"."
+msgstr ""
+
+#. GpnNS
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id611633217090743\n"
+"help.text"
+msgid "This example can also be implemented in Python as follows:"
+msgstr ""
+
+#. xGQ3k
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id631633217279518\n"
+"help.text"
+msgid "Sheets can also be accessed using zero-based indices indicating which sheet considering the order they appear in the Calc file."
+msgstr ""
+
+#. tSo3e
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id291633264880172\n"
+"help.text"
+msgid "In Basic, instead of using the <literal>getByName</literal> method, use <literal>Sheets(sheetIndex)</literal> as shown next:"
+msgstr ""
+
+#. svDuj
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id891633265000047\n"
+"help.text"
+msgid "This can be done in a similar fashion in Python:"
+msgstr ""
+
+#. 6qHAn
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"hd_id451633265241066\n"
+"help.text"
+msgid "Using the ScriptForge Library"
+msgstr ""
+
+#. 8CkSe
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id731633265268585\n"
+"help.text"
+msgid "The Calc service of the ScriptForge library can be used to get and set cell values as follows:"
+msgstr ""
+
+#. DCJ2E
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id551633265526538\n"
+"help.text"
+msgid "' Loads the ScriptForge library"
+msgstr ""
+
+#. hgDyM
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id581633265527001\n"
+"help.text"
+msgid "' Gets access to the current Calc document"
+msgstr ""
+
+#. Gw4KG
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id751633265527427\n"
+"help.text"
+msgid "' Sets the value of cells A1 and A2"
+msgstr ""
+
+#. VUWVE
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id781633267324929\n"
+"help.text"
+msgid "The <literal>setValue</literal> method can be used to set both numeric and text values. To set a cell formula, use the <literal>setFormula</literal> method."
+msgstr ""
+
+#. jPRii
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id251633265634883\n"
+"help.text"
+msgid "With the Calc service, getting and setting cell values can be done with a single line of code. The example below gets the value from cell \"A1\" and shows it on a message box."
+msgstr ""
+
+#. NzUg4
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id521633608223310\n"
+"help.text"
+msgid "The ScriptForge library also makes it simpler to access ranges in different sheets, as demonstrated in the example below:"
+msgstr ""
+
+#. CCeEh
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"bas_id521633608366292\n"
+"help.text"
+msgid "' Gets cell \"A1\" from the sheet named \"Sheet1\""
+msgstr ""
+
+#. qUTqA
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"bas_id661633608366484\n"
+"help.text"
+msgid "' Gets cell \"B3\" from the sheet named \"Sheet2\""
+msgstr ""
+
+#. mCX5W
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"bas_id501633608516381\n"
+"help.text"
+msgid "' Places the result into cell \"A1\" of sheet \"Report\""
+msgstr ""
+
+#. ZdkEz
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id431633266057163\n"
+"help.text"
+msgid "The examples above can also be implemented in Python as follows:"
+msgstr ""
+
#. ayg6P
#: sample_code.xhp
msgctxt ""
diff --git a/source/ar/helpcontent2/source/text/sbasic/python.po b/source/ar/helpcontent2/source/text/sbasic/python.po
index f9ae0cbc676..0c619c45b18 100644
--- a/source/ar/helpcontent2/source/text/sbasic/python.po
+++ b/source/ar/helpcontent2/source/text/sbasic/python.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-27 19:09+0200\n"
+"POT-Creation-Date: 2021-10-25 12:48+0200\n"
"PO-Revision-Date: 2021-03-07 18:15+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicpython/ar/>\n"
@@ -582,13 +582,13 @@ msgctxt ""
msgid "Monitoring Document Events"
msgstr ""
-#. SZGH4
+#. VwSwW
#: python_document_events.xhp
msgctxt ""
"python_document_events.xhp\n"
"N0530\n"
"help.text"
-msgid "Monitoring is illustrated herewith for Basic and Python languages using object-oriented programming. Assigning <literal>OnLoad</literal> script, to the <emph>Open Document</emph> event, suffices to initiate and terminate document event monitoring. <menuitem>Tools - Customize</menuitem> menu <menuitem>Events</menuitem> tab is used to assign either scripts."
+msgid "Monitoring is illustrated herewith for Basic and Python languages using object-oriented programming. Assigning <literal>OnLoad</literal> script, to the <menuitem>Open Document</menuitem> event, suffices to initiate and terminate document event monitoring. <menuitem>Tools - Customize</menuitem> menu <menuitem>Events</menuitem> tab is used to assign either scripts."
msgstr ""
#. KgWvt
@@ -627,13 +627,13 @@ msgctxt ""
msgid "Events monitoring starts from object instantiation and ultimately stops when Python releases the object. Raised events are reported using <literal>Access2Base</literal> console."
msgstr ""
-#. D2HXF
+#. mCDwK
#: python_document_events.xhp
msgctxt ""
"python_document_events.xhp\n"
"N0534\n"
"help.text"
-msgid "<literal>OnLoad</literal> and <literal>OnUnload</literal> events can be used to respectively set and unset Python programs path. They are described as <emph>Open document</emph> and <emph>Document closed</emph>."
+msgid "<literal>OnLoad</literal> and <literal>OnUnload</literal> events can be used to respectively set and unset Python programs path. They are described as <menuitem>Open document</menuitem> and <menuitem>Document closed</menuitem>."
msgstr ""
#. AdYNb
@@ -807,6 +807,15 @@ msgctxt ""
msgid "def OnLoad(*args): # 'Open Document' event"
msgstr ""
+#. PmjAB
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0602\n"
+"help.text"
+msgid "listener = UiDocument() # Initiates listening"
+msgstr ""
+
#. CkJg4
#: python_document_events.xhp
msgctxt ""
@@ -870,6 +879,15 @@ msgctxt ""
msgid "\"\"\" Display console content/dialog \"\"\""
msgstr ""
+#. mPJ3B
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0638\n"
+"help.text"
+msgid "''' Grab application-based Basic script '''"
+msgstr ""
+
#. 2dfeg
#: python_document_events.xhp
msgctxt ""
@@ -879,13 +897,13 @@ msgctxt ""
msgid "Mind the misspelled <literal>documentEventOccured</literal> method that inherits a typo from %PRODUCTNAME Application Programming Interface (API)."
msgstr ""
-#. CuAga
+#. qNVD4
#: python_document_events.xhp
msgctxt ""
"python_document_events.xhp\n"
"N0648\n"
"help.text"
-msgid "<emph>Start application</emph> and <emph>Close application</emph> events can respectively be used to set and to unset Python path for user scripts or %PRODUCTNAME scripts. In a similar fashion, document based Python libraries or modules can be loaded and released using <emph>Open document</emph> and <emph>Document closed</emph> events. Refer to <link href=\"text/sbasic/python/python_import.xhp\" name=\"Importing Python Modules\">Importing Python Modules</link> for more information."
+msgid "<menuitem>Start application</menuitem> and <menuitem>Close application</menuitem> events can respectively be used to set and to unset Python path for user scripts or %PRODUCTNAME scripts. In a similar fashion, document based Python libraries or modules can be loaded and released using <menuitem>Open document</menuitem> and <menuitem>Document closed</menuitem> events. Refer to <link href=\"text/sbasic/python/python_import.xhp\" name=\"Importing Python Modules\">Importing Python Modules</link> for more information."
msgstr ""
#. 8pHCg
@@ -3507,38 +3525,110 @@ msgctxt ""
msgid "The Python interactive console, also known as Python interpreter or Python shell, provides programmers with a quick way to execute commands and try out and test code without creating a file. UNO objects introspection as well as %PRODUCTNAME Python modules documentation can be obtained from the terminal."
msgstr ""
-#. MZodx
+#. kFpxo
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"par_id851633601202270\n"
+"help.text"
+msgid "From a full-featured %PRODUCTNAME installed package, use either Basic or Python:"
+msgstr ""
+
+#. 5HhXz
#: python_shell.xhp
msgctxt ""
"python_shell.xhp\n"
"N0121\n"
"help.text"
-msgid "Using a Basic macro:"
+msgid "Using a Basic macro"
msgstr ""
-#. vXGF7
+#. KhWLk
#: python_shell.xhp
msgctxt ""
"python_shell.xhp\n"
"N0127\n"
"help.text"
-msgid "Using a Python macro:"
+msgid "Using a Python macro"
msgstr ""
-#. oBg3T
+#. 3FCJH
#: python_shell.xhp
msgctxt ""
"python_shell.xhp\n"
"N0141\n"
"help.text"
-msgid "Usage:"
+msgid "Example output"
msgstr ""
-#. EzwwC
+#. MxDtE
#: python_shell.xhp
msgctxt ""
"python_shell.xhp\n"
"N0142\n"
"help.text"
-msgid "<image src=\"media/helpimg/python/python_shell.png\" id=\"N0143\"><alt id=\"N0144\">Python Interactive Console</alt></image>"
+msgid "<image src=\"media/helpimg/python/python_interactive_console.png\" id=\"N0143\"><alt id=\"N0143\">Python Interactive Console</alt></image>"
+msgstr ""
+
+#. fk6sx
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"hd_id381633446811095\n"
+"help.text"
+msgid "Using the Terminal"
+msgstr ""
+
+#. CNFdD
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"par_id801633601715910\n"
+"help.text"
+msgid "From a %PRODUCTNAME copy included in a GNU/Linux platform, use the terminal as shown:"
+msgstr ""
+
+#. vWPwe
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"par_id531633444780190\n"
+"help.text"
+msgid "<literal>whereis</literal> or <literal>type</literal> terminal commands help locate Python interactive console:"
+msgstr ""
+
+#. 8Ei5d
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"hd_id311633513620803\n"
+"help.text"
+msgid "Alternative console"
+msgstr ""
+
+#. d8DCA
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"par_id81632760673283\n"
+"help.text"
+msgid "Use <link href=\"https://extensions.libreoffice.org/extensions/apso-alternative-script-organizer-for-Python\" name=\"APSO extension\">APSO extension</link> console as an alternative:"
+msgstr ""
+
+#. 6h9CS
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"N0144\n"
+"help.text"
+msgid "<image src=\"media/helpimg/python/python_shell.png\" id=\"N0144\"><alt id=\"N0144\">APSO console</alt></image>"
+msgstr ""
+
+#. DNr5W
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"par_id351633599611244\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03/sf_exception.html?#PythonShell\" name=\"PythonShell method\"><literal>PythonShell</literal></link> function in <link href=\"text/sbasic/shared/03/sf_exception.html\" name=\"ScriptForge.Exception service\"><literal>ScriptForge.Exception</literal></link> service"
msgstr ""
diff --git a/source/ar/helpcontent2/source/text/sbasic/shared.po b/source/ar/helpcontent2/source/text/sbasic/shared.po
index a4b1bd043de..a690ce5febe 100644
--- a/source/ar/helpcontent2/source/text/sbasic/shared.po
+++ b/source/ar/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-04 19:51+0200\n"
+"POT-Creation-Date: 2021-10-25 12:48+0200\n"
"PO-Revision-Date: 2021-03-07 18:15+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared/ar/>\n"
@@ -16621,13 +16621,13 @@ msgctxt ""
msgid "MsgBox Right(\"00\" & lHour , 2) & \":\"& Right(\"00\" & lMin , 2) & \":\" & Right(\"00\" & lSec , 2), 0, \"The time is\""
msgstr ""
-#. CWMJG
+#. oYudq
#: 03030303.xhp
msgctxt ""
"03030303.xhp\n"
"par_id491610993401822\n"
"help.text"
-msgid "The <literal>Timer</literal> function measures time in seconds. To measure time in milliseconds use the <embedvar href=\"text/sbasic/shared/03/sf_timer.xhp#TimerService\"/>."
+msgid "The <literal>Timer</literal> function measures time in seconds. To measure time in milliseconds use the <link href=\"text/sbasic/shared/03/sf_timer.xhp\" name=\"Timer_link\">Timer service</link> available in the <literal>ScriptForge</literal> library."
msgstr ""
#. ATnCy
@@ -24586,13 +24586,13 @@ msgctxt ""
msgid "<bookmark_value>Type statement</bookmark_value>"
msgstr ""
-#. aKHFj
+#. pipio
#: 03090413.xhp
msgctxt ""
"03090413.xhp\n"
"hd_id3153311\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link>"
+msgid "<variable id=\"Type_h1\"><link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link></variable>"
msgstr ""
#. TYvyD
@@ -27799,13 +27799,13 @@ msgctxt ""
msgid "<bookmark_value>IsObject function</bookmark_value>"
msgstr ""
-#. 9oZFD
+#. MF9nS
#: 03102800.xhp
msgctxt ""
"03102800.xhp\n"
-"hd_id3149346\n"
+"hd_id51633474369322\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03102800.xhp\" name=\"IsObject Function\">IsObject Function</link>"
+msgid "<variable id=\"IsObject_h1\"><link href=\"text/sbasic/shared/03102800.xhp\" name=\"IsObject Function\">IsObject Function</link></variable>"
msgstr ""
#. AyVCR
@@ -27817,67 +27817,13 @@ msgctxt ""
msgid "Tests if a variable is an object, as opposed to primitive data types such as dates, numbers, texts. The function returns <literal>True</literal> if the variable is an object, otherwise it returns <literal>False</literal>."
msgstr ""
-#. gBKMV
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"hd_id3149234\n"
-"help.text"
-msgid "Syntax:"
-msgstr "الصياغة:"
-
-#. C8wfe
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"par_id3154285\n"
-"help.text"
-msgid "IsObject(var)"
-msgstr ""
-
-#. ni2zH
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"hd_id3148685\n"
-"help.text"
-msgid "Return value:"
-msgstr ""
-
-#. 4SsCT
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"par_id3156024\n"
-"help.text"
-msgid "Boolean"
-msgstr ""
-
-#. rEmQA
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"hd_id3148947\n"
-"help.text"
-msgid "Parameters:"
-msgstr "المعاملات:"
-
-#. JBB4B
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"par_id3148552\n"
-"help.text"
-msgid "<emph>var:</emph> Any variable that you want to test."
-msgstr ""
-
-#. SPGXx
+#. jCmJE
#: 03102800.xhp
msgctxt ""
"03102800.xhp\n"
"par_id891575896963115\n"
"help.text"
-msgid "The following objects return <literal>True</literal>:"
+msgid "This function returns <literal>True</literal> for the following object types:"
msgstr ""
#. CBoWs
@@ -27934,6 +27880,24 @@ msgctxt ""
msgid "Data structures return <literal>True</literal> even when empty. Object defined variables return <literal>True</literal> even if uninitialized."
msgstr ""
+#. 4SsCT
+#: 03102800.xhp
+msgctxt ""
+"03102800.xhp\n"
+"par_id3156024\n"
+"help.text"
+msgid "Boolean"
+msgstr ""
+
+#. rTuwL
+#: 03102800.xhp
+msgctxt ""
+"03102800.xhp\n"
+"par_id3148552\n"
+"help.text"
+msgid "<emph>var:</emph> The variable to be tested."
+msgstr ""
+
#. yHDkt
#: 03102800.xhp
msgctxt ""
@@ -28888,13 +28852,13 @@ msgctxt ""
msgid "Set Statement"
msgstr ""
-#. GzHJQ
+#. zHGh5
#: 03103700.xhp
msgctxt ""
"03103700.xhp\n"
"bm_id3154422\n"
"help.text"
-msgid "<bookmark_value>Set statement</bookmark_value> <bookmark_value>New keyword</bookmark_value> <bookmark_value>Nothing object</bookmark_value>"
+msgid "<bookmark_value>Set statement</bookmark_value> <bookmark_value>Nothing object</bookmark_value>"
msgstr ""
#. MT9CF
@@ -29761,22 +29725,31 @@ msgctxt ""
msgid "<bookmark_value>EqualUnoObjects function</bookmark_value>"
msgstr ""
-#. rqXey
+#. DxBM3
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
-"hd_id3149205\n"
+"hd_id791633472607429\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03104600.xhp\" name=\"EqualUnoObjects Function\">EqualUnoObjects Function</link>"
+msgid "<variable id=\"EqualUnoObjects_h1\"><link href=\"text/sbasic/shared/03104600.xhp\" name=\"EqualUnoObjects Function\">EqualUnoObjects Function</link></variable>"
msgstr ""
-#. wrfhm
+#. Gc4cj
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
"par_id3145090\n"
"help.text"
-msgid "Returns True if the two specified Basic Uno objects represent the same Uno object instance."
+msgid "Returns <emph>True</emph> if the two specified Basic variables represent the same Uno object instance."
+msgstr ""
+
+#. 9Zx4W
+#: 03104600.xhp
+msgctxt ""
+"03104600.xhp\n"
+"par_id61633530293311\n"
+"help.text"
+msgid "<emph>oObj1, oObj2:</emph> the variables to be tested."
msgstr ""
#. NqNdq
@@ -29788,22 +29761,22 @@ msgctxt ""
msgid "Bool"
msgstr ""
-#. eQEDj
+#. NvGLb
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
-"par_id3156024\n"
+"par_id771633473462939\n"
"help.text"
-msgid "' Copy of objects -> same instance"
+msgid "The example below returns <emph>True</emph> because both <literal>oDoc</literal> and <literal>ThisComponent</literal> are references to the same object:"
msgstr ""
-#. kTNQT
+#. 5QGLx
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
-"par_id3153525\n"
+"par_id181633473874216\n"
"help.text"
-msgid "' Copy of structs as value -> new instance"
+msgid "The example below returns <emph>False</emph> because the assignment creates a copy of the original object. Hence <literal>Struct1</literal> and <literal>Struct2</literal> refer to different object instances."
msgstr ""
#. hQzux
@@ -30364,13 +30337,13 @@ msgctxt ""
msgid "Use the <emph>Chr$</emph> function to send special control sequences to a printer or to another output source. You can also use it to insert quotation marks in a string expression."
msgstr ""
-#. Yy5Eh
+#. 36Hj5
#: 03120102.xhp
msgctxt ""
"03120102.xhp\n"
-"par_id111552916434071\n"
+"par_id81634652871848\n"
"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#err6\"/>, when VBA compatibility mode is enabled and expression is greater than 255."
+msgid "An overflow error will occur when VBA compatibility mode is enabled and the expression value is greater than 255."
msgstr ""
#. vHwsG
@@ -32650,13 +32623,13 @@ msgctxt ""
msgid "Split (Text As String, delimiter, number)"
msgstr ""
-#. BNdCD
+#. dBAZR
#: 03120314.xhp
msgctxt ""
"03120314.xhp\n"
"par_id3154285\n"
"help.text"
-msgid "String"
+msgid "With Option VBASupport 1: String, with Option VBASupport 0: Variant/String"
msgstr ""
#. PRupM
@@ -35404,13 +35377,13 @@ msgctxt ""
msgid "<bookmark_value>CreateObject function</bookmark_value>"
msgstr ""
-#. GkTQC
+#. QpKCT
#: 03132400.xhp
msgctxt ""
"03132400.xhp\n"
"par_idN10580\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03132400.xhp\">CreateObject Function</link>"
+msgid "<variable id=\"CreateObject_h1\"><link href=\"text/sbasic/shared/03132400.xhp\">CreateObject Function</link></variable>"
msgstr ""
#. PAXDf
@@ -35431,13 +35404,13 @@ msgctxt ""
msgid "This method creates instances of the type that is passed as parameter."
msgstr ""
-#. mNxwL
+#. SHgqs
#: 03132400.xhp
msgctxt ""
"03132400.xhp\n"
-"par_idN105A6\n"
+"par_id191633632167310\n"
"help.text"
-msgid "oObj = CreateObject( type )"
+msgid "<emph>type:</emph> the type of the object to be created, as a string."
msgstr ""
#. Gthw7
@@ -37465,49 +37438,94 @@ msgctxt ""
msgid "Round Function [VBA]"
msgstr ""
-#. 66dvh
+#. zEB5S
#: 03170000.xhp
msgctxt ""
"03170000.xhp\n"
"bm_id3150499\n"
"help.text"
-msgid "<bookmark_value>Round function</bookmark_value>"
+msgid "<bookmark_value>Round function (VBA)</bookmark_value>"
msgstr ""
-#. FPUAv
+#. oVQUL
#: 03170000.xhp
msgctxt ""
"03170000.xhp\n"
"hd_id3150499\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03170000.xhp\" name=\"Round Function [VBA]\">Round Function [VBA]</link>"
+msgid "<variable id=\"Round_VBA_h1\"><link href=\"text/sbasic/shared/03170000.xhp\" name=\"Round Function [VBA]\">Round Function [VBA]</link></variable>"
msgstr ""
-#. PGShA
+#. B6tFP
#: 03170000.xhp
msgctxt ""
"03170000.xhp\n"
"par_id3151384\n"
"help.text"
-msgid "The Round function returns a number rounded to a specified number of digits."
+msgid "Rounds a numeric value to a specified number of decimal digits."
+msgstr ""
+
+#. yUTFN
+#: 03170000.xhp
+msgctxt ""
+"03170000.xhp\n"
+"par_id741634154499890\n"
+"help.text"
+msgid "This function implements the rounding rule known as \"round-to-even\". With this rule, whenever the difference between the number to be rounded and its nearest integer is equal to 0.5, the number is rounded to the nearest even number. See the examples <link href=\"text/sbasic/shared/03170000.xhp#round_example\" name=\"round_ex_link\">below</link> to learn more about this rule."
+msgstr ""
+
+#. DfnHz
+#: 03170000.xhp
+msgctxt ""
+"03170000.xhp\n"
+"par_id691634217736290\n"
+"help.text"
+msgid "Beware that VBA's <literal>Round</literal> function works differently than %PRODUCTNAME Calc's <literal>Round</literal> function. In Calc, if the difference between the number to be rounded and the nearest integer is exactly 0.5, then the number is rounded up. Hence, in Calc the number 2.5 is rounded to 3 whereas using VBA's <literal>Round</literal> function the value 2.5 is rounded to 2 due to the \"round-to-even\" rule."
msgstr ""
-#. hbUFX
+#. GSzGj
#: 03170000.xhp
msgctxt ""
"03170000.xhp\n"
"par_id240720170117391741\n"
"help.text"
-msgid "<emph>expression</emph>: Required. The numeric expression to be rounded."
+msgid "<emph>expression</emph>: The numeric expression to be rounded."
msgstr ""
-#. gAZc7
+#. 9E33v
#: 03170000.xhp
msgctxt ""
"03170000.xhp\n"
"par_id240720170117395610\n"
"help.text"
-msgid "<emph>numdecimalplaces</emph>: Optional. Specifies how many places to the right of the decimal are included in the rounding. Default is 0."
+msgid "<emph>numdecimalplaces</emph>: Optional argument that specifies the number of decimal digits in the resulting rounded value. The default value is 0."
+msgstr ""
+
+#. oSEiU
+#: 03170000.xhp
+msgctxt ""
+"03170000.xhp\n"
+"par_id541634154843718\n"
+"help.text"
+msgid "The following examples illustrate the \"round-to-even\" rule:"
+msgstr ""
+
+#. 4DLZC
+#: 03170000.xhp
+msgctxt ""
+"03170000.xhp\n"
+"bas_id651634154984931\n"
+"help.text"
+msgid "' Rounding to the nearest integer (decimalplaces = 0)"
+msgstr ""
+
+#. DQwkT
+#: 03170000.xhp
+msgctxt ""
+"03170000.xhp\n"
+"bas_id651634157812537\n"
+"help.text"
+msgid "' Rounding with 2 decimal digits (decimalplaces = 2)"
msgstr ""
#. g7CVV
@@ -40165,6 +40183,375 @@ msgctxt ""
msgid "BasicCodeStubs"
msgstr ""
+#. vSapF
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"tit\n"
+"help.text"
+msgid "Collection Object"
+msgstr ""
+
+#. 5of5h
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"bm_id3149205\n"
+"help.text"
+msgid "<bookmark_value>Collection Object</bookmark_value> <bookmark_value>Collection;Count</bookmark_value>"
+msgstr ""
+
+#. 68sg6
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"hd_id791633472607429\n"
+"help.text"
+msgid "<variable id=\"Collection_h1\"><link href=\"text/sbasic/shared/collection.xhp\" name=\"New_Operator\">Collection Object</link></variable>"
+msgstr ""
+
+#. 7xSei
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id581633961735332\n"
+"help.text"
+msgid "Collections can be used to store items of different types. Each item can be accessed by its index or by an optional key associated with it."
+msgstr ""
+
+#. 9b4kg
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id131633961959816\n"
+"help.text"
+msgid "A <literal>Collection</literal> object has the following methods:"
+msgstr ""
+
+#. XoLQr
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id331633962000259\n"
+"help.text"
+msgid "<emph>Add:</emph> inserts a new item into the collection. Optionally a string value can be defined as the key to the item."
+msgstr ""
+
+#. ddAGy
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id181633962000767\n"
+"help.text"
+msgid "<emph>Count:</emph> returns the number of items in the collection."
+msgstr ""
+
+#. ad7qY
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id521633962001072\n"
+"help.text"
+msgid "<emph>Item:</emph> returns the item in the collection by passing its index or key."
+msgstr ""
+
+#. GX6nx
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id981633962001272\n"
+"help.text"
+msgid "<emph>Remove:</emph> removes the specified item from the collection by its index or key."
+msgstr ""
+
+#. yyWx7
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id221633976539661\n"
+"help.text"
+msgid "Items in a Collection can be accessed either by their indices (as in a 1-based single-dimensional Array) or by their associated keys."
+msgstr ""
+
+#. PheLX
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id811634214809970\n"
+"help.text"
+msgid "The <link href=\"text/sbasic/shared/03/sf_dictionary.xhp\" name=\"SFDic_link\"><literal>ScriptForge Dictionary</literal></link> service extends the <literal>Collection</literal> object by providing supplemental features as key retrieval and replacement, as well as import/export to Array objects and JSON strings."
+msgstr ""
+
+#. pJAht
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"hd_id51633962353863\n"
+"help.text"
+msgid "Creating a Collection"
+msgstr ""
+
+#. 28i8B
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id491633962366024\n"
+"help.text"
+msgid "To create a <literal>Collection</literal> use the <literal>New</literal> keyword. The following example creates a <literal>Collection</literal> object and populates it with three items:"
+msgstr ""
+
+#. 8hHmz
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"hd_id421633962742512\n"
+"help.text"
+msgid "Adding Items"
+msgstr ""
+
+#. G49p7
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"bm_id591633974561425\n"
+"help.text"
+msgid "<bookmark_value>Collection;Add</bookmark_value>"
+msgstr ""
+
+#. 3qnWY
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id261633962766238\n"
+"help.text"
+msgid "The <literal>Add</literal> method can be used to add new items into the <literal>Collection</literal> object."
+msgstr ""
+
+#. htAaY
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id501633974650241\n"
+"help.text"
+msgid "<emph>item:</emph> the item to be added to the <literal>Collection</literal>. May be of any type."
+msgstr ""
+
+#. DUGrx
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id181633974650705\n"
+"help.text"
+msgid "<emph>key:</emph> string value used as the unique key used to identify this value."
+msgstr ""
+
+#. yoEzK
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id391633974651050\n"
+"help.text"
+msgid "<emph>before, after:</emph> optional keyword argument that indicates where the new item will be placed in the <literal>Collection</literal>. Only one of the arguments <literal>before</literal> or <literal>after</literal> can be specified to determine the index or key before which (or after which) the new item is to be placed."
+msgstr ""
+
+#. xcdEF
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id211633962988398\n"
+"help.text"
+msgid "The example below adds two elements into a <literal>Collection</literal>. The first has a key associated with it, whereas the second does not."
+msgstr ""
+
+#. ZKBEQ
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id71633963110632\n"
+"help.text"
+msgid "The <literal>Add</literal> method also supports keyword arguments:"
+msgstr ""
+
+#. ZhTZb
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id941633963225913\n"
+"help.text"
+msgid "Keys must be unique in a <literal>Collection</literal> object. Comparison between keys is <emph>case-insensitive</emph>. Adding duplicated keys will result in a runtime error."
+msgstr ""
+
+#. NVgmj
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id891633975568372\n"
+"help.text"
+msgid "The example below illustrates how to use the <literal>Before</literal> and <literal>After</literal> keyword arguments to determine the position of the item that is being added."
+msgstr ""
+
+#. WxjE9
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id121633976325472\n"
+"help.text"
+msgid "Items in a <literal>Collection</literal> object are assigned an integer index value that starts at 1 and corresponds to the order in which they were added."
+msgstr ""
+
+#. 2Lrc6
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"hd_id141633977141797\n"
+"help.text"
+msgid "Accessing Items"
+msgstr ""
+
+#. DDdKC
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"bm_id481633977601834\n"
+"help.text"
+msgid "<bookmark_value>Collection;Item</bookmark_value>"
+msgstr ""
+
+#. MquEn
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id431633977156315\n"
+"help.text"
+msgid "Use the <literal>Item</literal> method to access a given item by its index or key."
+msgstr ""
+
+#. DCFTg
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id261633976447187\n"
+"help.text"
+msgid "<emph>index:</emph> an integer value specifying the index of the item to be returned."
+msgstr ""
+
+#. mqA85
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id51633976782487\n"
+"help.text"
+msgid "<emph>key:</emph> a string value specifying the key of the item to be returned."
+msgstr ""
+
+#. egnJW
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"hd_id651633976030220\n"
+"help.text"
+msgid "Removing Items"
+msgstr ""
+
+#. BdBa3
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"bm_id311633977567197\n"
+"help.text"
+msgid "<bookmark_value>Collection;Remove</bookmark_value>"
+msgstr ""
+
+#. Wteju
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id391633976125206\n"
+"help.text"
+msgid "Use the <literal>Remove</literal> method to delete items from a <literal>Collection</literal> object."
+msgstr ""
+
+#. sHVAN
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id121633976268027\n"
+"help.text"
+msgid "Items can be removed either by their indices or key values."
+msgstr ""
+
+#. o9Eyd
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id261633976447289\n"
+"help.text"
+msgid "<emph>index:</emph> an integer value specifying the index of the item to be removed."
+msgstr ""
+
+#. 8TMiC
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id51633976782455\n"
+"help.text"
+msgid "<emph>key:</emph> a string value specifying the key of the item to be removed."
+msgstr ""
+
+#. WpHmn
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"hd_id491633978085731\n"
+"help.text"
+msgid "Iterating Over all Items"
+msgstr ""
+
+#. FVzmC
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id91633978099143\n"
+"help.text"
+msgid "It is possible to use a <literal>For Each ... Next</literal> statement to iterate over all items in a <literal>Collection</literal>."
+msgstr ""
+
+#. EWDWE
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"hd_id191634215349347\n"
+"help.text"
+msgid "Clearing a Collection"
+msgstr ""
+
+#. V4EZw
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id891634215363485\n"
+"help.text"
+msgid "To remove all items from a <literal>Collection</literal> object call the <literal>Remove</literal> method for each item, as illustrated in the example below:"
+msgstr ""
+
+#. tUMtQ
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"bas_id681634215646028\n"
+"help.text"
+msgid "' Create a sample Collection with two entries"
+msgstr ""
+
+#. Yy5nP
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"bas_id391634215647196\n"
+"help.text"
+msgid "' Removes all items in the collection"
+msgstr ""
+
#. gvH3T
#: compatibilitymode.xhp
msgctxt ""
@@ -40345,13 +40732,13 @@ msgctxt ""
msgid "<variable id=\"compatiblestatement\"><link href=\"text/sbasic/shared/compatible.xhp\" name=\"compatible\">Option Compatible Statement</link></variable>"
msgstr ""
-#. qCdkp
+#. 6HFov
#: compatible.xhp
msgctxt ""
"compatible.xhp\n"
"N0106\n"
"help.text"
-msgid "<literal>Option Compatible</literal> turns on the VBA-compatible Basic compiler mode at the module level."
+msgid "<literal>Option Compatible</literal> extends %PRODUCTNAME Basic compiler and runtime, allowing supplemental language constructs to Basic."
msgstr ""
#. SNhhH
@@ -41038,6 +41425,78 @@ msgctxt ""
msgid "<image src=\"media/helpimg/sbasic/char_fragment.svg\" id=\"img_id4157296484514\"><alt id=\"alt_id15152796484516\">type declaration characters</alt></image>"
msgstr ""
+#. tYUK6
+#: is_keyword.xhp
+msgctxt ""
+"is_keyword.xhp\n"
+"tit\n"
+"help.text"
+msgid "Is Operator"
+msgstr ""
+
+#. xvBgn
+#: is_keyword.xhp
+msgctxt ""
+"is_keyword.xhp\n"
+"bm_id3149205\n"
+"help.text"
+msgid "<bookmark_value>Is Operator</bookmark_value>"
+msgstr ""
+
+#. 7otAB
+#: is_keyword.xhp
+msgctxt ""
+"is_keyword.xhp\n"
+"hd_id791633472607429\n"
+"help.text"
+msgid "<variable id=\"IsOperator_h1\"><link href=\"text/sbasic/shared/is_keyword.xhp\" name=\"Is_Operator\">Is Operator</link></variable>"
+msgstr ""
+
+#. mwGMA
+#: is_keyword.xhp
+msgctxt ""
+"is_keyword.xhp\n"
+"par_id3145090\n"
+"help.text"
+msgid "Tests if two Basic variables refer to the same object instance."
+msgstr ""
+
+#. HTVQA
+#: is_keyword.xhp
+msgctxt ""
+"is_keyword.xhp\n"
+"par_id441633531311929\n"
+"help.text"
+msgid "If <literal>oObj1</literal> and <literal>oObj2</literal> are references to the same object instance, the result will be <emph>True</emph>."
+msgstr ""
+
+#. akugg
+#: is_keyword.xhp
+msgctxt ""
+"is_keyword.xhp\n"
+"par_id771633473462939\n"
+"help.text"
+msgid "The example below first defines a new type <literal>Student</literal>. Calling <literal>TestObjects</literal> creates the object <literal>oStudent1</literal> as a new object of this type."
+msgstr ""
+
+#. mAAho
+#: is_keyword.xhp
+msgctxt ""
+"is_keyword.xhp\n"
+"par_id841633532400710\n"
+"help.text"
+msgid "The assignment <literal>oStudent2 = oStudent1</literal> actually copies the reference to the same object. Hence the result of applying the <literal>Is</literal> operator is <emph>True</emph>."
+msgstr ""
+
+#. mvVuR
+#: is_keyword.xhp
+msgctxt ""
+"is_keyword.xhp\n"
+"par_id181633473874216\n"
+"help.text"
+msgid "The example below returns <emph>False</emph> because <literal>oStudent1</literal> and <literal>oStudent2</literal> are references to two different object instances, each created with the <literal>New</literal> operator."
+msgstr ""
+
#. onSEk
#: keys.xhp
msgctxt ""
@@ -41344,6 +41803,87 @@ msgctxt ""
msgid "%PRODUCTNAME installs a set of Basic macro libraries that can be accessed from your Basic macros."
msgstr ""
+#. 44MBv
+#: new_keyword.xhp
+msgctxt ""
+"new_keyword.xhp\n"
+"tit\n"
+"help.text"
+msgid "New Operator"
+msgstr ""
+
+#. 8iBmc
+#: new_keyword.xhp
+msgctxt ""
+"new_keyword.xhp\n"
+"bm_id3149205\n"
+"help.text"
+msgid "<bookmark_value>New Operator</bookmark_value>"
+msgstr ""
+
+#. T3AA8
+#: new_keyword.xhp
+msgctxt ""
+"new_keyword.xhp\n"
+"hd_id791633472607429\n"
+"help.text"
+msgid "<variable id=\"NewOperator_h1\"><link href=\"text/sbasic/shared/new_keyword.xhp\" name=\"New_Operator\">New Operator</link></variable>"
+msgstr ""
+
+#. BWufp
+#: new_keyword.xhp
+msgctxt ""
+"new_keyword.xhp\n"
+"par_id3145090\n"
+"help.text"
+msgid "Use the <literal>New</literal> operator to instantiate objects of user-defined types, as well as Uno services, structs and enumerations."
+msgstr ""
+
+#. uDGEZ
+#: new_keyword.xhp
+msgctxt ""
+"new_keyword.xhp\n"
+"par_id831633630704012\n"
+"help.text"
+msgid "The <literal>New</literal> operator can be used either during variable declaration or in an assignment operation."
+msgstr ""
+
+#. r6osC
+#: new_keyword.xhp
+msgctxt ""
+"new_keyword.xhp\n"
+"par_id621633630563936\n"
+"help.text"
+msgid "The following example uses the <literal>New</literal> operator to create an instance of the <literal>PropertyValue</literal> Uno struct."
+msgstr ""
+
+#. nPNvc
+#: new_keyword.xhp
+msgctxt ""
+"new_keyword.xhp\n"
+"bas_id631633630856218\n"
+"help.text"
+msgid "' Instantiating the object during variable declaration"
+msgstr ""
+
+#. Ts8iC
+#: new_keyword.xhp
+msgctxt ""
+"new_keyword.xhp\n"
+"bas_id11633631135918\n"
+"help.text"
+msgid "' The same can be accomplished with an assignment"
+msgstr ""
+
+#. 6RJcJ
+#: new_keyword.xhp
+msgctxt ""
+"new_keyword.xhp\n"
+"par_id971633631328827\n"
+"help.text"
+msgid "The example below creates a new type <literal>Student</literal> and instantiates an object of this type:"
+msgstr ""
+
#. r4nQn
#: partition.xhp
msgctxt ""
diff --git a/source/ar/helpcontent2/source/text/sbasic/shared/03.po b/source/ar/helpcontent2/source/text/sbasic/shared/03.po
index d4e8fc0a331..c10e51193f0 100644
--- a/source/ar/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/ar/helpcontent2/source/text/sbasic/shared/03.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-04 19:51+0200\n"
+"POT-Creation-Date: 2021-10-25 12:48+0200\n"
"PO-Revision-Date: 2021-03-07 18:15+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared03/ar/>\n"
@@ -160,13 +160,13 @@ msgctxt ""
msgid "<variable id=\"ScriptForge_lib\"><link href=\"text/sbasic/shared/03/lib_ScriptForge.xhp\" name=\"ScriptForge library\">The <literal>ScriptForge</literal> Library</link></variable>"
msgstr ""
-#. yE8bw
+#. Poeai
#: lib_ScriptForge.xhp
msgctxt ""
"lib_ScriptForge.xhp\n"
"bm_id491529070339774\n"
"help.text"
-msgid "<bookmark_value>BASIC ScriptForge library</bookmark_value> <bookmark_value>Python scriptforge module</bookmark_value>"
+msgid "<bookmark_value>BASIC ScriptForge library</bookmark_value> <bookmark_value>Python scriptforge module</bookmark_value>"
msgstr ""
#. BtMUU
@@ -178,13 +178,13 @@ msgctxt ""
msgid "ScriptForge libraries build up an extensible collection of macro scripting resources for %PRODUCTNAME to be invoked from Basic macros or Python scripts."
msgstr ""
-#. YwSXj
+#. eotwE
#: lib_ScriptForge.xhp
msgctxt ""
"lib_ScriptForge.xhp\n"
"par_id1001623412767893\n"
"help.text"
-msgid "To learn more about how to create and execute Python scripts using the <literal>ScriptForge</literal> library, read the <embedvar href=\"text/sbasic/shared/03/sf_intro.xhp#title\"/> help page."
+msgid "To learn more about how to create and execute Python scripts using the <literal>ScriptForge</literal> library, read the help page <link href=\"text/sbasic/shared/03/sf_intro.xhp\" name=\"sfintro_link\">Creating Python Scripts with ScriptForge</link>."
msgstr ""
#. wKZM6
@@ -9106,13 +9106,13 @@ msgctxt ""
msgid "Keys and items can be retrieved, counted, updated, and much more."
msgstr ""
-#. HnBYG
+#. LtaTT
#: sf_dictionary.xhp
msgctxt ""
"sf_dictionary.xhp\n"
"par_id971582884636922\n"
"help.text"
-msgid "%PRODUCTNAME Basic <literal>Collection</literal> object does not support the retrieval of the keys. <br/>Additionally its items contain only primitive Basic data types such as dates, text, numbers, and the like."
+msgid "The Dictionary service is similar to the built-in %PRODUCTNAME Basic <literal>Collection</literal> object, however with more features. For example, <literal>Collection</literal> objects do not support the retrieval of keys. Moreover, Dictionaries provide additional capabilities as replacing keys, testing if a specific key already exists and converting the Dictionary into an Array object or JSON string."
msgstr ""
#. RkMHR
@@ -15775,13 +15775,13 @@ msgctxt ""
msgid "<emph>Debugging:</emph> Whenever an error occurs in Python scripts that use <literal>ScriptForge</literal>, the error message provided by the Python execution stack displays the line of code that triggered the error. In Basic error messages do not display this information."
msgstr ""
-#. ZzngK
+#. cPtYB
#: sf_intro.xhp
msgctxt ""
"sf_intro.xhp\n"
"par_id31623411828158\n"
"help.text"
-msgid "Visit <embedvar href=\"text/sbasic/python/main0000.xhp#pythonscriptshelp\"/> for more information on Python scripting using %PRODUCTNAME."
+msgid "Visit <link href=\"text/sbasic/python/main0000.xhp#\" name=\"pyscripts_link\">%PRODUCTNAME Python Scripts Help</link> for more information on Python scripting using %PRODUCTNAME."
msgstr ""
#. CZiTF
@@ -17620,13 +17620,13 @@ msgctxt ""
msgid "ScriptForge.Session service"
msgstr ""
-#. c4YAM
+#. DxnDG
#: sf_session.xhp
msgctxt ""
"sf_session.xhp\n"
"hd_id901582814720985\n"
"help.text"
-msgid "<variable id=\"SessionService\"><link href=\"text/sbasic/shared/03/sf_session.xhp\" name=\"Session service\"><literal>ScriptForge</literal>.<literal>Session</literal> service</link></variable>"
+msgid "<variable id=\"SessionService\"><link href=\"text/sbasic/shared/03/sf_session.xhp\" name=\"Session service\"><literal>ScriptForge.Session</literal> service</link></variable>"
msgstr ""
#. yTgFK
@@ -18025,13 +18025,13 @@ msgctxt ""
msgid "Consider the Python function <literal>odd_integers</literal> defined below that creates a list with odd integer values between <literal>v1</literal> and <literal>v2</literal>. Suppose this function is stored in a file named <emph>my_macros.py</emph> in your user scripts folder."
msgstr ""
-#. CHr5n
+#. o6DUm
#: sf_session.xhp
msgctxt ""
"sf_session.xhp\n"
"par_id751626817335715\n"
"help.text"
-msgid "Read the help page <embedvar href=\"text/sbasic/python/python_locations.xhp#pythonlocations1\"/> to learn more about where Python scripts can be stored."
+msgid "Read the help page <link href=\"text/sbasic/python/python_locations.xhp\" name=\"pylocation_link\">Python Scripts Organization and Location</link> to learn more about where Python scripts can be stored."
msgstr ""
#. vqBm9
diff --git a/source/ar/helpcontent2/source/text/scalc.po b/source/ar/helpcontent2/source/text/scalc.po
index 435b1ebdb55..223c46a220a 100644
--- a/source/ar/helpcontent2/source/text/scalc.po
+++ b/source/ar/helpcontent2/source/text/scalc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-04 19:51+0200\n"
+"POT-Creation-Date: 2021-10-25 12:48+0200\n"
"PO-Revision-Date: 2021-01-27 17:36+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textscalc/ar/>\n"
@@ -745,13 +745,13 @@ msgctxt ""
msgid "<variable id=\"main0200\"><link href=\"text/scalc/main0200.xhp\" name=\"Toolbars\">Toolbars</link></variable>"
msgstr ""
-#. tdJRk
+#. yvzAm
#: main0200.xhp
msgctxt ""
"main0200.xhp\n"
"par_id3148798\n"
"help.text"
-msgid "This submenu lists the toolbars that are available in spreadsheets.<embedvar href=\"text/shared/00/00000007.xhp#symbolleistenneu\"/>"
+msgid "This submenu lists the toolbars that are available in spreadsheets. This overview describes the default toolbar configuration for %PRODUCTNAME."
msgstr ""
#. XUCUB
diff --git a/source/ar/helpcontent2/source/text/scalc/01.po b/source/ar/helpcontent2/source/text/scalc/01.po
index 7046ed750a0..37ce843ea85 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: 2021-10-04 19:51+0200\n"
+"POT-Creation-Date: 2021-10-25 12:48+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"
@@ -15667,13 +15667,13 @@ msgctxt ""
msgid "Array Functions"
msgstr ""
-#. U7gUU
+#. BB9Ze
#: 04060107.xhp
msgctxt ""
"04060107.xhp\n"
"bm_id3147273\n"
"help.text"
-msgid "<bookmark_value>matrices; functions</bookmark_value><bookmark_value>Function Wizard; arrays</bookmark_value><bookmark_value>array formulas</bookmark_value><bookmark_value>inline array constants</bookmark_value><bookmark_value>formulas; arrays</bookmark_value><bookmark_value>functions; array functions</bookmark_value><bookmark_value>editing; array formulas</bookmark_value><bookmark_value>copying; array formulas</bookmark_value><bookmark_value>adjusting array ranges</bookmark_value><bookmark_value>calculating; conditional calculations</bookmark_value><bookmark_value>matrices; calculations</bookmark_value><bookmark_value>conditional calculations with arrays</bookmark_value><bookmark_value>implicit array handling</bookmark_value><bookmark_value>forced array handling</bookmark_value>"
+msgid "<bookmark_value>matrices; functions</bookmark_value><bookmark_value>Function Wizard; arrays</bookmark_value><bookmark_value>array formulas</bookmark_value><bookmark_value>inline array constants</bookmark_value><bookmark_value>formulas; arrays</bookmark_value><bookmark_value>functions; array functions</bookmark_value><bookmark_value>editing; array formulas</bookmark_value><bookmark_value>copying; array formulas</bookmark_value><bookmark_value>deleting; array formulas</bookmark_value><bookmark_value>adjusting array ranges</bookmark_value><bookmark_value>calculating; conditional calculations</bookmark_value><bookmark_value>matrices; calculations</bookmark_value><bookmark_value>conditional calculations with arrays</bookmark_value><bookmark_value>implicit array handling</bookmark_value><bookmark_value>forced array handling</bookmark_value>"
msgstr ""
#. ALUph
@@ -15856,13 +15856,13 @@ msgctxt ""
msgid "Array formulas appear in braces in $[officename] Calc. You cannot create array formulas by manually entering the braces."
msgstr ""
-#. 6GZXu
+#. 6zGAy
#: 04060107.xhp
msgctxt ""
"04060107.xhp\n"
"par_id3154342\n"
"help.text"
-msgid "The cells in a results array are automatically protected against changes. However, you can edit or copy the array formula by selecting the entire array cell range."
+msgid "The cells in a results array are automatically protected against changes. However, you can edit, delete or copy the array formula by selecting the entire array cell range."
msgstr ""
#. 2tDZj
@@ -16009,13 +16009,13 @@ msgctxt ""
msgid "Editing Array Formulas"
msgstr ""
-#. cT3G3
+#. Qi4kV
#: 04060107.xhp
msgctxt ""
"04060107.xhp\n"
"par_id3149241\n"
"help.text"
-msgid "Select the cell range or array containing the array formula. To select the whole array, position the cell cursor inside the array range, then press <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline><emph> + /</emph>, where <emph>/</emph> is the <emph>Division</emph> key on the numeric keypad."
+msgid "Select the cell range or array containing the array formula. To select the whole array, position the cell cursor inside the array range, then press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> + <keycode>/</keycode>, where <keycode>/</keycode> is the division key on the numeric keypad."
msgstr ""
#. BzLzG
@@ -16045,6 +16045,33 @@ msgctxt ""
msgid "You can format the separate parts of an array. For example, you can change the font color. Select a cell range and then change the attribute you want."
msgstr ""
+#. Tes4E
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"hd_id541633516074226\n"
+"help.text"
+msgid "Deleting Array Formulae"
+msgstr ""
+
+#. adAax
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id681633516103267\n"
+"help.text"
+msgid "Select the cell range or array containing the array formula. To select the whole array, position the cell cursor inside the array range, then press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> + <keycode>/</keycode>, where <keycode>/</keycode> is the division key on the numeric keypad."
+msgstr ""
+
+#. 5xB8E
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id61633516164519\n"
+"help.text"
+msgid "Press <keycode>Delete</keycode> to delete the array contents, including the array formula, or press <keycode>Backspace</keycode> and this brings up the <link href=\"text/scalc/01/02150000.xhp\" name=\"delete contents\">Delete Contents</link> dialog box. Select <emph>Formula</emph> or <emph>Delete All</emph> and click <emph>OK</emph>."
+msgstr ""
+
#. dEcVJ
#: 04060107.xhp
msgctxt ""
@@ -20266,69 +20293,6 @@ msgctxt ""
msgid "Beware that Calc's AutoCorrect function may modify double quotation marks. AutoCorrect should not change the double quotation marks within formula cells but may change those used in non-formula cells containing text. For example, if you copy a string that is surrounded by some other form of typographical double quotation marks, such as the left double quotation mark (U+201C) and the right double quotation mark (U+201D), and then paste into a formula cell, an error may result. Open the <emph>Double Quotes</emph> area of the <menuitem>Tools - AutoCorrect Options - Localized Options</menuitem> dialog to set the characters used to automatically correct the start and end typographical double quotation marks. Uncheck the <menuitem>Replace</menuitem> toggle button to disable the feature."
msgstr ""
-#. Gmvo8
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"bm_id3149384\n"
-"help.text"
-msgid "<bookmark_value>ARABIC function</bookmark_value>"
-msgstr ""
-
-#. SyuhN
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3149384\n"
-"help.text"
-msgid "ARABIC"
-msgstr ""
-
-#. 6Kjyp
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3153558\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ARABISCH\">Calculates the value of a Roman number. The value range must be between 0 and 3999.</ahelp>"
-msgstr ""
-
-#. cwSkH
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3155523\n"
-"help.text"
-msgid "ARABIC(\"Text\")"
-msgstr ""
-
-#. AQA5o
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3151193\n"
-"help.text"
-msgid "<emph>Text</emph> is the text that represents a Roman number."
-msgstr ""
-
-#. dVD9Z
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3154621\n"
-"help.text"
-msgid "<item type=\"input\">=ARABIC(\"MXIV\")</item> returns 1014"
-msgstr ""
-
-#. g4sEa
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3147553\n"
-"help.text"
-msgid "<item type=\"input\">=ARABIC(\"MMII\")</item> returns 2002"
-msgstr ""
-
#. teACB
#: 04060110.xhp
msgctxt ""
@@ -22264,114 +22228,6 @@ msgctxt ""
msgid "<item type=\"input\">RIGHTB(\"office\";3)</item> returns \"ice\" (3 non-DBCS characters each consisting of 1 byte)."
msgstr ""
-#. 84zEq
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"bm_id3153534\n"
-"help.text"
-msgid "<bookmark_value>ROMAN function</bookmark_value>"
-msgstr ""
-
-#. 25vky
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3153534\n"
-"help.text"
-msgid "ROMAN"
-msgstr ""
-
-#. r5V5K
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3151256\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ROEMISCH\">Converts a number into a Roman numeral. The value range must be between 0 and 3999, the modes can be integers from 0 to 4.</ahelp>"
-msgstr ""
-
-#. RdCBS
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3150593\n"
-"help.text"
-msgid "ROMAN(Number [; Mode])"
-msgstr ""
-
-#. 4rcTC
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3156139\n"
-"help.text"
-msgid "<emph>Number</emph> is the number that is to be converted into a Roman numeral."
-msgstr ""
-
-#. HEZFy
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3153318\n"
-"help.text"
-msgid "<emph>Mode</emph> (optional) indicates the degree of simplification. The higher the value, the greater is the simplification of the Roman number."
-msgstr ""
-
-#. Huw7f
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3151371\n"
-"help.text"
-msgid "<item type=\"input\">=ROMAN(999)</item> returns CMXCIX"
-msgstr ""
-
-#. ACRz3
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3153938\n"
-"help.text"
-msgid "<item type=\"input\">=ROMAN(999;0)</item> returns CMXCIX"
-msgstr ""
-
-#. mtbzC
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3148412\n"
-"help.text"
-msgid "<item type=\"input\">=ROMAN (999;1)</item> returns LMVLIV"
-msgstr ""
-
-#. 8GQP5
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3155421\n"
-"help.text"
-msgid "<item type=\"input\">=ROMAN(999;2)</item> returns XMIX"
-msgstr ""
-
-#. d8sji
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3149235\n"
-"help.text"
-msgid "<item type=\"input\">=ROMAN(999;3)</item> returns VMIV"
-msgstr ""
-
-#. yDGse
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3150624\n"
-"help.text"
-msgid "<item type=\"input\">=ROMAN(999;4)</item> returns IM"
-msgstr ""
-
#. q3uLN
#: 04060110.xhp
msgctxt ""
@@ -44260,13 +44116,13 @@ msgctxt ""
msgid "In the <emph>Formatting</emph> toolbar, click:"
msgstr ""
-#. sq4wv
+#. BCsAA
#: 05060000.xhp
msgctxt ""
"05060000.xhp\n"
"par_id521632804983642\n"
"help.text"
-msgid "<image id=\"img_id811632804983642\" src=\"cmd/sc_togglemergecells.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id921632804983642\">Icon</alt> </image>"
+msgid "<image id=\"img_id811632804983642\" src=\"cmd/sc_togglemergecells.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id921632804983642\">Icon Merge and Center Cells</alt></image>"
msgstr ""
#. 86yef
@@ -55906,6 +55762,96 @@ msgctxt ""
msgid "<link href=\"text/shared/optionen/01060500.xhp#hd_id3156199\">Automatically find column and row labels</link>"
msgstr ""
+#. czFkz
+#: func_arabic.xhp
+msgctxt ""
+"func_arabic.xhp\n"
+"tit\n"
+"help.text"
+msgid "ARABIC Function"
+msgstr ""
+
+#. ze8wK
+#: func_arabic.xhp
+msgctxt ""
+"func_arabic.xhp\n"
+"bm_id831542233029549\n"
+"help.text"
+msgid "<bookmark_value>ARABIC function</bookmark_value> <bookmark_value>text functions;convert roman numbers</bookmark_value>"
+msgstr ""
+
+#. BNUYi
+#: func_arabic.xhp
+msgctxt ""
+"func_arabic.xhp\n"
+"hd_id881628776094597\n"
+"help.text"
+msgid "<variable id=\"Arabic_h1\"><link href=\"text/scalc/01/func_arabic.xhp\" name=\"function ARABIC\">ARABIC</link></variable>"
+msgstr ""
+
+#. xPXrU
+#: func_arabic.xhp
+msgctxt ""
+"func_arabic.xhp\n"
+"par_id541542230672101\n"
+"help.text"
+msgid "<variable id=\"func_arabic_desc\"><ahelp hid=\".\">Returns the numeric value corresponding to a Roman number expressed as text.</ahelp></variable>"
+msgstr ""
+
+#. 2UE9g
+#: func_arabic.xhp
+msgctxt ""
+"func_arabic.xhp\n"
+"par_id151634221012221\n"
+"help.text"
+msgid "The largest Roman number that can be converted is MMMCMXCIX (or one of its simplified versions), which is equivalent to 3999."
+msgstr ""
+
+#. AueXr
+#: func_arabic.xhp
+msgctxt ""
+"func_arabic.xhp\n"
+"par_id701542231253817\n"
+"help.text"
+msgid "<input>ARABIC(Text)</input>"
+msgstr ""
+
+#. sWMEb
+#: func_arabic.xhp
+msgctxt ""
+"func_arabic.xhp\n"
+"par_id621542232197446\n"
+"help.text"
+msgid "<emph>Text</emph>: text representing a Roman number."
+msgstr ""
+
+#. WcE8r
+#: func_arabic.xhp
+msgctxt ""
+"func_arabic.xhp\n"
+"par_id451628776707264\n"
+"help.text"
+msgid "<input>=ARABIC(\"MXIV\")</input> returns the numeric value 1014."
+msgstr ""
+
+#. hDmDF
+#: func_arabic.xhp
+msgctxt ""
+"func_arabic.xhp\n"
+"par_id101628778036375\n"
+"help.text"
+msgid "<input>=ARABIC(\"MMII\")</input> returns the numeric value 2002."
+msgstr ""
+
+#. XAwC8
+#: func_arabic.xhp
+msgctxt ""
+"func_arabic.xhp\n"
+"par_id101628778036134\n"
+"help.text"
+msgid "<input>=ARABIC(\"\")</input> returns 0."
+msgstr ""
+
#. y9q7t
#: func_averageif.xhp
msgctxt ""
@@ -63538,13 +63484,13 @@ msgctxt ""
msgid "The output number is formatted as a valid floating point value and shown using the current cell's number format."
msgstr ""
-#. 2Ditv
+#. CdgXz
#: func_numbervalue.xhp
msgctxt ""
"func_numbervalue.xhp\n"
"par_id351625601754290\n"
"help.text"
-msgid "Refer to the <embedvar href=\"text/shared/01/05020300.xhp#NumbersLink\"/> help page to learn how to change the format of numbers in a cell."
+msgid "Refer to the <link href=\"text/shared/01/05020300.xhp\" name=\"num_format_link\">Numbers / Format</link> help page to learn how to change the format of numbers in a cell."
msgstr ""
#. vEdwF
@@ -64564,6 +64510,132 @@ msgctxt ""
msgid "Refer to the <link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/REPLACEB\" name=\"REPLACEB_Wiki\">REPLACEB</link> wiki page for more details about this function."
msgstr ""
+#. FuCCt
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"tit\n"
+"help.text"
+msgid "ROMAN Function"
+msgstr ""
+
+#. JqcvP
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"bm_id831542233029549\n"
+"help.text"
+msgid "<bookmark_value>ROMAN function</bookmark_value> <bookmark_value>text functions;convert to roman numbers</bookmark_value>"
+msgstr ""
+
+#. uXEPr
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"hd_id881628776094597\n"
+"help.text"
+msgid "<variable id=\"Roman_h1\"><link href=\"text/scalc/01/func_roman.xhp\" name=\"function ROMAN\">ROMAN</link></variable>"
+msgstr ""
+
+#. pdMgk
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"par_id541542230672101\n"
+"help.text"
+msgid "<variable id=\"func_roman_desc\"><ahelp hid=\".\">Converts a number into a Roman numeral. The value range must be between 0 and 3999. A simplification mode can be specified in the range from 0 to 4.</ahelp></variable>"
+msgstr ""
+
+#. tRsoC
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"par_id701542231253817\n"
+"help.text"
+msgid "<input>ROMAN(Number [; Mode])</input>"
+msgstr ""
+
+#. rz4bH
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"par_id621542232197446\n"
+"help.text"
+msgid "<emph>Number</emph>: the number that is to be converted into a Roman numeral."
+msgstr ""
+
+#. bfvWL
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"par_id621542232197337\n"
+"help.text"
+msgid "<emph>Mode</emph>: optional value ranging between 0 to 4 that indicates the degree of simplification to be used in the conversion. The higher the value, the greater is the simplification of the Roman number."
+msgstr ""
+
+#. BBUCq
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"par_id451628776707264\n"
+"help.text"
+msgid "<input>=ROMAN(999)</input> returns \"CMXCIX\" (uses simplification mode equal to zero, which is the default)."
+msgstr ""
+
+#. mBktA
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"par_id101628778036375\n"
+"help.text"
+msgid "<input>=ROMAN(999;0)</input> returns \"CMXCIX\"."
+msgstr ""
+
+#. fGqPj
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"par_id101628778036134\n"
+"help.text"
+msgid "<input>=ROMAN(999;1)</input> returns \"LMVLIV\"."
+msgstr ""
+
+#. qBbFo
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"par_id101628778036278\n"
+"help.text"
+msgid "<input>=ROMAN(999;2)</input> returns \"XMIX\"."
+msgstr ""
+
+#. AY5jP
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"par_id101628778036364\n"
+"help.text"
+msgid "<input>=ROMAN(999;3)</input> returns \"VMIV\"."
+msgstr ""
+
+#. B2aqT
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"par_id101628778036008\n"
+"help.text"
+msgid "<input>=ROMAN(999;4)</input> returns \"IM\"."
+msgstr ""
+
+#. CBuwx
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"par_id101628778036019\n"
+"help.text"
+msgid "<input>=ROMAN(0)</input> returns \"\" (empty text)."
+msgstr ""
+
#. E7heY
#: func_roundsig.xhp
msgctxt ""
diff --git a/source/ar/helpcontent2/source/text/scalc/guide.po b/source/ar/helpcontent2/source/text/scalc/guide.po
index 7f075fdb7e2..846efe1eab6 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: 2021-10-04 19:51+0200\n"
+"POT-Creation-Date: 2021-10-25 12:48+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"
@@ -9079,13 +9079,13 @@ msgctxt ""
msgid "Converting Text to Numbers"
msgstr ""
-#. AzAoQ
+#. dP2GC
#: numbers_text.xhp
msgctxt ""
"numbers_text.xhp\n"
"bm_id3145068\n"
"help.text"
-msgid "<bookmark_value>formats; text as numbers</bookmark_value> <bookmark_value>time format conversion</bookmark_value> <bookmark_value>date formats;conversion</bookmark_value> <bookmark_value>converting;text, into numbers</bookmark_value>"
+msgid "<bookmark_value>formats; text as numbers</bookmark_value> <bookmark_value>time format conversion</bookmark_value> <bookmark_value>date formats;conversion</bookmark_value> <bookmark_value>converting;text, into numbers</bookmark_value>"
msgstr ""
#. pqhdm
@@ -9313,13 +9313,13 @@ msgctxt ""
msgid "Changing the default text to number conversion settings"
msgstr ""
-#. FrQEr
+#. p9t4t
#: numbers_text.xhp
msgctxt ""
"numbers_text.xhp\n"
"par_id111567772433803\n"
"help.text"
-msgid "The text to number conversion can be customized in the <embedvar href=\"text/shared/optionen/detailedcalculation.xhp#detailed_heading\" markup=\"ignore\"/> option."
+msgid "The text to number conversion can be customized in the <link href=\"text/shared/optionen/detailedcalculation.xhp\" name=\"detailed_link\">Detailed Calculation Settings</link> option."
msgstr ""
#. WE8wt
@@ -10726,13 +10726,13 @@ msgctxt ""
msgid "Select the range of values from which duplicate values are to be removed. The values have to be arranged in a single column."
msgstr ""
-#. XvTTj
+#. 7fDQ9
#: remove_duplicates.xhp
msgctxt ""
"remove_duplicates.xhp\n"
"par_id31630021517873\n"
"help.text"
-msgid "Go to <menuitem>Data - More Filters - Standard Filter</menuitem>. This opens the <embedvar href=\"text/shared/02/12090100.xhp#StandardFilter_h1\"/> dialog."
+msgid "Go to <menuitem>Data - More Filters - Standard Filter</menuitem>. This opens the <link href=\"text/shared/02/12090100.xhp\" name=\"std_dialog_link\"> Standard Filter</link> dialog."
msgstr ""
#. EVEzq
@@ -12067,13 +12067,13 @@ msgctxt ""
msgid "Merge and Unmerge Cells"
msgstr ""
-#. AEABz
+#. FFV5z
#: table_cellmerge.xhp
msgctxt ""
"table_cellmerge.xhp\n"
"bm_id501632012952361\n"
"help.text"
-msgid "<bookmark_value>merge/merging cells</bookmark_value> <bookmark_value>unmerge/unmerging cells</bookmark_value> <bookmark_value>split/splitting cells</bookmark_value>"
+msgid "<bookmark_value>merge/merging cells</bookmark_value> <bookmark_value>unmerge/unmerging cells</bookmark_value> <bookmark_value>split/splitting cells</bookmark_value>"
msgstr ""
#. BAqR3
@@ -12148,22 +12148,22 @@ msgctxt ""
msgid "Or, in the <emph>Properties</emph> sidebar mark the <emph>Merge Cells</emph> checkbox."
msgstr ""
-#. dzAEu
+#. fAjCD
#: table_cellmerge.xhp
msgctxt ""
"table_cellmerge.xhp\n"
"par_id3154020\n"
"help.text"
-msgid "Or, choose <embedvar href=\"text/scalc/01/05060000.xhp#format_mergecells_menu\"/><menuitem>Merge Cells</menuitem>"
+msgid "Or, choose <menuitem>Format - Merge and Unmerge Cells - Merge Cells</menuitem>"
msgstr ""
-#. DbZBM
+#. 6VxQA
#: table_cellmerge.xhp
msgctxt ""
"table_cellmerge.xhp\n"
"par_id6424146\n"
"help.text"
-msgid "Or, choose <embedvar href=\"text/scalc/01/05060000.xhp#format_mergecells_menu\"/><menuitem>Merge and Center Cells</menuitem>"
+msgid "Or, choose <menuitem>Format - Merge and Unmerge Cells - Merge and Center Cells</menuitem>"
msgstr ""
#. sHLpi
@@ -12220,22 +12220,22 @@ msgctxt ""
msgid "Or, in the <emph>Properties</emph> sidebar clear the <emph>Merge Cells</emph> checkbox."
msgstr ""
-#. zBdRG
+#. uiNiD
#: table_cellmerge.xhp
msgctxt ""
"table_cellmerge.xhp\n"
"par_id9493087\n"
"help.text"
-msgid "Or, choose <embedvar href=\"text/scalc/01/05060000.xhp#format_mergecells_menu\"/><menuitem>Unmerge Cells</menuitem>."
+msgid "Or, choose <menuitem>Format - Merge and Unmerge Cells - Unmerge Cells</menuitem>."
msgstr ""
-#. YC7sa
+#. HJEzN
#: table_cellmerge.xhp
msgctxt ""
"table_cellmerge.xhp\n"
"par_id561632820960500\n"
"help.text"
-msgid "Or, toggle <embedvar href=\"text/scalc/01/05060000.xhp#format_mergecells_menu\"/><menuitem>Merge and Center Cells</menuitem>"
+msgid "Or, toggle <menuitem>Format - Merge and Unmerge Cells - Merge and Center Cells</menuitem>"
msgstr ""
#. u5xXE
diff --git a/source/ar/helpcontent2/source/text/sdatabase.po b/source/ar/helpcontent2/source/text/sdatabase.po
index 9b3ef8f5798..ce5d19e58fc 100644
--- a/source/ar/helpcontent2/source/text/sdatabase.po
+++ b/source/ar/helpcontent2/source/text/sdatabase.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-04 19:51+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
"PO-Revision-Date: 2021-06-13 09:10+0000\n"
"Last-Translator: kimy <kimy747@zohomail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textsdatabase/ar/>\n"
@@ -7566,76 +7566,76 @@ msgctxt ""
msgid "If you open the Database Wizard to create a database file for an existing database connection, there may be more steps to specify paths, authentication information, and more."
msgstr ""
-#. wFFQE
+#. A9JMA
#: dabawiz00.xhp
msgctxt ""
"dabawiz00.xhp\n"
"par_idN105F2\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02text.xhp\">Set up text file connection</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02text.xhp\">Set up text file connection</link>"
msgstr ""
-#. 73X5w
+#. FWLbE
#: dabawiz00.xhp
msgctxt ""
"dabawiz00.xhp\n"
"par_idN10601\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02access.xhp\">Set up Microsoft Access connection</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02access.xhp\">Set up Microsoft Access connection</link>"
msgstr ""
-#. ckemB
+#. LE9Go
#: dabawiz00.xhp
msgctxt ""
"dabawiz00.xhp\n"
"par_idN1062E\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02ado.xhp\">Set up ADO connection</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02ado.xhp\">Set up ADO connection</link>"
msgstr ""
-#. bbTEe
+#. BU6uL
#: dabawiz00.xhp
msgctxt ""
"dabawiz00.xhp\n"
"par_idN1070F\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02dbase.xhp\">Set up dBASE connection</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02dbase.xhp\">Set up dBASE connection</link>"
msgstr ""
-#. mM3XM
+#. TBaXt
#: dabawiz00.xhp
msgctxt ""
"dabawiz00.xhp\n"
"par_idN1063D\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02jdbc.xhp\">Set up JDBC connection</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02jdbc.xhp\">Set up JDBC connection</link>"
msgstr ""
-#. EB2yp
+#. F3Gju
#: dabawiz00.xhp
msgctxt ""
"dabawiz00.xhp\n"
"par_idN1064C\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02oracle.xhp\">Set up Oracle database connection</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02oracle.xhp\">Set up Oracle database connection</link>"
msgstr ""
-#. sSrMX
+#. atGau
#: dabawiz00.xhp
msgctxt ""
"dabawiz00.xhp\n"
"par_idN1066A\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02odbc.xhp\">ODBC settings</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02odbc.xhp\">ODBC settings</link>"
msgstr ""
-#. Jht8w
+#. wGT7W
#: dabawiz00.xhp
msgctxt ""
"dabawiz00.xhp\n"
"par_idN10679\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02spreadsheet.xhp\">Set up Spreadsheet connection</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02spreadsheet.xhp\">Set up Spreadsheet connection</link>"
msgstr ""
#. menWz
@@ -7809,22 +7809,22 @@ msgctxt ""
msgid "The next wizard page is one of the following pages:"
msgstr ""
-#. vaBGS
+#. 9fLay
#: dabawiz01.xhp
msgctxt ""
"dabawiz01.xhp\n"
"par_idN1061C\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02text.xhp\">Set up text file connection</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02text.xhp\">Set up text file connection</link>"
msgstr ""
-#. NEWQn
+#. DeFrC
#: dabawiz01.xhp
msgctxt ""
"dabawiz01.xhp\n"
"par_idN1062B\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02access.xhp\">Set up Microsoft Access or Microsoft Access 2007 connection</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02access.xhp\">Set up Microsoft Access or Microsoft Access 2007 connection</link>"
msgstr ""
#. NCWx8
@@ -7836,49 +7836,1516 @@ msgctxt ""
msgid "<link href=\"text/shared/explorer/database/dabawiz02ldap.xhp\">Set up LDAP connection</link>"
msgstr ""
-#. 29mSc
+#. 6qgTE
#: dabawiz01.xhp
msgctxt ""
"dabawiz01.xhp\n"
"par_idN10658\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02ado.xhp\">Set up ADO connection</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02ado.xhp\">Set up ADO connection</link>"
msgstr ""
-#. sUX3D
+#. oiGwh
#: dabawiz01.xhp
msgctxt ""
"dabawiz01.xhp\n"
"par_idN10667\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02jdbc.xhp\">Set up JDBC connection</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02jdbc.xhp\">Set up JDBC connection</link>"
msgstr ""
-#. BRUYG
+#. N55Na
#: dabawiz01.xhp
msgctxt ""
"dabawiz01.xhp\n"
"par_idN10676\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02oracle.xhp\">Set up Oracle database connection</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02oracle.xhp\">Set up Oracle database connection</link>"
msgstr ""
-#. JtGv6
+#. c4YLM
#: dabawiz01.xhp
msgctxt ""
"dabawiz01.xhp\n"
"par_idN10694\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02odbc.xhp\">ODBC settings</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02odbc.xhp\">ODBC settings</link>"
msgstr ""
-#. A69nZ
+#. zpfrv
#: dabawiz01.xhp
msgctxt ""
"dabawiz01.xhp\n"
"par_idN106A3\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02spreadsheet.xhp\">Set up Spreadsheet connection</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02spreadsheet.xhp\">Set up Spreadsheet connection</link>"
+msgstr ""
+
+#. SJaiE
+#: dabawiz02.xhp
+msgctxt ""
+"dabawiz02.xhp\n"
+"tit\n"
+"help.text"
+msgid "Save and proceed"
+msgstr ""
+
+#. Hjhen
+#: dabawiz02.xhp
+msgctxt ""
+"dabawiz02.xhp\n"
+"par_idN10544\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/dabawiz02.xhp\">Save and proceed</link>"
+msgstr ""
+
+#. CECqo
+#: dabawiz02.xhp
+msgctxt ""
+"dabawiz02.xhp\n"
+"par_idN10554\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies whether you want to register the database, open the database for editing, or insert a new table.</ahelp>"
+msgstr ""
+
+#. v3hCS
+#: dabawiz02.xhp
+msgctxt ""
+"dabawiz02.xhp\n"
+"par_idN10557\n"
+"help.text"
+msgid "Yes, register the Database for me"
+msgstr ""
+
+#. 6iEY2
+#: dabawiz02.xhp
+msgctxt ""
+"dabawiz02.xhp\n"
+"par_idN105B4\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select to register the database within your user copy of %PRODUCTNAME. After registering, the database is displayed in the <emph>View - Data Sources</emph> window. You must register a database to be able to insert the database fields in a document (Insert - Field - More Fields) or in a mail merge.</ahelp>"
+msgstr ""
+
+#. BDPbo
+#: dabawiz02.xhp
+msgctxt ""
+"dabawiz02.xhp\n"
+"par_idN105B7\n"
+"help.text"
+msgid "No, do not register the database"
+msgstr ""
+
+#. PHFCG
+#: dabawiz02.xhp
+msgctxt ""
+"dabawiz02.xhp\n"
+"par_idN105BB\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select to keep the database information only within the created database file.</ahelp>"
+msgstr ""
+
+#. xJFV8
+#: dabawiz02.xhp
+msgctxt ""
+"dabawiz02.xhp\n"
+"par_idN1055B\n"
+"help.text"
+msgid "Open the database for editing"
+msgstr ""
+
+#. 2oDVV
+#: dabawiz02.xhp
+msgctxt ""
+"dabawiz02.xhp\n"
+"par_idN105C6\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select to display the database file, where you can edit the database structure.</ahelp>"
+msgstr ""
+
+#. uUaJe
+#: dabawiz02.xhp
+msgctxt ""
+"dabawiz02.xhp\n"
+"par_idN1055F\n"
+"help.text"
+msgid "Create tables using the table wizard"
+msgstr ""
+
+#. F4TTD
+#: dabawiz02.xhp
+msgctxt ""
+"dabawiz02.xhp\n"
+"par_idN105D1\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select to call the <link href=\"text/shared/explorer/database/tablewizard00.xhp\">Table Wizard</link> after the Database Wizard is finished.</ahelp>"
+msgstr ""
+
+#. YnZ24
+#: dabawiz02access.xhp
+msgctxt ""
+"dabawiz02access.xhp\n"
+"tit\n"
+"help.text"
+msgid "Microsoft Access Connection"
+msgstr ""
+
+#. uUAxL
+#: dabawiz02access.xhp
+msgctxt ""
+"dabawiz02access.xhp\n"
+"bm_id2755516\n"
+"help.text"
+msgid "<bookmark_value>Access databases (base)</bookmark_value><bookmark_value>Microsoft Office;Access databases (base)</bookmark_value>"
+msgstr ""
+
+#. iPpLv
+#: dabawiz02access.xhp
+msgctxt ""
+"dabawiz02access.xhp\n"
+"par_idN1053D\n"
+"help.text"
+msgid "<variable id=\"access\"><link href=\"text/sdatabase/dabawiz02access.xhp\">Microsoft Access Connection</link></variable>"
+msgstr ""
+
+#. eMbAE
+#: dabawiz02access.xhp
+msgctxt ""
+"dabawiz02access.xhp\n"
+"par_idN10541\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies the settings for importing a database file in Microsoft Access or Access 2007 format.</ahelp>"
+msgstr ""
+
+#. FJFQi
+#: dabawiz02access.xhp
+msgctxt ""
+"dabawiz02access.xhp\n"
+"par_id1142772\n"
+"help.text"
+msgid "See also the English Wiki page <link href=\"https://wiki.documentfoundation.org/MSA-Base_Faq\" name=\"wiki.documentfoundation.org MS Access Base FAQ\">https://wiki.documentfoundation.org/MSA-Base_Faq</link>."
+msgstr ""
+
+#. 7vvBT
+#: dabawiz02access.xhp
+msgctxt ""
+"dabawiz02access.xhp\n"
+"par_idN10544\n"
+"help.text"
+msgid "Microsoft Access database file"
+msgstr ""
+
+#. 5nSHE
+#: dabawiz02access.xhp
+msgctxt ""
+"dabawiz02access.xhp\n"
+"par_idN10548\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies the path to the database file.</ahelp>"
+msgstr ""
+
+#. cKU7v
+#: dabawiz02access.xhp
+msgctxt ""
+"dabawiz02access.xhp\n"
+"par_idN1054B\n"
+"help.text"
+msgid "Browse"
+msgstr ""
+
+#. k4EM5
+#: dabawiz02access.xhp
+msgctxt ""
+"dabawiz02access.xhp\n"
+"par_idN1054F\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click to open a file selection dialog.</ahelp>"
+msgstr ""
+
+#. gjtnv
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"tit\n"
+"help.text"
+msgid "ADO Connection"
+msgstr ""
+
+#. jJtjy
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"bm_id7565233\n"
+"help.text"
+msgid "<bookmark_value>ADO databases (Base)</bookmark_value><bookmark_value>MS ADO interface (Base)</bookmark_value><bookmark_value>databases;ADO (Base)</bookmark_value>"
+msgstr ""
+
+#. 9Yxn5
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN1054C\n"
+"help.text"
+msgid "<variable id=\"ado\"><link href=\"text/sdatabase/dabawiz02ado.xhp\">ADO Connection</link></variable>"
+msgstr ""
+
+#. Gi6xc
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN10550\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies the options for adding an ADO (Microsoft ActiveX Data Objects) database.</ahelp>"
+msgstr ""
+
+#. pGwdA
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN10565\n"
+"help.text"
+msgid "The ADO interface is a Microsoft Windows proprietary container for connecting to databases."
+msgstr ""
+
+#. mVEj7
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN10568\n"
+"help.text"
+msgid "$[officename] requires the Microsoft Data Access Components (MDAC) to use the ADO interface. Microsoft Windows 2000 and XP include these components by default."
+msgstr ""
+
+#. CWQxx
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN1056B\n"
+"help.text"
+msgid "Data source URL"
+msgstr ""
+
+#. dEHxg
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN1056F\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the data source URL.</ahelp>"
+msgstr ""
+
+#. AS8Ye
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN10572\n"
+"help.text"
+msgid "Example URLs"
+msgstr ""
+
+#. DGA9a
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN10576\n"
+"help.text"
+msgid "To connect to an Access 2000 file, use the format:"
+msgstr ""
+
+#. EYrtv
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN10579\n"
+"help.text"
+msgid "PROVIDER=Microsoft.Jet.OLEDB.4.0;DATA SOURCE=c:\\Access\\nwind2000.mdb"
+msgstr ""
+
+#. JrQva
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN1057C\n"
+"help.text"
+msgid "To connect with a name to a catalog on a Microsoft SQL server that has a name turner, enter:"
+msgstr ""
+
+#. HeHcf
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN1057F\n"
+"help.text"
+msgid "PROVIDER=sqloledb;DATA SOURCE=turner;INITIAL CATALOG=First"
+msgstr ""
+
+#. eqFwU
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN10582\n"
+"help.text"
+msgid "To access an ODBC driver as a provider:"
+msgstr ""
+
+#. cibKq
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN10585\n"
+"help.text"
+msgid "DSN=SQLSERVER"
+msgstr ""
+
+#. FFdf5
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN10588\n"
+"help.text"
+msgid "Browse"
+msgstr ""
+
+#. xmZQB
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN1058C\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click to open a database selection dialog.</ahelp>"
+msgstr ""
+
+#. Bi3az
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN10596\n"
+"help.text"
+msgid "A user name can have a maximum of 18 characters."
+msgstr ""
+
+#. iifVJ
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN10599\n"
+"help.text"
+msgid "A password must contain 3 to 18 characters."
+msgstr ""
+
+#. mxSCU
+#: dabawiz02dbase.xhp
+msgctxt ""
+"dabawiz02dbase.xhp\n"
+"tit\n"
+"help.text"
+msgid "dBASE Connection"
+msgstr ""
+
+#. vDDMj
+#: dabawiz02dbase.xhp
+msgctxt ""
+"dabawiz02dbase.xhp\n"
+"par_idN1054A\n"
+"help.text"
+msgid "<variable id=\"dbase\"><link href=\"text/sdatabase/dabawiz02dbase.xhp\">dBASE Connection</link></variable>"
+msgstr ""
+
+#. 3rzAr
+#: dabawiz02dbase.xhp
+msgctxt ""
+"dabawiz02dbase.xhp\n"
+"par_idN10556\n"
+"help.text"
+msgid "Path to the dBASE files"
+msgstr ""
+
+#. 9qfqi
+#: dabawiz02dbase.xhp
+msgctxt ""
+"dabawiz02dbase.xhp\n"
+"par_idN1055A\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the path to the dBASE *.dbf files.</ahelp>"
+msgstr ""
+
+#. JtErQ
+#: dabawiz02dbase.xhp
+msgctxt ""
+"dabawiz02dbase.xhp\n"
+"par_idN10571\n"
+"help.text"
+msgid "Browse"
+msgstr ""
+
+#. VHbhH
+#: dabawiz02dbase.xhp
+msgctxt ""
+"dabawiz02dbase.xhp\n"
+"par_idN10575\n"
+"help.text"
+msgid "<ahelp hid=\".\">Open a path selection dialog.</ahelp>"
+msgstr ""
+
+#. n9AxK
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"tit\n"
+"help.text"
+msgid "JDBC Connection"
+msgstr ""
+
+#. BSPeu
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"bm_id3726920\n"
+"help.text"
+msgid "<bookmark_value>JDBC; databases (Base)</bookmark_value><bookmark_value>databases; JDBC (Base)</bookmark_value>"
+msgstr ""
+
+#. nSDvF
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN105FC\n"
+"help.text"
+msgid "<variable id=\"jdbc\"><link href=\"text/sdatabase/dabawiz02jdbc.xhp\">JDBC Connection</link></variable>"
+msgstr ""
+
+#. 4vvDv
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN10600\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies the options to access a <link href=\"text/shared/00/00000005.xhp#jdbc\" name=\"JDBC\">JDBC</link> database.</ahelp>"
+msgstr ""
+
+#. MAM5R
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN10623\n"
+"help.text"
+msgid "JDBC Examples"
+msgstr ""
+
+#. FAkVF
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN10627\n"
+"help.text"
+msgid "<item type=\"productname\">You can use a JDBC driver class to connect to a JDBC database from %PRODUCTNAME</item>. The driver class is provided by the database manufacturer. Two examples of JDBC databases are Oracle and MySQL."
+msgstr ""
+
+#. ehUZi
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN1062D\n"
+"help.text"
+msgid "The driver classes must be added to %PRODUCTNAME in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME - Advanced</menuitem>."
+msgstr ""
+
+#. KTrhC
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN10634\n"
+"help.text"
+msgid "Oracle database"
+msgstr ""
+
+#. Br2JC
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN10638\n"
+"help.text"
+msgid "You can use a JDBC driver to access an Oracle database from Solaris or Linux. To access the database from Windows, you need an ODBC driver."
+msgstr ""
+
+#. pei94
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN1064B\n"
+"help.text"
+msgid "On UNIX, ensure that the Oracle database client is installed with JDBC support. The JDBC driver class for the Solaris Oracle client version 8.x is located in the <Oracle client>/product/jdbc/lib/classes111.zip directory. You can also download the latest version from the Oracle web site."
+msgstr ""
+
+#. DifQh
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN10661\n"
+"help.text"
+msgid "In the <emph>Data source URL</emph> box, enter the location of the Oracle database server. The syntax of the URL depends on the database type. See the documentation that came with the JDBC driver for more information."
+msgstr ""
+
+#. BBFrJ
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN10668\n"
+"help.text"
+msgid "For an Oracle database, the syntax of the URL is:"
+msgstr ""
+
+#. 7tbob
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN1066B\n"
+"help.text"
+msgid "oracle:thin:@hostname:port:database_name"
+msgstr ""
+
+#. RiDDR
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN10674\n"
+"help.text"
+msgid "hostname is the name of the machine that runs the Oracle database. You can also replace hostname with the IP address of the server."
+msgstr ""
+
+#. sFfhQ
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN10678\n"
+"help.text"
+msgid "port is the port where the Oracle database listens. Ask your database administrator for the correct port address."
+msgstr ""
+
+#. GDkVv
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN1067C\n"
+"help.text"
+msgid "database_name is the name of the Oracle database. Ask your database administrator for the correct name."
+msgstr ""
+
+#. aQiqR
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN1067F\n"
+"help.text"
+msgid "MySQL database"
+msgstr ""
+
+#. FEV5u
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN10683\n"
+"help.text"
+msgid "The driver for the MySQL database is available on the MySQL web site."
+msgstr ""
+
+#. p2v67
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN10689\n"
+"help.text"
+msgid "The syntax for a MySQL database is:"
+msgstr ""
+
+#. wEDsL
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN1068C\n"
+"help.text"
+msgid "mysql://hostname:port/database_name"
+msgstr ""
+
+#. m5Kcx
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN10695\n"
+"help.text"
+msgid "<ahelp hid=\".\">hostname is the name of the machine that runs the MySQL database.</ahelp> You can also replace hostname with the IP address of the server."
+msgstr ""
+
+#. LCpew
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN10699\n"
+"help.text"
+msgid "port is the default port for MySQL databases, namely 3306."
+msgstr ""
+
+#. q2DuM
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN1069D\n"
+"help.text"
+msgid "database_name is the name of the database."
+msgstr ""
+
+#. YYgSg
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN106A0\n"
+"help.text"
+msgid "Data source URL"
+msgstr ""
+
+#. EcdaK
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN106A4\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the URL for the database. For example, for the MySQL JDBC driver, enter \"mysql://<Servername>/<name of the database>\". For more information on the JDBC driver, consult the documentation that came with the driver.</ahelp>"
+msgstr ""
+
+#. eVBSr
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN106BB\n"
+"help.text"
+msgid "JDBC Driver Class"
+msgstr ""
+
+#. vFsoP
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN106BF\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the name of the JDBC driver.</ahelp>"
+msgstr ""
+
+#. VHjhA
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_id7953733\n"
+"help.text"
+msgid "Before you can use a JDBC driver, you need to add its class path. Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME - Advanced</menuitem>, and click the <widget>Class Path</widget> button. After you add the path information, restart %PRODUCTNAME."
+msgstr ""
+
+#. f8fUr
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN106CE\n"
+"help.text"
+msgid "Test Class"
+msgstr ""
+
+#. 8VBbq
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN106E4\n"
+"help.text"
+msgid "<ahelp hid=\".\">Tests the connection with the current settings.</ahelp>"
+msgstr ""
+
+#. FGezr
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN106E7\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/dabawiz03auth.xhp\">Authentication</link>"
+msgstr ""
+
+#. Y4EFA
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"tit\n"
+"help.text"
+msgid "MariaDB and MySQL Connection"
+msgstr ""
+
+#. bVNAZ
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"bm_id861587404584956\n"
+"help.text"
+msgid "<bookmark_value>MariaDB settings (Base)</bookmark_value><bookmark_value>MySQL settings (Base)</bookmark_value>"
+msgstr ""
+
+#. MseiS
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"par_idN10549\n"
+"help.text"
+msgid "<variable id=\"mysql\"><link href=\"text/sdatabase/dabawiz02mysql.xhp\">MariaDB and MySQL Connection</link></variable>"
+msgstr ""
+
+#. 5FPU6
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"par_idN1054D\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies the options for MariaDB and MySQL databases.</ahelp>"
+msgstr ""
+
+#. Bmcwo
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"hd_id661587405298284\n"
+"help.text"
+msgid "Direct Connection for MariaDB and MySQL databases"
+msgstr ""
+
+#. vd9VD
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"hd_id321587405303769\n"
+"help.text"
+msgid "Database name"
+msgstr ""
+
+#. 6LAsi
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"par_id371587405314376\n"
+"help.text"
+msgid "Enter the name of the MariaDB or MySQL database. Ask your database administrator for the correct name."
+msgstr ""
+
+#. jbdZp
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"hd_id561587405334695\n"
+"help.text"
+msgid "Server URL"
+msgstr ""
+
+#. SshYk
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"par_id521587405341138\n"
+"help.text"
+msgid "Enter the URL for the database server. This is the name of the machine that runs the MariaDB or MySQL database. You can also replace hostname with the IP address of the server."
+msgstr ""
+
+#. MZQiq
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"hd_id171587405349438\n"
+"help.text"
+msgid "Port number"
+msgstr ""
+
+#. J2SR3
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"par_id1001587405358390\n"
+"help.text"
+msgid "Enter the port number for the database server. Ask your database administrator for the correct port address. The default port number for MySQL or MariaDB databases is 3306."
+msgstr ""
+
+#. ovKhU
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"hd_id121587407845730\n"
+"help.text"
+msgid "Named Pipe"
+msgstr ""
+
+#. Rq89B
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"par_id941587407987180\n"
+"help.text"
+msgid "If the MariaDB or MySQL database is to be accessed by a named pipe, enter its name."
+msgstr ""
+
+#. wF6bj
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"hd_id161587405553671\n"
+"help.text"
+msgid "Socket"
+msgstr ""
+
+#. e8DB2
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"par_id161587405561472\n"
+"help.text"
+msgid "If the MariaDB or MySQL database is to be accessed by a socket, enter the socket ID."
+msgstr ""
+
+#. fpBNu
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"par_idN10562\n"
+"help.text"
+msgid "Connect using ODBC (Open Database Connectivity)"
+msgstr ""
+
+#. E7sE2
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"par_idN10566\n"
+"help.text"
+msgid "<ahelp hid=\".\">Connects to an existing ODBC data source that was set on a system level.</ahelp>"
+msgstr ""
+
+#. AXrwJ
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"par_idN10569\n"
+"help.text"
+msgid "Connect using JDBC (Java Database Connectivity)"
+msgstr ""
+
+#. i9TrE
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"par_idN1056D\n"
+"help.text"
+msgid "<ahelp hid=\".\">Connects to an existing JDBC data source that was set on a system level.</ahelp>"
+msgstr ""
+
+#. FUG3D
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"par_idN10570\n"
+"help.text"
+msgid "The next wizard page depends on your choice of ODBC or JDBC:"
+msgstr ""
+
+#. VYcYK
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"par_idN10573\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/dabawiz02odbc.xhp\">ODBC Connection</link>"
+msgstr ""
+
+#. DABkC
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"par_idN10582\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/dabawiz02jdbc.xhp\">JDBC Connection</link>"
+msgstr ""
+
+#. ujaGF
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"par_idN10591\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/dabawiz03auth.xhp\">Authentication</link>"
+msgstr ""
+
+#. HF588
+#: dabawiz02odbc.xhp
+msgctxt ""
+"dabawiz02odbc.xhp\n"
+"tit\n"
+"help.text"
+msgid "ODBC Connection"
+msgstr ""
+
+#. sGNau
+#: dabawiz02odbc.xhp
+msgctxt ""
+"dabawiz02odbc.xhp\n"
+"bm_id3149031\n"
+"help.text"
+msgid "<bookmark_value>ODBC;database (Base)</bookmark_value><bookmark_value>databases;ODBC (Base)</bookmark_value>"
+msgstr ""
+
+#. SNzJc
+#: dabawiz02odbc.xhp
+msgctxt ""
+"dabawiz02odbc.xhp\n"
+"par_idN1053D\n"
+"help.text"
+msgid "<variable id=\"odbc\"><link href=\"text/sdatabase/dabawiz02odbc.xhp\">ODBC Connection</link></variable>"
+msgstr ""
+
+#. nb3Qq
+#: dabawiz02odbc.xhp
+msgctxt ""
+"dabawiz02odbc.xhp\n"
+"par_idN10541\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies the settings for <link href=\"text/shared/00/00000005.xhp#odbc\" name=\"ODBC\">ODBC</link> databases.</ahelp>"
+msgstr ""
+
+#. WhLBW
+#: dabawiz02odbc.xhp
+msgctxt ""
+"dabawiz02odbc.xhp\n"
+"par_id8856776\n"
+"help.text"
+msgid "To edit or add records to a database table in $[officename], the table must have a unique index field."
+msgstr ""
+
+#. xs2Yc
+#: dabawiz02odbc.xhp
+msgctxt ""
+"dabawiz02odbc.xhp\n"
+"par_id8034302\n"
+"help.text"
+msgid "On Solaris and Linux platforms, try to use a JDBC driver instead of an ODBC driver. See http://www.unixodbc.org for an ODBC implementation on Solaris or Linux."
+msgstr ""
+
+#. PxZ9T
+#: dabawiz02odbc.xhp
+msgctxt ""
+"dabawiz02odbc.xhp\n"
+"par_id8560136\n"
+"help.text"
+msgid "To connect to a Microsoft Access database on Windows, use the ADO or Access database interface, rather than ODBC."
+msgstr ""
+
+#. vme6U
+#: dabawiz02odbc.xhp
+msgctxt ""
+"dabawiz02odbc.xhp\n"
+"par_id2082583\n"
+"help.text"
+msgid "Drivers for ODBC are supplied and supported by the manufacturer of the database. $[officename] only supports the ODBC 3 standard."
+msgstr ""
+
+#. wCexE
+#: dabawiz02odbc.xhp
+msgctxt ""
+"dabawiz02odbc.xhp\n"
+"par_idN10552\n"
+"help.text"
+msgid "Name of the ODBC database"
+msgstr ""
+
+#. eubaF
+#: dabawiz02odbc.xhp
+msgctxt ""
+"dabawiz02odbc.xhp\n"
+"par_idN10556\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the path to the database file.</ahelp>"
+msgstr ""
+
+#. 7KKFy
+#: dabawiz02odbc.xhp
+msgctxt ""
+"dabawiz02odbc.xhp\n"
+"par_idN10559\n"
+"help.text"
+msgid "Browse"
+msgstr ""
+
+#. CSCAZ
+#: dabawiz02odbc.xhp
+msgctxt ""
+"dabawiz02odbc.xhp\n"
+"par_idN1055D\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click to open an ODBC data source selection dialog:</ahelp>"
+msgstr ""
+
+#. 48ubg
+#: dabawiz02odbc.xhp
+msgctxt ""
+"dabawiz02odbc.xhp\n"
+"par_idN10560\n"
+"help.text"
+msgid "Choose a data source"
+msgstr ""
+
+#. FhAAU
+#: dabawiz02odbc.xhp
+msgctxt ""
+"dabawiz02odbc.xhp\n"
+"par_idN10564\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select a data source to which you want to connect using ODBC. Then click <emph>OK</emph>.</ahelp>"
+msgstr ""
+
+#. WaAZB
+#: dabawiz02odbc.xhp
+msgctxt ""
+"dabawiz02odbc.xhp\n"
+"par_idN10567\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/dabawiz03auth.xhp\">Authentication</link>"
+msgstr ""
+
+#. RL7sk
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"tit\n"
+"help.text"
+msgid "Oracle Database Connection"
+msgstr ""
+
+#. 8H3zh
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"bm_id5900753\n"
+"help.text"
+msgid "<bookmark_value>Oracle databases (base)</bookmark_value>"
+msgstr ""
+
+#. W6aaT
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN105A4\n"
+"help.text"
+msgid "Oracle Database Connection"
+msgstr ""
+
+#. DbqoE
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN105A8\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies the options to access an Oracle database.</ahelp>"
+msgstr ""
+
+#. FMq7o
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN105BD\n"
+"help.text"
+msgid "Oracle database"
+msgstr ""
+
+#. 8qHyA
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN105C1\n"
+"help.text"
+msgid "You can use a JDBC driver to access an Oracle database from Solaris or Linux. To access the database from Windows, you need an ODBC driver."
+msgstr ""
+
+#. sSDYq
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN105D4\n"
+"help.text"
+msgid "On UNIX, ensure that the Oracle database client is installed with JDBC support. The JDBC driver class for the Solaris Oracle client version 8.x is located in the <Oracle client>/product/jdbc/lib/classes111.zip directory. You can also download the latest version of the driver from the Oracle web site."
+msgstr ""
+
+#. 5rxmX
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN10608\n"
+"help.text"
+msgid "Name of the Oracle database"
+msgstr ""
+
+#. DxYWQ
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN1060C\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the name of the Oracle database. Ask your database administrator for the correct name.</ahelp>"
+msgstr ""
+
+#. WKBSR
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN1060F\n"
+"help.text"
+msgid "Server URL"
+msgstr ""
+
+#. vXDGs
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN10613\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the URL for the database server. This is the name of the machine that runs the Oracle database. You can also replace hostname with the IP address of the server.</ahelp>"
+msgstr ""
+
+#. EEESV
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN10616\n"
+"help.text"
+msgid "Port number"
+msgstr ""
+
+#. PBuEW
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN1061A\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the port number for the database server. Ask your database administrator for the correct port address.</ahelp>"
+msgstr ""
+
+#. rYRxW
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN1061D\n"
+"help.text"
+msgid "Oracle JDBC Driver Class"
+msgstr ""
+
+#. ouDxa
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN10621\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the name of the JDBC driver.</ahelp>"
+msgstr ""
+
+#. JumUz
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN10630\n"
+"help.text"
+msgid "Test Class"
+msgstr ""
+
+#. NdF7k
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN10634\n"
+"help.text"
+msgid "<ahelp hid=\".\">Tests the connection with the current settings.</ahelp>"
+msgstr ""
+
+#. UwteE
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN10637\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/dabawiz03auth.xhp\">Authentication</link>"
+msgstr ""
+
+#. XoiBM
+#: dabawiz02spreadsheet.xhp
+msgctxt ""
+"dabawiz02spreadsheet.xhp\n"
+"tit\n"
+"help.text"
+msgid "Spreadsheet Database Connection"
+msgstr ""
+
+#. cwGbM
+#: dabawiz02spreadsheet.xhp
+msgctxt ""
+"dabawiz02spreadsheet.xhp\n"
+"par_idN1053A\n"
+"help.text"
+msgid "Set up Spreadsheet connection"
+msgstr ""
+
+#. fZnvG
+#: dabawiz02spreadsheet.xhp
+msgctxt ""
+"dabawiz02spreadsheet.xhp\n"
+"par_idN1053E\n"
+"help.text"
+msgid "Location and file name"
+msgstr ""
+
+#. 6TKT4
+#: dabawiz02spreadsheet.xhp
+msgctxt ""
+"dabawiz02spreadsheet.xhp\n"
+"par_idN10542\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the path and file name to the spreadsheet file.</ahelp>"
+msgstr ""
+
+#. XtNjY
+#: dabawiz02spreadsheet.xhp
+msgctxt ""
+"dabawiz02spreadsheet.xhp\n"
+"par_idN10545\n"
+"help.text"
+msgid "Browse"
+msgstr ""
+
+#. JfUMC
+#: dabawiz02spreadsheet.xhp
+msgctxt ""
+"dabawiz02spreadsheet.xhp\n"
+"par_idN10549\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click to open a file selection dialog.</ahelp>"
+msgstr ""
+
+#. JAmAi
+#: dabawiz02spreadsheet.xhp
+msgctxt ""
+"dabawiz02spreadsheet.xhp\n"
+"par_idN1054C\n"
+"help.text"
+msgid "Password required"
+msgstr ""
+
+#. 3HzmH
+#: dabawiz02spreadsheet.xhp
+msgctxt ""
+"dabawiz02spreadsheet.xhp\n"
+"par_idN10550\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select to request a password from the user of the database document.</ahelp>"
+msgstr ""
+
+#. xngE4
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"tit\n"
+"help.text"
+msgid "Text File Connection"
+msgstr ""
+
+#. dfWU7
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"bm_id2517166\n"
+"help.text"
+msgid "<bookmark_value>tables in databases;importing text formats (Base)</bookmark_value><bookmark_value>text databases (Base)</bookmark_value>"
+msgstr ""
+
+#. htUUB
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN1054F\n"
+"help.text"
+msgid "Set up a connection to text files"
+msgstr ""
+
+#. MD2eT
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN10553\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies the settings for importing a database in text format.</ahelp>"
+msgstr ""
+
+#. 6yKNw
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN10568\n"
+"help.text"
+msgid "In a text format database, data is stored in an unformatted ASCII file, where each record comprises a row. The data fields are divided by separators. Text in the data fields is divided by quotation marks."
+msgstr ""
+
+#. puYrF
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN1056B\n"
+"help.text"
+msgid "Path to text files"
+msgstr ""
+
+#. LkFcD
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN1056F\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the path to the text file or files. If you just want one text file, you can use any extension of the file name. If you enter a folder name, the text files in that folder must have the extension *.csv to be recognized as files of the text database.</ahelp>"
+msgstr ""
+
+#. DwHAY
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN10572\n"
+"help.text"
+msgid "Browse"
+msgstr ""
+
+#. tU8mG
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN10576\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click to open a file selection dialog.</ahelp>"
+msgstr ""
+
+#. MmGr4
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN10616\n"
+"help.text"
+msgid "Plain text files (*.txt)"
+msgstr ""
+
+#. ztjWn
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN1061A\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click to access txt files.</ahelp>"
+msgstr ""
+
+#. E5S76
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN10643\n"
+"help.text"
+msgid "'Comma separated value' files (*.csv)"
+msgstr ""
+
+#. 2fDr2
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN10647\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click to access csv files.</ahelp>"
+msgstr ""
+
+#. EVBCK
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN10666\n"
+"help.text"
+msgid "Custom"
+msgstr ""
+
+#. 3Z5fx
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN1066A\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click to access custom files. Enter the extension in the text box.</ahelp>"
+msgstr ""
+
+#. rts2F
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN10581\n"
+"help.text"
+msgid "Field separator"
+msgstr ""
+
+#. 3G6QU
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN10585\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter or select the character that separates data fields in the text file.</ahelp>"
+msgstr ""
+
+#. 8rxWL
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN1059C\n"
+"help.text"
+msgid "Text separator"
+msgstr ""
+
+#. ejFpV
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN105A0\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter or select the character that identifies a text field in the text file.</ahelp> You cannot use the same character as the field separator."
+msgstr ""
+
+#. rSTcV
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN105B8\n"
+"help.text"
+msgid "Decimal separator"
+msgstr ""
+
+#. apBAu
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN105BC\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter or select the character that is used as a decimal separator in the text file, for example, a period (0.5) or a comma (0,5).</ahelp>"
+msgstr ""
+
+#. CyhGN
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN105D3\n"
+"help.text"
+msgid "Thousands separator"
+msgstr ""
+
+#. 6TTiq
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN105D7\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter or select the character that is used as a thousands separator in the text file, for example a comma (1,000), or a period (1.000).</ahelp>"
msgstr ""
#. YSNPt
@@ -7962,13 +9429,13 @@ msgctxt ""
msgid "<ahelp hid=\".\">Check if the configured connection can be used to access the database.</ahelp>"
msgstr ""
-#. 9d4Bh
+#. dF4Mp
#: dabawiz03auth.xhp
msgctxt ""
"dabawiz03auth.xhp\n"
"par_idN1054F\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02.xhp\">Save and proceed</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02.xhp\">Save and proceed</link>"
msgstr ""
#. cLmBi
diff --git a/source/ar/helpcontent2/source/text/sdraw.po b/source/ar/helpcontent2/source/text/sdraw.po
index 217eeb11804..53d7f700ba9 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: 2021-09-20 13:03+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+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"
@@ -1168,15 +1168,6 @@ msgctxt ""
msgid "<link href=\"text/sdraw/01/page_properties.xhp\" name=\"Properties\">Properties</link>"
msgstr ""
-#. ESkBn
-#: main_page.xhp
-msgctxt ""
-"main_page.xhp\n"
-"hd_id371566154570590\n"
-"help.text"
-msgid "Master Page"
-msgstr ""
-
#. 2pA94
#: main_page.xhp
msgctxt ""
diff --git a/source/ar/helpcontent2/source/text/sdraw/00.po b/source/ar/helpcontent2/source/text/sdraw/00.po
index ac0e3c6b06e..35cf82fbd23 100644
--- a/source/ar/helpcontent2/source/text/sdraw/00.po
+++ b/source/ar/helpcontent2/source/text/sdraw/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-03 12:42+0100\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
"PO-Revision-Date: 2017-05-09 15:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -79,6 +79,15 @@ msgctxt ""
msgid "<variable id=\"seitenvorlage\">Choose <menuitem>Page - Master Page</menuitem> </variable>"
msgstr ""
+#. DjtXM
+#: page_menu.xhp
+msgctxt ""
+"page_menu.xhp\n"
+"par_id911634055593609\n"
+"help.text"
+msgid "<variable id=\"loadpagedesign\">Choose <menuitem>Page - Master Page - Load</menuitem></variable>"
+msgstr ""
+
#. paRMk
#: page_menu.xhp
msgctxt ""
@@ -97,13 +106,13 @@ msgctxt ""
msgid "On the <emph>Insert</emph> bar, click"
msgstr ""
-#. Ldrnc
+#. kCGEr
#: page_menu.xhp
msgctxt ""
"page_menu.xhp\n"
"par_id351556823072396\n"
"help.text"
-msgid "<image id=\"img_id381556823072396\" src=\"cmd/sc_insertpage.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id381556823072396\">Icon</alt></image>"
+msgid "<image id=\"img_id381556823072396\" src=\"cmd/sc_insertpage.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id381556823072396\">Icon New Page</alt></image>"
msgstr ""
#. xbkHm
diff --git a/source/ar/helpcontent2/source/text/sdraw/01.po b/source/ar/helpcontent2/source/text/sdraw/01.po
index 051c6777b53..a1fd697a173 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: 2021-06-24 12:51+0200\n"
+"POT-Creation-Date: 2021-10-25 12:48+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"
@@ -601,13 +601,13 @@ msgctxt ""
msgid "The previous text box objects are deleted after consolidation."
msgstr ""
-#. 6AkKv
+#. bGEES
#: consolidatetext.xhp
msgctxt ""
"consolidatetext.xhp\n"
"par_id531623515498932\n"
"help.text"
-msgid "Consolidation of lists requires attention to restore the list layout that has been affected by the position of the punctuation. This includes the case of numbering of style \"1.\", where he resulting list items are split after the dot."
+msgid "Consolidation of lists requires attention to restore the list layout that has been affected by the position of the punctuation. This includes the case of numbering of style \"1.\", where the resulting list items are split after the dot."
msgstr ""
#. VwP6B
diff --git a/source/ar/helpcontent2/source/text/shared/00.po b/source/ar/helpcontent2/source/text/shared/00.po
index 657baa564ef..cffd13ea84c 100644
--- a/source/ar/helpcontent2/source/text/shared/00.po
+++ b/source/ar/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-20 13:03+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
"PO-Revision-Date: 2021-03-07 18:15+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textshared00/ar/>\n"
@@ -6118,6 +6118,24 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/charset\">Specifies the character set of the file for export or import.</ahelp>"
msgstr ""
+#. G7B9v
+#: 00000215.xhp
+msgctxt ""
+"00000215.xhp\n"
+"hd_id911633520416200\n"
+"help.text"
+msgid "Include byte-order mark"
+msgstr ""
+
+#. 5G2v5
+#: 00000215.xhp
+msgctxt ""
+"00000215.xhp\n"
+"par_id211633520423767\n"
+"help.text"
+msgid "For Unicode character set only, a byte order mark (BOM) is a sequence of bytes used to indicate Unicode encoding of a text file. The presence of the UTF-8 BOM is optional and may cause problems with some software, especially legacy software not designed to handle UTF-8."
+msgstr ""
+
#. PSvbB
#: 00000215.xhp
msgctxt ""
diff --git a/source/ar/helpcontent2/source/text/shared/01.po b/source/ar/helpcontent2/source/text/shared/01.po
index 2b51ba7b35a..1cb53c08c8f 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: 2021-10-04 19:51+0200\n"
+"POT-Creation-Date: 2021-10-25 12:48+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/textshared01/ar/>\n"
@@ -14929,6 +14929,204 @@ msgctxt ""
msgid "<variable id=\"quellaus\"><ahelp hid=\".uno:TwainSelect\" visibility=\"visible\">Selects the scanner that you want to use.</ahelp></variable>"
msgstr ""
+#. AJ5Lv
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"par_id661633376449596\n"
+"help.text"
+msgid "The dialog displays settings for the selected scanner and the scan job."
+msgstr ""
+
+#. t6BMj
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"hd_id721633369239013\n"
+"help.text"
+msgid "Sources"
+msgstr ""
+
+#. GvcAB
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"par_id361633369288384\n"
+"help.text"
+msgid "Displays a list of available scanners detected in your system. Click on a scanner in the list and press <emph>Select</emph> to open the scanner configuration dialog. The configuration dialog depends on the scanner driver installed."
+msgstr ""
+
+#. Caooc
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"hd_id511633368095174\n"
+"help.text"
+msgid "Scan Area"
+msgstr ""
+
+#. vYcZn
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"hd_id991633368100151\n"
+"help.text"
+msgid "Left, right, top, bottom"
+msgstr ""
+
+#. mncAH
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"par_id561633368111347\n"
+"help.text"
+msgid "Set the margins of the scan area."
+msgstr ""
+
+#. wmUp5
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"hd_id81633368116162\n"
+"help.text"
+msgid "Preview"
+msgstr ""
+
+#. GFTiz
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"par_id811633368127119\n"
+"help.text"
+msgid "Displays a preview of the scanned image. The preview area contains eight handles. Drag the handles to adjust the scan area or enter a value in the corresponding margin spin box."
+msgstr ""
+
+#. SQG8n
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"hd_id181633369359784\n"
+"help.text"
+msgid "Device used"
+msgstr ""
+
+#. vtMfF
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"par_id311633371297646\n"
+"help.text"
+msgid "Select the scanner device in the list of devices detected by your system."
+msgstr ""
+
+#. PAHaK
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"hd_id161633369549370\n"
+"help.text"
+msgid "Resolution [DPI]"
+msgstr ""
+
+#. jTyuD
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"par_id401633369701424\n"
+"help.text"
+msgid "Select the resolution in dots per inch for the scan job. The available resolutions depends on the scanner driver."
+msgstr ""
+
+#. F5SoB
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"hd_id351633369697474\n"
+"help.text"
+msgid "Show advanced options"
+msgstr ""
+
+#. Hj5EW
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"par_id771633369733491\n"
+"help.text"
+msgid "Mark this checkbox to display more configuration options for the scanner device. The set of options is displayed in the <emph>Options</emph> box and depends on the scanner driver."
+msgstr ""
+
+#. 6qqQP
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"hd_id461633370147200\n"
+"help.text"
+msgid "Options"
+msgstr ""
+
+#. JtCux
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"par_id761633371067498\n"
+"help.text"
+msgid "Displays the list of available scanner driver advanced options. Double click an option to display its contents just below. The option and its values depends on the scanner driver."
+msgstr ""
+
+#. DFbzA
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"hd_id461633371554790\n"
+"help.text"
+msgid "About Device"
+msgstr ""
+
+#. 2DSpo
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"par_id821633371816925\n"
+"help.text"
+msgid "Displays a popup window with information obtained from the scanner driver: device address, vendor, scanner model and type of scanner."
+msgstr ""
+
+#. HCSD9
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"hd_id971633371559920\n"
+"help.text"
+msgid "Create preview"
+msgstr ""
+
+#. T4Tgs
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"par_id431633375721518\n"
+"help.text"
+msgid "Scans and displays the document in the preview area. Use the <emph>Create Preview</emph> command to view a sample of the scanned document and set the scan job properties."
+msgstr ""
+
+#. YL3KE
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"hd_id151633371565195\n"
+"help.text"
+msgid "Scan"
+msgstr ""
+
+#. zWLcX
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"par_id851633375846639\n"
+"help.text"
+msgid "Scans an image, and then inserts the result into the document and closes the dialog."
+msgstr ""
+
#. qDEzX
#: 04060200.xhp
msgctxt ""
@@ -22327,13 +22525,13 @@ msgctxt ""
msgid "The <emph>Remove border</emph> option in the <emph>Adjacent Cells</emph> section determines if borders in the edges of the selected range are to be removed. Leave this option unchecked if edge borders should be left unchanged."
msgstr ""
-#. VPwsL
+#. PjDF8
#: 05030500.xhp
msgctxt ""
"05030500.xhp\n"
"par_id181630450040456\n"
"help.text"
-msgid "Read the help page <embedvar href=\"text/scalc/guide/borders.xhp#borders\"/> to learn more on how to define custom line arrangements."
+msgid "Read the help page <link href=\"text/scalc/guide/borders.xhp\">User Defined Borders in Cells</link> to learn more on how to define custom line arrangements."
msgstr ""
#. 2SFo2
@@ -24910,13 +25108,31 @@ msgctxt ""
msgid "<ahelp hid=\".\">Horizontally centers the selected objects. If only one object is selected in Draw or Impress, the center of the object is aligned to the horizontal center of the page.</ahelp>"
msgstr ""
-#. cdt69
+#. KZbGT
#: 05070200.xhp
msgctxt ""
"05070200.xhp\n"
"par_id3144336\n"
"help.text"
-msgid "The vertical position of the selected objects is not affected by this command.<embedvar href=\"text/shared/01/05070100.xhp#mehrfachselektion\"/>"
+msgid "The vertical position of the selected objects is not affected by this command."
+msgstr ""
+
+#. yXXeh
+#: 05070200.xhp
+msgctxt ""
+"05070200.xhp\n"
+"par_id891634662083611\n"
+"help.text"
+msgid "To align the individual objects in a group, choose <menuitem>Format - Group - Enter Group</menuitem> to enter the group, select the objects, right-click, and then choose an alignment option."
+msgstr ""
+
+#. FyxcB
+#: 05070200.xhp
+msgctxt ""
+"05070200.xhp\n"
+"par_id81634662074262\n"
+"help.text"
+msgid "To align the individual objects in a group, double-click to enter the group, select the objects, right-click, and then choose an alignment option."
msgstr ""
#. xtqWj
@@ -25306,13 +25522,13 @@ msgctxt ""
msgid "<variable id=\"verbindentext\"><ahelp hid=\".\">Combines the contents of the selected cells into a single cell, retaining the formatting of the first cell in the selection.</ahelp></variable>"
msgstr ""
-#. ip2CD
+#. Cb2xp
#: 05100100.xhp
msgctxt ""
"05100100.xhp\n"
"par_id461632808376973\n"
"help.text"
-msgid "Click and drag to select the cells to be merged then do one of the following:"
+msgid "Select the cells to be merged then do one of the following:"
msgstr ""
#. bJGUQ
@@ -25324,13 +25540,13 @@ msgctxt ""
msgid "In the <emph>Formatting</emph> toolbar, click:"
msgstr ""
-#. R8GWz
+#. kBxWW
#: 05100100.xhp
msgctxt ""
"05100100.xhp\n"
"par_id3154351\n"
"help.text"
-msgid "Or, right click the selection to open the context menu and choose <menuitem>Merge Cells</menuitem>.<br/>If <menuitem>Unmerge Cells</menuitem> is present instead then the cell selection contains merged cells and cannot be merged further."
+msgid "Or, right click the selection to open the context menu and choose <menuitem>Merge Cells</menuitem>. If <menuitem>Unmerge Cells</menuitem> is present instead then the cell selection contains merged cells and cannot be merged further."
msgstr ""
#. Fz6u9
@@ -25342,13 +25558,13 @@ msgctxt ""
msgid "Or, in the <emph>Properties</emph> sidebar mark the <emph>Merge Cells</emph> checkbox."
msgstr ""
-#. fsBRE
+#. CmQFq
#: 05100100.xhp
msgctxt ""
"05100100.xhp\n"
"par_id3154020\n"
"help.text"
-msgid "Or, choose <embedvar href=\"text/scalc/01/05060000.xhp#format_mergecells_menu\"/><menuitem>Merge Cells</menuitem>."
+msgid "Or, choose <menuitem>Format - Merge and Unmerge Cells - Merge Cells</menuitem>."
msgstr ""
#. tHAGa
@@ -25378,13 +25594,13 @@ msgctxt ""
msgid "Split Cells"
msgstr ""
-#. njuVE
+#. i8VUj
#: 05100200.xhp
msgctxt ""
"05100200.xhp\n"
"bm_id501632012952361\n"
"help.text"
-msgid "<bookmark_value>unmerge/unmerging cells</bookmark_value> <bookmark_value>split/splitting cells</bookmark_value>"
+msgid "<bookmark_value>unmerge/unmerging cells</bookmark_value><bookmark_value>split/splitting cells</bookmark_value>"
msgstr ""
#. zDkKt
@@ -25396,13 +25612,13 @@ msgctxt ""
msgid "<variable id=\"unmergecells\"><link href=\"text/shared/01/05100200.xhp\" name=\"Unmerging Cells\">Unmerge Cells</link></variable>"
msgstr ""
-#. 3oTxu
+#. vXyfX
#: 05100200.xhp
msgctxt ""
"05100200.xhp\n"
"par_id871632385128307\n"
"help.text"
-msgid "<ahelp hid=\".\">Divides previously merged cells back to the original cells. If the original cells had content that was kept when merged that content is restored.</ahelp>"
+msgid "<ahelp hid=\".\">Divides previously merged cells back to the original cells. If the original cells had content that was kept when merged that content is restored.</ahelp>"
msgstr ""
#. qBugU
@@ -25423,13 +25639,13 @@ msgctxt ""
msgid "In the <emph>Formatting</emph> toolbar click:"
msgstr ""
-#. VvKDu
+#. SMhxF
#: 05100200.xhp
msgctxt ""
"05100200.xhp\n"
"par_id161632275254217\n"
"help.text"
-msgid "Or, right click the selection to open the context menu and choose <menuitem>Unmerge Cells</menuitem>.<br/>If <menuitem>Merge Cells</menuitem> is present instead then the cell selection does not contain any merged cells."
+msgid "Or, right click the selection to open the context menu and choose <menuitem>Unmerge Cells</menuitem>. If <menuitem>Merge Cells</menuitem> is present instead then the cell selection does not contain any merged cells."
msgstr ""
#. WLbsk
@@ -25441,13 +25657,13 @@ msgctxt ""
msgid "Or, in the <emph>Properties</emph> sidebar clear the <emph>Merge Cells</emph> checkbox."
msgstr ""
-#. BNuGm
+#. nnwCo
#: 05100200.xhp
msgctxt ""
"05100200.xhp\n"
"par_id381632805680565\n"
"help.text"
-msgid "Or, choose <embedvar href=\"text/scalc/01/05060000.xhp#format_mergecells_menu\"/><menuitem>Unmerge Cells</menuitem>"
+msgid "Or, choose <menuitem>Format - Merge and Unmerge Cells - Unmerge Cells</menuitem>"
msgstr ""
#. Tvbae
@@ -25468,22 +25684,22 @@ msgctxt ""
msgid "<variable id=\"teilentext\"><ahelp hid=\".\">Displays the Split Cells Dialog where the split can be defined as either horizontally or vertically and the number the each cell will be split into.</ahelp></variable>"
msgstr ""
-#. yAYPv
+#. aAHnr
#: 05100200.xhp
msgctxt ""
"05100200.xhp\n"
"par_id321632807186976\n"
"help.text"
-msgid "Do one of the following:<br/>"
+msgid "Do one of the following:"
msgstr ""
-#. KBJNC
+#. yzi5c
#: 05100200.xhp
msgctxt ""
"05100200.xhp\n"
"par_id3154024\n"
"help.text"
-msgid "Choose <emph>Table - Split Cells</emph>.<br/>"
+msgid "Choose <emph>Table - Split Cells</emph>."
msgstr ""
#. pNAsT
@@ -29401,13 +29617,13 @@ msgctxt ""
msgid "Position and Size (Text Box and Shape)"
msgstr ""
-#. rrFri
+#. tnQ2D
#: 05230100.xhp
msgctxt ""
"05230100.xhp\n"
"bm_id3154350\n"
"help.text"
-msgid "<bookmark_value>positioning;draw objects and controls</bookmark_value><bookmark_value>draw objects;positioning and resizing</bookmark_value><bookmark_value>controls; positions and sizes</bookmark_value><bookmark_value>sizes;draw objects</bookmark_value><bookmark_value>anchors;types/positions for draw objects</bookmark_value><bookmark_value>draw objects; anchoring</bookmark_value>"
+msgid "<bookmark_value>positioning;draw objects and controls</bookmark_value> <bookmark_value>draw objects;positioning and resizing</bookmark_value> <bookmark_value>controls; positions and sizes</bookmark_value> <bookmark_value>sizes;draw objects</bookmark_value> <bookmark_value>anchors;types/positions for draw objects</bookmark_value> <bookmark_value>draw objects; anchoring</bookmark_value>"
msgstr ""
#. p36co
@@ -29779,13 +29995,13 @@ msgctxt ""
msgid "<variable id=\"AdaptNote\">Adapt is only available for Text Boxes. To adapt Shapes to text, use</variable> <menuitem>Format - Object - Text</menuitem>."
msgstr ""
-#. fqg3X
+#. EARC7
#: 05230100.xhp
msgctxt ""
"05230100.xhp\n"
"par_id591602522244128\n"
"help.text"
-msgid "<embedvar href=\"text/shared/01/05230100.xhp#AdaptNote\"/> <menuitem>Format - Text</menuitem>."
+msgid "Adapt is only available for Text Boxes. To adapt Shapes to text, use <menuitem>Format - Text</menuitem>."
msgstr ""
#. F5Va7
@@ -36934,13 +37150,13 @@ msgctxt ""
msgid "To apply an AutoCorrect rule, enter the predefined text in the document and press the <widget>Spacebar</widget>."
msgstr ""
-#. 3vHeN
+#. rBtji
#: 06040000.xhp
msgctxt ""
"06040000.xhp\n"
"par_id791632159942582\n"
"help.text"
-msgid "To turn off AutoCorrect in %PRODUCTNAME Writer choose <menuitem>Tools - AutoCorrect - While Typing</menuitem>. Refer to the help page <embedvar href=\"text/swriter/guide/auto_off.xhp#auto_off\"/> to learn more about deactivating AutoCorrect in %PRODUCTNAME Writer."
+msgid "To turn off AutoCorrect in %PRODUCTNAME Writer choose <menuitem>Tools - AutoCorrect - While Typing</menuitem>. Refer to the help page <link href=\"text/swriter/guide/auto_off.xhp\" name=\"auto_off_link1\">Turning Off AutoCorrect</link> to learn more about deactivating AutoCorrect in %PRODUCTNAME Writer."
msgstr ""
#. rqivx
@@ -36952,13 +37168,13 @@ msgctxt ""
msgid "To apply AutoCorrect to an entire text document, choose <menuitem>Tools - AutoCorrect - Apply</menuitem>."
msgstr ""
-#. cqbQV
+#. 9cDF3
#: 06040000.xhp
msgctxt ""
"06040000.xhp\n"
"par_id911632159367467\n"
"help.text"
-msgid "To turn off AutoCorrect in %PRODUCTNAME Calc, go to <menuitem>Tools - AutoCorrect Options</menuitem> and uncheck all items in the <emph>Options</emph> and <emph>Localized Options</emph> tabs. Refer to the help page <embedvar href=\"text/scalc/guide/auto_off.xhp#auto_off\"/> to learn more about deactivating AutoCorrect in %PRODUCTNAME Calc."
+msgid "To turn off AutoCorrect in %PRODUCTNAME Calc, go to <menuitem>Tools - AutoCorrect Options</menuitem> and uncheck all items in the <emph>Options</emph> and <emph>Localized Options</emph> tabs. Refer to the help page <link href=\"text/swriter/guide/auto_off.xhp\" name=\"auto_off_link2\">Turning Off AutoCorrect</link> to learn more about deactivating AutoCorrect in %PRODUCTNAME Calc."
msgstr ""
#. EmB5a
diff --git a/source/ar/helpcontent2/source/text/shared/explorer/database.po b/source/ar/helpcontent2/source/text/shared/explorer/database.po
index 50b5bd50d84..bb14e0cce05 100644
--- a/source/ar/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/ar/helpcontent2/source/text/shared/explorer/database.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-04 19:51+0200\n"
+"POT-Creation-Date: 2021-10-25 12:49+0200\n"
"PO-Revision-Date: 2018-11-12 13:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1473 +16,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542028547.000000\n"
-#. SJaiE
-#: dabawiz02.xhp
-msgctxt ""
-"dabawiz02.xhp\n"
-"tit\n"
-"help.text"
-msgid "Save and proceed"
-msgstr ""
-
-#. azKWk
-#: dabawiz02.xhp
-msgctxt ""
-"dabawiz02.xhp\n"
-"par_idN10544\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02.xhp\">Save and proceed</link>"
-msgstr ""
-
-#. CECqo
-#: dabawiz02.xhp
-msgctxt ""
-"dabawiz02.xhp\n"
-"par_idN10554\n"
-"help.text"
-msgid "<ahelp hid=\".\">Specifies whether you want to register the database, open the database for editing, or insert a new table.</ahelp>"
-msgstr ""
-
-#. v3hCS
-#: dabawiz02.xhp
-msgctxt ""
-"dabawiz02.xhp\n"
-"par_idN10557\n"
-"help.text"
-msgid "Yes, register the Database for me"
-msgstr ""
-
-#. 6iEY2
-#: dabawiz02.xhp
-msgctxt ""
-"dabawiz02.xhp\n"
-"par_idN105B4\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select to register the database within your user copy of %PRODUCTNAME. After registering, the database is displayed in the <emph>View - Data Sources</emph> window. You must register a database to be able to insert the database fields in a document (Insert - Field - More Fields) or in a mail merge.</ahelp>"
-msgstr ""
-
-#. BDPbo
-#: dabawiz02.xhp
-msgctxt ""
-"dabawiz02.xhp\n"
-"par_idN105B7\n"
-"help.text"
-msgid "No, do not register the database"
-msgstr ""
-
-#. PHFCG
-#: dabawiz02.xhp
-msgctxt ""
-"dabawiz02.xhp\n"
-"par_idN105BB\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select to keep the database information only within the created database file.</ahelp>"
-msgstr ""
-
-#. xJFV8
-#: dabawiz02.xhp
-msgctxt ""
-"dabawiz02.xhp\n"
-"par_idN1055B\n"
-"help.text"
-msgid "Open the database for editing"
-msgstr ""
-
-#. 2oDVV
-#: dabawiz02.xhp
-msgctxt ""
-"dabawiz02.xhp\n"
-"par_idN105C6\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select to display the database file, where you can edit the database structure.</ahelp>"
-msgstr ""
-
-#. uUaJe
-#: dabawiz02.xhp
-msgctxt ""
-"dabawiz02.xhp\n"
-"par_idN1055F\n"
-"help.text"
-msgid "Create tables using the table wizard"
-msgstr ""
-
-#. F4TTD
-#: dabawiz02.xhp
-msgctxt ""
-"dabawiz02.xhp\n"
-"par_idN105D1\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select to call the <link href=\"text/shared/explorer/database/tablewizard00.xhp\">Table Wizard</link> after the Database Wizard is finished.</ahelp>"
-msgstr ""
-
-#. YnZ24
-#: dabawiz02access.xhp
-msgctxt ""
-"dabawiz02access.xhp\n"
-"tit\n"
-"help.text"
-msgid "Microsoft Access Connection"
-msgstr ""
-
-#. uUAxL
-#: dabawiz02access.xhp
-msgctxt ""
-"dabawiz02access.xhp\n"
-"bm_id2755516\n"
-"help.text"
-msgid "<bookmark_value>Access databases (base)</bookmark_value><bookmark_value>Microsoft Office;Access databases (base)</bookmark_value>"
-msgstr ""
-
-#. unEfj
-#: dabawiz02access.xhp
-msgctxt ""
-"dabawiz02access.xhp\n"
-"par_idN1053D\n"
-"help.text"
-msgid "<variable id=\"access\"><link href=\"text/shared/explorer/database/dabawiz02access.xhp\">Microsoft Access Connection</link></variable>"
-msgstr ""
-
-#. eMbAE
-#: dabawiz02access.xhp
-msgctxt ""
-"dabawiz02access.xhp\n"
-"par_idN10541\n"
-"help.text"
-msgid "<ahelp hid=\".\">Specifies the settings for importing a database file in Microsoft Access or Access 2007 format.</ahelp>"
-msgstr ""
-
-#. FJFQi
-#: dabawiz02access.xhp
-msgctxt ""
-"dabawiz02access.xhp\n"
-"par_id1142772\n"
-"help.text"
-msgid "See also the English Wiki page <link href=\"https://wiki.documentfoundation.org/MSA-Base_Faq\" name=\"wiki.documentfoundation.org MS Access Base FAQ\">https://wiki.documentfoundation.org/MSA-Base_Faq</link>."
-msgstr ""
-
-#. 7vvBT
-#: dabawiz02access.xhp
-msgctxt ""
-"dabawiz02access.xhp\n"
-"par_idN10544\n"
-"help.text"
-msgid "Microsoft Access database file"
-msgstr ""
-
-#. 5nSHE
-#: dabawiz02access.xhp
-msgctxt ""
-"dabawiz02access.xhp\n"
-"par_idN10548\n"
-"help.text"
-msgid "<ahelp hid=\".\">Specifies the path to the database file.</ahelp>"
-msgstr ""
-
-#. cKU7v
-#: dabawiz02access.xhp
-msgctxt ""
-"dabawiz02access.xhp\n"
-"par_idN1054B\n"
-"help.text"
-msgid "Browse"
-msgstr ""
-
-#. k4EM5
-#: dabawiz02access.xhp
-msgctxt ""
-"dabawiz02access.xhp\n"
-"par_idN1054F\n"
-"help.text"
-msgid "<ahelp hid=\".\">Click to open a file selection dialog.</ahelp>"
-msgstr ""
-
-#. gjtnv
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"tit\n"
-"help.text"
-msgid "ADO Connection"
-msgstr ""
-
-#. jJtjy
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"bm_id7565233\n"
-"help.text"
-msgid "<bookmark_value>ADO databases (Base)</bookmark_value><bookmark_value>MS ADO interface (Base)</bookmark_value><bookmark_value>databases;ADO (Base)</bookmark_value>"
-msgstr ""
-
-#. yRyA5
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN1054C\n"
-"help.text"
-msgid "<variable id=\"ado\"><link href=\"text/shared/explorer/database/dabawiz02ado.xhp\">ADO Connection</link></variable>"
-msgstr ""
-
-#. Gi6xc
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN10550\n"
-"help.text"
-msgid "<ahelp hid=\".\">Specifies the options for adding an ADO (Microsoft ActiveX Data Objects) database.</ahelp>"
-msgstr ""
-
-#. pGwdA
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN10565\n"
-"help.text"
-msgid "The ADO interface is a Microsoft Windows proprietary container for connecting to databases."
-msgstr ""
-
-#. mVEj7
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "$[officename] requires the Microsoft Data Access Components (MDAC) to use the ADO interface. Microsoft Windows 2000 and XP include these components by default."
-msgstr ""
-
-#. CWQxx
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN1056B\n"
-"help.text"
-msgid "Data source URL"
-msgstr ""
-
-#. dEHxg
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN1056F\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the data source URL.</ahelp>"
-msgstr ""
-
-#. AS8Ye
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN10572\n"
-"help.text"
-msgid "Example URLs"
-msgstr ""
-
-#. DGA9a
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN10576\n"
-"help.text"
-msgid "To connect to an Access 2000 file, use the format:"
-msgstr ""
-
-#. EYrtv
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN10579\n"
-"help.text"
-msgid "PROVIDER=Microsoft.Jet.OLEDB.4.0;DATA SOURCE=c:\\Access\\nwind2000.mdb"
-msgstr ""
-
-#. JrQva
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN1057C\n"
-"help.text"
-msgid "To connect with a name to a catalog on a Microsoft SQL server that has a name turner, enter:"
-msgstr ""
-
-#. HeHcf
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN1057F\n"
-"help.text"
-msgid "PROVIDER=sqloledb;DATA SOURCE=turner;INITIAL CATALOG=First"
-msgstr ""
-
-#. eqFwU
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN10582\n"
-"help.text"
-msgid "To access an ODBC driver as a provider:"
-msgstr ""
-
-#. cibKq
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN10585\n"
-"help.text"
-msgid "DSN=SQLSERVER"
-msgstr ""
-
-#. FFdf5
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN10588\n"
-"help.text"
-msgid "Browse"
-msgstr ""
-
-#. xmZQB
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN1058C\n"
-"help.text"
-msgid "<ahelp hid=\".\">Click to open a database selection dialog.</ahelp>"
-msgstr ""
-
-#. Bi3az
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN10596\n"
-"help.text"
-msgid "A user name can have a maximum of 18 characters."
-msgstr ""
-
-#. iifVJ
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN10599\n"
-"help.text"
-msgid "A password must contain 3 to 18 characters."
-msgstr ""
-
-#. mxSCU
-#: dabawiz02dbase.xhp
-msgctxt ""
-"dabawiz02dbase.xhp\n"
-"tit\n"
-"help.text"
-msgid "dBASE Connection"
-msgstr ""
-
-#. tp8Cf
-#: dabawiz02dbase.xhp
-msgctxt ""
-"dabawiz02dbase.xhp\n"
-"par_idN1054A\n"
-"help.text"
-msgid "<variable id=\"dbase\"><link href=\"text/shared/explorer/database/dabawiz02dbase.xhp\">dBASE Connection</link></variable>"
-msgstr ""
-
-#. 3rzAr
-#: dabawiz02dbase.xhp
-msgctxt ""
-"dabawiz02dbase.xhp\n"
-"par_idN10556\n"
-"help.text"
-msgid "Path to the dBASE files"
-msgstr ""
-
-#. 9qfqi
-#: dabawiz02dbase.xhp
-msgctxt ""
-"dabawiz02dbase.xhp\n"
-"par_idN1055A\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the path to the dBASE *.dbf files.</ahelp>"
-msgstr ""
-
-#. JtErQ
-#: dabawiz02dbase.xhp
-msgctxt ""
-"dabawiz02dbase.xhp\n"
-"par_idN10571\n"
-"help.text"
-msgid "Browse"
-msgstr ""
-
-#. VHbhH
-#: dabawiz02dbase.xhp
-msgctxt ""
-"dabawiz02dbase.xhp\n"
-"par_idN10575\n"
-"help.text"
-msgid "<ahelp hid=\".\">Open a path selection dialog.</ahelp>"
-msgstr ""
-
-#. n9AxK
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"tit\n"
-"help.text"
-msgid "JDBC Connection"
-msgstr ""
-
-#. BSPeu
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"bm_id3726920\n"
-"help.text"
-msgid "<bookmark_value>JDBC; databases (Base)</bookmark_value><bookmark_value>databases; JDBC (Base)</bookmark_value>"
-msgstr ""
-
-#. DE8Po
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN105FC\n"
-"help.text"
-msgid "<variable id=\"jdbc\"><link href=\"text/shared/explorer/database/dabawiz02jdbc.xhp\">JDBC Connection</link></variable>"
-msgstr ""
-
-#. 4vvDv
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN10600\n"
-"help.text"
-msgid "<ahelp hid=\".\">Specifies the options to access a <link href=\"text/shared/00/00000005.xhp#jdbc\" name=\"JDBC\">JDBC</link> database.</ahelp>"
-msgstr ""
-
-#. MAM5R
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN10623\n"
-"help.text"
-msgid "JDBC Examples"
-msgstr ""
-
-#. FAkVF
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN10627\n"
-"help.text"
-msgid "<item type=\"productname\">You can use a JDBC driver class to connect to a JDBC database from %PRODUCTNAME</item>. The driver class is provided by the database manufacturer. Two examples of JDBC databases are Oracle and MySQL."
-msgstr ""
-
-#. ehUZi
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN1062D\n"
-"help.text"
-msgid "The driver classes must be added to %PRODUCTNAME in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME - Advanced</menuitem>."
-msgstr ""
-
-#. KTrhC
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN10634\n"
-"help.text"
-msgid "Oracle database"
-msgstr ""
-
-#. Br2JC
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN10638\n"
-"help.text"
-msgid "You can use a JDBC driver to access an Oracle database from Solaris or Linux. To access the database from Windows, you need an ODBC driver."
-msgstr ""
-
-#. pei94
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN1064B\n"
-"help.text"
-msgid "On UNIX, ensure that the Oracle database client is installed with JDBC support. The JDBC driver class for the Solaris Oracle client version 8.x is located in the <Oracle client>/product/jdbc/lib/classes111.zip directory. You can also download the latest version from the Oracle web site."
-msgstr ""
-
-#. DifQh
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN10661\n"
-"help.text"
-msgid "In the <emph>Data source URL</emph> box, enter the location of the Oracle database server. The syntax of the URL depends on the database type. See the documentation that came with the JDBC driver for more information."
-msgstr ""
-
-#. BBFrJ
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN10668\n"
-"help.text"
-msgid "For an Oracle database, the syntax of the URL is:"
-msgstr ""
-
-#. 7tbob
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN1066B\n"
-"help.text"
-msgid "oracle:thin:@hostname:port:database_name"
-msgstr ""
-
-#. RiDDR
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN10674\n"
-"help.text"
-msgid "hostname is the name of the machine that runs the Oracle database. You can also replace hostname with the IP address of the server."
-msgstr ""
-
-#. sFfhQ
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN10678\n"
-"help.text"
-msgid "port is the port where the Oracle database listens. Ask your database administrator for the correct port address."
-msgstr ""
-
-#. GDkVv
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN1067C\n"
-"help.text"
-msgid "database_name is the name of the Oracle database. Ask your database administrator for the correct name."
-msgstr ""
-
-#. aQiqR
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN1067F\n"
-"help.text"
-msgid "MySQL database"
-msgstr ""
-
-#. FEV5u
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN10683\n"
-"help.text"
-msgid "The driver for the MySQL database is available on the MySQL web site."
-msgstr ""
-
-#. p2v67
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN10689\n"
-"help.text"
-msgid "The syntax for a MySQL database is:"
-msgstr ""
-
-#. wEDsL
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN1068C\n"
-"help.text"
-msgid "mysql://hostname:port/database_name"
-msgstr ""
-
-#. m5Kcx
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN10695\n"
-"help.text"
-msgid "<ahelp hid=\".\">hostname is the name of the machine that runs the MySQL database.</ahelp> You can also replace hostname with the IP address of the server."
-msgstr ""
-
-#. LCpew
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN10699\n"
-"help.text"
-msgid "port is the default port for MySQL databases, namely 3306."
-msgstr ""
-
-#. q2DuM
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN1069D\n"
-"help.text"
-msgid "database_name is the name of the database."
-msgstr ""
-
-#. YYgSg
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN106A0\n"
-"help.text"
-msgid "Data source URL"
-msgstr ""
-
-#. EcdaK
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN106A4\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the URL for the database. For example, for the MySQL JDBC driver, enter \"mysql://<Servername>/<name of the database>\". For more information on the JDBC driver, consult the documentation that came with the driver.</ahelp>"
-msgstr ""
-
-#. eVBSr
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN106BB\n"
-"help.text"
-msgid "JDBC Driver Class"
-msgstr ""
-
-#. vFsoP
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN106BF\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the name of the JDBC driver.</ahelp>"
-msgstr ""
-
-#. VHjhA
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_id7953733\n"
-"help.text"
-msgid "Before you can use a JDBC driver, you need to add its class path. Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME - Advanced</menuitem>, and click the <widget>Class Path</widget> button. After you add the path information, restart %PRODUCTNAME."
-msgstr ""
-
-#. f8fUr
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN106CE\n"
-"help.text"
-msgid "Test Class"
-msgstr ""
-
-#. 8VBbq
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN106E4\n"
-"help.text"
-msgid "<ahelp hid=\".\">Tests the connection with the current settings.</ahelp>"
-msgstr ""
-
-#. FGezr
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN106E7\n"
-"help.text"
-msgid "<link href=\"text/sdatabase/dabawiz03auth.xhp\">Authentication</link>"
-msgstr ""
-
-#. Y4EFA
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"tit\n"
-"help.text"
-msgid "MariaDB and MySQL Connection"
-msgstr ""
-
-#. bVNAZ
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"bm_id861587404584956\n"
-"help.text"
-msgid "<bookmark_value>MariaDB settings (Base)</bookmark_value><bookmark_value>MySQL settings (Base)</bookmark_value>"
-msgstr ""
-
-#. f4CzF
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"par_idN10549\n"
-"help.text"
-msgid "<variable id=\"mysql\"><link href=\"text/shared/explorer/database/dabawiz02mysql.xhp\">MariaDB and MySQL Connection</link></variable>"
-msgstr ""
-
-#. 5FPU6
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"par_idN1054D\n"
-"help.text"
-msgid "<ahelp hid=\".\">Specifies the options for MariaDB and MySQL databases.</ahelp>"
-msgstr ""
-
-#. Bmcwo
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"hd_id661587405298284\n"
-"help.text"
-msgid "Direct Connection for MariaDB and MySQL databases"
-msgstr ""
-
-#. vd9VD
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"hd_id321587405303769\n"
-"help.text"
-msgid "Database name"
-msgstr ""
-
-#. 6LAsi
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"par_id371587405314376\n"
-"help.text"
-msgid "Enter the name of the MariaDB or MySQL database. Ask your database administrator for the correct name."
-msgstr ""
-
-#. jbdZp
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"hd_id561587405334695\n"
-"help.text"
-msgid "Server URL"
-msgstr ""
-
-#. SshYk
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"par_id521587405341138\n"
-"help.text"
-msgid "Enter the URL for the database server. This is the name of the machine that runs the MariaDB or MySQL database. You can also replace hostname with the IP address of the server."
-msgstr ""
-
-#. MZQiq
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"hd_id171587405349438\n"
-"help.text"
-msgid "Port number"
-msgstr ""
-
-#. J2SR3
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"par_id1001587405358390\n"
-"help.text"
-msgid "Enter the port number for the database server. Ask your database administrator for the correct port address. The default port number for MySQL or MariaDB databases is 3306."
-msgstr ""
-
-#. ovKhU
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"hd_id121587407845730\n"
-"help.text"
-msgid "Named Pipe"
-msgstr ""
-
-#. Rq89B
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"par_id941587407987180\n"
-"help.text"
-msgid "If the MariaDB or MySQL database is to be accessed by a named pipe, enter its name."
-msgstr ""
-
-#. wF6bj
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"hd_id161587405553671\n"
-"help.text"
-msgid "Socket"
-msgstr ""
-
-#. e8DB2
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"par_id161587405561472\n"
-"help.text"
-msgid "If the MariaDB or MySQL database is to be accessed by a socket, enter the socket ID."
-msgstr ""
-
-#. fpBNu
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"par_idN10562\n"
-"help.text"
-msgid "Connect using ODBC (Open Database Connectivity)"
-msgstr ""
-
-#. E7sE2
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"par_idN10566\n"
-"help.text"
-msgid "<ahelp hid=\".\">Connects to an existing ODBC data source that was set on a system level.</ahelp>"
-msgstr ""
-
-#. AXrwJ
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"par_idN10569\n"
-"help.text"
-msgid "Connect using JDBC (Java Database Connectivity)"
-msgstr ""
-
-#. i9TrE
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"par_idN1056D\n"
-"help.text"
-msgid "<ahelp hid=\".\">Connects to an existing JDBC data source that was set on a system level.</ahelp>"
-msgstr ""
-
-#. FUG3D
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"par_idN10570\n"
-"help.text"
-msgid "The next wizard page depends on your choice of ODBC or JDBC:"
-msgstr ""
-
-#. aCA6C
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"par_idN10573\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02odbc.xhp\">ODBC Connection</link>"
-msgstr ""
-
-#. BkeDx
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"par_idN10582\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02jdbc.xhp\">JDBC Connection</link>"
-msgstr ""
-
-#. ujaGF
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"par_idN10591\n"
-"help.text"
-msgid "<link href=\"text/sdatabase/dabawiz03auth.xhp\">Authentication</link>"
-msgstr ""
-
-#. HF588
-#: dabawiz02odbc.xhp
-msgctxt ""
-"dabawiz02odbc.xhp\n"
-"tit\n"
-"help.text"
-msgid "ODBC Connection"
-msgstr ""
-
-#. sGNau
-#: dabawiz02odbc.xhp
-msgctxt ""
-"dabawiz02odbc.xhp\n"
-"bm_id3149031\n"
-"help.text"
-msgid "<bookmark_value>ODBC;database (Base)</bookmark_value><bookmark_value>databases;ODBC (Base)</bookmark_value>"
-msgstr ""
-
-#. iFxfY
-#: dabawiz02odbc.xhp
-msgctxt ""
-"dabawiz02odbc.xhp\n"
-"par_idN1053D\n"
-"help.text"
-msgid "<variable id=\"odbc\"><link href=\"text/shared/explorer/database/dabawiz02odbc.xhp\">ODBC Connection</link></variable>"
-msgstr ""
-
-#. nb3Qq
-#: dabawiz02odbc.xhp
-msgctxt ""
-"dabawiz02odbc.xhp\n"
-"par_idN10541\n"
-"help.text"
-msgid "<ahelp hid=\".\">Specifies the settings for <link href=\"text/shared/00/00000005.xhp#odbc\" name=\"ODBC\">ODBC</link> databases.</ahelp>"
-msgstr ""
-
-#. WhLBW
-#: dabawiz02odbc.xhp
-msgctxt ""
-"dabawiz02odbc.xhp\n"
-"par_id8856776\n"
-"help.text"
-msgid "To edit or add records to a database table in $[officename], the table must have a unique index field."
-msgstr ""
-
-#. xs2Yc
-#: dabawiz02odbc.xhp
-msgctxt ""
-"dabawiz02odbc.xhp\n"
-"par_id8034302\n"
-"help.text"
-msgid "On Solaris and Linux platforms, try to use a JDBC driver instead of an ODBC driver. See http://www.unixodbc.org for an ODBC implementation on Solaris or Linux."
-msgstr ""
-
-#. PxZ9T
-#: dabawiz02odbc.xhp
-msgctxt ""
-"dabawiz02odbc.xhp\n"
-"par_id8560136\n"
-"help.text"
-msgid "To connect to a Microsoft Access database on Windows, use the ADO or Access database interface, rather than ODBC."
-msgstr ""
-
-#. vme6U
-#: dabawiz02odbc.xhp
-msgctxt ""
-"dabawiz02odbc.xhp\n"
-"par_id2082583\n"
-"help.text"
-msgid "Drivers for ODBC are supplied and supported by the manufacturer of the database. $[officename] only supports the ODBC 3 standard."
-msgstr ""
-
-#. wCexE
-#: dabawiz02odbc.xhp
-msgctxt ""
-"dabawiz02odbc.xhp\n"
-"par_idN10552\n"
-"help.text"
-msgid "Name of the ODBC database"
-msgstr ""
-
-#. eubaF
-#: dabawiz02odbc.xhp
-msgctxt ""
-"dabawiz02odbc.xhp\n"
-"par_idN10556\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the path to the database file.</ahelp>"
-msgstr ""
-
-#. 7KKFy
-#: dabawiz02odbc.xhp
-msgctxt ""
-"dabawiz02odbc.xhp\n"
-"par_idN10559\n"
-"help.text"
-msgid "Browse"
-msgstr ""
-
-#. CSCAZ
-#: dabawiz02odbc.xhp
-msgctxt ""
-"dabawiz02odbc.xhp\n"
-"par_idN1055D\n"
-"help.text"
-msgid "<ahelp hid=\".\">Click to open an ODBC data source selection dialog:</ahelp>"
-msgstr ""
-
-#. 48ubg
-#: dabawiz02odbc.xhp
-msgctxt ""
-"dabawiz02odbc.xhp\n"
-"par_idN10560\n"
-"help.text"
-msgid "Choose a data source"
-msgstr ""
-
-#. FhAAU
-#: dabawiz02odbc.xhp
-msgctxt ""
-"dabawiz02odbc.xhp\n"
-"par_idN10564\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select a data source to which you want to connect using ODBC. Then click <emph>OK</emph>.</ahelp>"
-msgstr ""
-
-#. WaAZB
-#: dabawiz02odbc.xhp
-msgctxt ""
-"dabawiz02odbc.xhp\n"
-"par_idN10567\n"
-"help.text"
-msgid "<link href=\"text/sdatabase/dabawiz03auth.xhp\">Authentication</link>"
-msgstr ""
-
-#. RL7sk
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"tit\n"
-"help.text"
-msgid "Oracle Database Connection"
-msgstr ""
-
-#. 8H3zh
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"bm_id5900753\n"
-"help.text"
-msgid "<bookmark_value>Oracle databases (base)</bookmark_value>"
-msgstr ""
-
-#. W6aaT
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN105A4\n"
-"help.text"
-msgid "Oracle Database Connection"
-msgstr ""
-
-#. DbqoE
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN105A8\n"
-"help.text"
-msgid "<ahelp hid=\".\">Specifies the options to access an Oracle database.</ahelp>"
-msgstr ""
-
-#. FMq7o
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN105BD\n"
-"help.text"
-msgid "Oracle database"
-msgstr ""
-
-#. 8qHyA
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN105C1\n"
-"help.text"
-msgid "You can use a JDBC driver to access an Oracle database from Solaris or Linux. To access the database from Windows, you need an ODBC driver."
-msgstr ""
-
-#. sSDYq
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN105D4\n"
-"help.text"
-msgid "On UNIX, ensure that the Oracle database client is installed with JDBC support. The JDBC driver class for the Solaris Oracle client version 8.x is located in the <Oracle client>/product/jdbc/lib/classes111.zip directory. You can also download the latest version of the driver from the Oracle web site."
-msgstr ""
-
-#. 5rxmX
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN10608\n"
-"help.text"
-msgid "Name of the Oracle database"
-msgstr ""
-
-#. DxYWQ
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN1060C\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the name of the Oracle database. Ask your database administrator for the correct name.</ahelp>"
-msgstr ""
-
-#. WKBSR
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN1060F\n"
-"help.text"
-msgid "Server URL"
-msgstr ""
-
-#. vXDGs
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN10613\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the URL for the database server. This is the name of the machine that runs the Oracle database. You can also replace hostname with the IP address of the server.</ahelp>"
-msgstr ""
-
-#. EEESV
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN10616\n"
-"help.text"
-msgid "Port number"
-msgstr ""
-
-#. PBuEW
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN1061A\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the port number for the database server. Ask your database administrator for the correct port address.</ahelp>"
-msgstr ""
-
-#. rYRxW
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN1061D\n"
-"help.text"
-msgid "Oracle JDBC Driver Class"
-msgstr ""
-
-#. ouDxa
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN10621\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the name of the JDBC driver.</ahelp>"
-msgstr ""
-
-#. JumUz
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN10630\n"
-"help.text"
-msgid "Test Class"
-msgstr ""
-
-#. NdF7k
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN10634\n"
-"help.text"
-msgid "<ahelp hid=\".\">Tests the connection with the current settings.</ahelp>"
-msgstr ""
-
-#. UwteE
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN10637\n"
-"help.text"
-msgid "<link href=\"text/sdatabase/dabawiz03auth.xhp\">Authentication</link>"
-msgstr ""
-
-#. XoiBM
-#: dabawiz02spreadsheet.xhp
-msgctxt ""
-"dabawiz02spreadsheet.xhp\n"
-"tit\n"
-"help.text"
-msgid "Spreadsheet Database Connection"
-msgstr ""
-
-#. cwGbM
-#: dabawiz02spreadsheet.xhp
-msgctxt ""
-"dabawiz02spreadsheet.xhp\n"
-"par_idN1053A\n"
-"help.text"
-msgid "Set up Spreadsheet connection"
-msgstr ""
-
-#. fZnvG
-#: dabawiz02spreadsheet.xhp
-msgctxt ""
-"dabawiz02spreadsheet.xhp\n"
-"par_idN1053E\n"
-"help.text"
-msgid "Location and file name"
-msgstr ""
-
-#. 6TKT4
-#: dabawiz02spreadsheet.xhp
-msgctxt ""
-"dabawiz02spreadsheet.xhp\n"
-"par_idN10542\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the path and file name to the spreadsheet file.</ahelp>"
-msgstr ""
-
-#. XtNjY
-#: dabawiz02spreadsheet.xhp
-msgctxt ""
-"dabawiz02spreadsheet.xhp\n"
-"par_idN10545\n"
-"help.text"
-msgid "Browse"
-msgstr ""
-
-#. JfUMC
-#: dabawiz02spreadsheet.xhp
-msgctxt ""
-"dabawiz02spreadsheet.xhp\n"
-"par_idN10549\n"
-"help.text"
-msgid "<ahelp hid=\".\">Click to open a file selection dialog.</ahelp>"
-msgstr ""
-
-#. JAmAi
-#: dabawiz02spreadsheet.xhp
-msgctxt ""
-"dabawiz02spreadsheet.xhp\n"
-"par_idN1054C\n"
-"help.text"
-msgid "Password required"
-msgstr ""
-
-#. 3HzmH
-#: dabawiz02spreadsheet.xhp
-msgctxt ""
-"dabawiz02spreadsheet.xhp\n"
-"par_idN10550\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select to request a password from the user of the database document.</ahelp>"
-msgstr ""
-
-#. xngE4
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"tit\n"
-"help.text"
-msgid "Text File Connection"
-msgstr ""
-
-#. dfWU7
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"bm_id2517166\n"
-"help.text"
-msgid "<bookmark_value>tables in databases;importing text formats (Base)</bookmark_value><bookmark_value>text databases (Base)</bookmark_value>"
-msgstr ""
-
-#. htUUB
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN1054F\n"
-"help.text"
-msgid "Set up a connection to text files"
-msgstr ""
-
-#. MD2eT
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN10553\n"
-"help.text"
-msgid "<ahelp hid=\".\">Specifies the settings for importing a database in text format.</ahelp>"
-msgstr ""
-
-#. 6yKNw
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "In a text format database, data is stored in an unformatted ASCII file, where each record comprises a row. The data fields are divided by separators. Text in the data fields is divided by quotation marks."
-msgstr ""
-
-#. puYrF
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN1056B\n"
-"help.text"
-msgid "Path to text files"
-msgstr ""
-
-#. LkFcD
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN1056F\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the path to the text file or files. If you just want one text file, you can use any extension of the file name. If you enter a folder name, the text files in that folder must have the extension *.csv to be recognized as files of the text database.</ahelp>"
-msgstr ""
-
-#. DwHAY
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN10572\n"
-"help.text"
-msgid "Browse"
-msgstr ""
-
-#. tU8mG
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN10576\n"
-"help.text"
-msgid "<ahelp hid=\".\">Click to open a file selection dialog.</ahelp>"
-msgstr ""
-
-#. MmGr4
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN10616\n"
-"help.text"
-msgid "Plain text files (*.txt)"
-msgstr ""
-
-#. ztjWn
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN1061A\n"
-"help.text"
-msgid "<ahelp hid=\".\">Click to access txt files.</ahelp>"
-msgstr ""
-
-#. E5S76
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN10643\n"
-"help.text"
-msgid "'Comma separated value' files (*.csv)"
-msgstr ""
-
-#. 2fDr2
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN10647\n"
-"help.text"
-msgid "<ahelp hid=\".\">Click to access csv files.</ahelp>"
-msgstr ""
-
-#. EVBCK
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN10666\n"
-"help.text"
-msgid "Custom"
-msgstr ""
-
-#. 3Z5fx
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN1066A\n"
-"help.text"
-msgid "<ahelp hid=\".\">Click to access custom files. Enter the extension in the text box.</ahelp>"
-msgstr ""
-
-#. rts2F
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN10581\n"
-"help.text"
-msgid "Field separator"
-msgstr ""
-
-#. 3G6QU
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN10585\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter or select the character that separates data fields in the text file.</ahelp>"
-msgstr ""
-
-#. 8rxWL
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN1059C\n"
-"help.text"
-msgid "Text separator"
-msgstr ""
-
-#. ejFpV
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN105A0\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter or select the character that identifies a text field in the text file.</ahelp> You cannot use the same character as the field separator."
-msgstr ""
-
-#. rSTcV
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN105B8\n"
-"help.text"
-msgid "Decimal separator"
-msgstr ""
-
-#. apBAu
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN105BC\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter or select the character that is used as a decimal separator in the text file, for example, a period (0.5) or a comma (0,5).</ahelp>"
-msgstr ""
-
-#. CyhGN
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN105D3\n"
-"help.text"
-msgid "Thousands separator"
-msgstr ""
-
-#. 6TTiq
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN105D7\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter or select the character that is used as a thousands separator in the text file, for example a comma (1,000), or a period (1.000).</ahelp>"
-msgstr ""
-
#. rw2xT
#: menubar.xhp
msgctxt ""
@@ -3913,13 +2446,13 @@ msgctxt ""
msgid "Report Builder"
msgstr ""
-#. 2cgJb
+#. Yyb28
#: rep_main.xhp
msgctxt ""
"rep_main.xhp\n"
"bm_id1614429\n"
"help.text"
-msgid "<bookmark_value>Report Builder</bookmark_value><bookmark_value>Oracle Report Builder</bookmark_value>"
+msgid "<bookmark_value>Report Builder</bookmark_value> <bookmark_value>Oracle Report Builder</bookmark_value>"
msgstr ""
#. 8XCCL
@@ -4192,13 +2725,13 @@ msgctxt ""
msgid "After selecting the table, press the Tab key to leave the Content box."
msgstr ""
-#. 6vbRr
+#. TFFLy
#: rep_main.xhp
msgctxt ""
"rep_main.xhp\n"
"par_id2531815\n"
"help.text"
-msgid "The <embedvar href=\"text/shared/explorer/database/rep_insertfield.xhp#addfields\" markup=\"ignore\"/> window opens automatically and shows all fields of the selected table."
+msgid "The <link href=\"text/shared/explorer/database/rep_insertfield.xhp\" name=\"add_fields_link\">Add fields to report</link> window opens automatically and shows all fields of the selected table."
msgstr ""
#. vsFKB
@@ -4939,13 +3472,13 @@ msgctxt ""
msgid "Properties"
msgstr ""
-#. e5chy
+#. wAcV9
#: rep_prop.xhp
msgctxt ""
"rep_prop.xhp\n"
"hd_id8836939\n"
"help.text"
-msgid "<variable id=\"rep_prop\"><link href=\"text/shared/explorer/database/rep_prop.xhp\">Properties</link> </variable>"
+msgid "<variable id=\"rep_prop\"><link href=\"text/shared/explorer/database/rep_prop.xhp\">Properties</link></variable>"
msgstr ""
#. ro5Tm
@@ -4984,13 +3517,13 @@ msgctxt ""
msgid "Select a table from the Contents list, then press Tab or click outside the input box to leave the input box."
msgstr ""
-#. 9hPaG
+#. DZ342
#: rep_prop.xhp
msgctxt ""
"rep_prop.xhp\n"
"par_id3587145\n"
"help.text"
-msgid "<ahelp hid=\".\">The <embedvar href=\"text/shared/explorer/database/rep_insertfield.xhp#addfields\" markup=\"ignore\"/> window is shown automatically when you have selected a table in the Contents box and leave that box. You can also click the Add Field icon on the toolbar, or choose <item type=\"menuitem\">View - Add Field</item>.</ahelp>"
+msgid "<ahelp hid=\".\">The <link href=\"text/shared/explorer/database/rep_insertfield.xhp\" name=\"add_fields_link\">Add fields to report</link> window is shown automatically when you have selected a table in the Contents box and leave that box. You can also click the Add Field icon on the toolbar, or choose <item type=\"menuitem\">View - Add Field</item>.</ahelp>"
msgstr ""
#. 5BJS6
diff --git a/source/ar/helpcontent2/source/text/shared/guide.po b/source/ar/helpcontent2/source/text/shared/guide.po
index 96c2286bbe6..f87c0cdc8ab 100644
--- a/source/ar/helpcontent2/source/text/shared/guide.po
+++ b/source/ar/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-04 19:51+0200\n"
+"POT-Creation-Date: 2021-10-25 12:49+0200\n"
"PO-Revision-Date: 2021-03-07 18:15+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textsharedguide/ar/>\n"
@@ -4048,13 +4048,31 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/convertfilters.xhp\" name=\"conversion filter names\">File Conversion Filter Names</link>"
msgstr ""
-#. G5KB2
+#. EoDwz
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
"par_id581554399002498\n"
"help.text"
-msgid "<variable id=\"variable name\"> <ahelp hid=\".\">Tables with filter names for command line document conversion.</ahelp> </variable>"
+msgid "<variable id=\"commandline_intro\"> <ahelp hid=\".\">Tables with filter names for <link href=\"text/shared/guide/start_parameters.xhp\" name=\"commandline\">command line</link> document conversion.</ahelp> </variable>"
+msgstr ""
+
+#. Whybs
+#: convertfilters.xhp
+msgctxt ""
+"convertfilters.xhp\n"
+"hd_id531633524464103\n"
+"help.text"
+msgid "Usage"
+msgstr ""
+
+#. vcWaC
+#: convertfilters.xhp
+msgctxt ""
+"convertfilters.xhp\n"
+"par_id801633524474460\n"
+"help.text"
+msgid "Filter names are used when importing and exporting files in alien formats and converting files formats through the <link href=\"text/shared/guide/start_parameters.xhp\" name=\"commandline\">command line</link>."
msgstr ""
#. QAzjK
@@ -4408,6 +4426,15 @@ msgctxt ""
msgid "Writer Layout XML"
msgstr ""
+#. nxmVA
+#: convertfilters.xhp
+msgctxt ""
+"convertfilters.xhp\n"
+"FilterName_writer_indexing_export\n"
+"help.text"
+msgid "Writer Indexing Export XML"
+msgstr ""
+
#. Va5zD
#: convertfilters.xhp
msgctxt ""
@@ -20464,13 +20491,13 @@ msgctxt ""
msgid "Open the document, entering the correct password. Choose <emph>File - Save As</emph> and clear the <emph>Save with password</emph> check box."
msgstr ""
-#. FepzD
+#. mqKud
#: protection.xhp
msgctxt ""
"protection.xhp\n"
"par_id761632164002322\n"
"help.text"
-msgid "It is possible to use OpenPGP to define private and public keys to be used to encrypt %PRODUCTNAME documents. Read <embedvar href=\"text/shared/guide/openpgp.xhp#openpgph1\"/> to learn more on how to set up OpenPGP encryption keys."
+msgid "It is possible to use OpenPGP to define private and public keys to be used to encrypt %PRODUCTNAME documents. Read <link href=\"text/shared/guide/openpgp.xhp\" name=\"openpgp_link\">Encrypting Documents with OpenPGP</link> to learn more on how to set up OpenPGP encryption keys."
msgstr ""
#. HfUCF
@@ -21112,13 +21139,13 @@ msgctxt ""
msgid "Accepting or Rejecting Changes"
msgstr ""
-#. pqiWr
+#. yyZeG
#: redlining_accept.xhp
msgctxt ""
"redlining_accept.xhp\n"
"bm_id3150247\n"
"help.text"
-msgid "<bookmark_value>changes; accepting or rejecting</bookmark_value><bookmark_value>review function;accepting or rejecting changes</bookmark_value>"
+msgid "<bookmark_value>changes; accepting or rejecting</bookmark_value> <bookmark_value>review function;accepting or rejecting changes</bookmark_value>"
msgstr ""
#. FTaFc
@@ -21157,13 +21184,13 @@ msgctxt ""
msgid "When you edit a document in which others have made changes, you can accept or reject the changes individually or all together."
msgstr ""
-#. XCt7P
+#. 5zm2G
#: redlining_accept.xhp
msgctxt ""
"redlining_accept.xhp\n"
"par_id3147008\n"
"help.text"
-msgid "If you have put multiple copies of the document in circulation, first merge these into one document (see <embedvar href=\"text/shared/guide/redlining_docmerge.xhp#redlining_docmerge\"/>)."
+msgid "If you have put multiple copies of the document in circulation, first merge these into one document (see <link href=\"text/shared/guide/redlining_docmerge.xhp\" name=\"redlining_docmerge_link\">Merging Versions</link>)."
msgstr ""
#. Rk8jv
@@ -22966,49 +22993,76 @@ msgctxt ""
msgid "Starting $[officename] Software From the Command Line"
msgstr ""
-#. gqJUq
+#. 7E3QP
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3156152\n"
"help.text"
-msgid "Under Windows, select <emph>Run</emph> from the Windows Start menu, or open a shell under Linux, *BSD, or macOS platforms."
+msgid "Select <emph>Run</emph> from the Windows Start menu."
msgstr ""
-#. bvyAG
+#. xf2BF
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3152472\n"
"help.text"
-msgid "Under Windows, type the following text in the <emph>Open </emph>text field and click <emph>OK</emph>."
+msgid "Type the following text in the <emph>Open</emph> text field and click <emph>OK</emph>."
msgstr ""
-#. hm8EE
+#. nMQWE
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149669\n"
+"par_id3147561\n"
"help.text"
-msgid "Under UNIX-like systems, type the following line of text, then press <emph>Return</emph>:"
+msgid "{install}\\program\\soffice.exe {parameter}"
msgstr ""
-#. Q5DoA
+#. mmyAy
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147561\n"
+"par_id3153360\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter}</caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter}</caseinline></switchinline>"
+msgid "Replace <emph>{install}</emph> with the path to your installation of %PRODUCTNAME software (for example, <emph>C:\\Program Files\\%PRODUCTNAME</emph>"
msgstr ""
-#. n4TUN
+#. x5jE9
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153360\n"
+"par_id3157152\n"
"help.text"
-msgid "Replace <emph>{install}</emph> with the path to your installation of $[officename] software (for example, <emph>C:\\Program Files\\Office</emph> in Windows, or <emph>~/office</emph> in UNIX)"
+msgid "Open a shell under Linux, *BSD, or macOS platforms."
+msgstr ""
+
+#. LEs72
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3147669\n"
+"help.text"
+msgid "Type the following line of text, then press <emph>Return</emph>:"
+msgstr ""
+
+#. smkWS
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3143561\n"
+"help.text"
+msgid "{install}/program/soffice {parameter}"
+msgstr ""
+
+#. BEAF7
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3157360\n"
+"help.text"
+msgid "Replace <emph>{install}</emph> with the path to your installation of %PRODUCTNAME software (for example, <emph>/opt/%PRODUCTNAME</emph> in UNIX)"
msgstr ""
#. 4EMfS
@@ -23236,13 +23290,13 @@ msgctxt ""
msgid "Store soffice.bin pid to <emph>{file}</emph>."
msgstr ""
-#. KsDn3
+#. 8kbVi
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3146786\n"
"help.text"
-msgid "Sets the <emph>DISPLAY </emph>environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for $[officename] software on UNIX-like platforms."
+msgid "Sets the <emph>DISPLAY</emph> environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for $[officename] software on UNIX-like platforms."
msgstr ""
#. 67rps
@@ -23695,22 +23749,13 @@ msgctxt ""
msgid "Opens and starts the following presentation documents of each immediately. Files are closed after the showing. Files other than Impress documents are opened in default mode , regardless of previous mode."
msgstr ""
-#. 7TVQD
-#: start_parameters.xhp
-msgctxt ""
-"start_parameters.xhp\n"
-"par_id315053p\n"
-"help.text"
-msgid "Batch convert files (implies --headless). If --outdir isn't specified, then current working directory is used as output_dir."
-msgstr ""
-
-#. bcvZm
+#. N3vAB
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id2016120401222926\n"
"help.text"
-msgid "If --convert-to is used more than once, last value of OutputFileExtension[:OutputFilterName] is effective. If --outdir is used more than once, only its last value is effective. For example:"
+msgid "If --convert-to is used more than once, last value of OutputFileExtension[:OutputFilterName[:OutputFilterParams]] is effective. If --outdir is used more than once, only its last value is effective. For example:"
msgstr ""
#. RYx7a
diff --git a/source/ar/helpcontent2/source/text/shared/optionen.po b/source/ar/helpcontent2/source/text/shared/optionen.po
index ed2a1ad6331..49928a29d45 100644
--- a/source/ar/helpcontent2/source/text/shared/optionen.po
+++ b/source/ar/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-20 13:03+0200\n"
+"POT-Creation-Date: 2021-10-25 12:49+0200\n"
"PO-Revision-Date: 2018-11-14 11:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12256,13 +12256,13 @@ msgctxt ""
msgid "Print"
msgstr "طباعة"
-#. dpEFJ
+#. KfecA
#: 01070400.xhp
msgctxt ""
"01070400.xhp\n"
"bm_id3155450\n"
"help.text"
-msgid "<bookmark_value>printing; drawings defaults</bookmark_value><bookmark_value>drawings; printing defaults</bookmark_value><bookmark_value>pages;printing page names in presentations</bookmark_value><bookmark_value>printing; dates in presentations</bookmark_value><bookmark_value>dates; printing in presentations</bookmark_value><bookmark_value>times; inserting when printing presentations</bookmark_value><bookmark_value>printing; hidden pages of presentations</bookmark_value><bookmark_value>hidden pages; printing in presentations</bookmark_value><bookmark_value>printing; without scaling in presentations</bookmark_value><bookmark_value>scaling; when printing presentations</bookmark_value><bookmark_value>printing; fitting to pages in presentations</bookmark_value><bookmark_value>fitting to pages; print settings in presentations</bookmark_value><bookmark_value>printing; tiling pages in presentations</bookmark_value>"
+msgid "<bookmark_value>printing; drawings defaults</bookmark_value> <bookmark_value>drawings; printing defaults</bookmark_value> <bookmark_value>pages;printing page names in presentations</bookmark_value> <bookmark_value>printing; dates in presentations</bookmark_value> <bookmark_value>dates; printing in presentations</bookmark_value> <bookmark_value>times; inserting when printing presentations</bookmark_value> <bookmark_value>printing; hidden pages of presentations</bookmark_value> <bookmark_value>hidden pages; printing in presentations</bookmark_value> <bookmark_value>printing; without scaling in presentations</bookmark_value> <bookmark_value>scaling; when printing presentations</bookmark_value> <bookmark_value>printing; fitting to pages in presentations</bookmark_value> <bookmark_value>fitting to pages; print settings in presentations</bookmark_value> <bookmark_value>printing; tiling pages in presentations</bookmark_value>"
msgstr ""
#. iFJBG
@@ -12382,13 +12382,13 @@ msgctxt ""
msgid "Quality"
msgstr ""
-#. vYV69
+#. 8fAoE
#: 01070400.xhp
msgctxt ""
"01070400.xhp\n"
"par_id3147229\n"
"help.text"
-msgid "See also <embedvar href=\"text/shared/guide/print_blackwhite.xhp#print_blackwhite\"/>."
+msgid "See also <link href=\"text/shared/guide/print_blackwhite.xhp\" name=\"print_blackwhite_link\">Printing in Black and White</link>."
msgstr ""
#. KK8qW
@@ -15460,13 +15460,13 @@ msgctxt ""
msgid "Detailed Calculation"
msgstr ""
-#. n3FEk
+#. ELsuG
#: detailedcalculation.xhp
msgctxt ""
"detailedcalculation.xhp\n"
"bm_id3146799\n"
"help.text"
-msgid "<bookmark_value>string;conversion to number settings</bookmark_value><bookmark_value>string conversion to number options</bookmark_value><bookmark_value>string;conversion to date settings</bookmark_value><bookmark_value>string conversion to date options</bookmark_value><bookmark_value>string;conversion to reference settings</bookmark_value><bookmark_value>string conversion to reference options</bookmark_value><bookmark_value>string;setting in spreadsheet formulas</bookmark_value><bookmark_value>cell reference syntax in strings;Excel R1C1</bookmark_value><bookmark_value>cell reference syntax in strings;Excel A1</bookmark_value><bookmark_value>cell reference syntax in strings;Calc A1</bookmark_value><bookmark_value>Excel R1C1;cell reference syntax in strings</bookmark_value><bookmark_value>Excel A1;cell reference syntax in strings</bookmark_value><bookmark_value>Calc A1;cell reference syntax in strings</bookmark_value>"
+msgid "<bookmark_value>string;conversion to number settings</bookmark_value> <bookmark_value>string conversion to number options</bookmark_value> <bookmark_value>string;conversion to date settings</bookmark_value> <bookmark_value>string conversion to date options</bookmark_value> <bookmark_value>string;conversion to reference settings</bookmark_value> <bookmark_value>string conversion to reference options</bookmark_value> <bookmark_value>string;setting in spreadsheet formulas</bookmark_value> <bookmark_value>cell reference syntax in strings;Excel R1C1</bookmark_value> <bookmark_value>cell reference syntax in strings;Excel A1</bookmark_value> <bookmark_value>cell reference syntax in strings;Calc A1</bookmark_value> <bookmark_value>Excel R1C1;cell reference syntax in strings</bookmark_value> <bookmark_value>Excel A1;cell reference syntax in strings</bookmark_value> <bookmark_value>Calc A1;cell reference syntax in strings</bookmark_value>"
msgstr ""
#. jZZNb
@@ -15541,13 +15541,13 @@ msgctxt ""
msgid "<emph>Treat as zero:</emph> Any text found where numeric data is expected will be considered as a number of value zero. Example: <item type=\"input\">\"123.45\"</item> will map to zero, while <item type=\"input\">123.45</item> not."
msgstr ""
-#. XLNWu
+#. 8VbMZ
#: detailedcalculation.xhp
msgctxt ""
"detailedcalculation.xhp\n"
"par_id3067110\n"
"help.text"
-msgid "<emph>Convert only if unambiguous:</emph> If the text represents a valid and unambiguous numeric value, convert it. Example: <item type=\"input\">\"123.456\"</item> will generate a #VALUE! error because the text contains a separator, while <item type=\"input\">\"123456\"</item> will not.<br/>See <embedvar href=\"text/scalc/guide/numbers_text.xhp#numbers_text\" markup=\"ignore\"/> for details."
+msgid "<emph>Convert only if unambiguous:</emph> If the text represents a valid and unambiguous numeric value, convert it. Example: <item type=\"input\">\"123.456\"</item> will generate a #VALUE! error because the text contains a separator, while <item type=\"input\">\"123456\"</item> will not.<br/>See <link href=\"text/scalc/guide/numbers_text.xhp\" name=\"numbers_text_link\">Converting Text to Numbers</link> for details."
msgstr ""
#. Eo47W
diff --git a/source/ar/helpcontent2/source/text/simpress/00.po b/source/ar/helpcontent2/source/text/simpress/00.po
index b9f8f81f24a..c442fdfa5d1 100644
--- a/source/ar/helpcontent2/source/text/simpress/00.po
+++ b/source/ar/helpcontent2/source/text/simpress/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-20 13:03+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
"PO-Revision-Date: 2018-04-17 15:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1438,6 +1438,15 @@ msgctxt ""
msgid "<variable id=\"seitenvorlage\">Choose <menuitem>Slide - Change Slide Master</menuitem> </variable>"
msgstr ""
+#. E75uy
+#: slide_menu.xhp
+msgctxt ""
+"slide_menu.xhp\n"
+"par_id911634055593609\n"
+"help.text"
+msgid "<variable id=\"loadslidedesign\">Choose <menuitem>Slide - Change Slide Master - Load</menuitem></variable>"
+msgstr ""
+
#. Whnor
#: slide_menu.xhp
msgctxt ""
@@ -1456,13 +1465,13 @@ msgctxt ""
msgid "On the <emph>Presentation</emph> bar, click"
msgstr ""
-#. FMkRy
+#. gBMvH
#: slide_menu.xhp
msgctxt ""
"slide_menu.xhp\n"
"par_id3685251\n"
"help.text"
-msgid "<image id=\"img_id3183073\" src=\"cmd/sc_insertpage.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3183073\">Icon</alt></image>"
+msgid "<image id=\"img_id3183073\" src=\"cmd/sc_insertpage.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3183073\">Icon New slide</alt></image>"
msgstr ""
#. brVDD
diff --git a/source/ar/helpcontent2/source/text/simpress/01.po b/source/ar/helpcontent2/source/text/simpress/01.po
index df5ed000d85..da0b8ad1d0b 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: 2021-09-10 23:11+0200\n"
+"POT-Creation-Date: 2021-10-25 12:49+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"
@@ -3895,6 +3895,24 @@ msgctxt ""
msgid "Change Slide Master"
msgstr ""
+#. bBY5z
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"hd_id3164253\n"
+"help.text"
+msgid "<link href=\"text/simpress/01/05120000.xhp\" name=\"Change Slide Master\">Master Page</link>"
+msgstr ""
+
+#. Pz8J7
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"par_id3108485\n"
+"help.text"
+msgid "<variable id=\"masterpagetext\"><ahelp hid=\".uno:PresentationLayout\">Displays the <emph>Available Master Slides</emph> dialog, where you can select a layout scheme for the current page. Any objects in the page design are inserted behind objects in the current page.</ahelp></variable>"
+msgstr ""
+
#. Jg7LJ
#: 05120000.xhp
msgctxt ""
@@ -3976,112 +3994,22 @@ msgctxt ""
msgid "Load"
msgstr ""
-#. PJUGm
+#. wvNGM
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
-"par_id3156020\n"
-"help.text"
-msgid "<ahelp hid=\"modules/simpress/ui/slidedesigndialog/load\">Displays the <link href=\"text/simpress/01/05120100.xhp\" name=\"Load Master Slide\"><emph>Load Master Slide</emph></link> dialog, where you can select additional slide designs.</ahelp>"
-msgstr ""
-
-#. sQnAB
-#: 05120100.xhp
-msgctxt ""
-"05120100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Load Master Slide"
-msgstr ""
-
-#. cVSPz
-#: 05120100.xhp
-msgctxt ""
-"05120100.xhp\n"
-"hd_id3153728\n"
-"help.text"
-msgid "Load Master Slide"
-msgstr ""
-
-#. DB49E
-#: 05120100.xhp
-msgctxt ""
-"05120100.xhp\n"
-"par_id3150717\n"
-"help.text"
-msgid "Load additional slide designs for your presentation."
-msgstr ""
-
-#. fs4kq
-#: 05120100.xhp
-msgctxt ""
-"05120100.xhp\n"
-"par_id3154016\n"
-"help.text"
-msgid "Select a design category, and then a template you want to apply."
-msgstr ""
-
-#. Mfa22
-#: 05120100.xhp
-msgctxt ""
-"05120100.xhp\n"
-"hd_id3150327\n"
-"help.text"
-msgid "Categories"
-msgstr ""
-
-#. Qjzs5
-#: 05120100.xhp
-msgctxt ""
-"05120100.xhp\n"
-"par_id3147338\n"
-"help.text"
-msgid "<ahelp hid=\"sfx/ui/loadtemplatedialog/categories\">Displays the available slide design categories.</ahelp>"
-msgstr ""
-
-#. SFJp7
-#: 05120100.xhp
-msgctxt ""
-"05120100.xhp\n"
-"hd_id3155962\n"
-"help.text"
-msgid "Templates"
-msgstr ""
-
-#. AgvvA
-#: 05120100.xhp
-msgctxt ""
-"05120100.xhp\n"
-"par_id3155337\n"
-"help.text"
-msgid "<ahelp hid=\"sfx/ui/loadtemplatedialog/templates\">Displays the templates for the selected design category.</ahelp>"
-msgstr ""
-
-#. SL4AQ
-#: 05120100.xhp
-msgctxt ""
-"05120100.xhp\n"
-"hd_id3145791\n"
+"par_id3956020\n"
"help.text"
-msgid "More>>"
+msgid "<ahelp hid=\"modules/simpress/ui/slidedesigndialog/load\">Displays the <link href=\"text/swriter/01/05170000.xhp\" name=\"Load Master Slide\"><emph>Load Master Page</emph></link> dialog, where you can select additional page designs.</ahelp>"
msgstr ""
-#. 3B6Mz
-#: 05120100.xhp
-msgctxt ""
-"05120100.xhp\n"
-"par_id3150344\n"
-"help.text"
-msgid "<ahelp hid=\"sfx/ui/loadtemplatedialog/expander\">Shows or hides a preview of a selected template.</ahelp>"
-msgstr ""
-
-#. PEjDN
-#: 05120100.xhp
+#. LZr7A
+#: 05120000.xhp
msgctxt ""
-"05120100.xhp\n"
-"par_id3159206\n"
+"05120000.xhp\n"
+"par_id3156020\n"
"help.text"
-msgid "Some templates may not contain visible text objects or drawing objects."
+msgid "<ahelp hid=\"modules/simpress/ui/slidedesigndialog/load\">Displays the <link href=\"text/swriter/01/05170000.xhp\" name=\"Load Master Slide\"><emph>Load Master Slide</emph></link> dialog, where you can select additional slide designs.</ahelp>"
msgstr ""
#. BLSEy
@@ -4633,11 +4561,11 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/connectortabpage/MTR_FLD_LINE_3\">Enter a skew value for Line 3.</ahelp>"
msgstr ""
-#. 4z7yG
+#. 4DA83
#: 05170000.xhp
msgctxt ""
"05170000.xhp\n"
-"hd_id3145581\n"
+"hd_id291634825392062\n"
"help.text"
msgid "Line spacing"
msgstr ""
@@ -4732,13 +4660,13 @@ msgctxt ""
msgid "Reset line skew"
msgstr ""
-#. WE2nx
+#. Y3yHa
#: 05170000.xhp
msgctxt ""
"05170000.xhp\n"
"par_id3159205\n"
"help.text"
-msgid "<ahelp hid=\".uno:NewRouting\">Resets the line skew values to the default.</ahelp><embedvar href=\"text/shared/00/00000001.xhp#kontext\"/>"
+msgid "<ahelp hid=\".uno:NewRouting\">Resets the line skew values to the default.</ahelp> (This command is only accessible through the <link href=\"text/shared/00/00000005.xhp#contextmenu\" name=\"context menu\">context menu</link>)."
msgstr ""
#. JLBKm
@@ -7036,67 +6964,58 @@ msgctxt ""
msgid "Custom Slide Shows"
msgstr ""
-#. fdjRS
+#. 9BTtN
#: 06100000.xhp
msgctxt ""
"06100000.xhp\n"
"hd_id3154659\n"
"help.text"
-msgid "Custom Slide Shows"
+msgid "<variable id=\"CustomShow_h1\"><link href=\"text/simpress/01/06100000.xhp\" name=\"CustomShow_link\">Custom Slide Shows</link></variable>"
msgstr ""
-#. CipVc
+#. EB558
#: 06100000.xhp
msgctxt ""
"06100000.xhp\n"
"par_id3149207\n"
"help.text"
-msgid "<variable id=\"indipraesent\"><ahelp hid=\".uno:CustomShowDialog\">Defines a custom slide show using slides within the current presentation. You can then pick slides to meet the needs of your audience. You can create as many custom slide shows as you want.</ahelp></variable>"
+msgid "<variable id=\"indipraesent\"><ahelp hid=\".uno:CustomShowDialog\">Defines a custom slide show using slides within the current presentation. You can then pick slides to meet the needs of your audience. You can create as many custom slide shows as you want.</ahelp> </variable>"
msgstr ""
-#. j9xFw
+#. YgWfS
#: 06100000.xhp
msgctxt ""
"06100000.xhp\n"
-"hd_id3155530\n"
+"par_id641634164174393\n"
"help.text"
-msgid "Name of the presentation(s)"
+msgid "Read the help page <link href=\"text/simpress/guide/individual.xhp#individual\">Creating a Custom Slide Show</link> to learn more about how to set up your own custom slide shows."
msgstr ""
-#. TEnog
+#. JyjJt
#: 06100000.xhp
msgctxt ""
"06100000.xhp\n"
-"par_id3156449\n"
-"help.text"
-msgid "<ahelp hid=\"modules/simpress/ui/customslideshows/customshowlist\">Lists the custom slide shows that are available.</ahelp>"
-msgstr ""
-
-#. T3UBF
-#: 06100000.xhp
-msgctxt ""
-"06100000.xhp\n"
-"par_id3149408\n"
+"hd_id3155530\n"
"help.text"
-msgid "To create a custom slide show, click <emph>New</emph>."
+msgid "List of custom slide shows"
msgstr ""
-#. BbVpd
+#. 9WeMN
#: 06100000.xhp
msgctxt ""
"06100000.xhp\n"
-"hd_id3152899\n"
+"par_id3156449\n"
"help.text"
-msgid "Use Custom Slide Show"
+msgid "<ahelp hid=\"modules/simpress/ui/customslideshows/customshowlist\">Lists the custom slide shows that are available in the document.</ahelp>"
msgstr ""
-#. aajoE
+#. T3UBF
#: 06100000.xhp
msgctxt ""
"06100000.xhp\n"
-"par_id3149947\n"
+"par_id3149408\n"
"help.text"
-msgid "<ahelp hid=\"modules/simpress/ui/customslideshows/usecustomshows\">Runs the custom slide show you selected when you click <emph>Start</emph>. Otherwise, the entire presentation is shown.</ahelp>"
+msgid "To create a custom slide show, click <emph>New</emph>."
msgstr ""
#. tmqBb
@@ -7108,13 +7027,13 @@ msgctxt ""
msgid "To run a custom slide show:"
msgstr ""
-#. 5B6tC
+#. KDQG6
#: 06100000.xhp
msgctxt ""
"06100000.xhp\n"
"par_id3153250\n"
"help.text"
-msgid "Click the show in the list and then select <emph>Use Custom Slide Show</emph>."
+msgid "Select a custom slide show from the list."
msgstr ""
#. yFmBx
@@ -7180,13 +7099,13 @@ msgctxt ""
msgid "Start"
msgstr ""
-#. VEuA7
+#. EKdWF
#: 06100000.xhp
msgctxt ""
"06100000.xhp\n"
"par_id3157907\n"
"help.text"
-msgid "<ahelp hid=\"modules/simpress/ui/customslideshows/startshow\">Runs the slide show. Ensure that <emph>Use Custom Slide Show</emph> is selected if you want to run a custom presentation.</ahelp>"
+msgid "<ahelp hid=\"modules/simpress/ui/customslideshows/startshow\">Runs the selected custom slide show.</ahelp>"
msgstr ""
#. u5kLV
diff --git a/source/ar/helpcontent2/source/text/simpress/guide.po b/source/ar/helpcontent2/source/text/simpress/guide.po
index bf80b7ab29c..08bcb4089d4 100644
--- a/source/ar/helpcontent2/source/text/simpress/guide.po
+++ b/source/ar/helpcontent2/source/text/simpress/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-04 19:51+0200\n"
+"POT-Creation-Date: 2021-10-25 12:49+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/textsimpressguide/ar/>\n"
@@ -5578,13 +5578,13 @@ msgctxt ""
msgid "Showing a Slide Show"
msgstr ""
-#. uZqFT
+#. TxTxS
#: show.xhp
msgctxt ""
"show.xhp\n"
"bm_id5592516\n"
"help.text"
-msgid "<bookmark_value>running slide shows</bookmark_value><bookmark_value>showing;slide shows</bookmark_value><bookmark_value>slide shows; starting</bookmark_value><bookmark_value>presentations; starting</bookmark_value><bookmark_value>starting; slide shows</bookmark_value><bookmark_value>automatic slide shows</bookmark_value><bookmark_value>slide transitions;automatic</bookmark_value><bookmark_value>automatic slide transition</bookmark_value>"
+msgid "<bookmark_value>running slide shows</bookmark_value> <bookmark_value>showing;slide shows</bookmark_value> <bookmark_value>slide shows; starting</bookmark_value> <bookmark_value>presentations; starting</bookmark_value> <bookmark_value>starting; slide shows</bookmark_value> <bookmark_value>automatic slide shows</bookmark_value> <bookmark_value>slide transitions;automatic</bookmark_value> <bookmark_value>automatic slide transition</bookmark_value>"
msgstr ""
#. ZwZRH
@@ -5632,15 +5632,6 @@ msgctxt ""
msgid "Choose <emph>Slide Show - Slide Show</emph> to run the show."
msgstr ""
-#. B2HtF
-#: show.xhp
-msgctxt ""
-"show.xhp\n"
-"par_id4199957\n"
-"help.text"
-msgid "If you want all shows to start from the current slide instead of the first slide, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress - General</emph> and click <emph>Always with current page</emph>."
-msgstr ""
-
#. RzXBe
#: show.xhp
msgctxt ""
@@ -5650,13 +5641,13 @@ msgctxt ""
msgid "Click to advance to the next effect or to the next slide."
msgstr ""
-#. BDk6i
+#. dP9Vm
#: show.xhp
msgctxt ""
"show.xhp\n"
-"par_id8702658\n"
+"par_id391634159318692\n"
"help.text"
-msgid "Press <item type=\"keycode\">Esc</item> to abort the show before the end."
+msgid "Press <keycode>Esc</keycode> to abort the slide show before its end."
msgstr ""
#. yF4a5
@@ -5695,22 +5686,22 @@ msgctxt ""
msgid "Open the <emph>Slide Transition</emph> sidebar deck."
msgstr ""
-#. vsNmF
+#. 9CjNM
#: show.xhp
msgctxt ""
"show.xhp\n"
"par_id9168980\n"
"help.text"
-msgid "In the <emph>Advance slide</emph> area, click <emph>Automatically after</emph>, and select a time duration."
+msgid "In the <emph>Advance Slide</emph> area, click <emph>After</emph> and enter a time duration."
msgstr ""
-#. u3a9a
+#. HfVRx
#: show.xhp
msgctxt ""
"show.xhp\n"
"par_id9766533\n"
"help.text"
-msgid "Click <emph>Apply to All Slides</emph>."
+msgid "Click <emph>Apply Transition to All Slides</emph>."
msgstr ""
#. yfpGu
@@ -5740,13 +5731,13 @@ msgctxt ""
msgid "Choose <emph>Slide Show - Slide Show Settings</emph>."
msgstr ""
-#. 5CqC5
+#. Nyapm
#: show.xhp
msgctxt ""
"show.xhp\n"
"par_id1336405\n"
"help.text"
-msgid "In the Type area, click <emph>Auto</emph> and select a pause time between shows."
+msgid "In the <emph>Presentation Mode</emph> area, choose <emph>Loop and repeat after</emph> and set the duration of the pause between shows."
msgstr ""
#. A4BCr
@@ -5767,15 +5758,6 @@ msgctxt ""
msgid "You can start %PRODUCTNAME from a command prompt, followed by the parameter <item type=\"literal\">-show</item> and an Impress filename. For example, to start the file <item type=\"literal\">filename.odp</item> from the command prompt, enter the following command:"
msgstr ""
-#. bfcES
-#: show.xhp
-msgctxt ""
-"show.xhp\n"
-"par_id1502121\n"
-"help.text"
-msgid "<item type=\"literal\">soffice -show filename.odp</item>"
-msgstr ""
-
#. 7FZNV
#: show.xhp
msgctxt ""
diff --git a/source/ar/helpcontent2/source/text/swriter.po b/source/ar/helpcontent2/source/text/swriter.po
index 71edbe1719d..d1151b08163 100644
--- a/source/ar/helpcontent2/source/text/swriter.po
+++ b/source/ar/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-10 23:11+0200\n"
+"POT-Creation-Date: 2021-10-25 12:49+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/textswriter/ar/>\n"
@@ -2455,13 +2455,13 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/05060200.xhp\" name=\"Wrap Off\">Wrap Off</link>"
msgstr ""
-#. Vus62
+#. PJcEB
#: main0215.xhp
msgctxt ""
"main0215.xhp\n"
"par_id3147419\n"
"help.text"
-msgid "<embedvar href=\"text/swriter/01/05060200.xhp#keinumlauftext\"/>You can also choose this setting on the <emph>Wrap</emph> tab page."
+msgid "You can also choose this setting on the <emph>Wrap</emph> tab page."
msgstr ""
#. n8sCd
@@ -2473,13 +2473,13 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/05060200.xhp\" name=\"Wrap On\">Wrap On</link>"
msgstr ""
-#. cqLEM
+#. oCsKA
#: main0215.xhp
msgctxt ""
"main0215.xhp\n"
"par_id3153405\n"
"help.text"
-msgid "<embedvar href=\"text/swriter/01/05060200.xhp#seitenumlauftext\"/>This icon represents the <emph>Page Wrap</emph> option on the <emph>Wrap</emph> tab page."
+msgid "This icon represents the <emph>Page Wrap</emph> option on the <emph>Wrap</emph> tab page."
msgstr ""
#. euDxv
@@ -2491,13 +2491,13 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/05060200.xhp\" name=\"Wrap Through\">Wrap Through</link>"
msgstr ""
-#. FMaCU
+#. 3UyQZ
#: main0215.xhp
msgctxt ""
"main0215.xhp\n"
"par_id3147799\n"
"help.text"
-msgid "<embedvar href=\"text/swriter/01/05060200.xhp#durchlauftext\"/>You can also define this setting on the <emph>Wrap</emph> tab page."
+msgid "You can also define this setting on the <emph>Wrap</emph> tab page."
msgstr ""
#. UcRFJ
diff --git a/source/ar/helpcontent2/source/text/swriter/00.po b/source/ar/helpcontent2/source/text/swriter/00.po
index 4b3c8c7b73d..5385e8467ee 100644
--- a/source/ar/helpcontent2/source/text/swriter/00.po
+++ b/source/ar/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-04 19:51+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
"PO-Revision-Date: 2021-03-07 18:15+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textswriter00/ar/>\n"
@@ -2167,14 +2167,14 @@ msgctxt ""
msgid "On the <emph>Table</emph> bar, click"
msgstr ""
-#. JGqGG
+#. zy5vV
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3153996\n"
"help.text"
-msgid "<image id=\"img_id3154002\" src=\"cmd/sc_mergecells.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154002\">Icon</alt></image>"
-msgstr "<image id=\"img_id3083452\" src=\"cmd/sc_mergedialog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3083452\">أيقونة</alt></image>"
+msgid "<image id=\"img_id3154002\" src=\"cmd/sc_mergecells.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154002\">Icon Merge Cells</alt></image>"
+msgstr ""
#. dpXBa
#: 00000405.xhp
@@ -2203,14 +2203,14 @@ msgctxt ""
msgid "On the <emph>Table</emph> bar, click"
msgstr ""
-#. 5TCpD
+#. 7E7fT
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3147270\n"
"help.text"
-msgid "<image id=\"img_id3147275\" src=\"cmd/sc_splitcell.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3147275\">Icon</alt></image>"
-msgstr "<image id=\"img_id3083452\" src=\"cmd/sc_mergedialog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3083452\">أيقونة</alt></image>"
+msgid "<image id=\"img_id3147275\" src=\"cmd/sc_splitcell.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147275\">Icon Unmerge Cells</alt></image>"
+msgstr ""
#. 7XaPo
#: 00000405.xhp
@@ -2284,14 +2284,14 @@ msgctxt ""
msgid "Open <emph>Optimize Size</emph> toolbar from <emph>Table</emph> bar, click"
msgstr ""
-#. 3UF7h
+#. cH2we
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3145222\n"
"help.text"
-msgid "<image id=\"img_id3145228\" src=\"cmd/sc_setoptimalrowheight.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145228\">Icon</alt></image>"
-msgstr "<image id=\"img_id3083452\" src=\"cmd/sc_mergedialog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3083452\">أيقونة</alt></image>"
+msgid "<image id=\"img_id3145228\" src=\"cmd/sc_setoptimalrowheight.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145228\">Icon Optimal Row Height</alt></image>"
+msgstr ""
#. fRVE5
#: 00000405.xhp
@@ -2320,14 +2320,14 @@ msgctxt ""
msgid "Open <emph>Optimize Size</emph> toolbar from <emph>Table</emph> bar, click"
msgstr ""
-#. PVPb8
+#. S6W6h
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3145297\n"
"help.text"
-msgid "<image id=\"img_id3155994\" src=\"cmd/sc_distributerows.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155994\">Icon</alt></image>"
-msgstr "<image id=\"img_id3083452\" src=\"cmd/sc_mergedialog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3083452\">أيقونة</alt></image>"
+msgid "<image id=\"img_id3155994\" src=\"cmd/sc_distributerows.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155994\">Icon Distribute Rows Equally</alt></image>"
+msgstr ""
#. KuUhp
#: 00000405.xhp
@@ -2365,14 +2365,14 @@ msgctxt ""
msgid "On <emph>Table</emph> bar, click"
msgstr ""
-#. Na4rx
+#. UrDQE
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3147555\n"
"help.text"
-msgid "<image id=\"img_id3150361\" src=\"cmd/sc_deleterows.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150361\">Icon</alt></image>"
-msgstr "<image id=\"img_id3083452\" src=\"cmd/sc_mergedialog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3083452\">أيقونة</alt></image>"
+msgid "<image id=\"img_id3150361\" src=\"cmd/sc_deleterows.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150361\">Icon Delete Row</alt></image>"
+msgstr ""
#. EfTgN
#: 00000405.xhp
@@ -2419,14 +2419,14 @@ msgctxt ""
msgid "Open <emph>Optimize Size</emph> toolbar from <emph>Table</emph> bar, click"
msgstr ""
-#. i89K7
+#. WzXMG
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3157881\n"
"help.text"
-msgid "<image id=\"img_id3157888\" src=\"cmd/sc_setoptimalcolumnwidthdirect.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3157888\">Icon</alt></image>"
-msgstr "<image id=\"img_id3083452\" src=\"cmd/sc_mergedialog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3083452\">أيقونة</alt></image>"
+msgid "<image id=\"img_id3157888\" src=\"cmd/sc_setoptimalcolumnwidthdirect.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3157888\">Icon Optimal Column Width</alt></image>"
+msgstr ""
#. iRYb5
#: 00000405.xhp
@@ -2455,14 +2455,14 @@ msgctxt ""
msgid "Open <emph>Optimize Size</emph> toolbar from <emph>Table</emph> bar, click"
msgstr ""
-#. V4Cqu
+#. EPNPB
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3145179\n"
"help.text"
-msgid "<image id=\"img_id3145186\" src=\"cmd/sc_distributecolumns.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145186\">Icon</alt></image>"
-msgstr "<image id=\"img_id3083452\" src=\"cmd/sc_mergedialog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3083452\">أيقونة</alt></image>"
+msgid "<image id=\"img_id3145186\" src=\"cmd/sc_distributecolumns.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145186\">Icon Space Column Equally</alt></image>"
+msgstr ""
#. njBSt
#: 00000405.xhp
@@ -2509,14 +2509,14 @@ msgctxt ""
msgid "On <emph>Table</emph> bar, click"
msgstr ""
-#. e5L4N
+#. tY9nN
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3150279\n"
"help.text"
-msgid "<image id=\"img_id3150286\" src=\"cmd/sc_insertcolumns.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150286\">Icon</alt></image>"
-msgstr "<image id=\"img_id3083452\" src=\"cmd/sc_mergedialog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3083452\">أيقونة</alt></image>"
+msgid "<image id=\"img_id3150286\" src=\"cmd/sc_insertcolumns.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150286\">Icon Insert Column</alt></image>"
+msgstr ""
#. jeDiz
#: 00000405.xhp
@@ -2527,14 +2527,14 @@ msgctxt ""
msgid "Insert Column"
msgstr ""
-#. yvgkg
+#. oB4az
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3150895\n"
"help.text"
-msgid "<image id=\"img_id3150902\" src=\"cmd/sc_insertrows.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150902\">Icon</alt></image>"
-msgstr "<image id=\"img_id3083452\" src=\"cmd/sc_mergedialog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3083452\">أيقونة</alt></image>"
+msgid "<image id=\"img_id3150902\" src=\"cmd/sc_insertrows.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150902\">Icon Insert Row</alt></image>"
+msgstr ""
#. MFvHr
#: 00000405.xhp
@@ -2563,14 +2563,14 @@ msgctxt ""
msgid "On <emph>Table</emph> bar, click"
msgstr ""
-#. XqFzq
+#. dedvZ
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3153600\n"
"help.text"
-msgid "<image id=\"img_id3153607\" src=\"cmd/sc_deletecolumns.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153607\">Icon</alt></image>"
-msgstr "<image id=\"img_id3083452\" src=\"cmd/sc_mergedialog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3083452\">أيقونة</alt></image>"
+msgid "<image id=\"img_id3153607\" src=\"cmd/sc_deletecolumns.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153607\">Icon Delete Column</alt></image>"
+msgstr ""
#. ro8Mr
#: 00000405.xhp
@@ -2590,13 +2590,13 @@ msgctxt ""
msgid "Choose <emph>Format - Frame and Object - Properties</emph>."
msgstr ""
-#. nsMFC
+#. TR376
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3151276\n"
"help.text"
-msgid "<image id=\"img_id3151283\" src=\"cmd/sc_framedialog.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151283\"> Icon Object Properties</alt></image>"
+msgid "<image id=\"img_id3151283\" src=\"cmd/sc_framedialog.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151283\">Icon Object Properties</alt></image>"
msgstr ""
#. vpeBB
@@ -2608,14 +2608,14 @@ msgctxt ""
msgid "Object Properties"
msgstr ""
-#. LVQCy
+#. x5EDg
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3152973\n"
"help.text"
-msgid "<image id=\"img_id3152980\" src=\"cmd/sc_framedialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152980\">Icon</alt></image>"
-msgstr "<image id=\"img_id3083452\" src=\"cmd/sc_mergedialog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3083452\">أيقونة</alt></image>"
+msgid "<image id=\"img_id3152980\" src=\"cmd/sc_framedialog.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152980\">Icon Frame Properties</alt></image>"
+msgstr ""
#. CZwgM
#: 00000405.xhp
diff --git a/source/ar/helpcontent2/source/text/swriter/01.po b/source/ar/helpcontent2/source/text/swriter/01.po
index 9c154c83ef8..f28c176820a 100644
--- a/source/ar/helpcontent2/source/text/swriter/01.po
+++ b/source/ar/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-27 19:09+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
"PO-Revision-Date: 2021-03-07 18:15+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/ar/>\n"
@@ -4462,13 +4462,13 @@ msgctxt ""
msgid "Insert Manual Break"
msgstr ""
-#. DADdL
+#. FuBqy
#: 04010000.xhp
msgctxt ""
"04010000.xhp\n"
"hd_id3145827\n"
"help.text"
-msgid "Insert Manual Break"
+msgid "<variable id=\"ManualBreak_h1\"><link href=\"text/swriter/01/04010000.xhp\" name=\"04010000_link\">Insert Manual Break</link></variable>"
msgstr ""
#. BMEC5
@@ -4597,6 +4597,15 @@ msgctxt ""
msgid "Select the page style for the page that follows the manual page break."
msgstr ""
+#. VGFcT
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id71633464502255\n"
+"help.text"
+msgid "To switch between landscape and portrait orientation, choose the <emph>Default Page Style</emph> to apply portrait orientation or the <emph>Landscape</emph> style to apply landscape orientation."
+msgstr ""
+
#. iEpne
#: 04010000.xhp
msgctxt ""
@@ -24055,13 +24064,31 @@ msgctxt ""
msgid "Load Styles"
msgstr ""
-#. BFL9X
+#. NvMrU
#: 05170000.xhp
msgctxt ""
"05170000.xhp\n"
"hd_id3151242\n"
"help.text"
-msgid "<variable id=\"load_styles_header\"><link href=\"text/swriter/01/05170000.xhp\" name=\"Load Styles\">Load Styles</link></variable>"
+msgid "<switchinline select=\"appl\"> <caseinline select=\"IMPRESS\">Load Master Slide</caseinline> <caseinline select=\"DRAW\">Load Master Page</caseinline> <defaultinline><variable id=\"load_styles_header\"><link href=\"text/swriter/01/05170000.xhp\" name=\"Load Styles\">Load Styles</link></variable></defaultinline> </switchinline>"
+msgstr ""
+
+#. 27Nd8
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"par_id3150717\n"
+"help.text"
+msgid "Load additional slide designs for your presentation."
+msgstr ""
+
+#. 7mftZ
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"par_id2150717\n"
+"help.text"
+msgid "Load additional page designs for your drawing."
msgstr ""
#. FBAJG
@@ -24073,6 +24100,132 @@ msgctxt ""
msgid "<variable id=\"styles_text\"><ahelp hid=\".\">Imports formatting styles from another document or template into the current document.</ahelp></variable>"
msgstr ""
+#. UR6NA
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"hd_id3150327\n"
+"help.text"
+msgid "Categories"
+msgstr ""
+
+#. hfCSA
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"par_id3147338\n"
+"help.text"
+msgid "<ahelp hid=\"sfx/ui/loadtemplatedialog/categories\">Displays the available slide design categories.</ahelp>"
+msgstr ""
+
+#. WGb32
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"hd_id3155962\n"
+"help.text"
+msgid "Templates"
+msgstr ""
+
+#. MVgRk
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"par_id3155337\n"
+"help.text"
+msgid "<ahelp hid=\"sfx/ui/loadtemplatedialog/templates\">Displays the templates for the selected design category.</ahelp>"
+msgstr ""
+
+#. zu7wC
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"hd_id241634052550343\n"
+"help.text"
+msgid "Preview"
+msgstr ""
+
+#. VD5pq
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"par_id3150344\n"
+"help.text"
+msgid "<ahelp hid=\"sfx/ui/loadtemplatedialog/expander\">Shows or hides a preview of a selected master slide.</ahelp>"
+msgstr ""
+
+#. M5edi
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"par_id9159206\n"
+"help.text"
+msgid "Some master slides may not contain visible text objects or drawing objects."
+msgstr ""
+
+#. bFUri
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"hd_id3150427\n"
+"help.text"
+msgid "Categories"
+msgstr ""
+
+#. BhDDL
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"par_id3157338\n"
+"help.text"
+msgid "<ahelp hid=\"sfx/ui/loadtemplatedialog/categories\">Displays the available page design categories.</ahelp>"
+msgstr ""
+
+#. wYRwi
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"hd_id3155952\n"
+"help.text"
+msgid "Templates"
+msgstr ""
+
+#. hjKgq
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"par_id3155837\n"
+"help.text"
+msgid "<ahelp hid=\"sfx/ui/loadtemplatedialog/templates\">Displays the pages designs for the selected design category.</ahelp>"
+msgstr ""
+
+#. FLsVG
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"hd_id241634052520343\n"
+"help.text"
+msgid "Preview"
+msgstr ""
+
+#. APNcz
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"par_id315054\n"
+"help.text"
+msgid "<ahelp hid=\"sfx/ui/loadtemplatedialog/expander\">Shows or hides a preview of a selected page design.</ahelp>"
+msgstr ""
+
+#. fYaPW
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"par_id3159206\n"
+"help.text"
+msgid "Some page designs may not contain visible text objects or drawing objects."
+msgstr ""
+
#. uooXD
#: 05170000.xhp
msgctxt ""
diff --git a/source/ar/helpcontent2/source/text/swriter/02.po b/source/ar/helpcontent2/source/text/swriter/02.po
index edd71fbf5e1..16e8557d483 100644
--- a/source/ar/helpcontent2/source/text/swriter/02.po
+++ b/source/ar/helpcontent2/source/text/swriter/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-10-25 12:49+0200\n"
"PO-Revision-Date: 2021-03-07 18:15+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textswriter02/ar/>\n"
@@ -862,13 +862,13 @@ msgctxt ""
msgid "To remove the numbering restart, apply the command again in the paragraph where the numbering was restarted."
msgstr ""
-#. 7h49d
+#. 4Y7KE
#: 06140000.xhp
msgctxt ""
"06140000.xhp\n"
"par_id261616371203225\n"
"help.text"
-msgid "To restart numbering with a number greater than 1, right-click in the paragraph where you want to restart numbering, choose <menuitem>Paragraph - Paragraph - </menuitem><embedvar href=\"text/swriter/01/05030800.xhp#outlinelisth1\"/> tab, select <menuitem>Restart numbering at this paragraph</menuitem> and enter the start number in <menuitem>Start with</menuitem>."
+msgid "To restart numbering with a number greater than 1, right-click in the paragraph where you want to restart numbering, choose <menuitem>Paragraph - Paragraph - </menuitem><link href=\"text/swriter/01/05030800.xhp\" name=\"Numbering_link\">Outline & List</link> tab, select <menuitem>Restart numbering at this paragraph</menuitem> and enter the start number in <menuitem>Start with</menuitem>."
msgstr ""
#. qCdhk
diff --git a/source/ar/helpcontent2/source/text/swriter/guide.po b/source/ar/helpcontent2/source/text/swriter/guide.po
index 15fb5d31257..33378afed2a 100644
--- a/source/ar/helpcontent2/source/text/swriter/guide.po
+++ b/source/ar/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-27 19:09+0200\n"
+"POT-Creation-Date: 2021-10-25 12:49+0200\n"
"PO-Revision-Date: 2021-03-07 18:15+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/ar/>\n"
@@ -43,13 +43,40 @@ msgctxt ""
msgid "<variable id=\"anchor_object\"><link href=\"text/swriter/guide/anchor_object.xhp\" name=\"Positioning Objects\">Positioning Objects</link></variable>"
msgstr "<variable id=\"anchor_object\"><link href=\"text/swriter/guide/anchor_object.xhp\" name=\"Positioning Objects\">مَوضَعة الكائنات</link></variable>"
-#. PYtpk
+#. ZQbRG
+#: anchor_object.xhp
+msgctxt ""
+"anchor_object.xhp\n"
+"par_id181634295881266\n"
+"help.text"
+msgid "An object, such as an image, is positioned within a document using anchors attached to other elements."
+msgstr ""
+
+#. rrmfz
+#: anchor_object.xhp
+msgctxt ""
+"anchor_object.xhp\n"
+"par_id41634291500513\n"
+"help.text"
+msgid "An anchor determines the reference point for an object. The reference point could be the page or frame where the object is, a paragraph, or even a character. An image always has an anchor and therefore a reference point."
+msgstr ""
+
+#. 2Bkvg
#: anchor_object.xhp
msgctxt ""
"anchor_object.xhp\n"
"par_id3147251\n"
"help.text"
-msgid "You can use anchors to position an object, graphic, or frame in a document. An anchored item remains in place, or moves when you modify the document. The following anchoring options are available:"
+msgid "An anchor moves with the element it is attached to as the document is edited. An object retains it's position relative to the reference point determined by it's anchor, such that, whenever the reference point moves or changes, the object moves relative to it."
+msgstr ""
+
+#. ELWph
+#: anchor_object.xhp
+msgctxt ""
+"anchor_object.xhp\n"
+"par_id441634291545244\n"
+"help.text"
+msgid "The following anchoring options are available:"
msgstr ""
#. mWome
@@ -79,14 +106,14 @@ msgctxt ""
msgid "As character"
msgstr "كمحرف"
-#. AbQya
+#. CjGAr
#: anchor_object.xhp
msgctxt ""
"anchor_object.xhp\n"
"par_id3151181\n"
"help.text"
-msgid "Anchors the selected item as a character in the current text. If the height of the selected item is greater than the current font size, the height of the line containing the item is increased."
-msgstr "يغرز العنصر المحدد كمحرف في النص الحالي. إذا كان ارتفاع العنصر المحدد أكبر من حجم الخط الحالي، فسيُزاد ارتفاع السطر المحتوي على العنصر."
+msgid "Anchors the selected object as a character in the current text. If the height of the selected object is greater than the current font size, the height of the line containing the object is increased."
+msgstr ""
#. SNGPX
#: anchor_object.xhp
@@ -106,14 +133,23 @@ msgctxt ""
msgid "To character"
msgstr "الى المحرف"
-#. qoghU
+#. 7UsDq
#: anchor_object.xhp
msgctxt ""
"anchor_object.xhp\n"
"par_id3151235\n"
"help.text"
-msgid "Anchors the selected item to a character."
-msgstr "يغرز العنصر المحدد الى محرف."
+msgid "Anchors the selected object to the paragraph that contains the character to which the anchor is attached. The reference point for the object is the start of the paragraph that contains the character."
+msgstr ""
+
+#. Awa37
+#: anchor_object.xhp
+msgctxt ""
+"anchor_object.xhp\n"
+"par_id261634292505179\n"
+"help.text"
+msgid "For example, if you split the paragraph at a point before the anchor, the reference point moves to the start of the new paragraph and the object moves relative to that point. If you join the paragraph to the one before it, the reference point moves to the start of the combined paragraph and the object moves to a position relative to that."
+msgstr ""
#. ekiBZ
#: anchor_object.xhp
@@ -124,14 +160,14 @@ msgctxt ""
msgid "To paragraph"
msgstr "الى الفقرة"
-#. EYzAE
+#. F7oaB
#: anchor_object.xhp
msgctxt ""
"anchor_object.xhp\n"
"par_id3155094\n"
"help.text"
-msgid "Anchors the selected item to the current paragraph."
-msgstr "يغرز العنصر المحدد الى الفقرة الحالية."
+msgid "Anchors the selected object to the current paragraph."
+msgstr ""
#. MWaB5
#: anchor_object.xhp
@@ -142,14 +178,14 @@ msgctxt ""
msgid "To page"
msgstr "الى الصفحة"
-#. i5YBs
+#. HnFeA
#: anchor_object.xhp
msgctxt ""
"anchor_object.xhp\n"
"par_id3155144\n"
"help.text"
-msgid "Anchors the selected item to the current page."
-msgstr "يغرز العنصر الحالي الى الصفحة."
+msgid "Anchors the selected object to the current page."
+msgstr ""
#. ZEdjj
#: anchor_object.xhp
@@ -169,13 +205,13 @@ msgctxt ""
msgid "Anchors the selected item to the surrounding frame."
msgstr "يغرز العنصر المحدد الى الإطار المحيط."
-#. C2FTe
+#. qbj2P
#: anchor_object.xhp
msgctxt ""
"anchor_object.xhp\n"
"par_id3145715\n"
"help.text"
-msgid "When you insert an object, graphic, or frame, an anchor icon appears where the item is anchored. You can position an anchored item by dragging the item to another location. To change the anchoring options of an item, right-click the item, and then choose an option from the <item type=\"menuitem\">Anchor</item> submenu."
+msgid "When you insert an object, graphic, or frame, an anchor icon appears where the object is anchored. You can move an anchor or, keeping other object constraints in mind, position an object relative to the anchor's reference point by dragging the object. To change the anchoring options of an item, right-click the item, and then choose an option from the <item type=\"menuitem\">Anchor</item> submenu."
msgstr ""
#. EkgCv
@@ -9898,13 +9934,13 @@ msgctxt ""
msgid "Using Styles From Another Document or Template"
msgstr ""
-#. PT73U
+#. Fudzg
#: load_styles.xhp
msgctxt ""
"load_styles.xhp\n"
"bm_id3145086\n"
"help.text"
-msgid "<bookmark_value>formatting styles; importing</bookmark_value> <bookmark_value>styles; importing from other files</bookmark_value> <bookmark_value>importing;styles from other files</bookmark_value> <bookmark_value>loading;styles from other files</bookmark_value>"
+msgid "<bookmark_value>formatting styles; importing</bookmark_value> <bookmark_value>styles; importing from other files</bookmark_value> <bookmark_value>importing;styles from other files</bookmark_value> <bookmark_value>loading;styles from other files</bookmark_value>"
msgstr ""
#. poRMw
@@ -9952,13 +9988,13 @@ msgctxt ""
msgid "Choose <emph>View - Styles</emph> or"
msgstr ""
-#. 2YWVV
+#. ECJr5
#: load_styles.xhp
msgctxt ""
"load_styles.xhp\n"
"par_id441529889103330\n"
"help.text"
-msgid "<embedvar href=\"text/swriter/00/stylesmenu.xhp#sms\" markup=\"keep\"/> to open the <emph>Styles</emph> sidebar deck."
+msgid "Choose <emph>Styles - Manage Styles</emph> or <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <emph>Styles</emph> sidebar deck."
msgstr ""
#. mHDNg
@@ -10510,13 +10546,13 @@ msgctxt ""
msgid "Adding Line Numbers"
msgstr ""
-#. BbESK
+#. DviqV
#: numbering_lines.xhp
msgctxt ""
"numbering_lines.xhp\n"
"bm_id3150101\n"
"help.text"
-msgid "<bookmark_value>line numbers</bookmark_value> <bookmark_value>text; line numbers</bookmark_value> <bookmark_value>paragraphs;line numbers</bookmark_value> <bookmark_value>lines of text; numbering</bookmark_value> <bookmark_value>numbering; lines</bookmark_value> <bookmark_value>numbers; line numbering</bookmark_value> <bookmark_value>marginal numbers on text pages</bookmark_value>"
+msgid "<bookmark_value>line numbers</bookmark_value> <bookmark_value>text; line numbers</bookmark_value> <bookmark_value>paragraphs;line numbers</bookmark_value> <bookmark_value>lines of text; numbering</bookmark_value> <bookmark_value>numbering; lines</bookmark_value> <bookmark_value>numbers; line numbering</bookmark_value> <bookmark_value>marginal numbers on text pages</bookmark_value>"
msgstr ""
#. qVEcP
@@ -10609,13 +10645,13 @@ msgctxt ""
msgid "Select <emph>Show numbering</emph>."
msgstr ""
-#. tbCSy
+#. rCniA
#: numbering_lines.xhp
msgctxt ""
"numbering_lines.xhp\n"
"par_id3154248\n"
"help.text"
-msgid "Press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command+T</caseinline><defaultinline>F11</defaultinline></switchinline> to open the <emph>Styles</emph> window, and then click the <emph>Paragraph Styles</emph> icon."
+msgid "Press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command+T </caseinline><defaultinline>F11</defaultinline></switchinline> to open the <emph>Styles</emph> window, and then click the <emph>Paragraph Styles</emph> icon."
msgstr ""
#. Fwn8P
@@ -10780,13 +10816,13 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/06180000.xhp\" name=\"Tools - Line Numbering\">Tools - Line Numbering</link>"
msgstr ""
-#. PG4ys
+#. RZff6
#: numbering_lines.xhp
msgctxt ""
"numbering_lines.xhp\n"
"par_id3153960\n"
"help.text"
-msgid "Format - Paragraph - <embedvar href=\"text/swriter/01/05030800.xhp#outlinelisth1\"/>"
+msgid "Format - Paragraph - <link href=\"text/swriter/01/05030800.xhp\" name=\"Numbering_link\">Outline & List</link>"
msgstr ""
#. foq8S
@@ -10942,13 +10978,13 @@ msgctxt ""
msgid "Inserting and Deleting Page Breaks"
msgstr ""
-#. jCD3e
+#. 2xdB8
#: page_break.xhp
msgctxt ""
"page_break.xhp\n"
"bm_id3155183\n"
"help.text"
-msgid "<bookmark_value>page breaks; inserting and deleting</bookmark_value> <bookmark_value>inserting; page breaks</bookmark_value> <bookmark_value>deleting;page breaks</bookmark_value> <bookmark_value>pages; inserting/deleting page breaks</bookmark_value> <bookmark_value>manual page breaks</bookmark_value> <bookmark_value>tables;deleting page breaks before</bookmark_value>"
+msgid "<bookmark_value>inserting; page breaks</bookmark_value> <bookmark_value>deleting;page breaks</bookmark_value> <bookmark_value>pages; inserting/deleting page breaks</bookmark_value> <bookmark_value>manual page breaks</bookmark_value> <bookmark_value>tables;deleting page breaks before</bookmark_value>"
msgstr ""
#. eCabG
@@ -11050,13 +11086,22 @@ msgctxt ""
msgid "Clear the <emph>Break</emph> check box."
msgstr ""
-#. xYtzm
+#. TS5bX
#: page_break.xhp
msgctxt ""
"page_break.xhp\n"
-"par_id3154249\n"
+"hd_id151633462071702\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04010000.xhp\" name=\"Insert Break dialog\">Insert Break dialog</link>"
+msgid "To Quickly Switch Between Portrait and Landscape Page Layout"
+msgstr ""
+
+#. xLfpN
+#: page_break.xhp
+msgctxt ""
+"page_break.xhp\n"
+"par_id121633463140208\n"
+"help.text"
+msgid "Read the help page <link href=\"text/swriter/guide/pageorientation.xhp\" name=\"pageorientation_link\">Changing Page Orientation</link> to learn more about advanced configurations that can be defined concerning page orientation."
msgstr ""
#. 5GEmu
@@ -11707,13 +11752,13 @@ msgctxt ""
msgid "Changing Page Orientation (Landscape or Portrait)"
msgstr ""
-#. 3mWPy
+#. uj4MU
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"bm_id9683828\n"
"help.text"
-msgid "<bookmark_value>page styles;orientation/scope</bookmark_value> <bookmark_value>page formats; changing individual pages</bookmark_value> <bookmark_value>formatting; changing individual pages</bookmark_value> <bookmark_value>portrait and landscape</bookmark_value> <bookmark_value>landscape and portrait</bookmark_value> <bookmark_value>printing;portrait/landscape format</bookmark_value> <bookmark_value>orientation of pages</bookmark_value> <bookmark_value>paper orientation</bookmark_value> <bookmark_value>pages;orientation</bookmark_value> <bookmark_value>sideways orientation of pages</bookmark_value> <bookmark_value>scope of page styles</bookmark_value>"
+msgid "<bookmark_value>page styles;orientation/scope</bookmark_value> <bookmark_value>page formats; changing individual pages</bookmark_value> <bookmark_value>formatting; changing individual pages</bookmark_value> <bookmark_value>portrait and landscape</bookmark_value> <bookmark_value>landscape and portrait</bookmark_value> <bookmark_value>printing;portrait/landscape format</bookmark_value> <bookmark_value>orientation of pages</bookmark_value> <bookmark_value>paper orientation</bookmark_value> <bookmark_value>pages;orientation</bookmark_value> <bookmark_value>sideways orientation of pages</bookmark_value> <bookmark_value>scope of page styles</bookmark_value>"
msgstr ""
#. ETQJ7
@@ -11923,6 +11968,69 @@ msgctxt ""
msgid "Now you have defined a proper page style with the name \"My Landscape\". To apply the new style, double-click the \"My Landscape\" page style in the <emph>Styles</emph> window. All pages in the current scope of page styles will be changed. If you defined the \"next style\" to be a different style, only the first page of the current scope of page styles will be changed."
msgstr ""
+#. bfdGy
+#: pageorientation.xhp
+msgctxt ""
+"pageorientation.xhp\n"
+"hd_id151633462071702\n"
+"help.text"
+msgid "To Quickly Switch Between Portrait and Landscape Page Layout"
+msgstr ""
+
+#. EEW2C
+#: pageorientation.xhp
+msgctxt ""
+"pageorientation.xhp\n"
+"par_id51633462108943\n"
+"help.text"
+msgid "The default template provided by %PRODUCTNAME Writer offers several page layout styles, among which the <emph>Default Page Style</emph> has Portrait orientation and the <emph>Landscape</emph> style has landscape orientation."
+msgstr ""
+
+#. aMkMn
+#: pageorientation.xhp
+msgctxt ""
+"pageorientation.xhp\n"
+"par_id321633462254730\n"
+"help.text"
+msgid "These styles can be used to quickly switch between portrait and landscape orientation by inserting manual breaks and choosing the appropriate page styles as described below:"
+msgstr ""
+
+#. dQpYD
+#: pageorientation.xhp
+msgctxt ""
+"pageorientation.xhp\n"
+"par_id21633462303911\n"
+"help.text"
+msgid "Place the cursor where the page break is to be inserted."
+msgstr ""
+
+#. sTgyV
+#: pageorientation.xhp
+msgctxt ""
+"pageorientation.xhp\n"
+"par_id841633462305362\n"
+"help.text"
+msgid "Go to <menuitem>Insert - More Breaks - Manual Break</menuitem>. The <emph>Insert Break</emph> dialog will open."
+msgstr ""
+
+#. fpcnD
+#: pageorientation.xhp
+msgctxt ""
+"pageorientation.xhp\n"
+"par_id31633462305839\n"
+"help.text"
+msgid "Choose the option <emph>Page break</emph> and in the <emph>Page Style</emph> drop-down list choose the page style to be applied to the page after the break (Default Page Style, Landscape, etc)."
+msgstr ""
+
+#. z3nCn
+#: pageorientation.xhp
+msgctxt ""
+"pageorientation.xhp\n"
+"par_id51633462306574\n"
+"help.text"
+msgid "If the applied has to be changed again at a certain point in the document (for instance, to switch back from landscape to portrait orientation), place the cursor at this point and repeat the steps previously described."
+msgstr ""
+
#. JyqRA
#: pageorientation.xhp
msgctxt ""
@@ -18646,13 +18754,13 @@ msgctxt ""
msgid "Numbering and Paragraph Styles"
msgstr ""
-#. FfEcT
+#. 4rqSe
#: using_numbering.xhp
msgctxt ""
"using_numbering.xhp\n"
"bm_id3155174\n"
"help.text"
-msgid "<bookmark_value>numbering;manually/by styles</bookmark_value><bookmark_value>list styles</bookmark_value><bookmark_value>manual numbering in text</bookmark_value><bookmark_value>paragraph styles;numbering</bookmark_value>"
+msgid "<bookmark_value>numbering;manually/by styles</bookmark_value> <bookmark_value>list styles</bookmark_value> <bookmark_value>manual numbering in text</bookmark_value> <bookmark_value>paragraph styles;numbering</bookmark_value>"
msgstr ""
#. FizBP
@@ -18673,13 +18781,13 @@ msgctxt ""
msgid "You can apply numbering to a paragraph manually or with a paragraph style."
msgstr ""
-#. QEp87
+#. iJRcw
#: using_numbering.xhp
msgctxt ""
"using_numbering.xhp\n"
"par_id31616154131555\n"
"help.text"
-msgid "If you want numbered headings, use <menuitem>Tools - </menuitem><embedvar href=\"text/swriter/01/06060000.xhp#ChapNumh1\"/>, instead of numbering manually."
+msgid "If you want numbered headings, use <menuitem>Tools - </menuitem><link href=\"text/swriter/01/06060000.xhp\" name=\"chap_num_link\">Chapter Numbering</link>, instead of numbering manually."
msgstr ""
#. Dh8sW
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 a19998c8f8f..892a6c59a2e 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: 2021-10-04 19:52+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
"PO-Revision-Date: 2021-04-11 06:37+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/ar/>\n"
@@ -1146,6 +1146,16 @@ msgctxt ""
msgid "~Insert or Edit..."
msgstr ""
+#. dHdzP
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Commands..uno:InsertPivotTableNBLabel\n"
+"Label\n"
+"value.text"
+msgid "~Insert or Edit Pivot Table..."
+msgstr ""
+
#. vqC2u
#: CalcCommands.xcu
msgctxt ""
@@ -3156,15 +3166,15 @@ msgctxt ""
msgid "Merge Cells"
msgstr "دمج الخلايا"
-#. GGRNG
+#. APBqu
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:SplitCell\n"
"Label\n"
"value.text"
-msgid "Split Cells"
-msgstr "تقسيم الخلايا"
+msgid "Unmerge Cells"
+msgstr ""
#. qJGdH
#: CalcCommands.xcu
@@ -3176,6 +3186,16 @@ msgctxt ""
msgid "M~erge and Center Cells"
msgstr "~دمج الخلايا وتوسيطها"
+#. ET4vB
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Commands..uno:ToggleMergeCells\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Merge and center or unmerge cells depending on the current toggle state"
+msgstr ""
+
#. VZsps
#: CalcCommands.xcu
msgctxt ""
@@ -4356,15 +4376,15 @@ msgctxt ""
msgid "Cell ~Comments"
msgstr "الت~عليقات على الخلية"
-#. 3xhAF
+#. yqd4v
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:MergeCellsMenu\n"
"Label\n"
"value.text"
-msgid "M~erge Cells"
-msgstr "د~مج الخلايا"
+msgid "M~erge and Unmerge Cells"
+msgstr ""
#. G3E3Q
#: CalcCommands.xcu
@@ -18618,6 +18638,16 @@ msgctxt ""
msgid "Line Spacing: 1"
msgstr "تباعد الأسطر: ١"
+#. jmAwA
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:SpacePara115\n"
+"Label\n"
+"value.text"
+msgid "Line Spacing: 1.15"
+msgstr ""
+
#. q8wJt
#: GenericCommands.xcu
msgctxt ""
diff --git a/source/ar/sc/messages.po b/source/ar/sc/messages.po
index 9a1afde090d..d776d51efab 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: 2021-09-27 19:09+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
"PO-Revision-Date: 2021-04-11 06:37+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/ar/>\n"
@@ -27588,319 +27588,349 @@ msgctxt "pastespecial|paste_values_only|tooltip_text"
msgid "Values Only"
msgstr "القيم فقط"
+#. tDknw
+#: sc/uiconfig/scalc/ui/pastespecial.ui:141
+msgctxt "pastespecial|extended_tip|paste_values_only"
+msgid "Pastes numbers, text, dates and the results of formulas."
+msgstr ""
+
#. CTEKF
-#: sc/uiconfig/scalc/ui/pastespecial.ui:148
+#: sc/uiconfig/scalc/ui/pastespecial.ui:153
msgctxt "pastespecial|paste_values_formats|label"
msgid "Values & _Formats"
msgstr ""
#. 7GuDi
-#: sc/uiconfig/scalc/ui/pastespecial.ui:152
+#: sc/uiconfig/scalc/ui/pastespecial.ui:157
msgctxt "pastespecial|paste_values_formats|tooltip_text"
msgid "Values & Formats"
msgstr ""
+#. FjJPU
+#: sc/uiconfig/scalc/ui/pastespecial.ui:164
+msgctxt "pastespecial|extended_tip|paste_values_formats"
+msgid "Pastes cell values, formula results and formats applied to cells."
+msgstr ""
+
#. Rb8KR
-#: sc/uiconfig/scalc/ui/pastespecial.ui:166
+#: sc/uiconfig/scalc/ui/pastespecial.ui:176
msgctxt "pastespecial|paste_format|label"
msgid "Formats Onl_y"
msgstr ""
#. Cvyjn
-#: sc/uiconfig/scalc/ui/pastespecial.ui:170
+#: sc/uiconfig/scalc/ui/pastespecial.ui:180
msgctxt "pastespecial|paste_format|tooltip_text"
msgid "Formats Only"
msgstr ""
+#. Jhc4o
+#: sc/uiconfig/scalc/ui/pastespecial.ui:187
+msgctxt "pastespecial|extended_tip|paste_formats"
+msgid "Pastes only the formats from the source range without changing the values in the destination range."
+msgstr ""
+
#. YGdhH
-#: sc/uiconfig/scalc/ui/pastespecial.ui:184
+#: sc/uiconfig/scalc/ui/pastespecial.ui:199
msgctxt "pastespecial|paste_transpose|label"
msgid "_Transpose All"
msgstr ""
#. sbLGi
-#: sc/uiconfig/scalc/ui/pastespecial.ui:188
+#: sc/uiconfig/scalc/ui/pastespecial.ui:203
msgctxt "pastespecial|paste_transpose|tooltip_text"
msgid "Transpose All"
msgstr ""
+#. 3BC6U
+#: sc/uiconfig/scalc/ui/pastespecial.ui:210
+msgctxt "pastespecial|extended_tip|paste_transpose"
+msgid "Pastes cell contents transposed, hence columns are converted to rows."
+msgstr ""
+
#. 4ETCT
-#: sc/uiconfig/scalc/ui/pastespecial.ui:209
+#: sc/uiconfig/scalc/ui/pastespecial.ui:229
msgctxt "pastespecial|cbImmediately"
msgid "_Run immediately"
msgstr ""
+#. 7a9JE
+#: sc/uiconfig/scalc/ui/pastespecial.ui:238
+msgctxt "pastespecial|extended_tip|cbImmediately"
+msgid "Check this option to run the preset immediately. Uncheck it to manipulate the options before clicking OK."
+msgstr ""
+
#. YD43i
-#: sc/uiconfig/scalc/ui/pastespecial.ui:229
+#: sc/uiconfig/scalc/ui/pastespecial.ui:254
msgctxt "pastespecial|frPresets"
msgid "Presets"
msgstr ""
#. g6DfA
-#: sc/uiconfig/scalc/ui/pastespecial.ui:265
+#: sc/uiconfig/scalc/ui/pastespecial.ui:290
msgctxt "pastespecial|paste_all"
msgid "_All"
msgstr ""
#. Labin
-#: sc/uiconfig/scalc/ui/pastespecial.ui:273
+#: sc/uiconfig/scalc/ui/pastespecial.ui:298
msgctxt "pastespecial|extended_tip|paste_all"
msgid "Pastes all cell contents, comments, formats, and objects into the current document."
msgstr ""
#. qzFbg
-#: sc/uiconfig/scalc/ui/pastespecial.ui:284
+#: sc/uiconfig/scalc/ui/pastespecial.ui:309
msgctxt "pastespecial|numbers"
msgid "_Numbers"
msgstr "الأر_قام"
#. SCVEu
-#: sc/uiconfig/scalc/ui/pastespecial.ui:292
+#: sc/uiconfig/scalc/ui/pastespecial.ui:317
msgctxt "pastespecial|extended_tip|numbers"
msgid "Inserts cells containing numbers."
msgstr ""
#. BSEWE
-#: sc/uiconfig/scalc/ui/pastespecial.ui:303
+#: sc/uiconfig/scalc/ui/pastespecial.ui:328
#, fuzzy
msgctxt "pastespecial|text"
msgid "Te_xt"
msgstr "ال_نص"
#. JWDk5
-#: sc/uiconfig/scalc/ui/pastespecial.ui:311
+#: sc/uiconfig/scalc/ui/pastespecial.ui:336
msgctxt "pastespecial|extended_tip|text"
msgid "Inserts cells containing text."
msgstr ""
#. DBaJD
-#: sc/uiconfig/scalc/ui/pastespecial.ui:322
+#: sc/uiconfig/scalc/ui/pastespecial.ui:347
msgctxt "pastespecial|datetime"
msgid "_Date & time"
msgstr "ال_تاريخ والوقت"
#. jq6Md
-#: sc/uiconfig/scalc/ui/pastespecial.ui:330
+#: sc/uiconfig/scalc/ui/pastespecial.ui:355
msgctxt "pastespecial|extended_tip|datetime"
msgid "Inserts cells containing date and time values."
msgstr ""
#. aHXF8
-#: sc/uiconfig/scalc/ui/pastespecial.ui:341
+#: sc/uiconfig/scalc/ui/pastespecial.ui:366
msgctxt "pastespecial|formats"
msgid "For_mats"
msgstr "التن_سيقات"
#. ehyEf
-#: sc/uiconfig/scalc/ui/pastespecial.ui:349
+#: sc/uiconfig/scalc/ui/pastespecial.ui:374
msgctxt "pastespecial|extended_tip|formats"
msgid "Inserts cell format attributes."
msgstr ""
#. NT4Am
-#: sc/uiconfig/scalc/ui/pastespecial.ui:360
+#: sc/uiconfig/scalc/ui/pastespecial.ui:385
msgctxt "pastespecial|comments"
msgid "_Comments"
msgstr "_التعليقات"
#. 3uP7i
-#: sc/uiconfig/scalc/ui/pastespecial.ui:368
+#: sc/uiconfig/scalc/ui/pastespecial.ui:393
msgctxt "pastespecial|extended_tip|comments"
msgid "Inserts comments that are attached to cells. If you want to add the comments to the existing cell content, select the \"Add\" operation."
msgstr ""
#. YZQBh
-#: sc/uiconfig/scalc/ui/pastespecial.ui:379
+#: sc/uiconfig/scalc/ui/pastespecial.ui:404
msgctxt "pastespecial|objects"
msgid "Ob_jects"
msgstr ""
#. DZsnr
-#: sc/uiconfig/scalc/ui/pastespecial.ui:387
+#: sc/uiconfig/scalc/ui/pastespecial.ui:412
msgctxt "pastespecial|extended_tip|objects"
msgid "Inserts objects contained within the selected cell range. These can be OLE objects, chart objects, or drawing objects."
msgstr ""
#. jrjYA
-#: sc/uiconfig/scalc/ui/pastespecial.ui:398
+#: sc/uiconfig/scalc/ui/pastespecial.ui:423
msgctxt "pastespecial|formulas"
msgid "F_ormulas"
msgstr ""
#. Na5Ba
-#: sc/uiconfig/scalc/ui/pastespecial.ui:406
+#: sc/uiconfig/scalc/ui/pastespecial.ui:431
msgctxt "pastespecial|extended_tip|formulas"
msgid "Inserts cells containing formulae."
msgstr ""
#. UtpWA
-#: sc/uiconfig/scalc/ui/pastespecial.ui:421
+#: sc/uiconfig/scalc/ui/pastespecial.ui:446
msgctxt "pastespecial|label1"
msgid "Paste"
msgstr ""
#. fonBJ
-#: sc/uiconfig/scalc/ui/pastespecial.ui:452
+#: sc/uiconfig/scalc/ui/pastespecial.ui:477
msgctxt "pastespecial|no_shift"
msgid "Don't sh_ift"
msgstr ""
#. q3Xv3
-#: sc/uiconfig/scalc/ui/pastespecial.ui:461
+#: sc/uiconfig/scalc/ui/pastespecial.ui:486
msgctxt "pastespecial|extended_tip|no_shift"
msgid "Inserted cells replace the target cells."
msgstr ""
#. RuiU6
-#: sc/uiconfig/scalc/ui/pastespecial.ui:473
+#: sc/uiconfig/scalc/ui/pastespecial.ui:498
msgctxt "pastespecial|move_down"
msgid "_Down"
msgstr ""
#. BNALN
-#: sc/uiconfig/scalc/ui/pastespecial.ui:482
+#: sc/uiconfig/scalc/ui/pastespecial.ui:507
msgctxt "pastespecial|extended_tip|move_down"
msgid "Target cells are shifted downward when you insert cells from the clipboard."
msgstr ""
#. obSAt
-#: sc/uiconfig/scalc/ui/pastespecial.ui:494
+#: sc/uiconfig/scalc/ui/pastespecial.ui:519
#, fuzzy
msgctxt "pastespecial|move_right"
msgid "_Right"
msgstr "يمينًا"
#. GEFe7
-#: sc/uiconfig/scalc/ui/pastespecial.ui:503
+#: sc/uiconfig/scalc/ui/pastespecial.ui:528
msgctxt "pastespecial|extended_tip|move_right"
msgid "Target cells are shifted to the right when you insert cells from the clipboard."
msgstr ""
#. fzYTm
-#: sc/uiconfig/scalc/ui/pastespecial.ui:519
+#: sc/uiconfig/scalc/ui/pastespecial.ui:544
msgctxt "pastespecial|label4"
msgid "Shift Cells"
msgstr ""
#. nuJd9
-#: sc/uiconfig/scalc/ui/pastespecial.ui:563
+#: sc/uiconfig/scalc/ui/pastespecial.ui:588
msgctxt "pastespecial|link"
msgid "As _Link"
msgstr ""
#. Bg9dc
-#: sc/uiconfig/scalc/ui/pastespecial.ui:571
+#: sc/uiconfig/scalc/ui/pastespecial.ui:596
msgctxt "pastespecial|extended_tip|link"
msgid "Inserts the cell range as a link, so that changes made to the cells in the source file are updated in the target file. To ensure that changes made to empty cells in the source file are updated in the target file, ensure that the \"Paste All\" option is also selected."
msgstr ""
#. qt6LA
-#: sc/uiconfig/scalc/ui/pastespecial.ui:582
+#: sc/uiconfig/scalc/ui/pastespecial.ui:607
msgctxt "pastespecial|transpose"
msgid "Trans_pose"
msgstr ""
#. P3eE4
-#: sc/uiconfig/scalc/ui/pastespecial.ui:590
+#: sc/uiconfig/scalc/ui/pastespecial.ui:615
msgctxt "pastespecial|extended_tip|transpose"
msgid "The rows of the range in the clipboard are pasted to become columns of the output range. The columns of the range in the clipboard are pasted to become rows."
msgstr ""
#. eG52z
-#: sc/uiconfig/scalc/ui/pastespecial.ui:601
+#: sc/uiconfig/scalc/ui/pastespecial.ui:626
msgctxt "pastespecial|skip_empty"
msgid "_Skip empty cells"
msgstr ""
#. BodqB
-#: sc/uiconfig/scalc/ui/pastespecial.ui:605
+#: sc/uiconfig/scalc/ui/pastespecial.ui:630
msgctxt "pastespecial|skip_empty"
msgid "If enabled, blank cells in source will not override the target."
msgstr ""
#. u2Cms
-#: sc/uiconfig/scalc/ui/pastespecial.ui:610
+#: sc/uiconfig/scalc/ui/pastespecial.ui:635
msgctxt "pastespecial|extended_tip|skip_empty"
msgid "Empty cells from the clipboard do not replace target cells. If you use this option in conjunction with the \"Multiply\" or the \"Divide\" operation, the operation is not applied to the target cell of an empty cell in the clipboard."
msgstr ""
#. jTFAJ
-#: sc/uiconfig/scalc/ui/pastespecial.ui:625
+#: sc/uiconfig/scalc/ui/pastespecial.ui:650
msgctxt "pastespecial|OptionsFrame"
msgid "Options"
msgstr ""
#. nJiy4
-#: sc/uiconfig/scalc/ui/pastespecial.ui:656
+#: sc/uiconfig/scalc/ui/pastespecial.ui:681
#, fuzzy
msgctxt "pastespecial|none"
msgid "Non_e"
msgstr "ملاحظة"
#. 7GKDG
-#: sc/uiconfig/scalc/ui/pastespecial.ui:665
+#: sc/uiconfig/scalc/ui/pastespecial.ui:690
msgctxt "pastespecial|extended_tip|none"
msgid "Does not apply an operation when you insert the cell range from the clipboard. The contents of the clipboard will replace existing cell contents."
msgstr ""
#. CEsbt
-#: sc/uiconfig/scalc/ui/pastespecial.ui:677
+#: sc/uiconfig/scalc/ui/pastespecial.ui:702
msgctxt "pastespecial|add"
msgid "_Add"
msgstr "أ_ضف"
#. bNyh2
-#: sc/uiconfig/scalc/ui/pastespecial.ui:686
+#: sc/uiconfig/scalc/ui/pastespecial.ui:711
msgctxt "pastespecial|extended_tip|add"
msgid "Adds the values in the clipboard cells to the values in the target cells. Also, if the clipboard only contains comments, adds the comments to the target cells."
msgstr ""
#. iFTvh
-#: sc/uiconfig/scalc/ui/pastespecial.ui:698
+#: sc/uiconfig/scalc/ui/pastespecial.ui:723
#, fuzzy
msgctxt "pastespecial|subtract"
msgid "_Subtract"
msgstr "ا~طرح"
#. 2SKbT
-#: sc/uiconfig/scalc/ui/pastespecial.ui:707
+#: sc/uiconfig/scalc/ui/pastespecial.ui:732
msgctxt "pastespecial|extended_tip|subtract"
msgid "Subtracts the values in the clipboard cells from the values in the target cells."
msgstr ""
#. zdDUB
-#: sc/uiconfig/scalc/ui/pastespecial.ui:719
+#: sc/uiconfig/scalc/ui/pastespecial.ui:744
msgctxt "pastespecial|multiply"
msgid "_Multiply"
msgstr ""
#. jkRDm
-#: sc/uiconfig/scalc/ui/pastespecial.ui:728
+#: sc/uiconfig/scalc/ui/pastespecial.ui:753
msgctxt "pastespecial|extended_tip|multiply"
msgid "Multiplies the values in the clipboard cells with the values in the target cells."
msgstr ""
#. 7Nd8u
-#: sc/uiconfig/scalc/ui/pastespecial.ui:740
+#: sc/uiconfig/scalc/ui/pastespecial.ui:765
msgctxt "pastespecial|divide"
msgid "_Divide"
msgstr ""
#. 9VKdS
-#: sc/uiconfig/scalc/ui/pastespecial.ui:749
+#: sc/uiconfig/scalc/ui/pastespecial.ui:774
msgctxt "pastespecial|extended_tip|divide"
msgid "Divides the values in the target cells by the values in the clipboard cells."
msgstr ""
#. 9otLM
-#: sc/uiconfig/scalc/ui/pastespecial.ui:765
+#: sc/uiconfig/scalc/ui/pastespecial.ui:790
#, fuzzy
msgctxt "pastespecial|label2"
msgid "Operations"
msgstr "العمليات:"
#. ypkML
-#: sc/uiconfig/scalc/ui/pastespecial.ui:800
+#: sc/uiconfig/scalc/ui/pastespecial.ui:825
msgctxt "pastespecial|extended_tip|PasteSpecial"
msgid "Inserts the contents of the clipboard into the current file in a format that you can specify."
msgstr ""
diff --git a/source/ar/sd/messages.po b/source/ar/sd/messages.po
index 6b19b49feb0..6b94523e914 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: 2021-09-14 12:01+0200\n"
+"POT-Creation-Date: 2021-10-20 13:09+0200\n"
"PO-Revision-Date: 2021-06-27 17:05+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/ar/>\n"
@@ -5005,242 +5005,253 @@ msgid "Text Animation"
msgstr "حركة ال_نص:"
#. FcztB
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:132
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:140
msgctxt "customanimationspanel|extended_tip|custom_animation_list"
msgid "The animation list displays all animations for the current slide."
msgstr ""
-#. KFRTW
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:163
+#. VBxbo
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:171
msgctxt "customanimationspanel|STR_CUSTOMANIMATION_LIST_HELPTEXT"
-msgid "First select the slide element and then click 'Add...' to add an animation effect."
+msgid "First select the slide element and then click 'Add' to add an animation effect."
+msgstr ""
+
+#. wWeBD
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:215
+msgctxt "customanimationspanel|lbEffect"
+msgid "Effects"
+msgstr ""
+
+#. WGWNA
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:236
+msgctxt "customanimationspanel|add"
+msgid "_Add"
msgstr ""
#. nRqGR
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:195
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:240
msgctxt "customanimationspanel|add_effect|tooltip_text"
msgid "Add Effect"
msgstr ""
#. CskWF
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:199
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:245
msgctxt "customanimationspanel|extended_tip|add_effect"
msgid "Adds another animation effect for the selected object on the slide."
msgstr ""
#. vitMM
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:214
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:260
msgctxt "customanimationspanel|remove_effect|tooltip_text"
msgid "Remove Effect"
msgstr "أزل التأثير"
#. pvCFG
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:218
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:264
msgctxt "customanimationspanel|extended_tip|remove_effect"
msgid "Removes the selected animation effects from the animation list."
msgstr ""
#. 3wHRp
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:233
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:279
msgctxt "customanimationspanel|move_up|tooltip_text"
msgid "Move Up"
msgstr "انقل لأعلى"
#. buR2G
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:237
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:283
msgctxt "customanimationspanel|extended_tip|move_up"
msgid "Click one of the buttons to move the selected animation effect up or down in the list."
msgstr ""
#. jEksa
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:252
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:298
msgctxt "customanimationspanel|move_down|tooltip_text"
msgid "Move Down"
msgstr "انقل لأسفل"
#. x82hp
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:256
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:302
msgctxt "customanimationspanel|extended_tip|move_down"
msgid "Click one of the buttons to move the selected animation effect up or down in the list."
msgstr ""
#. wCc89
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:285
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:324
msgctxt "customanimationspanel|categorylabel"
msgid "Category:"
msgstr "الفئة:"
-#. EHRAp
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:299
-msgctxt "customanimationspanel|effectlabel"
-msgid "Effect:"
-msgstr "التأثير:"
-
#. jQcZZ
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:314
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:338
msgctxt "customanimationspanel|categorylb"
msgid "Entrance"
msgstr "دخول"
#. 2qTvP
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:315
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:339
msgctxt "customanimationspanel|categorylb"
msgid "Emphasis"
msgstr "تأكيد"
#. TZeh8
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:316
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:340
msgctxt "customanimationspanel|categorylb"
msgid "Exit"
msgstr "خروج"
#. N8Xvu
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:317
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:341
msgctxt "customanimationspanel|categorylb"
msgid "Motion Paths"
msgstr "مسارات الحركة"
#. qDYCQ
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:318
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:342
msgctxt "customanimationspanel|categorylb"
msgid "Misc Effects"
msgstr "تأثيرات متنوعة"
#. ozsMp
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:322
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:346
msgctxt "customanimationspanel|extended_tip|categorylb"
msgid "Select an animation effect category."
msgstr ""
+#. EHRAp
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:363
+msgctxt "customanimationspanel|effectlabel"
+msgid "Effect:"
+msgstr "التأثير:"
+
#. MEJrn
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:366
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:412
msgctxt "customanimationspanel|extended_tip|effect_list"
msgid "Select an animation effect."
msgstr ""
+#. LGuGy
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:428
+msgctxt "customanimationspanel|effect_label"
+msgid "Options"
+msgstr ""
+
#. GDYfC
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:403
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:445
msgctxt "customanimationspanel|start_effect"
msgid "_Start:"
msgstr "الب_داية:"
-#. 8AUq9
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:417
-msgctxt "customanimationspanel|effect_property"
-msgid "_Direction:"
-msgstr "الات_جاه:"
-
-#. QWndb
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:431
-msgctxt "customanimationspanel|effect_duration"
-msgid "D_uration:"
-msgstr "الم_دة:"
-
#. DhPiJ
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:446
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:459
msgctxt "customanimationspanel|start_effect_list"
msgid "On click"
msgstr "عند النقر"
#. FNFGr
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:447
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:460
msgctxt "customanimationspanel|start_effect_list"
msgid "With previous"
msgstr "مع السابق"
#. dCfj4
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:448
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:461
msgctxt "customanimationspanel|start_effect_list"
msgid "After previous"
msgstr "بعد السابق"
#. iboET
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:452
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:465
msgctxt "customanimationspanel|extended_tip|start_effect_list"
msgid "Displays when the selected animation effect should be started."
msgstr ""
+#. 8AUq9
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:479
+msgctxt "customanimationspanel|effect_property"
+msgid "_Direction:"
+msgstr "الات_جاه:"
+
#. mMYic
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:481
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:492
msgctxt "customanimationspanel|more_properties|tooltip_text"
msgid "Options"
msgstr "خيارات"
#. PE6vL
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:486
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:497
msgctxt "customanimationspanel|extended_tip|more_properties"
msgid "Specifies additional properties for the selected element in the Custom Animations pane."
msgstr ""
+#. QWndb
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:511
+msgctxt "customanimationspanel|effect_duration"
+msgid "D_uration:"
+msgstr "الم_دة:"
+
#. Ewipq
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:505
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:529
msgctxt "customanimationspanel|extended_tip|anim_duration"
msgid "Specifies the duration of the selected animation effect."
msgstr ""
#. 2cGAb
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:519
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:543
msgctxt "customanimationspanel|delay_label"
msgid "_Delay:"
msgstr "ال_تأخير:"
#. g6bR3
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:538
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:561
msgctxt "customanimationspanel|extended_tip|delay_value"
msgid "The animation starts delayed by this amount of time."
msgstr ""
-#. FgkKZ
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:562
-#, fuzzy
-msgctxt "customanimationspanel|effect_label"
-msgid "Effect"
-msgstr "التأثير:"
-
#. J2bC5
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:600
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:583
msgctxt "customanimationspanel|auto_preview"
msgid "Automatic Preview"
msgstr "معاينة آلية"
#. GufhE
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:608
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:591
msgctxt "customanimationspanel|extended_tip|auto_preview"
msgid "Select to preview new or edited effects on the slide while you assign them."
msgstr ""
#. KP8UC
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:620
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:603
msgctxt "customanimationspanel|play"
msgid "Play"
msgstr "شغّل"
#. Bn67v
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:624
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:607
msgctxt "customanimationspanel|play|tooltip_text"
msgid "Preview Effect"
msgstr "عاين التأثير"
#. sUTTG
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:631
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:614
msgctxt "customanimationspanel|extended_tip|play"
msgid "Plays the selected animation effect in the preview."
msgstr ""
#. LBEzG
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:658
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:626
msgctxt "customanimationspanel|box1_label"
msgid "Animation Deck"
msgstr ""
#. bUvjt
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:671
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:638
msgctxt "customanimationspanel|custom_animation_list_label"
msgid "Animation List"
msgstr ""
#. F7AZL
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:690
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:694
msgctxt "customanimationspanel|extended_tip|CustomAnimationsPanel"
msgid "Assigns effects to selected objects."
msgstr ""
diff --git a/source/ar/sfx2/messages.po b/source/ar/sfx2/messages.po
index 2be960f77c7..789b8b402cf 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: 2021-09-27 19:09+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
"PO-Revision-Date: 2021-06-27 17:05+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/ar/>\n"
@@ -3069,147 +3069,147 @@ msgid "Contains descriptive information about the document."
msgstr ""
#. tC2rt
-#: sfx2/uiconfig/ui/developmenttool.ui:96
+#: sfx2/uiconfig/ui/developmenttool.ui:117
msgctxt "developmenttool|dom_current_selection_toggle-tooltip"
msgid "Current Selection In Document"
msgstr ""
#. Po2S3
-#: sfx2/uiconfig/ui/developmenttool.ui:97
+#: sfx2/uiconfig/ui/developmenttool.ui:118
msgctxt "developmenttool|dom_current_selection_toggle"
msgid "Current Selection"
msgstr ""
#. eB6NR
-#: sfx2/uiconfig/ui/developmenttool.ui:109
+#: sfx2/uiconfig/ui/developmenttool.ui:130
msgctxt "developmenttool|dom_refresh_button-tooltip"
msgid "Refresh Document Model Tree View"
msgstr ""
#. FD2yt
-#: sfx2/uiconfig/ui/developmenttool.ui:110
+#: sfx2/uiconfig/ui/developmenttool.ui:131
msgctxt "developmenttool|dom_refresh_button"
msgid "Refresh"
msgstr ""
#. qVgcX
-#: sfx2/uiconfig/ui/developmenttool.ui:155
+#: sfx2/uiconfig/ui/developmenttool.ui:177
msgctxt "developmenttool|object"
msgid "Object"
msgstr ""
#. x6GLB
-#: sfx2/uiconfig/ui/developmenttool.ui:203
+#: sfx2/uiconfig/ui/developmenttool.ui:226
msgctxt "developmenttool|tooltip-back"
msgid "Back"
msgstr ""
#. SinPk
-#: sfx2/uiconfig/ui/developmenttool.ui:204
+#: sfx2/uiconfig/ui/developmenttool.ui:227
msgctxt "developmenttool|back"
msgid "Back"
msgstr ""
#. 4CBb3
-#: sfx2/uiconfig/ui/developmenttool.ui:217
+#: sfx2/uiconfig/ui/developmenttool.ui:240
msgctxt "developmenttool|tooltip-inspect"
msgid "Inspect"
msgstr ""
#. vCciB
-#: sfx2/uiconfig/ui/developmenttool.ui:218
+#: sfx2/uiconfig/ui/developmenttool.ui:241
msgctxt "developmenttool|inspect"
msgid "Inspect"
msgstr ""
#. nFMXe
-#: sfx2/uiconfig/ui/developmenttool.ui:231
+#: sfx2/uiconfig/ui/developmenttool.ui:254
msgctxt "developmenttool|tooltip-refresh"
msgid "Refresh"
msgstr ""
#. CFuvW
-#: sfx2/uiconfig/ui/developmenttool.ui:232
+#: sfx2/uiconfig/ui/developmenttool.ui:255
msgctxt "developmenttool|refresh"
msgid "Refresh"
msgstr ""
#. 6gFmn
-#: sfx2/uiconfig/ui/developmenttool.ui:256
+#: sfx2/uiconfig/ui/developmenttool.ui:278
msgctxt "developmenttool|classname"
msgid "Class name:"
msgstr ""
#. a9j7f
-#: sfx2/uiconfig/ui/developmenttool.ui:319
-#: sfx2/uiconfig/ui/developmenttool.ui:364
-#: sfx2/uiconfig/ui/developmenttool.ui:418
+#: sfx2/uiconfig/ui/developmenttool.ui:343
+#: sfx2/uiconfig/ui/developmenttool.ui:392
+#: sfx2/uiconfig/ui/developmenttool.ui:450
msgctxt "developmenttool|name"
msgid "Name"
msgstr ""
#. VFqAa
-#: sfx2/uiconfig/ui/developmenttool.ui:338
+#: sfx2/uiconfig/ui/developmenttool.ui:363
msgctxt "developmenttool|interfaces"
msgid "Interfaces"
msgstr ""
#. iCdWe
-#: sfx2/uiconfig/ui/developmenttool.ui:386
+#: sfx2/uiconfig/ui/developmenttool.ui:415
msgctxt "developmenttool|services"
msgid "Services"
msgstr ""
#. H7pYE
-#: sfx2/uiconfig/ui/developmenttool.ui:432
+#: sfx2/uiconfig/ui/developmenttool.ui:465
msgctxt "developmenttool|value"
msgid "Value"
msgstr ""
#. Jjkqh
-#: sfx2/uiconfig/ui/developmenttool.ui:446
+#: sfx2/uiconfig/ui/developmenttool.ui:479
msgctxt "developmenttool|type"
msgid "Type"
msgstr "النوع"
#. zpXuY
-#: sfx2/uiconfig/ui/developmenttool.ui:460
+#: sfx2/uiconfig/ui/developmenttool.ui:493
msgctxt "developmenttool|info"
msgid "Info"
msgstr ""
#. AUktw
-#: sfx2/uiconfig/ui/developmenttool.ui:511
+#: sfx2/uiconfig/ui/developmenttool.ui:544
msgctxt "developmenttool|properties"
msgid "Properties"
msgstr ""
#. wGJtn
-#: sfx2/uiconfig/ui/developmenttool.ui:538
+#: sfx2/uiconfig/ui/developmenttool.ui:574
msgctxt "developmenttool|method"
msgid "Method"
msgstr ""
#. EnGfg
-#: sfx2/uiconfig/ui/developmenttool.ui:552
+#: sfx2/uiconfig/ui/developmenttool.ui:589
msgctxt "developmenttool|returntype"
msgid "Return Type"
msgstr ""
#. AKnSa
-#: sfx2/uiconfig/ui/developmenttool.ui:566
+#: sfx2/uiconfig/ui/developmenttool.ui:603
msgctxt "developmenttool|parameters"
msgid "Parameters"
msgstr ""
#. tmttq
-#: sfx2/uiconfig/ui/developmenttool.ui:580
+#: sfx2/uiconfig/ui/developmenttool.ui:617
msgctxt "developmenttool|implementation_class"
msgid "Implementation Class"
msgstr ""
#. Q2CBK
-#: sfx2/uiconfig/ui/developmenttool.ui:602
+#: sfx2/uiconfig/ui/developmenttool.ui:639
msgctxt "developmenttool|methods"
msgid "Methods"
msgstr ""
@@ -4486,7 +4486,7 @@ msgid "Do_n’t Save"
msgstr ""
#. dzVqL
-#: sfx2/uiconfig/ui/querysavedialog.ui:53
+#: sfx2/uiconfig/ui/querysavedialog.ui:56
msgctxt "querysavedialog|save"
msgid "_Save"
msgstr ""
diff --git a/source/ar/svtools/messages.po b/source/ar/svtools/messages.po
index deb053f2ba8..609a7cdecf8 100644
--- a/source/ar/svtools/messages.po
+++ b/source/ar/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-20 13:03+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
"PO-Revision-Date: 2021-03-14 21:37+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/ar/>\n"
@@ -5020,6 +5020,12 @@ msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Klingon"
msgstr ""
+#. xFYhC
+#: svtools/inc/langtab.hrc:437
+msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
+msgid "English (Israel)"
+msgstr ""
+
#. fXSja
#: svtools/uiconfig/ui/addresstemplatedialog.ui:8
msgctxt "addresstemplatedialog|AddressTemplateDialog"
@@ -5123,355 +5129,355 @@ msgid "Modify dimensions"
msgstr ""
#. pyd6J
-#: svtools/uiconfig/ui/graphicexport.ui:146
+#: svtools/uiconfig/ui/graphicexport.ui:145
msgctxt "graphicexport|label5"
msgid "Width:"
msgstr "العرض:"
#. drQDY
-#: svtools/uiconfig/ui/graphicexport.ui:160
+#: svtools/uiconfig/ui/graphicexport.ui:159
msgctxt "graphicexport|label6"
msgid "Height:"
msgstr "الارتفاع:"
#. exCyd
-#: svtools/uiconfig/ui/graphicexport.ui:171
+#: svtools/uiconfig/ui/graphicexport.ui:170
msgctxt "graphicexport|modifyresolutioncb"
msgid "Modify resolution"
msgstr ""
#. ZWxGB
-#: svtools/uiconfig/ui/graphicexport.ui:189
+#: svtools/uiconfig/ui/graphicexport.ui:188
msgctxt "graphicexport|resolutionft"
msgid "Resolution:"
msgstr "الميز:"
#. 2rwEJ
-#: svtools/uiconfig/ui/graphicexport.ui:209
+#: svtools/uiconfig/ui/graphicexport.ui:208
msgctxt "graphicexport|extended_tip|widthmf"
msgid "Specifies the measurement units."
msgstr ""
#. BPaB3
-#: svtools/uiconfig/ui/graphicexport.ui:229
+#: svtools/uiconfig/ui/graphicexport.ui:228
msgctxt "graphicexport|extended_tip|heightmf"
msgid "Specifies the height."
msgstr ""
#. Da3fv
-#: svtools/uiconfig/ui/graphicexport.ui:249
+#: svtools/uiconfig/ui/graphicexport.ui:248
msgctxt "graphicexport|extended_tip|resolutionmf"
msgid "Enter the image resolution. Select the measurement units from the list box."
msgstr ""
#. S9aHs
-#: svtools/uiconfig/ui/graphicexport.ui:263
+#: svtools/uiconfig/ui/graphicexport.ui:262
msgctxt "graphicexport|liststore2"
msgid "inches"
msgstr "بوصات"
#. dCstP
-#: svtools/uiconfig/ui/graphicexport.ui:264
+#: svtools/uiconfig/ui/graphicexport.ui:263
msgctxt "graphicexport|liststore2"
msgid "cm"
msgstr "سم"
#. X5dLV
-#: svtools/uiconfig/ui/graphicexport.ui:265
+#: svtools/uiconfig/ui/graphicexport.ui:264
msgctxt "graphicexport|liststore2"
msgid "mm"
msgstr "مم"
#. 6vWVJ
-#: svtools/uiconfig/ui/graphicexport.ui:266
+#: svtools/uiconfig/ui/graphicexport.ui:265
msgctxt "graphicexport|liststore2"
msgid "points"
msgstr "نقاط"
#. ZqyAj
-#: svtools/uiconfig/ui/graphicexport.ui:267
+#: svtools/uiconfig/ui/graphicexport.ui:266
msgctxt "graphicexport|liststore2"
msgid "pixels"
msgstr "بكسلات"
#. QL8mE
-#: svtools/uiconfig/ui/graphicexport.ui:271
+#: svtools/uiconfig/ui/graphicexport.ui:270
msgctxt "graphicexport|extended_tip|widthlb"
msgid "Specifies the width."
msgstr ""
#. kYLvv
-#: svtools/uiconfig/ui/graphicexport.ui:285
+#: svtools/uiconfig/ui/graphicexport.ui:284
msgctxt "graphicexport|liststore1"
msgid "pixels/cm"
msgstr "بكسلات/سم"
#. zjmFd
-#: svtools/uiconfig/ui/graphicexport.ui:286
+#: svtools/uiconfig/ui/graphicexport.ui:285
msgctxt "graphicexport|liststore1"
msgid "pixels/inch"
msgstr "بكسلات/بوصة"
#. iMZW3
-#: svtools/uiconfig/ui/graphicexport.ui:287
+#: svtools/uiconfig/ui/graphicexport.ui:286
msgctxt "graphicexport|liststore1"
msgid "pixels/meter"
msgstr "بكسلات/متر"
#. ND5ki
-#: svtools/uiconfig/ui/graphicexport.ui:291
+#: svtools/uiconfig/ui/graphicexport.ui:290
msgctxt "graphicexport|extended_tip|resolutionlb"
msgid "Enter the image resolution. Select the measurement units from the list box."
msgstr ""
#. ENaqm
-#: svtools/uiconfig/ui/graphicexport.ui:309
+#: svtools/uiconfig/ui/graphicexport.ui:308
msgctxt "graphicexport|label1"
msgid "Size"
msgstr "الحجم"
#. Dc5fy
-#: svtools/uiconfig/ui/graphicexport.ui:335
+#: svtools/uiconfig/ui/graphicexport.ui:334
msgctxt "graphicexport|extended_tip|colordepthlb"
msgid "Select the color depth from 8 bit grayscale or 24 bit true color."
msgstr ""
#. hFaPC
-#: svtools/uiconfig/ui/graphicexport.ui:344
+#: svtools/uiconfig/ui/graphicexport.ui:343
msgctxt "graphicexport|label2"
msgid "Color Depth"
msgstr "عمق اللون"
#. 5v8Jn
-#: svtools/uiconfig/ui/graphicexport.ui:380
+#: svtools/uiconfig/ui/graphicexport.ui:379
msgctxt "graphicexport|extended_tip|compressionjpgnf"
msgid "Sets the quality for the export. Choose from a low quality with minimal file size, up to a high quality and big file size."
msgstr ""
#. Tk5y2
-#: svtools/uiconfig/ui/graphicexport.ui:409
+#: svtools/uiconfig/ui/graphicexport.ui:408
msgctxt "graphicexport|label9"
msgid "Quality"
msgstr "الجودة"
#. AHkNV
-#: svtools/uiconfig/ui/graphicexport.ui:445
+#: svtools/uiconfig/ui/graphicexport.ui:444
msgctxt "graphicexport|extended_tip|compressionpngnf"
msgid "Sets the compression for the export. A high compression means a smaller, but slower to load image."
msgstr ""
#. f4LYz
-#: svtools/uiconfig/ui/graphicexport.ui:474
+#: svtools/uiconfig/ui/graphicexport.ui:473
msgctxt "graphicexport|label"
msgid "Compression"
msgstr "الضغط"
#. hQadL
-#: svtools/uiconfig/ui/graphicexport.ui:494
+#: svtools/uiconfig/ui/graphicexport.ui:493
msgctxt "graphicexport|rlecb"
msgid "RLE encoding"
msgstr "ترميز RLE"
#. DqpKW
-#: svtools/uiconfig/ui/graphicexport.ui:505
+#: svtools/uiconfig/ui/graphicexport.ui:504
msgctxt "graphicexport|extended_tip|rlecb"
msgid "Applies RLE (Run Length Encoding) to the BMP graphics."
msgstr ""
#. EA7BF
-#: svtools/uiconfig/ui/graphicexport.ui:514
+#: svtools/uiconfig/ui/graphicexport.ui:513
msgctxt "graphicexport|label3"
msgid "Compression"
msgstr "الضغط"
#. qiLZK
-#: svtools/uiconfig/ui/graphicexport.ui:534
+#: svtools/uiconfig/ui/graphicexport.ui:533
msgctxt "graphicexport|interlacedcb"
msgid "Interlaced"
msgstr "تداخل"
#. cLvu6
-#: svtools/uiconfig/ui/graphicexport.ui:545
+#: svtools/uiconfig/ui/graphicexport.ui:544
msgctxt "graphicexport|extended_tip|interlacedcb"
msgid "Specifies whether the graphic is to be saved in interlaced mode."
msgstr ""
#. BkbD3
-#: svtools/uiconfig/ui/graphicexport.ui:554
+#: svtools/uiconfig/ui/graphicexport.ui:553
msgctxt "graphicexport|label12"
msgid "Mode"
msgstr "وضع"
#. Nhj88
-#: svtools/uiconfig/ui/graphicexport.ui:574
+#: svtools/uiconfig/ui/graphicexport.ui:573
msgctxt "graphicexport|savetransparencycb"
msgid "Save transparency"
msgstr "احفظ الشفافية"
#. kZ3uW
-#: svtools/uiconfig/ui/graphicexport.ui:585
+#: svtools/uiconfig/ui/graphicexport.ui:584
msgctxt "graphicexport|extended_tip|savetransparencycb"
msgid "Specifies whether to save the background of the picture as transparent. Only objects will be visible in the GIF image. Use the Color Replacer to set the transparent color in the picture."
msgstr ""
#. ZPmXf
-#: svtools/uiconfig/ui/graphicexport.ui:594
+#: svtools/uiconfig/ui/graphicexport.ui:593
msgctxt "graphicexport|labe"
msgid "Drawing Objects"
msgstr "كائنات رسومية"
#. KMCxb
-#: svtools/uiconfig/ui/graphicexport.ui:621
+#: svtools/uiconfig/ui/graphicexport.ui:620
msgctxt "graphicexport|binarycb"
msgid "Binary"
msgstr "ثنائي"
#. qFTuj
-#: svtools/uiconfig/ui/graphicexport.ui:630
+#: svtools/uiconfig/ui/graphicexport.ui:629
msgctxt "graphicexport|extended_tip|binarycb"
msgid "Exports the file in binary format. The resulting file is smaller than a text file."
msgstr ""
#. 8cZsH
-#: svtools/uiconfig/ui/graphicexport.ui:641
+#: svtools/uiconfig/ui/graphicexport.ui:640
msgctxt "graphicexport|textcb"
msgid "Text"
msgstr "النص"
#. GFbg2
-#: svtools/uiconfig/ui/graphicexport.ui:650
+#: svtools/uiconfig/ui/graphicexport.ui:649
msgctxt "graphicexport|extended_tip|textcb"
msgid "Exports the file in ASCII text format. The resulting file is larger than a binary file."
msgstr ""
#. ECUb9
-#: svtools/uiconfig/ui/graphicexport.ui:665
+#: svtools/uiconfig/ui/graphicexport.ui:664
msgctxt "graphicexport|label16"
msgid "Encoding"
msgstr "الترميز"
#. aeV52
-#: svtools/uiconfig/ui/graphicexport.ui:697
+#: svtools/uiconfig/ui/graphicexport.ui:696
msgctxt "graphicexport|tiffpreviewcb"
msgid "Image preview (TIFF)"
msgstr "معاينة الصّورة (TIFF)"
#. H8vtD
-#: svtools/uiconfig/ui/graphicexport.ui:706
+#: svtools/uiconfig/ui/graphicexport.ui:705
msgctxt "graphicexport|extended_tip|tiffpreviewcb"
msgid "Specifies whether a preview image is exported in the TIFF format together with the actual PostScript file."
msgstr ""
#. AeEJu
-#: svtools/uiconfig/ui/graphicexport.ui:717
+#: svtools/uiconfig/ui/graphicexport.ui:716
msgctxt "graphicexport|epsipreviewcb"
msgid "Interchange (EPSI)"
msgstr "تبادل (EPSI)"
#. gLbUQ
-#: svtools/uiconfig/ui/graphicexport.ui:725
+#: svtools/uiconfig/ui/graphicexport.ui:724
msgctxt "graphicexport|extended_tip|epsipreviewcb"
msgid "Specifies whether a monochrome preview graphic in EPSI format is exported together with the PostScript file. This format only contains printable characters from the 7-bit ASCII code."
msgstr ""
#. sRbZb
-#: svtools/uiconfig/ui/graphicexport.ui:740
+#: svtools/uiconfig/ui/graphicexport.ui:739
msgctxt "graphicexport|label17"
msgid "Preview"
msgstr "معاينة"
#. Jfbgx
-#: svtools/uiconfig/ui/graphicexport.ui:767
+#: svtools/uiconfig/ui/graphicexport.ui:766
msgctxt "graphicexport|color1rb"
msgid "Color"
msgstr "اللون"
#. LNHEi
-#: svtools/uiconfig/ui/graphicexport.ui:776
+#: svtools/uiconfig/ui/graphicexport.ui:775
msgctxt "graphicexport|extended_tip|color1rb"
msgid "Exports the file in color."
msgstr ""
#. VeZFK
-#: svtools/uiconfig/ui/graphicexport.ui:787
+#: svtools/uiconfig/ui/graphicexport.ui:786
msgctxt "graphicexport|color2rb"
msgid "Grayscale"
msgstr "تدرج الرمادي"
#. TWEx8
-#: svtools/uiconfig/ui/graphicexport.ui:796
+#: svtools/uiconfig/ui/graphicexport.ui:795
msgctxt "graphicexport|extended_tip|color2rb"
msgid "Exports the file in grayscale tones."
msgstr ""
#. BbSGF
-#: svtools/uiconfig/ui/graphicexport.ui:811
+#: svtools/uiconfig/ui/graphicexport.ui:810
msgctxt "graphicexport|label18"
msgid "Color Format"
msgstr "نسق الألوان"
#. b6J7X
-#: svtools/uiconfig/ui/graphicexport.ui:838
+#: svtools/uiconfig/ui/graphicexport.ui:837
msgctxt "graphicexport|level1rb"
msgid "Level 1"
msgstr "المستوى 1"
#. pEcBC
-#: svtools/uiconfig/ui/graphicexport.ui:847
+#: svtools/uiconfig/ui/graphicexport.ui:846
msgctxt "graphicexport|extended_tip|level1rb"
msgid "Compression is not available at this level. Select the Level 1 option if your PostScript printer does not offer the capabilities of Level 2."
msgstr ""
#. kuCNX
-#: svtools/uiconfig/ui/graphicexport.ui:858
+#: svtools/uiconfig/ui/graphicexport.ui:857
msgctxt "graphicexport|level2rb"
msgid "Level 2"
msgstr "المستوى 2"
#. wiWrE
-#: svtools/uiconfig/ui/graphicexport.ui:867
+#: svtools/uiconfig/ui/graphicexport.ui:866
msgctxt "graphicexport|extended_tip|level2rb"
msgid "Select the Level 2 option if your output device supports colored bitmaps, palette graphics and compressed graphics."
msgstr ""
#. JUuBZ
-#: svtools/uiconfig/ui/graphicexport.ui:882
+#: svtools/uiconfig/ui/graphicexport.ui:881
msgctxt "graphicexport|label19"
msgid "Version"
msgstr "الإصدار"
#. FjkbL
-#: svtools/uiconfig/ui/graphicexport.ui:909
+#: svtools/uiconfig/ui/graphicexport.ui:908
msgctxt "graphicexport|compresslzw"
msgid "LZW encoding"
msgstr "ترميز LZW"
#. 5cYFM
-#: svtools/uiconfig/ui/graphicexport.ui:918
+#: svtools/uiconfig/ui/graphicexport.ui:917
msgctxt "graphicexport|extended_tip|compresslzw"
msgid "LZW compression is the compression of a file into a smaller file using a table-based lookup algorithm."
msgstr ""
#. vXGXe
-#: svtools/uiconfig/ui/graphicexport.ui:929
+#: svtools/uiconfig/ui/graphicexport.ui:928
msgctxt "graphicexport|compressnone"
msgid "None"
msgstr "بلا"
#. kW3QD
-#: svtools/uiconfig/ui/graphicexport.ui:938
+#: svtools/uiconfig/ui/graphicexport.ui:937
msgctxt "graphicexport|extended_tip|compressnone"
msgid "Specifies that you do not wish to use compression."
msgstr "يحدد أنك لا ترغب في استخدام الضغط."
#. ghAqZ
-#: svtools/uiconfig/ui/graphicexport.ui:953
+#: svtools/uiconfig/ui/graphicexport.ui:952
msgctxt "graphicexport|label20"
msgid "Compression"
msgstr "الضغط"
#. LmAeC
-#: svtools/uiconfig/ui/graphicexport.ui:992
+#: svtools/uiconfig/ui/graphicexport.ui:991
msgctxt "graphicexport|label4"
msgid "Information"
msgstr "معلومات"
@@ -5819,7 +5825,7 @@ msgid "For the Skia changes to take effect, %PRODUCTNAME must be restarted."
msgstr ""
#. v9FjK
-#: svtools/uiconfig/ui/thineditcontrol.ui:69
+#: svtools/uiconfig/ui/thineditcontrol.ui:72
msgctxt "thineditcontrol|button"
msgid "Pick Date"
msgstr ""
diff --git a/source/ar/svx/messages.po b/source/ar/svx/messages.po
index 76dc9a597aa..9184c07ec82 100644
--- a/source/ar/svx/messages.po
+++ b/source/ar/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-20 13:03+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
"PO-Revision-Date: 2021-06-27 17:05+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/ar/>\n"
@@ -9990,125 +9990,125 @@ msgctxt "RID_SVXSTR_TRANSPARENCY"
msgid "Transparency:"
msgstr ""
-#. zvqUJ
+#. PGuXa
#. strings related to borders
#: include/svx/strings.hrc:1777
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
-msgid "Set No Borders"
+msgid "No Borders"
msgstr ""
-#. ABKEK
+#. LzhYZ
#: include/svx/strings.hrc:1778
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
-msgid "Set Outer Border Only"
+msgid "Outer Border Only"
msgstr ""
-#. ygU8P
+#. EniNF
#: include/svx/strings.hrc:1779
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
-msgid "Set Outer Border and Horizontal Lines"
+msgid "Outer Border and Horizontal Lines"
msgstr ""
-#. q5KJ8
+#. BuDWX
#: include/svx/strings.hrc:1780
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
-msgid "Set Outer Border and All Inner Lines"
+msgid "Outer Border and All Inner Lines"
msgstr ""
-#. TFuZb
+#. ckL2Z
#: include/svx/strings.hrc:1781
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
-msgid "Set Outer Border and Vertical Lines"
+msgid "Outer Border and Vertical Lines"
msgstr ""
-#. H5s9X
+#. Q9hj4
#: include/svx/strings.hrc:1782
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
-msgid "Set Outer Border Without Changing Inner Lines"
+msgid "Outer Border Without Changing Inner Lines"
msgstr ""
-#. T5crG
+#. b7wCr
#: include/svx/strings.hrc:1783
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
-msgid "Set Diagonal Lines Only"
+msgid "Diagonal Lines Only"
msgstr ""
-#. oodJY
+#. 8r98a
#: include/svx/strings.hrc:1784
-msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALLEFT"
-msgid "Set Diagonal Left Border"
+msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
+msgid "Diagonal Down Border"
msgstr ""
-#. gFFgD
+#. P4FGE
#: include/svx/strings.hrc:1785
-msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALRIGHT"
-msgid "Set Diagonal Right Border"
+msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
+msgid "Diagonal Up Border"
msgstr ""
-#. D6FCE
+#. VxBrT
#: include/svx/strings.hrc:1786
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
-msgid "Set Criss-Cross Border"
+msgid "Criss-Cross Border"
msgstr ""
-#. S6AAA
+#. hTi3j
#: include/svx/strings.hrc:1787
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
-msgid "Set All Four Borders"
+msgid "All Four Borders"
msgstr ""
-#. tknFJ
+#. o8fB8
#: include/svx/strings.hrc:1788
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
-msgid "Set Left and Right Borders Only"
+msgid "Left and Right Borders Only"
msgstr ""
-#. hSmnW
+#. 6NnM2
#: include/svx/strings.hrc:1789
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
-msgid "Set Top and Bottom Borders Only"
+msgid "Top and Bottom Borders Only"
msgstr ""
-#. DsEAB
+#. KTYVW
#: include/svx/strings.hrc:1790
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
-msgid "Set Top and Bottom Borders, and All Horizontal Lines"
+msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. Dy2UG
+#. fRcEu
#: include/svx/strings.hrc:1791
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Set Left Border Only"
+msgid "Left Border Only"
msgstr ""
-#. yF8RP
+#. uqzE7
#: include/svx/strings.hrc:1792
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Set Right Border Only"
+msgid "Right Border Only"
msgstr ""
-#. E2jZj
+#. 6ecLB
#: include/svx/strings.hrc:1793
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Set Top Border Only"
+msgid "Top Border Only"
msgstr ""
-#. 7ixEC
+#. B6KZc
#: include/svx/strings.hrc:1794
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Set Bottom Border Only"
+msgid "Bottom Border Only"
msgstr ""
-#. nCjXG
+#. aCMGz
#: include/svx/strings.hrc:1795
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
-msgid "Set Top and Bottom Borders, and All Inner Lines"
+msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
-#. 46Fq7
+#. t38dT
#: include/svx/strings.hrc:1796
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
-msgid "Set Left and Right Borders, and All Inner Lines"
+msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
#. wH3TZ
@@ -14468,13 +14468,13 @@ msgid "Delete footer?"
msgstr "أأحذف التّذييل؟"
#. GE3hT
-#: svx/uiconfig/ui/deletefooterdialog.ui:14
+#: svx/uiconfig/ui/deletefooterdialog.ui:13
msgctxt "deletefooterdialog|DeleteFooterDialog"
msgid "Are you sure you want to delete the footer?"
msgstr "أتريد حقًّا حذف التّذييل؟"
#. EthWp
-#: svx/uiconfig/ui/deletefooterdialog.ui:15
+#: svx/uiconfig/ui/deletefooterdialog.ui:14
msgctxt "deletefooterdialog|DeleteFooterDialog"
msgid "All contents of the footer will be deleted and can not be restored."
msgstr "ستُحذف كلّ محتويات التّذييل بلا عودة."
@@ -14486,13 +14486,13 @@ msgid "Delete header?"
msgstr "أأحذف التّرويسة؟"
#. YfZTx
-#: svx/uiconfig/ui/deleteheaderdialog.ui:14
+#: svx/uiconfig/ui/deleteheaderdialog.ui:13
msgctxt "deleteheaderdialog|DeleteHeaderDialog"
msgid "Are you sure you want to delete the header?"
msgstr "أتريد حقًّا حذف التّرويسة؟"
#. 86Aks
-#: svx/uiconfig/ui/deleteheaderdialog.ui:15
+#: svx/uiconfig/ui/deleteheaderdialog.ui:14
msgctxt "deleteheaderdialog|DeleteHeaderDialog"
msgid "All contents of the header will be deleted and can not be restored."
msgstr "ستُحذف كلّ محتويات التّرويسة بلا عودة."
@@ -19070,20 +19070,20 @@ msgid "Standard selection"
msgstr "التحديد القياسي"
#. DGKv2
-#: svx/uiconfig/ui/selectionmenu.ui:20
+#: svx/uiconfig/ui/selectionmenu.ui:21
msgctxt "selectionmenu|extending"
msgid "Extending selection"
msgstr "التحديد الممتد"
#. fqC9L
-#: svx/uiconfig/ui/selectionmenu.ui:28
+#: svx/uiconfig/ui/selectionmenu.ui:30
#, fuzzy
msgctxt "selectionmenu|adding"
msgid "Adding selection"
msgstr "يضيف التحديد"
#. DbjFT
-#: svx/uiconfig/ui/selectionmenu.ui:36
+#: svx/uiconfig/ui/selectionmenu.ui:39
#, fuzzy
msgctxt "selectionmenu|block"
msgid "Block selection"
@@ -20005,55 +20005,55 @@ msgid "More Options"
msgstr ""
#. DJ6vY
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:18
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:60
#, fuzzy
msgctxt "textcharacterspacingcontrol|very_tight"
msgid "Very Tight"
msgstr "متقارب ~جدًا"
#. GYD7d
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:34
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:77
#, fuzzy
msgctxt "textcharacterspacingcontrol|tight"
msgid "Tight"
msgstr "اليمين"
#. 8EcPH
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:50
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:94
#, fuzzy
msgctxt "textcharacterspacingcontrol|normal"
msgid "Normal"
msgstr "عا~دي"
#. hEuRj
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:66
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:111
#, fuzzy
msgctxt "textcharacterspacingcontrol|loose"
msgid "Loose"
msgstr "متبا~عد"
#. 4kdQx
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:82
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:128
#, fuzzy
msgctxt "textcharacterspacingcontrol|very_loose"
msgid "Very Loose"
msgstr "متبا~عد جدًا"
#. hsu3c
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:98
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:145
#, fuzzy
msgctxt "textcharacterspacingcontrol|last_custom"
msgid "Last Custom Value"
msgstr "القيم المخصّصة الأخيرة"
#. pZZ9u
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:127
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:177
msgctxt "textcharacterspacingcontrol|kerning"
msgid "0.0"
msgstr ""
#. 6kNQD
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:139
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:187
msgctxt "textcharacterspacingcontrol|label2"
msgid "Custom Value"
msgstr ""
@@ -20114,76 +20114,76 @@ msgid "Tabs"
msgstr "الجدولات"
#. hHwzA
-#: svx/uiconfig/ui/textunderlinecontrol.ui:19
+#: svx/uiconfig/ui/textunderlinecontrol.ui:74
msgctxt "textunderlinecontrol|none"
msgid "(Without)"
msgstr "(بدون)"
#. 9VDo4
-#: svx/uiconfig/ui/textunderlinecontrol.ui:37
+#: svx/uiconfig/ui/textunderlinecontrol.ui:93
msgctxt "textunderlinecontrol|single|tooltip_text"
msgid "Single"
msgstr "مفرد"
#. czS3W
-#: svx/uiconfig/ui/textunderlinecontrol.ui:54
+#: svx/uiconfig/ui/textunderlinecontrol.ui:110
msgctxt "textunderlinecontrol|double|tooltip_text"
msgid "Double"
msgstr "مزدوج"
#. DBg8Y
-#: svx/uiconfig/ui/textunderlinecontrol.ui:71
+#: svx/uiconfig/ui/textunderlinecontrol.ui:127
#, fuzzy
msgctxt "textunderlinecontrol|bold|tooltip_text"
msgid "Bold"
msgstr "ذهب"
#. fNrBz
-#: svx/uiconfig/ui/textunderlinecontrol.ui:88
+#: svx/uiconfig/ui/textunderlinecontrol.ui:144
msgctxt "textunderlinecontrol|dot|tooltip_text"
msgid "Dotted"
msgstr "منقّط"
#. JEgvk
-#: svx/uiconfig/ui/textunderlinecontrol.ui:105
+#: svx/uiconfig/ui/textunderlinecontrol.ui:161
msgctxt "textunderlinecontrol|dotbold|tooltip_text"
msgid "Dotted (Bold)"
msgstr "منقّط (عريض)"
#. 46nci
-#: svx/uiconfig/ui/textunderlinecontrol.ui:122
+#: svx/uiconfig/ui/textunderlinecontrol.ui:178
#, fuzzy
msgctxt "textunderlinecontrol|dash|tooltip_text"
msgid "Dash"
msgstr "شَرطة"
#. D8gB4
-#: svx/uiconfig/ui/textunderlinecontrol.ui:139
+#: svx/uiconfig/ui/textunderlinecontrol.ui:195
msgctxt "textunderlinecontrol|dashlong|tooltip_text"
msgid "Long Dash"
msgstr "شَرطة طويلة"
#. gkUzu
-#: svx/uiconfig/ui/textunderlinecontrol.ui:156
+#: svx/uiconfig/ui/textunderlinecontrol.ui:212
msgctxt "textunderlinecontrol|dashdot|tooltip_text"
msgid "Dot Dash"
msgstr "نقطة و شَرطة"
#. qMLxK
-#: svx/uiconfig/ui/textunderlinecontrol.ui:173
+#: svx/uiconfig/ui/textunderlinecontrol.ui:229
msgctxt "textunderlinecontrol|dashdotdot|tooltip_text"
msgid "Dot Dot Dash"
msgstr "نقطة و نقطة و شرطة"
#. dusMw
-#: svx/uiconfig/ui/textunderlinecontrol.ui:190
+#: svx/uiconfig/ui/textunderlinecontrol.ui:246
#, fuzzy
msgctxt "textunderlinecontrol|wave|tooltip_text"
msgid "Wave"
msgstr "متموّج"
#. xJTZe
-#: svx/uiconfig/ui/textunderlinecontrol.ui:204
+#: svx/uiconfig/ui/textunderlinecontrol.ui:260
msgctxt "textunderlinecontrol|moreoptions"
msgid "_More Options..."
msgstr "خيارات أ_خرى..."
diff --git a/source/ar/sw/messages.po b/source/ar/sw/messages.po
index b92d44255f3..d8edb93b9a5 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: 2021-10-04 19:52+0200\n"
+"POT-Creation-Date: 2021-10-25 12:50+0200\n"
"PO-Revision-Date: 2021-06-27 17:05+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/ar/>\n"
@@ -4436,20 +4436,26 @@ msgctxt "STR_CONTENT_ENDNOTE"
msgid "Endnote"
msgstr ""
-#. jThGW
+#. sEQCK
#: sw/inc/strings.hrc:407
+msgctxt "STR_FOOTNOTE_ENDNOTE_SEPARATOR_TIP"
+msgid "Footnotes are listed above this line and Endnotes are listed below"
+msgstr ""
+
+#. jThGW
+#: sw/inc/strings.hrc:408
msgctxt "STR_DEFINE_NUMBERFORMAT"
msgid "Additional formats..."
msgstr "تنسيقات إضافية..."
#. Cfiyt
-#: sw/inc/strings.hrc:408
+#: sw/inc/strings.hrc:409
msgctxt "RID_STR_SYSTEM"
msgid "[System]"
msgstr "[نظام]"
#. iD3WQ
-#: sw/inc/strings.hrc:409
+#: sw/inc/strings.hrc:410
msgctxt "STR_MULT_INTERACT_HYPH_WARN"
msgid ""
"The interactive hyphenation is already active\n"
@@ -4459,656 +4465,656 @@ msgstr ""
"في مستند آخر"
#. 68AYK
-#: sw/inc/strings.hrc:410
+#: sw/inc/strings.hrc:411
msgctxt "STR_HYPH_TITLE"
msgid "Hyphenation"
msgstr "فصل المقاطع"
#. EDxsk
-#: sw/inc/strings.hrc:411
+#: sw/inc/strings.hrc:412
msgctxt "STR_HYPH_MISSING"
msgid "Missing hyphenation data"
msgstr ""
#. TEP66
-#: sw/inc/strings.hrc:412
+#: sw/inc/strings.hrc:413
msgctxt "STR_HYPH_MISSING"
msgid "Please install the hyphenation package for locale “%1”."
msgstr ""
#. bJFYS
-#: sw/inc/strings.hrc:413
+#: sw/inc/strings.hrc:414
msgctxt "STR_HIDDEN_CHANGES"
msgid "Track Changes"
msgstr ""
#. DcXvE
-#: sw/inc/strings.hrc:414
+#: sw/inc/strings.hrc:415
msgctxt "STR_HIDDEN_CHANGES_DETAIL"
msgid "Document contains tracked changes and recording is enabled."
msgstr ""
#. zxuEu
-#: sw/inc/strings.hrc:415
+#: sw/inc/strings.hrc:416
msgctxt "STR_HIDDEN_CHANGES_DETAIL2"
msgid "Recording of changes is enabled."
msgstr ""
#. BH7Ud
-#: sw/inc/strings.hrc:416
+#: sw/inc/strings.hrc:417
msgctxt "STR_HIDDEN_CHANGES_DETAIL3"
msgid "Document contains tracked changes."
msgstr ""
#. MEN2d
#. Undo
-#: sw/inc/strings.hrc:419
+#: sw/inc/strings.hrc:420
msgctxt "STR_CANT_UNDO"
msgid "not possible"
msgstr "غير ممكن"
#. 5GdxN
-#: sw/inc/strings.hrc:420
+#: sw/inc/strings.hrc:421
msgctxt "STR_DELETE_UNDO"
msgid "Delete $1"
msgstr "حذف $1"
#. i6vB4
-#: sw/inc/strings.hrc:421
+#: sw/inc/strings.hrc:422
msgctxt "STR_INSERT_UNDO"
msgid "Insert $1"
msgstr "إدراج $1"
#. JESFv
-#: sw/inc/strings.hrc:422
+#: sw/inc/strings.hrc:423
msgctxt "STR_OVR_UNDO"
msgid "Overwrite: $1"
msgstr "كتابة على: $1"
#. FVqpL
-#: sw/inc/strings.hrc:423
+#: sw/inc/strings.hrc:424
msgctxt "STR_SPLITNODE_UNDO"
msgid "New Paragraph"
msgstr "فقرة جديدة"
#. r3iVE
-#: sw/inc/strings.hrc:424
+#: sw/inc/strings.hrc:425
msgctxt "STR_MOVE_UNDO"
msgid "Move"
msgstr "نقل"
#. Z2Ft8
-#: sw/inc/strings.hrc:425
+#: sw/inc/strings.hrc:426
msgctxt "STR_INSATTR_UNDO"
msgid "Apply attributes"
msgstr "تطبيق الصفات"
#. hetuZ
-#: sw/inc/strings.hrc:426
+#: sw/inc/strings.hrc:427
msgctxt "STR_SETFMTCOLL_UNDO"
msgid "Apply Styles: $1"
msgstr "تطبيق الأنماط: $1"
#. GokWu
-#: sw/inc/strings.hrc:427
+#: sw/inc/strings.hrc:428
msgctxt "STR_RESET_ATTR_UNDO"
msgid "Reset attributes"
msgstr "تصفير الصفات"
#. mDgEJ
-#: sw/inc/strings.hrc:428
+#: sw/inc/strings.hrc:429
msgctxt "STR_INSFMT_ATTR_UNDO"
msgid "Change style: $1"
msgstr "تغيير النمط: $1"
#. onBFE
-#: sw/inc/strings.hrc:429
+#: sw/inc/strings.hrc:430
msgctxt "STR_INSERT_DOC_UNDO"
msgid "Insert file"
msgstr "إدراج ملف"
#. WCCkF
-#: sw/inc/strings.hrc:430
+#: sw/inc/strings.hrc:431
msgctxt "STR_INSERT_GLOSSARY"
msgid "Insert AutoText"
msgstr "إدراج نص تلقائي"
#. CyNXC
-#: sw/inc/strings.hrc:431
+#: sw/inc/strings.hrc:432
msgctxt "STR_DELBOOKMARK"
msgid "Delete bookmark: $1"
msgstr "حذف العلامة: $1"
#. 54y8f
-#: sw/inc/strings.hrc:432
+#: sw/inc/strings.hrc:433
msgctxt "STR_INSBOOKMARK"
msgid "Insert bookmark: $1"
msgstr "إدراج العلامة: $1"
#. XHkEY
-#: sw/inc/strings.hrc:433
+#: sw/inc/strings.hrc:434
msgctxt "STR_SORT_TBL"
msgid "Sort table"
msgstr "ترتيب جدول"
#. gui6q
-#: sw/inc/strings.hrc:434
+#: sw/inc/strings.hrc:435
msgctxt "STR_SORT_TXT"
msgid "Sort text"
msgstr "ترتيب نص"
#. APAMG
-#: sw/inc/strings.hrc:435
+#: sw/inc/strings.hrc:436
msgctxt "STR_INSTABLE_UNDO"
msgid "Insert table: $1$2$3"
msgstr "إدراج جدول: $1$2$3"
#. 4pGhz
-#: sw/inc/strings.hrc:436
+#: sw/inc/strings.hrc:437
msgctxt "STR_TEXTTOTABLE_UNDO"
msgid "Convert text -> table"
msgstr "تحويل النص إلى جدول"
#. h3EH7
-#: sw/inc/strings.hrc:437
+#: sw/inc/strings.hrc:438
msgctxt "STR_TABLETOTEXT_UNDO"
msgid "Convert table -> text"
msgstr "تحويل الجدول إلى نص"
#. uKreq
-#: sw/inc/strings.hrc:438
+#: sw/inc/strings.hrc:439
msgctxt "STR_COPY_UNDO"
msgid "Copy: $1"
msgstr "نسخ: $1"
#. BfGaZ
-#: sw/inc/strings.hrc:439
+#: sw/inc/strings.hrc:440
msgctxt "STR_REPLACE_UNDO"
msgid "Replace $1 $2 $3"
msgstr "استبدال $1 $2 $3"
#. GEC4C
-#: sw/inc/strings.hrc:440
+#: sw/inc/strings.hrc:441
msgctxt "STR_INSERT_PAGE_BREAK_UNDO"
msgid "Insert page break"
msgstr "إدراج فاصل صفحات"
#. mrWg2
-#: sw/inc/strings.hrc:441
+#: sw/inc/strings.hrc:442
msgctxt "STR_INSERT_COLUMN_BREAK_UNDO"
msgid "Insert column break"
msgstr "إدراج فاصل أعمدة"
#. MGqRt
-#: sw/inc/strings.hrc:442
+#: sw/inc/strings.hrc:443
msgctxt "STR_INSERT_ENV_UNDO"
msgid "Insert Envelope"
msgstr "إدراج مظروف"
#. g8ALR
-#: sw/inc/strings.hrc:443
+#: sw/inc/strings.hrc:444
msgctxt "STR_DRAG_AND_COPY"
msgid "Copy: $1"
msgstr "نسخ: $1"
#. qHdLG
-#: sw/inc/strings.hrc:444
+#: sw/inc/strings.hrc:445
msgctxt "STR_DRAG_AND_MOVE"
msgid "Move: $1"
msgstr "نقل: $1"
#. xqxPn
-#: sw/inc/strings.hrc:445
+#: sw/inc/strings.hrc:446
msgctxt "STR_INSERT_CHART"
msgid "Insert %PRODUCTNAME Chart"
msgstr "إدراج رسم %PRODUCTNAME بياني"
#. qWEVG
-#: sw/inc/strings.hrc:446
+#: sw/inc/strings.hrc:447
msgctxt "STR_INSERTFLY"
msgid "Insert frame"
msgstr "إدراج إطار"
#. GmqXE
-#: sw/inc/strings.hrc:447
+#: sw/inc/strings.hrc:448
msgctxt "STR_DELETEFLY"
msgid "Delete frame"
msgstr "حذف إطار"
#. z9Eai
-#: sw/inc/strings.hrc:448
+#: sw/inc/strings.hrc:449
msgctxt "STR_AUTOFORMAT"
msgid "AutoFormat"
msgstr "تنسيق تلقائي"
#. E6uaH
-#: sw/inc/strings.hrc:449
+#: sw/inc/strings.hrc:450
msgctxt "STR_TABLEHEADLINE"
msgid "Table heading"
msgstr "رأس الجدول"
#. gnndv
-#: sw/inc/strings.hrc:450
+#: sw/inc/strings.hrc:451
msgctxt "STR_REPLACE"
msgid "Replace: $1 $2 $3"
msgstr "استبدال: $1 $2 $3"
#. WwuFC
-#: sw/inc/strings.hrc:451
+#: sw/inc/strings.hrc:452
msgctxt "STR_INSERTSECTION"
msgid "Insert section"
msgstr "إدراج قسم"
#. 7pzWX
-#: sw/inc/strings.hrc:452
+#: sw/inc/strings.hrc:453
msgctxt "STR_DELETESECTION"
msgid "Delete section"
msgstr "حذف قسم"
#. AFkoM
-#: sw/inc/strings.hrc:453
+#: sw/inc/strings.hrc:454
msgctxt "STR_CHANGESECTION"
msgid "Modify section"
msgstr "تعديل قسم"
#. BY9gB
-#: sw/inc/strings.hrc:454
+#: sw/inc/strings.hrc:455
msgctxt "STR_CHANGEDEFATTR"
msgid "Modify default values"
msgstr "تعديل القيم المبدئية"
#. X7eMx
-#: sw/inc/strings.hrc:455
+#: sw/inc/strings.hrc:456
msgctxt "STR_REPLACE_STYLE"
msgid "Replace style: $1 $2 $3"
msgstr "استبدال النمط: $1 $2 $3"
#. EXFvJ
-#: sw/inc/strings.hrc:456
+#: sw/inc/strings.hrc:457
msgctxt "STR_DELETE_PAGE_BREAK"
msgid "Delete page break"
msgstr "حذف فاصل صفحة"
#. kHVr9
-#: sw/inc/strings.hrc:457
+#: sw/inc/strings.hrc:458
msgctxt "STR_TEXT_CORRECTION"
msgid "Text Correction"
msgstr "تصحيح النص"
#. ZPCQf
-#: sw/inc/strings.hrc:458
+#: sw/inc/strings.hrc:459
msgctxt "STR_OUTLINE_LR"
msgid "Promote/demote outline"
msgstr "رفع/خفض درجة المخطّط"
#. WQJz2
-#: sw/inc/strings.hrc:459
+#: sw/inc/strings.hrc:460
msgctxt "STR_OUTLINE_UD"
msgid "Move outline"
msgstr "نقل المخطّط"
#. 3UGKP
-#: sw/inc/strings.hrc:460
+#: sw/inc/strings.hrc:461
msgctxt "STR_OUTLINE_EDIT"
msgid "Modify outline"
msgstr ""
#. RjcRH
-#: sw/inc/strings.hrc:461
+#: sw/inc/strings.hrc:462
msgctxt "STR_INSNUM"
msgid "Insert numbering"
msgstr "إدراج ترقيم"
#. hbCQa
-#: sw/inc/strings.hrc:462
+#: sw/inc/strings.hrc:463
msgctxt "STR_NUMUP"
msgid "Promote level"
msgstr "رفع المستوى"
#. 63Ec4
-#: sw/inc/strings.hrc:463
+#: sw/inc/strings.hrc:464
msgctxt "STR_NUMDOWN"
msgid "Demote level"
msgstr "خفض مستوى"
#. FGciC
-#: sw/inc/strings.hrc:464
+#: sw/inc/strings.hrc:465
msgctxt "STR_MOVENUM"
msgid "Move paragraphs"
msgstr "نقل الفقرات"
#. WdMCK
-#: sw/inc/strings.hrc:465
+#: sw/inc/strings.hrc:466
msgctxt "STR_INSERTDRAW"
msgid "Insert drawing object: $1"
msgstr "إدراج كائن رسم: $1"
#. ErB3W
-#: sw/inc/strings.hrc:466
+#: sw/inc/strings.hrc:467
msgctxt "STR_NUMORNONUM"
msgid "Number On/Off"
msgstr "تشغيل/إيقاف الترقيم"
#. rEZvN
-#: sw/inc/strings.hrc:467
+#: sw/inc/strings.hrc:468
msgctxt "STR_INC_LEFTMARGIN"
msgid "Increase Indent"
msgstr "زيادة الإزاحة"
#. aJxcG
-#: sw/inc/strings.hrc:468
+#: sw/inc/strings.hrc:469
msgctxt "STR_DEC_LEFTMARGIN"
msgid "Decrease indent"
msgstr "تقليل الإزاحة"
#. 4GP7c
-#: sw/inc/strings.hrc:469
+#: sw/inc/strings.hrc:470
msgctxt "STR_INSERTLABEL"
msgid "Insert caption: $1"
msgstr "إدراج واصفة: $1"
#. GGFM8
-#: sw/inc/strings.hrc:470
+#: sw/inc/strings.hrc:471
msgctxt "STR_SETNUMRULESTART"
msgid "Restart numbering"
msgstr "إعادة بدء الترقيم"
#. pHfp7
-#: sw/inc/strings.hrc:471
+#: sw/inc/strings.hrc:472
msgctxt "STR_CHANGEFTN"
msgid "Modify footnote"
msgstr "عدّل الحاشية"
#. Knr9y
-#: sw/inc/strings.hrc:472
+#: sw/inc/strings.hrc:473
msgctxt "STR_ACCEPT_REDLINE"
msgid "Accept change: $1"
msgstr "قبول التغيير: $1"
#. jAvjr
-#: sw/inc/strings.hrc:473
+#: sw/inc/strings.hrc:474
msgctxt "STR_REJECT_REDLINE"
msgid "Reject change: $1"
msgstr "رفض التغيير: $1"
#. uCGqy
-#: sw/inc/strings.hrc:474
+#: sw/inc/strings.hrc:475
msgctxt "STR_SPLIT_TABLE"
msgid "Split Table"
msgstr "تقسيم جدول"
#. TJCZ8
-#: sw/inc/strings.hrc:475
+#: sw/inc/strings.hrc:476
msgctxt "STR_DONTEXPAND"
msgid "Stop attribute"
msgstr "إيقاف صفة"
#. qyCiy
-#: sw/inc/strings.hrc:476
+#: sw/inc/strings.hrc:477
msgctxt "STR_AUTOCORRECT"
msgid "AutoCorrect"
msgstr "التصحيح الآلي"
#. f4Jfr
-#: sw/inc/strings.hrc:477
+#: sw/inc/strings.hrc:478
msgctxt "STR_MERGE_TABLE"
msgid "Merge table"
msgstr "دمج جدول"
#. BLcCC
-#: sw/inc/strings.hrc:478
+#: sw/inc/strings.hrc:479
msgctxt "STR_TRANSLITERATE"
msgid "Change Case"
msgstr "تغيير حالة الأحرف"
#. BTGyD
-#: sw/inc/strings.hrc:479
+#: sw/inc/strings.hrc:480
msgctxt "STR_DELNUM"
msgid "Delete numbering"
msgstr "حذف ترقيم"
#. TMvTD
-#: sw/inc/strings.hrc:480
+#: sw/inc/strings.hrc:481
msgctxt "STR_DRAWUNDO"
msgid "Drawing objects: $1"
msgstr "كائنات الرسم: $1"
#. FG7rN
-#: sw/inc/strings.hrc:481
+#: sw/inc/strings.hrc:482
msgctxt "STR_DRAWGROUP"
msgid "Group draw objects"
msgstr "تجميع كائنات الرسم"
#. xZqoJ
-#: sw/inc/strings.hrc:482
+#: sw/inc/strings.hrc:483
msgctxt "STR_DRAWUNGROUP"
msgid "Ungroup drawing objects"
msgstr "تفكيك كائنات الرسم"
#. FA3Vo
-#: sw/inc/strings.hrc:483
+#: sw/inc/strings.hrc:484
msgctxt "STR_DRAWDELETE"
msgid "Delete drawing objects"
msgstr "حذف كائنات الرسم"
#. MbJSs
-#: sw/inc/strings.hrc:484
+#: sw/inc/strings.hrc:485
msgctxt "STR_REREAD"
msgid "Replace Image"
msgstr "استبدال صورة"
#. 6GmVr
-#: sw/inc/strings.hrc:485
+#: sw/inc/strings.hrc:486
msgctxt "STR_DELGRF"
msgid "Delete Image"
msgstr "حذف صورة"
#. PAmBF
-#: sw/inc/strings.hrc:486
+#: sw/inc/strings.hrc:487
msgctxt "STR_TABLE_ATTR"
msgid "Apply table attributes"
msgstr "تطبيق صفات جدول"
#. GA8gF
-#: sw/inc/strings.hrc:487
+#: sw/inc/strings.hrc:488
msgctxt "STR_UNDO_TABLE_AUTOFMT"
msgid "AutoFormat Table"
msgstr "تنسيق جدول تلقائيّا"
#. AAPTL
-#: sw/inc/strings.hrc:488
+#: sw/inc/strings.hrc:489
msgctxt "STR_UNDO_TABLE_INSCOL"
msgid "Insert Column"
msgstr "إدراج عمود"
#. tA7ss
-#: sw/inc/strings.hrc:489
+#: sw/inc/strings.hrc:490
msgctxt "STR_UNDO_TABLE_INSROW"
msgid "Insert Row"
msgstr "إدراج الصف"
#. LAzxr
-#: sw/inc/strings.hrc:490
+#: sw/inc/strings.hrc:491
msgctxt "STR_UNDO_TABLE_DELBOX"
msgid "Delete row/column"
msgstr "حذف صف/عمود"
#. yFDYp
-#: sw/inc/strings.hrc:491
+#: sw/inc/strings.hrc:492
msgctxt "STR_UNDO_COL_DELETE"
msgid "Delete column"
msgstr "حذف عمود"
#. 9SF9L
-#: sw/inc/strings.hrc:492
+#: sw/inc/strings.hrc:493
msgctxt "STR_UNDO_ROW_DELETE"
msgid "Delete row"
msgstr "حذف صف"
#. FnLC7
-#: sw/inc/strings.hrc:493
+#: sw/inc/strings.hrc:494
msgctxt "STR_UNDO_TABLE_SPLIT"
msgid "Split Cells"
msgstr "تقسيم خلايا"
#. 3Em7B
-#: sw/inc/strings.hrc:494
+#: sw/inc/strings.hrc:495
msgctxt "STR_UNDO_TABLE_MERGE"
msgid "Merge Cells"
msgstr "دمج خلايا"
#. 3VVmF
-#: sw/inc/strings.hrc:495
+#: sw/inc/strings.hrc:496
msgctxt "STR_TABLE_NUMFORMAT"
msgid "Format cell"
msgstr "تنسيق خلية"
#. UbSKw
-#: sw/inc/strings.hrc:496
+#: sw/inc/strings.hrc:497
msgctxt "STR_INSERT_TOX"
msgid "Insert index/table"
msgstr "إدراج فهرس/جدول"
#. szpbj
-#: sw/inc/strings.hrc:497
+#: sw/inc/strings.hrc:498
msgctxt "STR_CLEAR_TOX_RANGE"
msgid "Remove index/table"
msgstr "حذف فهرس/جدول"
#. cN5DN
-#: sw/inc/strings.hrc:498
+#: sw/inc/strings.hrc:499
msgctxt "STR_TABLE_TBLCPYTBL"
msgid "Copy table"
msgstr "نسخ جدول"
#. eUFgx
-#: sw/inc/strings.hrc:499
+#: sw/inc/strings.hrc:500
msgctxt "STR_TABLE_CPYTBL"
msgid "Copy table"
msgstr "نسخ جدول"
#. TC6mz
-#: sw/inc/strings.hrc:500
+#: sw/inc/strings.hrc:501
msgctxt "STR_INS_FROM_SHADOWCRSR"
msgid "Set cursor"
msgstr "ضبط المؤشر"
#. 4GStA
-#: sw/inc/strings.hrc:501
+#: sw/inc/strings.hrc:502
msgctxt "STR_UNDO_CHAIN"
msgid "Link frames"
msgstr ""
#. XV4Ap
-#: sw/inc/strings.hrc:502
+#: sw/inc/strings.hrc:503
msgctxt "STR_UNDO_UNCHAIN"
msgid "Unlink frames"
msgstr ""
#. vUJG9
-#: sw/inc/strings.hrc:503
+#: sw/inc/strings.hrc:504
msgctxt "STR_UNDO_FTNINFO"
msgid "Modify footnote options"
msgstr "عدّل خيارات الحاشية"
#. AgREs
-#: sw/inc/strings.hrc:504
+#: sw/inc/strings.hrc:505
msgctxt "STR_UNDO_COMPAREDOC"
msgid "Compare Document"
msgstr "مقارنة المستند"
#. kZATW
-#: sw/inc/strings.hrc:505
+#: sw/inc/strings.hrc:506
msgctxt "STR_UNDO_SETFLYFRMFMT"
msgid "Apply frame style: $1"
msgstr "تطبيق نمط الإطار: $1"
#. 4Ae2X
-#: sw/inc/strings.hrc:506
+#: sw/inc/strings.hrc:507
msgctxt "STR_UNDO_SETRUBYATTR"
msgid "Ruby Setting"
msgstr "إعداد روبي"
#. J4AUR
-#: sw/inc/strings.hrc:507
+#: sw/inc/strings.hrc:508
msgctxt "STR_INSERT_FOOTNOTE"
msgid "Insert footnote"
msgstr "أدرِج حاشية"
#. RMgFD
-#: sw/inc/strings.hrc:508
+#: sw/inc/strings.hrc:509
msgctxt "STR_INSERT_URLBTN"
msgid "insert URL button"
msgstr "إدراج زر مسار"
#. UKN7k
-#: sw/inc/strings.hrc:509
+#: sw/inc/strings.hrc:510
msgctxt "STR_INSERT_URLTXT"
msgid "Insert Hyperlink"
msgstr "أدرِج رابط"
#. 9odT8
-#: sw/inc/strings.hrc:510
+#: sw/inc/strings.hrc:511
msgctxt "STR_DELETE_INVISIBLECNTNT"
msgid "remove invisible content"
msgstr "إزالة محتوى مخفيّ"
#. e6U2R
-#: sw/inc/strings.hrc:511
+#: sw/inc/strings.hrc:512
msgctxt "STR_TOXCHANGE"
msgid "Table/index changed"
msgstr "تغيّر جدول/فهرس"
#. JpGh6
-#: sw/inc/strings.hrc:512
+#: sw/inc/strings.hrc:513
msgctxt "STR_START_QUOTE"
msgid "“"
msgstr "”"
#. kZoAG
-#: sw/inc/strings.hrc:513
+#: sw/inc/strings.hrc:514
msgctxt "STR_END_QUOTE"
msgid "”"
msgstr "“"
#. wNZDq
-#: sw/inc/strings.hrc:514
+#: sw/inc/strings.hrc:515
msgctxt "STR_LDOTS"
msgid "..."
msgstr "…"
#. yiQgo
-#: sw/inc/strings.hrc:515
+#: sw/inc/strings.hrc:516
msgctxt "STR_MULTISEL"
msgid "multiple selection"
msgstr "تحديد متعدد"
#. qFESB
-#: sw/inc/strings.hrc:516
+#: sw/inc/strings.hrc:517
msgctxt "STR_TYPING_UNDO"
msgid "Typing: $1"
msgstr "كتابة: $1"
#. A6HSG
-#: sw/inc/strings.hrc:517
+#: sw/inc/strings.hrc:518
msgctxt "STR_PASTE_CLIPBOARD_UNDO"
msgid "Paste clipboard"
msgstr "لصق من الحافظة"
#. mfDMF
-#: sw/inc/strings.hrc:518
+#: sw/inc/strings.hrc:519
msgctxt "STR_YIELDS"
msgid "→"
msgstr "←"
#. wNRhZ
-#: sw/inc/strings.hrc:519
+#: sw/inc/strings.hrc:520
msgctxt "STR_OCCURRENCES_OF"
msgid "occurrences of"
msgstr "مرات حدوث من"
#. hHUZi
-#: sw/inc/strings.hrc:520
+#: sw/inc/strings.hrc:521
msgctxt "STR_UNDO_TABS"
msgid "One tab"
msgid_plural "$1 tabs"
@@ -5120,7 +5126,7 @@ msgstr[4] ""
msgstr[5] ""
#. eP6mC
-#: sw/inc/strings.hrc:521
+#: sw/inc/strings.hrc:522
msgctxt "STR_UNDO_NLS"
msgid "One line break"
msgid_plural "$1 line breaks"
@@ -5132,308 +5138,308 @@ msgstr[4] ""
msgstr[5] ""
#. yS3nP
-#: sw/inc/strings.hrc:522
+#: sw/inc/strings.hrc:523
msgctxt "STR_UNDO_PAGEBREAKS"
msgid "page break"
msgstr "فاصل صفحات"
#. Q4YVg
-#: sw/inc/strings.hrc:523
+#: sw/inc/strings.hrc:524
msgctxt "STR_UNDO_COLBRKS"
msgid "column break"
msgstr "فاصل أعمدة"
#. L6qva
-#: sw/inc/strings.hrc:524
+#: sw/inc/strings.hrc:525
msgctxt "STR_UNDO_REDLINE_INSERT"
msgid "Insert $1"
msgstr "إدراج $1"
#. i8ZQo
-#: sw/inc/strings.hrc:525
+#: sw/inc/strings.hrc:526
msgctxt "STR_UNDO_REDLINE_DELETE"
msgid "Delete $1"
msgstr "حذف $1"
#. 5KECk
-#: sw/inc/strings.hrc:526
+#: sw/inc/strings.hrc:527
msgctxt "STR_UNDO_REDLINE_FORMAT"
msgid "Attributes changed"
msgstr "تغيير الصفات"
#. N7CUk
-#: sw/inc/strings.hrc:527
+#: sw/inc/strings.hrc:528
msgctxt "STR_UNDO_REDLINE_TABLE"
msgid "Table changed"
msgstr "تغيير الجدول"
#. DCGPF
-#: sw/inc/strings.hrc:528
+#: sw/inc/strings.hrc:529
msgctxt "STR_UNDO_REDLINE_FMTCOLL"
msgid "Style changed"
msgstr "تغيير النمط"
#. p77WZ
-#: sw/inc/strings.hrc:529
+#: sw/inc/strings.hrc:530
msgctxt "STR_UNDO_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr "تغيير تنسيق الفقرة"
#. nehrq
-#: sw/inc/strings.hrc:530
+#: sw/inc/strings.hrc:531
msgctxt "STR_UNDO_REDLINE_TABLE_ROW_INSERT"
msgid "Insert Row"
msgstr "إدراج الصف"
#. Ud4qT
-#: sw/inc/strings.hrc:531
+#: sw/inc/strings.hrc:532
msgctxt "STR_UNDO_REDLINE_TABLE_ROW_DELETE"
msgid "Delete Row"
msgstr "حذف الصف"
#. GvxsC
-#: sw/inc/strings.hrc:532
+#: sw/inc/strings.hrc:533
msgctxt "STR_UNDO_REDLINE_TABLE_CELL_INSERT"
msgid "Insert Cell"
msgstr "إدراج الخلية"
#. ZMrVY
-#: sw/inc/strings.hrc:533
+#: sw/inc/strings.hrc:534
msgctxt "STR_UNDO_REDLINE_TABLE_CELL_DELETE"
msgid "Delete Cell"
msgstr "حذف الخلية"
#. DqprY
-#: sw/inc/strings.hrc:534
+#: sw/inc/strings.hrc:535
msgctxt "STR_N_REDLINES"
msgid "$1 changes"
msgstr "$1 تغييرات"
#. ve5ZA
-#: sw/inc/strings.hrc:535
+#: sw/inc/strings.hrc:536
msgctxt "STR_UNDO_PAGEDESC"
msgid "Change page style: $1"
msgstr "تغيير نمط الصفحة: $1"
#. RDkdy
-#: sw/inc/strings.hrc:536
+#: sw/inc/strings.hrc:537
msgctxt "STR_UNDO_PAGEDESC_CREATE"
msgid "Create page style: $1"
msgstr "إنشاء نمط الصفحة: $1"
#. tBVzV
-#: sw/inc/strings.hrc:537
+#: sw/inc/strings.hrc:538
msgctxt "STR_UNDO_PAGEDESC_DELETE"
msgid "Delete page style: $1"
msgstr "حذف نمط الصفحة: $1"
#. wzjRB
-#: sw/inc/strings.hrc:538
+#: sw/inc/strings.hrc:539
msgctxt "STR_UNDO_PAGEDESC_RENAME"
msgid "Rename page style: $1 $2 $3"
msgstr "تغيير اسم نمط الصفحة: $1 $2 $3"
#. UcTVv
-#: sw/inc/strings.hrc:539
+#: sw/inc/strings.hrc:540
msgctxt "STR_UNDO_HEADER_FOOTER"
msgid "Header/footer changed"
msgstr "تغيّر الترويسة/التذييل"
#. tGyeC
-#: sw/inc/strings.hrc:540
+#: sw/inc/strings.hrc:541
msgctxt "STR_UNDO_FIELD"
msgid "Field changed"
msgstr "تغيّر الحقل"
#. xh3dq
-#: sw/inc/strings.hrc:541
+#: sw/inc/strings.hrc:542
msgctxt "STR_UNDO_TXTFMTCOL_CREATE"
msgid "Create paragraph style: $1"
msgstr "إنشاء نمط الفقرة: $1"
#. aRf6Z
-#: sw/inc/strings.hrc:542
+#: sw/inc/strings.hrc:543
msgctxt "STR_UNDO_TXTFMTCOL_DELETE"
msgid "Delete paragraph style: $1"
msgstr "حذف نمط الفقرة: $1"
#. DtD6w
-#: sw/inc/strings.hrc:543
+#: sw/inc/strings.hrc:544
msgctxt "STR_UNDO_TXTFMTCOL_RENAME"
msgid "Rename paragraph style: $1 $2 $3"
msgstr "تغيير اسم نمط الفقرة: $1 $2 $3"
#. J2FcF
-#: sw/inc/strings.hrc:544
+#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_CHARFMT_CREATE"
msgid "Create character style: $1"
msgstr "إنشاء نمط الحرف: $1"
#. FjT56
-#: sw/inc/strings.hrc:545
+#: sw/inc/strings.hrc:546
msgctxt "STR_UNDO_CHARFMT_DELETE"
msgid "Delete character style: $1"
msgstr "حذف نمط الحرف: $1"
#. mT2GJ
-#: sw/inc/strings.hrc:546
+#: sw/inc/strings.hrc:547
msgctxt "STR_UNDO_CHARFMT_RENAME"
msgid "Rename character style: $1 $2 $3"
msgstr "تغيير اسم نمط الحرف: $1 $2 $3"
#. AvK4p
-#: sw/inc/strings.hrc:547
+#: sw/inc/strings.hrc:548
msgctxt "STR_UNDO_FRMFMT_CREATE"
msgid "Create frame style: $1"
msgstr "إنشاء نمط الإطار: $1"
#. zHLcd
-#: sw/inc/strings.hrc:548
+#: sw/inc/strings.hrc:549
msgctxt "STR_UNDO_FRMFMT_DELETE"
msgid "Delete frame style: $1"
msgstr "حذف نمط الإطار: $1"
#. BUdbD
-#: sw/inc/strings.hrc:549
+#: sw/inc/strings.hrc:550
msgctxt "STR_UNDO_FRMFMT_RENAME"
msgid "Rename frame style: $1 $2 $3"
msgstr "تغيير اسم نمط الإطار: $1 $2 $3"
#. GG9BH
-#: sw/inc/strings.hrc:550
+#: sw/inc/strings.hrc:551
msgctxt "STR_UNDO_NUMRULE_CREATE"
msgid "Create numbering style: $1"
msgstr "إنشاء نمط الترقيم: $1"
#. zYZW8
-#: sw/inc/strings.hrc:551
+#: sw/inc/strings.hrc:552
msgctxt "STR_UNDO_NUMRULE_DELETE"
msgid "Delete numbering style: $1"
msgstr "حذف نمط الترقيم: $1"
#. QhDFe
-#: sw/inc/strings.hrc:552
+#: sw/inc/strings.hrc:553
msgctxt "STR_UNDO_NUMRULE_RENAME"
msgid "Rename numbering style: $1 $2 $3"
msgstr "تغيير اسم نمط الترقيم: $1 $2 $3"
#. oWrh9
-#: sw/inc/strings.hrc:553
+#: sw/inc/strings.hrc:554
msgctxt "STR_UNDO_BOOKMARK_RENAME"
msgid "Rename bookmark: $1 $2 $3"
msgstr "تغيير اسم العلامة: $1 $2 $3"
#. WTcEw
-#: sw/inc/strings.hrc:554
+#: sw/inc/strings.hrc:555
msgctxt "STR_UNDO_INDEX_ENTRY_INSERT"
msgid "Insert index entry"
msgstr "إدراج مدخل في الفهرس"
#. fbidx
-#: sw/inc/strings.hrc:555
+#: sw/inc/strings.hrc:556
msgctxt "STR_UNDO_INDEX_ENTRY_DELETE"
msgid "Delete index entry"
msgstr "حذف مدخل من الفهرس"
#. WCDy7
-#: sw/inc/strings.hrc:556
+#: sw/inc/strings.hrc:557
msgctxt "STR_FIELD"
msgid "field"
msgstr "حقل"
#. aC9iU
-#: sw/inc/strings.hrc:557
+#: sw/inc/strings.hrc:558
msgctxt "STR_UNDO_INSERT_TEXTBOX"
msgid "text box"
msgstr ""
#. yNjem
#. undo: STR_PARAGRAPHS, string.text
-#: sw/inc/strings.hrc:559
+#: sw/inc/strings.hrc:560
msgctxt "STR_PARAGRAPHS"
msgid "Paragraphs"
msgstr "فقرات"
#. 9fb4z
-#: sw/inc/strings.hrc:560
+#: sw/inc/strings.hrc:561
msgctxt "STR_FRAME"
msgid "frame"
msgstr "إطار"
#. gcZ3a
-#: sw/inc/strings.hrc:561
+#: sw/inc/strings.hrc:562
msgctxt "STR_OLE"
msgid "OLE-object"
msgstr "كائن OLE"
#. db5Tg
-#: sw/inc/strings.hrc:562
+#: sw/inc/strings.hrc:563
msgctxt "STR_MATH_FORMULA"
msgid "formula"
msgstr "معادلة"
#. BirkF
-#: sw/inc/strings.hrc:563
+#: sw/inc/strings.hrc:564
msgctxt "STR_CHART"
msgid "chart"
msgstr "رسم بياني"
#. YxCuu
-#: sw/inc/strings.hrc:564
+#: sw/inc/strings.hrc:565
msgctxt "STR_NOTE"
msgid "comment"
msgstr "تعليق"
#. CKqsU
-#: sw/inc/strings.hrc:565
+#: sw/inc/strings.hrc:566
msgctxt "STR_REFERENCE"
msgid "cross-reference"
msgstr "إسناد ترافقي"
#. q9BGR
-#: sw/inc/strings.hrc:566
+#: sw/inc/strings.hrc:567
msgctxt "STR_SCRIPT"
msgid "script"
msgstr "برنامج نصي"
#. o6FWi
-#: sw/inc/strings.hrc:567
+#: sw/inc/strings.hrc:568
msgctxt "STR_AUTHORITY_ENTRY"
msgid "bibliography entry"
msgstr "مُدخل بيبلو جرافيا"
#. qbRLG
-#: sw/inc/strings.hrc:568
+#: sw/inc/strings.hrc:569
msgctxt "STR_SPECIALCHAR"
msgid "special character"
msgstr "حرف خاص"
#. qJd8G
-#: sw/inc/strings.hrc:569
+#: sw/inc/strings.hrc:570
msgctxt "STR_FOOTNOTE"
msgid "footnote"
msgstr "حاشية"
#. bKvaD
-#: sw/inc/strings.hrc:570
+#: sw/inc/strings.hrc:571
msgctxt "STR_GRAPHIC"
msgid "image"
msgstr "صورة"
#. J7CgG
-#: sw/inc/strings.hrc:571
+#: sw/inc/strings.hrc:572
msgctxt "STR_DRAWING_OBJECTS"
msgid "drawing object(s)"
msgstr "كائنات رسم"
#. rYPFG
-#: sw/inc/strings.hrc:572
+#: sw/inc/strings.hrc:573
msgctxt "STR_TABLE_NAME"
msgid "table: $1$2$3"
msgstr "جدول: $1$2$3"
#. AtWxA
-#: sw/inc/strings.hrc:573
+#: sw/inc/strings.hrc:574
msgctxt "STR_CHAPTERS"
msgid "chapter"
msgid_plural "chapters"
@@ -5445,1654 +5451,1654 @@ msgstr[4] ""
msgstr[5] ""
#. 2JCL2
-#: sw/inc/strings.hrc:574
+#: sw/inc/strings.hrc:575
msgctxt "STR_PARAGRAPH_UNDO"
msgid "paragraph"
msgstr "فقرة"
#. DvnGA
-#: sw/inc/strings.hrc:575
+#: sw/inc/strings.hrc:576
msgctxt "STR_PARAGRAPH_SIGN_UNDO"
msgid "Paragraph sign"
msgstr "علامة الفقرة"
#. oL9GG
-#: sw/inc/strings.hrc:576
+#: sw/inc/strings.hrc:577
msgctxt "STR_UNDO_FLYFRMFMT_TITLE"
msgid "Change object title of $1"
msgstr "تغيير عنوان كائن $1"
#. 3Cv7E
-#: sw/inc/strings.hrc:577
+#: sw/inc/strings.hrc:578
msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr ""
#. rWw8U
-#: sw/inc/strings.hrc:578
+#: sw/inc/strings.hrc:579
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
msgid "Create table style: $1"
msgstr "إنشاء نمط الجدول: $1"
#. jGxgy
-#: sw/inc/strings.hrc:579
+#: sw/inc/strings.hrc:580
msgctxt "STR_UNDO_TBLSTYLE_DELETE"
msgid "Delete table style: $1"
msgstr "حذف نمط الجدول: $1"
#. 6NWP3
-#: sw/inc/strings.hrc:580
+#: sw/inc/strings.hrc:581
msgctxt "STR_UNDO_TBLSTYLE_UPDATE"
msgid "Update table style: $1"
msgstr "تحديث نمط الجدول: $1"
#. JegfU
-#: sw/inc/strings.hrc:581
+#: sw/inc/strings.hrc:582
msgctxt "STR_UNDO_TABLE_DELETE"
msgid "Delete table"
msgstr "حذف الجدول"
#. KSMpJ
-#: sw/inc/strings.hrc:582
+#: sw/inc/strings.hrc:583
msgctxt "STR_UNDO_INSERT_FORM_FIELD"
msgid "Insert form field"
msgstr ""
#. 2zJmG
-#: sw/inc/strings.hrc:583
+#: sw/inc/strings.hrc:584
msgctxt "STR_DROP_DOWN_FIELD_ITEM_LIMIT"
msgid "You can specify maximum of 25 items for a drop-down form field."
msgstr ""
#. CUXeF
-#: sw/inc/strings.hrc:585
+#: sw/inc/strings.hrc:586
msgctxt "STR_ACCESS_DOC_NAME"
msgid "Document view"
msgstr "عرض المستند"
#. FrBrC
-#: sw/inc/strings.hrc:586
+#: sw/inc/strings.hrc:587
msgctxt "STR_ACCESS_DOC_DESC"
msgid "Document view"
msgstr "عرض المستند"
#. BCEgS
-#: sw/inc/strings.hrc:587
+#: sw/inc/strings.hrc:588
msgctxt "STR_ACCESS_HEADER_NAME"
msgid "Header $(ARG1)"
msgstr "الترويسة $(ARG1)"
#. zKdDR
-#: sw/inc/strings.hrc:588
+#: sw/inc/strings.hrc:589
msgctxt "STR_ACCESS_HEADER_DESC"
msgid "Header page $(ARG1)"
msgstr "صفحة الترويسة $(ARG1)"
#. NhFrV
-#: sw/inc/strings.hrc:589
+#: sw/inc/strings.hrc:590
msgctxt "STR_ACCESS_FOOTER_NAME"
msgid "Footer $(ARG1)"
msgstr "التذيل $(ARG1)"
#. 6GJNd
-#: sw/inc/strings.hrc:590
+#: sw/inc/strings.hrc:591
msgctxt "STR_ACCESS_FOOTER_DESC"
msgid "Footer page $(ARG1)"
msgstr "صفحة التذييل $(ARG1)"
#. VGUwW
-#: sw/inc/strings.hrc:591
+#: sw/inc/strings.hrc:592
msgctxt "STR_ACCESS_FOOTNOTE_NAME"
msgid "Footnote $(ARG1)"
msgstr "حاشية $(ARG1)"
#. a7XMU
-#: sw/inc/strings.hrc:592
+#: sw/inc/strings.hrc:593
msgctxt "STR_ACCESS_FOOTNOTE_DESC"
msgid "Footnote $(ARG1)"
msgstr "حاشية $(ARG1)"
#. 3ExiP
-#: sw/inc/strings.hrc:593
+#: sw/inc/strings.hrc:594
msgctxt "STR_ACCESS_ENDNOTE_NAME"
msgid "Endnote $(ARG1)"
msgstr "تذييل الخاتمة $(ARG1)"
#. 8XdTm
-#: sw/inc/strings.hrc:594
+#: sw/inc/strings.hrc:595
msgctxt "STR_ACCESS_ENDNOTE_DESC"
msgid "Endnote $(ARG1)"
msgstr "تذييل الخاتمة $(ARG1)"
#. 4sTZN
-#: sw/inc/strings.hrc:595
+#: sw/inc/strings.hrc:596
msgctxt "STR_ACCESS_TABLE_DESC"
msgid "$(ARG1) on page $(ARG2)"
msgstr "$(ARG1) في الصفحة $(ARG2)"
#. Z5Uy9
-#: sw/inc/strings.hrc:596
+#: sw/inc/strings.hrc:597
msgctxt "STR_ACCESS_PAGE_NAME"
msgid "Page $(ARG1)"
msgstr "الصفحة $(ARG1)"
#. CWroT
-#: sw/inc/strings.hrc:597
+#: sw/inc/strings.hrc:598
msgctxt "STR_ACCESS_PAGE_DESC"
msgid "Page: $(ARG1)"
msgstr "الصفحة: $(ARG1)"
#. iwfxM
-#: sw/inc/strings.hrc:598
+#: sw/inc/strings.hrc:599
msgctxt "STR_ACCESS_ANNOTATION_AUTHOR_NAME"
msgid "Author"
msgstr "المؤلف"
#. sff9t
-#: sw/inc/strings.hrc:599
+#: sw/inc/strings.hrc:600
msgctxt "STR_ACCESS_ANNOTATION_DATE_NAME"
msgid "Date"
msgstr "التاريخ"
#. VScXC
-#: sw/inc/strings.hrc:600
+#: sw/inc/strings.hrc:601
msgctxt "STR_ACCESS_ANNOTATION_RESOLVED_NAME"
msgid "Resolved"
msgstr ""
#. JtzA4
-#: sw/inc/strings.hrc:601
+#: sw/inc/strings.hrc:602
msgctxt "STR_ACCESS_ANNOTATION_BUTTON_NAME"
msgid "Actions"
msgstr "الإجراءات"
#. cHWqM
-#: sw/inc/strings.hrc:602
+#: sw/inc/strings.hrc:603
msgctxt "STR_ACCESS_ANNOTATION_BUTTON_DESC"
msgid "Activate this button to open a list of actions which can be performed on this comment and other comments"
msgstr "قم بتنشيط هذا الزر لفتح قائمة بالإجراءات التي يمكن تنفيذها على هذا التعليق والتعليقات الأخرى"
#. 9YxaB
-#: sw/inc/strings.hrc:603
+#: sw/inc/strings.hrc:604
msgctxt "STR_ACCESS_PREVIEW_DOC_NAME"
msgid "Document preview"
msgstr "معاينة المستند"
#. eYFFo
-#: sw/inc/strings.hrc:604
+#: sw/inc/strings.hrc:605
msgctxt "STR_ACCESS_PREVIEW_DOC_SUFFIX"
msgid "(Preview mode)"
msgstr "(وضع المعاينة)"
#. Fp7Hn
-#: sw/inc/strings.hrc:605
+#: sw/inc/strings.hrc:606
msgctxt "STR_ACCESS_DOC_WORDPROCESSING"
msgid "%PRODUCTNAME Document"
msgstr "مستند %PRODUCTNAME"
#. CsQKH
-#: sw/inc/strings.hrc:607
+#: sw/inc/strings.hrc:608
msgctxt "STR_COMCORE_READERROR"
msgid "Read Error"
msgstr "خطأ في القراءة"
#. ztbVu
-#: sw/inc/strings.hrc:608
+#: sw/inc/strings.hrc:609
msgctxt "STR_COMCORE_CANT_SHOW"
msgid "Image cannot be displayed."
msgstr "تعذّر عرض الصورة."
#. iJsFt
-#: sw/inc/strings.hrc:609
+#: sw/inc/strings.hrc:610
msgctxt "STR_ERROR_CLPBRD_READ"
msgid "Error reading from the clipboard."
msgstr "خطأ في القراءة من الحافظة."
#. bXZQD
-#: sw/inc/strings.hrc:611
+#: sw/inc/strings.hrc:612
msgctxt "STR_COLUMN_BREAK"
msgid "Manual Column Break"
msgstr "فاصل أعمدة يدويّ"
#. 7DzNG
-#: sw/inc/strings.hrc:613
+#: sw/inc/strings.hrc:614
msgctxt "STR_CHART2_ROW_LABEL_TEXT"
msgid "Row %ROWNUMBER"
msgstr "الصّفّ %ROWNUMBER"
#. GYFVF
-#: sw/inc/strings.hrc:614
+#: sw/inc/strings.hrc:615
msgctxt "STR_CHART2_COL_LABEL_TEXT"
msgid "Column %COLUMNLETTER"
msgstr "العمود %COLUMNLETTER"
#. GGS2b
-#: sw/inc/strings.hrc:615
+#: sw/inc/strings.hrc:616
msgctxt "STR_STYLE_FAMILY_CHARACTER"
msgid "Character"
msgstr "المحارف"
#. KBw5e
-#: sw/inc/strings.hrc:616
+#: sw/inc/strings.hrc:617
msgctxt "STR_STYLE_FAMILY_PARAGRAPH"
msgid "Paragraph"
msgstr "الفقرات"
#. ERH8o
-#: sw/inc/strings.hrc:617
+#: sw/inc/strings.hrc:618
msgctxt "STR_STYLE_FAMILY_FRAME"
msgid "Frame"
msgstr "الإطارات"
#. Cqjn8
-#: sw/inc/strings.hrc:618
+#: sw/inc/strings.hrc:619
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Pages"
msgstr "الصّفحات"
#. FFZEr
-#: sw/inc/strings.hrc:619
+#: sw/inc/strings.hrc:620
msgctxt "STR_STYLE_FAMILY_NUMBERING"
msgid "List"
msgstr ""
#. NydLs
-#: sw/inc/strings.hrc:620
+#: sw/inc/strings.hrc:621
msgctxt "STR_STYLE_FAMILY_TABLE"
msgid "Table"
msgstr "الجداول"
#. XUhuM
-#: sw/inc/strings.hrc:621
+#: sw/inc/strings.hrc:622
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell"
msgstr "خلية"
#. DRqDZ
-#: sw/inc/strings.hrc:623
+#: sw/inc/strings.hrc:624
msgctxt "ST_SCRIPT_ASIAN"
msgid "Asian"
msgstr "آسيوي"
#. owFtq
-#: sw/inc/strings.hrc:624
+#: sw/inc/strings.hrc:625
msgctxt "ST_SCRIPT_CTL"
msgid "CTL"
msgstr "النصوص المركّبة"
#. ap5iF
-#: sw/inc/strings.hrc:625
+#: sw/inc/strings.hrc:626
msgctxt "ST_SCRIPT_WESTERN"
msgid "Western"
msgstr "غربي"
#. HD64i
-#: sw/inc/strings.hrc:626
+#: sw/inc/strings.hrc:627
msgctxt "STR_PRINTOPTUI_PRODUCTNAME"
msgid "%PRODUCTNAME %s"
msgstr "‏%PRODUCTNAME ‏%s"
#. q6egu
-#: sw/inc/strings.hrc:627
+#: sw/inc/strings.hrc:628
msgctxt "STR_PRINTOPTUI_CONTENTS"
msgid "Contents"
msgstr "المحتويات"
#. Ka4fM
-#: sw/inc/strings.hrc:628
+#: sw/inc/strings.hrc:629
msgctxt "STR_PRINTOPTUI_PAGE_BACKGROUND"
msgid "Page ba~ckground"
msgstr "خل~فية الصفحة"
#. YPEEH
-#: sw/inc/strings.hrc:629
+#: sw/inc/strings.hrc:630
msgctxt "STR_PRINTOPTUI_PICTURES"
msgid "~Images and other graphic objects"
msgstr ""
#. L6GSj
-#: sw/inc/strings.hrc:630
+#: sw/inc/strings.hrc:631
msgctxt "STR_PRINTOPTUI_HIDDEN"
msgid "Hidden te~xt"
msgstr "نص م~خفي"
#. pXiRN
-#: sw/inc/strings.hrc:631
+#: sw/inc/strings.hrc:632
msgctxt "STR_PRINTOPTUI_TEXT_PLACEHOLDERS"
msgid "~Text placeholders"
msgstr "حافظات مكان ال~نص"
#. JBWVd
-#: sw/inc/strings.hrc:632
+#: sw/inc/strings.hrc:633
msgctxt "STR_PRINTOPTUI_FORM_CONTROLS"
msgid "Form control~s"
msgstr "متح~كّمات النماذج"
#. X8Bfu
-#: sw/inc/strings.hrc:633
+#: sw/inc/strings.hrc:634
msgctxt "STR_PRINTOPTUI_COLOR"
msgid "Color"
msgstr "اللون"
#. kQDcq
-#: sw/inc/strings.hrc:634
+#: sw/inc/strings.hrc:635
msgctxt "STR_PRINTOPTUI_PRINT_BLACK"
msgid "Print text in blac~k"
msgstr "اطبع النص بالأ~سود"
#. DEELn
-#: sw/inc/strings.hrc:635
+#: sw/inc/strings.hrc:636
msgctxt "STR_PRINTOPTUI_PAGES_TEXT"
msgid "Pages:"
msgstr ""
#. uddbB
-#: sw/inc/strings.hrc:636
+#: sw/inc/strings.hrc:637
msgctxt "STR_PRINTOPTUI_PRINT_BLANK"
msgid "Print ~automatically inserted blank pages"
msgstr "اطبع الص~فحات الفارغة المُدرجة تلقائيًا"
#. MTJt2
-#: sw/inc/strings.hrc:637
+#: sw/inc/strings.hrc:638
msgctxt "STR_PRINTOPTUI_ONLY_PAPER"
msgid "~Use only paper tray from printer preferences"
msgstr "اس~تخدم فقط درج الورق من تفضيلات الطابعة"
#. 4uBam
-#: sw/inc/strings.hrc:638
+#: sw/inc/strings.hrc:639
msgctxt "STR_PRINTOPTUI_NONE"
msgid "None (document only)"
msgstr "لا شيء (المستند فقط)"
#. pbQtA
-#: sw/inc/strings.hrc:639
+#: sw/inc/strings.hrc:640
msgctxt "STR_PRINTOPTUI_COMMENTS_ONLY"
msgid "Comments only"
msgstr "التعليقات فقط"
#. sVnbD
-#: sw/inc/strings.hrc:640
+#: sw/inc/strings.hrc:641
msgctxt "STR_PRINTOPTUI_PLACE_END"
msgid "Place at end of document"
msgstr "ضعها في نهاية المستند"
#. D4BXH
-#: sw/inc/strings.hrc:641
+#: sw/inc/strings.hrc:642
msgctxt "STR_PRINTOPTUI_PLACE_PAGE"
msgid "Place at end of page"
msgstr "ضعها في نهاية الصفحة"
#. 6rzab
-#: sw/inc/strings.hrc:642
+#: sw/inc/strings.hrc:643
msgctxt "STR_PRINTOPTUI_COMMENTS"
msgid "~Comments"
msgstr "ال~تعليقات"
#. cnqLU
-#: sw/inc/strings.hrc:643
+#: sw/inc/strings.hrc:644
msgctxt "STR_PRINTOPTUI_BROCHURE"
msgid "Broch~ure"
msgstr "من~شور"
#. t6drz
-#: sw/inc/strings.hrc:644
+#: sw/inc/strings.hrc:645
msgctxt "STR_PRINTOPTUI_LEFT_SCRIPT"
msgid "Left-to-right script"
msgstr "كتابة من اليسار إلى اليمين"
#. QgmxB
-#: sw/inc/strings.hrc:645
+#: sw/inc/strings.hrc:646
msgctxt "STR_PRINTOPTUI_RIGHT_SCRIPT"
msgid "Right-to-left script"
msgstr "كتابة من اليمين إلى اليسار"
#. t4Cm7
-#: sw/inc/strings.hrc:646
+#: sw/inc/strings.hrc:647
msgctxt "STR_PRINTOPTUI_PRINTALLPAGES"
msgid "~All Pages"
msgstr ""
#. ZDRM2
-#: sw/inc/strings.hrc:647
+#: sw/inc/strings.hrc:648
msgctxt "STR_PRINTOPTUI_PRINTPAGES"
msgid "Pa~ges:"
msgstr ""
#. rajyx
-#: sw/inc/strings.hrc:648
+#: sw/inc/strings.hrc:649
msgctxt "STR_PRINTOPTUI_PRINTSELECTION"
msgid "~Selection"
msgstr ""
#. 9EXcV
-#: sw/inc/strings.hrc:649
+#: sw/inc/strings.hrc:650
msgctxt "STR_PRINTOPTUI_PLACE_MARGINS"
msgid "Place in margins"
msgstr "ضعها في الحواف"
#. NGQw3
-#: sw/inc/strings.hrc:651
+#: sw/inc/strings.hrc:652
msgctxt "STR_FORMULA_CALC"
msgid "Functions"
msgstr "دالّات"
#. D3RCG
-#: sw/inc/strings.hrc:652
+#: sw/inc/strings.hrc:653
msgctxt "STR_FORMULA_CANCEL"
msgid "Cancel"
msgstr "ألغِ"
#. 3Tg3C
-#: sw/inc/strings.hrc:653
+#: sw/inc/strings.hrc:654
msgctxt "STR_FORMULA_APPLY"
msgid "Apply"
msgstr "طبّق"
#. UDkFb
-#: sw/inc/strings.hrc:654
+#: sw/inc/strings.hrc:655
msgctxt "STR_ACCESS_FORMULA_TOOLBAR"
msgid "Formula Tool Bar"
msgstr "شريط أدوات المعادلة"
#. Z3CB5
-#: sw/inc/strings.hrc:655
+#: sw/inc/strings.hrc:656
msgctxt "STR_ACCESS_FORMULA_TYPE"
msgid "Formula Type"
msgstr "نوع المعادلة"
#. 3CCa7
-#: sw/inc/strings.hrc:656
+#: sw/inc/strings.hrc:657
msgctxt "STR_ACCESS_FORMULA_TEXT"
msgid "Formula Text"
msgstr "نصّ المعادلة"
#. FXNer
-#: sw/inc/strings.hrc:658
+#: sw/inc/strings.hrc:659
msgctxt "STR_ACCESS_TL_GLOBAL"
msgid "Global View"
msgstr ""
#. aeeRP
-#: sw/inc/strings.hrc:659
+#: sw/inc/strings.hrc:660
msgctxt "STR_ACCESS_TL_CONTENT"
msgid "Content Navigation View"
msgstr "منظور الملاحة في المحتوى"
#. UAExA
-#: sw/inc/strings.hrc:660
+#: sw/inc/strings.hrc:661
msgctxt "STR_OUTLINE_LEVEL"
msgid "Outline Level"
msgstr "مستوى المخطط العام"
#. yERK6
-#: sw/inc/strings.hrc:661
+#: sw/inc/strings.hrc:662
msgctxt "STR_DRAGMODE"
msgid "Drag Mode"
msgstr "وضع السحب"
#. PAB4k
-#: sw/inc/strings.hrc:662
+#: sw/inc/strings.hrc:663
msgctxt "STR_SEND_OUTLINE_TO_CLIPBOARD_ENTRY"
msgid "Send Outline to Clipboard"
msgstr ""
#. b5tPU
-#: sw/inc/strings.hrc:663
+#: sw/inc/strings.hrc:664
msgctxt "STR_OUTLINE_TRACKING"
msgid "Outline Tracking"
msgstr ""
#. qzXwn
-#: sw/inc/strings.hrc:664
+#: sw/inc/strings.hrc:665
msgctxt "STR_OUTLINE_TRACKING_DEFAULT"
msgid "Default"
msgstr ""
#. HGDgJ
-#: sw/inc/strings.hrc:665
+#: sw/inc/strings.hrc:666
msgctxt "STR_OUTLINE_TRACKING_FOCUS"
msgid "Focus"
msgstr ""
#. BYRpF
-#: sw/inc/strings.hrc:666
+#: sw/inc/strings.hrc:667
msgctxt "STR_OUTLINE_TRACKING_OFF"
msgid "Off"
msgstr ""
#. NGgt3
-#: sw/inc/strings.hrc:667
+#: sw/inc/strings.hrc:668
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle outline folding"
msgstr ""
#. 44jEc
-#: sw/inc/strings.hrc:668
+#: sw/inc/strings.hrc:669
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
msgstr ""
#. mnZA9
-#: sw/inc/strings.hrc:669
+#: sw/inc/strings.hrc:670
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle outline folding"
msgstr ""
#. rkD8H
-#: sw/inc/strings.hrc:670
+#: sw/inc/strings.hrc:671
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
msgstr ""
#. oBH6y
-#: sw/inc/strings.hrc:671
+#: sw/inc/strings.hrc:672
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_TOGGLE"
msgid "Toggle"
msgstr ""
#. YBDFD
-#: sw/inc/strings.hrc:672
+#: sw/inc/strings.hrc:673
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_SHOW_ALL"
msgid "Unfold All"
msgstr ""
#. Cj4js
-#: sw/inc/strings.hrc:673
+#: sw/inc/strings.hrc:674
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_HIDE_ALL"
msgid "Fold All"
msgstr ""
#. 9Fipd
-#: sw/inc/strings.hrc:675
+#: sw/inc/strings.hrc:676
msgctxt "STR_EXPANDALL"
msgid "Expand All"
msgstr ""
#. FxGVt
-#: sw/inc/strings.hrc:676
+#: sw/inc/strings.hrc:677
msgctxt "STR_COLLAPSEALL"
msgid "Collapse All"
msgstr ""
#. xvSRm
-#: sw/inc/strings.hrc:677
+#: sw/inc/strings.hrc:678
msgctxt "STR_HYPERLINK"
msgid "Insert as Hyperlink"
msgstr "أدرج كرابط"
#. sdfGe
-#: sw/inc/strings.hrc:678
+#: sw/inc/strings.hrc:679
msgctxt "STR_LINK_REGION"
msgid "Insert as Link"
msgstr "أدرج كرابط"
#. Suaiz
-#: sw/inc/strings.hrc:679
+#: sw/inc/strings.hrc:680
msgctxt "STR_COPY_REGION"
msgid "Insert as Copy"
msgstr "أدرج كنسخة"
#. VgdhT
-#: sw/inc/strings.hrc:680
+#: sw/inc/strings.hrc:681
msgctxt "STR_DISPLAY"
msgid "Display"
msgstr "عرض"
#. 3VXp5
-#: sw/inc/strings.hrc:681
+#: sw/inc/strings.hrc:682
msgctxt "STR_ACTIVE_VIEW"
msgid "Active Window"
msgstr "النافذة النشطة"
#. fAAUc
-#: sw/inc/strings.hrc:682
+#: sw/inc/strings.hrc:683
msgctxt "STR_HIDDEN"
msgid "hidden"
msgstr "مخفي"
#. 3VWjq
-#: sw/inc/strings.hrc:683
+#: sw/inc/strings.hrc:684
msgctxt "STR_ACTIVE"
msgid "active"
msgstr "نشط"
#. YjPvg
-#: sw/inc/strings.hrc:684
+#: sw/inc/strings.hrc:685
msgctxt "STR_INACTIVE"
msgid "inactive"
msgstr "خامل"
#. tBPKU
-#: sw/inc/strings.hrc:685
+#: sw/inc/strings.hrc:686
msgctxt "STR_EDIT_ENTRY"
msgid "Edit..."
msgstr "حرّر..."
#. ppC87
-#: sw/inc/strings.hrc:686
+#: sw/inc/strings.hrc:687
msgctxt "STR_UPDATE"
msgid "~Update"
msgstr "حدّ~ث"
#. 44Esc
-#: sw/inc/strings.hrc:687
+#: sw/inc/strings.hrc:688
msgctxt "STR_EDIT_CONTENT"
msgid "Edit"
msgstr "حرّر"
#. w3ZrD
-#: sw/inc/strings.hrc:688
+#: sw/inc/strings.hrc:689
msgctxt "STR_EDIT_LINK"
msgid "Edit link"
msgstr "حرّر الرابط"
#. xyPWE
-#: sw/inc/strings.hrc:689
+#: sw/inc/strings.hrc:690
msgctxt "STR_EDIT_INSERT"
msgid "Insert"
msgstr "أدرج"
#. AT9SS
-#: sw/inc/strings.hrc:690
+#: sw/inc/strings.hrc:691
msgctxt "STR_INDEX"
msgid "~Index"
msgstr "ال~فهرس"
#. MnBLc
-#: sw/inc/strings.hrc:691
+#: sw/inc/strings.hrc:692
msgctxt "STR_FILE"
msgid "File"
msgstr "ملف"
#. DdBgh
-#: sw/inc/strings.hrc:692
+#: sw/inc/strings.hrc:693
msgctxt "STR_NEW_FILE"
msgid "New Document"
msgstr "مستند جديد"
#. aV9Uy
-#: sw/inc/strings.hrc:693
+#: sw/inc/strings.hrc:694
msgctxt "STR_INSERT_TEXT"
msgid "Text"
msgstr "نص"
#. 5rD3D
-#: sw/inc/strings.hrc:694
+#: sw/inc/strings.hrc:695
msgctxt "STR_DELETE"
msgid "Delete"
msgstr "احذف"
#. 9MrsU
-#: sw/inc/strings.hrc:695
+#: sw/inc/strings.hrc:696
msgctxt "STR_DELETE_ENTRY"
msgid "~Delete"
msgstr "اح~ذف"
#. A28Rb
-#: sw/inc/strings.hrc:696
+#: sw/inc/strings.hrc:697
msgctxt "STR_UPDATE_SEL"
msgid "Selection"
msgstr "التحديد"
#. gRBxA
-#: sw/inc/strings.hrc:697
+#: sw/inc/strings.hrc:698
msgctxt "STR_UPDATE_INDEX"
msgid "Indexes"
msgstr "الفهارس"
#. WKwLS
-#: sw/inc/strings.hrc:698
+#: sw/inc/strings.hrc:699
msgctxt "STR_UPDATE_LINK"
msgid "Links"
msgstr "الوصلات"
#. TaaJK
-#: sw/inc/strings.hrc:699
+#: sw/inc/strings.hrc:700
msgctxt "STR_UPDATE_ALL"
msgid "All"
msgstr "الكل"
#. HpMeb
-#: sw/inc/strings.hrc:701
+#: sw/inc/strings.hrc:702
msgctxt "STR_INVISIBLE"
msgid "hidden"
msgstr "مخفي"
#. XcCnB
-#: sw/inc/strings.hrc:702
+#: sw/inc/strings.hrc:703
msgctxt "STR_BROKEN_LINK"
msgid "File not found: "
msgstr "لم يُعثر على الملف: "
#. UC53U
-#: sw/inc/strings.hrc:704
+#: sw/inc/strings.hrc:705
msgctxt "STR_RESOLVED"
msgid "RESOLVED"
msgstr ""
#. 3ceMF
-#: sw/inc/strings.hrc:706
+#: sw/inc/strings.hrc:707
msgctxt "STR_MARGIN_TOOLTIP_LEFT"
msgid "Left: "
msgstr "يسار: "
#. EiXF2
-#: sw/inc/strings.hrc:707
+#: sw/inc/strings.hrc:708
msgctxt "STR_MARGIN_TOOLTIP_RIGHT"
msgid ". Right: "
msgstr ". يمين: "
#. UFpVa
-#: sw/inc/strings.hrc:708
+#: sw/inc/strings.hrc:709
msgctxt "STR_MARGIN_TOOLTIP_INNER"
msgid "Inner: "
msgstr "داخلي: "
#. XE7Wb
-#: sw/inc/strings.hrc:709
+#: sw/inc/strings.hrc:710
msgctxt "STR_MARGIN_TOOLTIP_OUTER"
msgid ". Outer: "
msgstr ". خارجي: "
#. 3A8Vg
-#: sw/inc/strings.hrc:710
+#: sw/inc/strings.hrc:711
msgctxt "STR_MARGIN_TOOLTIP_TOP"
msgid ". Top: "
msgstr ". أعلى: "
#. dRhyZ
-#: sw/inc/strings.hrc:711
+#: sw/inc/strings.hrc:712
msgctxt "STR_MARGIN_TOOLTIP_BOT"
msgid ". Bottom: "
msgstr ". أسفل: "
#. XuC4Y
#. Error calculator
-#: sw/inc/strings.hrc:714
+#: sw/inc/strings.hrc:715
msgctxt "STR_POSTIT_PAGE"
msgid "Page"
msgstr "صفحة"
#. AeDYh
-#: sw/inc/strings.hrc:715
+#: sw/inc/strings.hrc:716
msgctxt "STR_POSTIT_LINE"
msgid "Line"
msgstr "سطر"
#. kfJG6
-#: sw/inc/strings.hrc:716
+#: sw/inc/strings.hrc:717
msgctxt "STR_POSTIT_AUTHOR"
msgid "Author"
msgstr "المؤلف"
#. gejqG
-#: sw/inc/strings.hrc:717
+#: sw/inc/strings.hrc:718
msgctxt "STR_CALC_SYNTAX"
msgid "** Syntax Error **"
msgstr "** خطأ صياغي **"
#. q6dUT
-#: sw/inc/strings.hrc:718
+#: sw/inc/strings.hrc:719
msgctxt "STR_CALC_ZERODIV"
msgid "** Division by zero **"
msgstr "** القسمة على صفر **"
#. HSo6d
-#: sw/inc/strings.hrc:719
+#: sw/inc/strings.hrc:720
msgctxt "STR_CALC_BRACK"
msgid "** Wrong use of brackets **"
msgstr "** استخدام خاطئ للأقواس **"
#. jcNfg
-#: sw/inc/strings.hrc:720
+#: sw/inc/strings.hrc:721
msgctxt "STR_CALC_POW"
msgid "** Square function overflow **"
msgstr "** فائض في الدالة التربيعية **"
#. C453V
-#: sw/inc/strings.hrc:721
+#: sw/inc/strings.hrc:722
msgctxt "STR_CALC_OVERFLOW"
msgid "** Overflow **"
msgstr "** فائض **"
#. KEQfz
-#: sw/inc/strings.hrc:722
+#: sw/inc/strings.hrc:723
msgctxt "STR_CALC_DEFAULT"
msgid "** Error **"
msgstr "** خطأ **"
#. hxrg9
-#: sw/inc/strings.hrc:723
+#: sw/inc/strings.hrc:724
msgctxt "STR_CALC_ERROR"
msgid "** Expression is faulty **"
msgstr "** بالتعبير علّة **"
#. 2yBhF
-#: sw/inc/strings.hrc:724
+#: sw/inc/strings.hrc:725
msgctxt "STR_GETREFFLD_REFITEMNOTFOUND"
msgid "Error: Reference source not found"
msgstr "خطأ: لم يُعثر على مصدر المرجع"
#. jgRW7
-#: sw/inc/strings.hrc:725
+#: sw/inc/strings.hrc:726
msgctxt "STR_TEMPLATE_NONE"
msgid "None"
msgstr "بلا"
#. KRD6s
-#: sw/inc/strings.hrc:726
+#: sw/inc/strings.hrc:727
msgctxt "STR_FIELD_FIXED"
msgid "(fixed)"
msgstr "(ثابت)"
#. FCRUB
-#: sw/inc/strings.hrc:727
+#: sw/inc/strings.hrc:728
msgctxt "STR_DURATION_FORMAT"
msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " سنة: %1 شهر: %2 يوم: %3 ساعة: %4 دقيقة: %5 ثانية: %6"
#. ocA84
-#: sw/inc/strings.hrc:728
+#: sw/inc/strings.hrc:729
msgctxt "STR_TOI"
msgid "Alphabetical Index"
msgstr "فهرس أبجدي"
#. GDCRF
-#: sw/inc/strings.hrc:729
+#: sw/inc/strings.hrc:730
msgctxt "STR_TOU"
msgid "User-Defined"
msgstr "عرّفه المستخدم"
#. vnaNc
-#: sw/inc/strings.hrc:730
+#: sw/inc/strings.hrc:731
msgctxt "STR_TOC"
msgid "Table of Contents"
msgstr "جدول المحتويات"
#. BESjb
-#: sw/inc/strings.hrc:731
+#: sw/inc/strings.hrc:732
msgctxt "STR_TOX_AUTH"
msgid "Bibliography"
msgstr "بيبلوجرافيا"
#. ZFBUD
-#: sw/inc/strings.hrc:732
+#: sw/inc/strings.hrc:733
msgctxt "STR_TOX_CITATION"
msgid "Citation"
msgstr "اقتباس"
#. WAs8q
-#: sw/inc/strings.hrc:733
+#: sw/inc/strings.hrc:734
msgctxt "STR_TOX_TBL"
msgid "Index of Tables"
msgstr "فهرس الجداول"
#. NFzTx
-#: sw/inc/strings.hrc:734
+#: sw/inc/strings.hrc:735
msgctxt "STR_TOX_OBJ"
msgid "Table of Objects"
msgstr "جدول الكائنات"
#. mSyms
-#: sw/inc/strings.hrc:735
+#: sw/inc/strings.hrc:736
msgctxt "STR_TOX_ILL"
msgid "Table of Figures"
msgstr ""
#. TspkU
#. SubType DocInfo
-#: sw/inc/strings.hrc:737
+#: sw/inc/strings.hrc:738
msgctxt "FLD_DOCINFO_TITEL"
msgid "Title"
msgstr "العنوان"
#. ziEpC
-#: sw/inc/strings.hrc:738
+#: sw/inc/strings.hrc:739
msgctxt "FLD_DOCINFO_THEMA"
msgid "Subject"
msgstr "الموضوع"
#. FCVZS
-#: sw/inc/strings.hrc:739
+#: sw/inc/strings.hrc:740
msgctxt "FLD_DOCINFO_KEYS"
msgid "Keywords"
msgstr "الكلمات المفتاحية"
#. kHC7q
-#: sw/inc/strings.hrc:740
+#: sw/inc/strings.hrc:741
msgctxt "FLD_DOCINFO_COMMENT"
msgid "Comments"
msgstr "تعليقات"
#. i6psX
-#: sw/inc/strings.hrc:741
+#: sw/inc/strings.hrc:742
msgctxt "FLD_DOCINFO_CREATE"
msgid "Created"
msgstr "أُنشئ في"
#. L2Bxp
-#: sw/inc/strings.hrc:742
+#: sw/inc/strings.hrc:743
msgctxt "FLD_DOCINFO_CHANGE"
msgid "Modified"
msgstr "معدل"
#. D2YKS
-#: sw/inc/strings.hrc:743
+#: sw/inc/strings.hrc:744
msgctxt "FLD_DOCINFO_PRINT"
msgid "Last printed"
msgstr "آخر طباعة في"
#. QtuZM
-#: sw/inc/strings.hrc:744
+#: sw/inc/strings.hrc:745
msgctxt "FLD_DOCINFO_DOCNO"
msgid "Revision number"
msgstr "رقم المراجعة"
#. YDFbi
-#: sw/inc/strings.hrc:745
+#: sw/inc/strings.hrc:746
msgctxt "FLD_DOCINFO_EDIT"
msgid "Total editing time"
msgstr "إجمالي وقت التحرير"
#. EpZ9C
-#: sw/inc/strings.hrc:746
+#: sw/inc/strings.hrc:747
msgctxt "STR_PAGEDESC_NAME"
msgid "Convert $(ARG1)"
msgstr "تحويل $(ARG1)"
#. nY3NU
-#: sw/inc/strings.hrc:747
+#: sw/inc/strings.hrc:748
msgctxt "STR_PAGEDESC_FIRSTNAME"
msgid "First convert $(ARG1)"
msgstr ""
#. eQtGV
-#: sw/inc/strings.hrc:748
+#: sw/inc/strings.hrc:749
msgctxt "STR_PAGEDESC_FOLLOWNAME"
msgid "Next convert $(ARG1)"
msgstr ""
#. aBwxC
-#: sw/inc/strings.hrc:749
+#: sw/inc/strings.hrc:750
msgctxt "STR_AUTH_TYPE_ARTICLE"
msgid "Article"
msgstr "المقالة"
#. di8ud
-#: sw/inc/strings.hrc:750
+#: sw/inc/strings.hrc:751
msgctxt "STR_AUTH_TYPE_BOOK"
msgid "Book"
msgstr "الكتاب"
#. GD5KJ
-#: sw/inc/strings.hrc:751
+#: sw/inc/strings.hrc:752
msgctxt "STR_AUTH_TYPE_BOOKLET"
msgid "Brochures"
msgstr "منشورات"
#. mfFSf
-#: sw/inc/strings.hrc:752
+#: sw/inc/strings.hrc:753
msgctxt "STR_AUTH_TYPE_CONFERENCE"
msgid "Conference proceedings"
msgstr "وقائع المؤتمر"
#. Et2Px
-#: sw/inc/strings.hrc:753
+#: sw/inc/strings.hrc:754
msgctxt "STR_AUTH_TYPE_INBOOK"
msgid "Book excerpt"
msgstr "مقتبسات الكتب"
#. ys2B8
-#: sw/inc/strings.hrc:754
+#: sw/inc/strings.hrc:755
msgctxt "STR_AUTH_TYPE_INCOLLECTION"
msgid "Book excerpt with title"
msgstr "مقتبسات الكتب مع العنوان"
#. mdEqj
-#: sw/inc/strings.hrc:755
+#: sw/inc/strings.hrc:756
msgctxt "STR_AUTH_TYPE_INPROCEEDINGS"
msgid "Conference proceedings"
msgstr "وقائع المؤتمر"
#. jNmVD
-#: sw/inc/strings.hrc:756
+#: sw/inc/strings.hrc:757
msgctxt "STR_AUTH_TYPE_JOURNAL"
msgid "Journal"
msgstr "دفتر اليومية"
#. M3xkM
-#: sw/inc/strings.hrc:757
+#: sw/inc/strings.hrc:758
msgctxt "STR_AUTH_TYPE_MANUAL"
msgid "Techn. documentation"
msgstr "الوثائق التقنية"
#. EJAj4
-#: sw/inc/strings.hrc:758
+#: sw/inc/strings.hrc:759
msgctxt "STR_AUTH_TYPE_MASTERSTHESIS"
msgid "Thesis"
msgstr "الأطروحة"
#. NoUCv
-#: sw/inc/strings.hrc:759
+#: sw/inc/strings.hrc:760
msgctxt "STR_AUTH_TYPE_MISC"
msgid "Miscellaneous"
msgstr "منوعات"
#. qNGGE
-#: sw/inc/strings.hrc:760
+#: sw/inc/strings.hrc:761
msgctxt "STR_AUTH_TYPE_PHDTHESIS"
msgid "Dissertation"
msgstr "الرسالة"
#. L7W7R
-#: sw/inc/strings.hrc:761
+#: sw/inc/strings.hrc:762
msgctxt "STR_AUTH_TYPE_PROCEEDINGS"
msgid "Conference proceedings"
msgstr "وقائع المؤتمر"
#. X8bGG
-#: sw/inc/strings.hrc:762
+#: sw/inc/strings.hrc:763
msgctxt "STR_AUTH_TYPE_TECHREPORT"
msgid "Research report"
msgstr "تقرير بحثي"
#. 4dDC9
-#: sw/inc/strings.hrc:763
+#: sw/inc/strings.hrc:764
msgctxt "STR_AUTH_TYPE_UNPUBLISHED"
msgid "Unpublished"
msgstr "غير منشور"
#. Gb38d
-#: sw/inc/strings.hrc:764
+#: sw/inc/strings.hrc:765
msgctxt "STR_AUTH_TYPE_EMAIL"
msgid "Email"
msgstr ""
#. 9HKD6
-#: sw/inc/strings.hrc:765
+#: sw/inc/strings.hrc:766
msgctxt "STR_AUTH_TYPE_WWW"
msgid "WWW document"
msgstr "مستند WWW"
#. qA449
-#: sw/inc/strings.hrc:766
+#: sw/inc/strings.hrc:767
msgctxt "STR_AUTH_TYPE_CUSTOM1"
msgid "User-defined1"
msgstr "عرّفه المستخدم١"
#. nyzxz
-#: sw/inc/strings.hrc:767
+#: sw/inc/strings.hrc:768
msgctxt "STR_AUTH_TYPE_CUSTOM2"
msgid "User-defined2"
msgstr "عرّفه المستخدم٢"
#. cCFTF
-#: sw/inc/strings.hrc:768
+#: sw/inc/strings.hrc:769
msgctxt "STR_AUTH_TYPE_CUSTOM3"
msgid "User-defined3"
msgstr "عرّفه المستخدم٣"
#. mrqJC
-#: sw/inc/strings.hrc:769
+#: sw/inc/strings.hrc:770
msgctxt "STR_AUTH_TYPE_CUSTOM4"
msgid "User-defined4"
msgstr "عرّفه المستخدم٤"
#. fFs86
-#: sw/inc/strings.hrc:770
+#: sw/inc/strings.hrc:771
msgctxt "STR_AUTH_TYPE_CUSTOM5"
msgid "User-defined5"
msgstr "عرّفه المستخدم٥"
#. nsCwi
-#: sw/inc/strings.hrc:771
+#: sw/inc/strings.hrc:772
msgctxt "STR_AUTH_FIELD_IDENTIFIER"
msgid "Short name"
msgstr "الاسم المختصر"
#. CpKgc
-#: sw/inc/strings.hrc:772
+#: sw/inc/strings.hrc:773
msgctxt "STR_AUTH_FIELD_AUTHORITY_TYPE"
msgid "Type"
msgstr "النوع"
#. kUGDr
-#: sw/inc/strings.hrc:773
+#: sw/inc/strings.hrc:774
msgctxt "STR_AUTH_FIELD_ADDRESS"
msgid "Address"
msgstr "العنوان"
#. DquVQ
-#: sw/inc/strings.hrc:774
+#: sw/inc/strings.hrc:775
msgctxt "STR_AUTH_FIELD_ANNOTE"
msgid "Annotation"
msgstr "تعليق توضيحي"
#. sduuV
-#: sw/inc/strings.hrc:775
+#: sw/inc/strings.hrc:776
msgctxt "STR_AUTH_FIELD_AUTHOR"
msgid "Author(s)"
msgstr "المؤلف/المؤلفون"
#. fXvz6
-#: sw/inc/strings.hrc:776
+#: sw/inc/strings.hrc:777
msgctxt "STR_AUTH_FIELD_BOOKTITLE"
msgid "Book title"
msgstr "عنوان الكتاب"
#. c8PFE
-#: sw/inc/strings.hrc:777
+#: sw/inc/strings.hrc:778
msgctxt "STR_AUTH_FIELD_CHAPTER"
msgid "Chapter"
msgstr "الفصل"
#. GXqxF
-#: sw/inc/strings.hrc:778
+#: sw/inc/strings.hrc:779
msgctxt "STR_AUTH_FIELD_EDITION"
msgid "Edition"
msgstr "النسخة"
#. p7A3p
-#: sw/inc/strings.hrc:779
+#: sw/inc/strings.hrc:780
msgctxt "STR_AUTH_FIELD_EDITOR"
msgid "Editor"
msgstr "المحرر"
#. aAFEz
-#: sw/inc/strings.hrc:780
+#: sw/inc/strings.hrc:781
msgctxt "STR_AUTH_FIELD_HOWPUBLISHED"
msgid "Publication type"
msgstr "نوع النشر"
#. 8DwdJ
-#: sw/inc/strings.hrc:781
+#: sw/inc/strings.hrc:782
msgctxt "STR_AUTH_FIELD_INSTITUTION"
msgid "Institution"
msgstr "الهيئة"
#. VWNxy
-#: sw/inc/strings.hrc:782
+#: sw/inc/strings.hrc:783
msgctxt "STR_AUTH_FIELD_JOURNAL"
msgid "Journal"
msgstr "دفتر اليومية"
#. Da4fW
-#: sw/inc/strings.hrc:783
+#: sw/inc/strings.hrc:784
msgctxt "STR_AUTH_FIELD_MONTH"
msgid "Month"
msgstr "الشهر"
#. SdSBt
-#: sw/inc/strings.hrc:784
+#: sw/inc/strings.hrc:785
msgctxt "STR_AUTH_FIELD_NOTE"
msgid "Note"
msgstr "ملاحظة"
#. MZYpD
-#: sw/inc/strings.hrc:785
+#: sw/inc/strings.hrc:786
msgctxt "STR_AUTH_FIELD_NUMBER"
msgid "Number"
msgstr "رقم"
#. ZB7Go
-#: sw/inc/strings.hrc:786
+#: sw/inc/strings.hrc:787
msgctxt "STR_AUTH_FIELD_ORGANIZATIONS"
msgid "Organization"
msgstr "المنظمة"
#. C4CdP
-#: sw/inc/strings.hrc:787
+#: sw/inc/strings.hrc:788
msgctxt "STR_AUTH_FIELD_PAGES"
msgid "Page(s)"
msgstr "الصفحة/الصفحات"
#. yFPFa
-#: sw/inc/strings.hrc:788
+#: sw/inc/strings.hrc:789
msgctxt "STR_AUTH_FIELD_PUBLISHER"
msgid "Publisher"
msgstr "الناشر"
#. d9u3p
-#: sw/inc/strings.hrc:789
+#: sw/inc/strings.hrc:790
msgctxt "STR_AUTH_FIELD_SCHOOL"
msgid "University"
msgstr "الجامعة"
#. Qxsdb
-#: sw/inc/strings.hrc:790
+#: sw/inc/strings.hrc:791
#, fuzzy
msgctxt "STR_AUTH_FIELD_SERIES"
msgid "Series"
msgstr "السل~سلة"
#. YhXPg
-#: sw/inc/strings.hrc:791
+#: sw/inc/strings.hrc:792
msgctxt "STR_AUTH_FIELD_TITLE"
msgid "Title"
msgstr "العنوان"
#. qEBhL
-#: sw/inc/strings.hrc:792
+#: sw/inc/strings.hrc:793
msgctxt "STR_AUTH_FIELD_TYPE"
msgid "Type of report"
msgstr "نوع التقرير"
#. Sij9w
-#: sw/inc/strings.hrc:793
+#: sw/inc/strings.hrc:794
msgctxt "STR_AUTH_FIELD_VOLUME"
msgid "Volume"
msgstr "وحدة التخزين"
#. K8miv
-#: sw/inc/strings.hrc:794
+#: sw/inc/strings.hrc:795
msgctxt "STR_AUTH_FIELD_YEAR"
msgid "Year"
msgstr "السنة"
#. pFMSV
-#: sw/inc/strings.hrc:795
+#: sw/inc/strings.hrc:796
msgctxt "STR_AUTH_FIELD_URL"
msgid "URL"
msgstr "المسار"
#. xFG3c
-#: sw/inc/strings.hrc:796
+#: sw/inc/strings.hrc:797
msgctxt "STR_AUTH_FIELD_CUSTOM1"
msgid "User-defined1"
msgstr "عرّفه المستخدم١"
#. wtDyU
-#: sw/inc/strings.hrc:797
+#: sw/inc/strings.hrc:798
msgctxt "STR_AUTH_FIELD_CUSTOM2"
msgid "User-defined2"
msgstr "عرّفه المستخدم٢"
#. VH3Se
-#: sw/inc/strings.hrc:798
+#: sw/inc/strings.hrc:799
msgctxt "STR_AUTH_FIELD_CUSTOM3"
msgid "User-defined3"
msgstr "عرّفه المستخدم٣"
#. twuKb
-#: sw/inc/strings.hrc:799
+#: sw/inc/strings.hrc:800
msgctxt "STR_AUTH_FIELD_CUSTOM4"
msgid "User-defined4"
msgstr "عرّفه المستخدم٤"
#. WAo7Z
-#: sw/inc/strings.hrc:800
+#: sw/inc/strings.hrc:801
msgctxt "STR_AUTH_FIELD_CUSTOM5"
msgid "User-defined5"
msgstr "عرّفه المستخدم٥"
#. 3r6Wg
-#: sw/inc/strings.hrc:801
+#: sw/inc/strings.hrc:802
msgctxt "STR_AUTH_FIELD_ISBN"
msgid "ISBN"
msgstr "ISBN"
#. BhDrt
-#: sw/inc/strings.hrc:802
+#: sw/inc/strings.hrc:803
msgctxt "STR_AUTH_FIELD_LOCAL_URL"
msgid "Local copy"
msgstr ""
#. eFnnx
-#: sw/inc/strings.hrc:804
+#: sw/inc/strings.hrc:805
msgctxt "STR_IDXMRK_EDIT"
msgid "Edit Index Entry"
msgstr "حرّر مُدخل في الفهرس"
#. EHTHH
-#: sw/inc/strings.hrc:805
+#: sw/inc/strings.hrc:806
msgctxt "STR_IDXMRK_INSERT"
msgid "Insert Index Entry"
msgstr "أدرج مُدخل في الفهرس"
#. D2gkA
-#: sw/inc/strings.hrc:806
+#: sw/inc/strings.hrc:807
msgctxt "STR_QUERY_CHANGE_AUTH_ENTRY"
msgid "The document already contains the bibliography entry but with different data. Do you want to adjust the existing entries?"
msgstr "مُدخل الببلوجرافيا موجود بالفعل في المستند ببيانات مختلفة. هل تريد ضبط المُدخلات الموجودة؟"
#. mK84T
-#: sw/inc/strings.hrc:808
+#: sw/inc/strings.hrc:809
msgctxt "STR_COMMENTS_LABEL"
msgid "Comments"
msgstr "تعليقات"
#. fwecS
-#: sw/inc/strings.hrc:809
+#: sw/inc/strings.hrc:810
msgctxt "STR_SHOW_COMMENTS"
msgid "Show comments"
msgstr "أظهر التعليقات"
#. HkUvy
-#: sw/inc/strings.hrc:810
+#: sw/inc/strings.hrc:811
msgctxt "STR_HIDE_COMMENTS"
msgid "Hide comments"
msgstr "أخفِ التعليقات"
#. FcmEy
-#: sw/inc/strings.hrc:812
+#: sw/inc/strings.hrc:813
msgctxt "STR_DOUBLE_SHORTNAME"
msgid "Shortcut name already exists. Please choose another name."
msgstr "اسم هذا الاختصار موجود بالفعل. الرجاء استخدام اسم آخر."
#. VhMST
-#: sw/inc/strings.hrc:813
+#: sw/inc/strings.hrc:814
msgctxt "STR_QUERY_DELETE"
msgid "Delete AutoText?"
msgstr "هل تريد حذف النص التلقائي؟"
#. E5MLr
-#: sw/inc/strings.hrc:814
+#: sw/inc/strings.hrc:815
msgctxt "STR_QUERY_DELETE_GROUP1"
msgid "Delete the category "
msgstr "هل تريد حذف الفئة "
#. qndNh
-#: sw/inc/strings.hrc:815
+#: sw/inc/strings.hrc:816
msgctxt "STR_QUERY_DELETE_GROUP2"
msgid "?"
msgstr "؟"
#. B6xah
-#: sw/inc/strings.hrc:816
+#: sw/inc/strings.hrc:817
msgctxt "STR_GLOSSARY"
msgid "AutoText :"
msgstr "نص تلقائي:"
#. ChetY
-#: sw/inc/strings.hrc:817
+#: sw/inc/strings.hrc:818
msgctxt "STR_SAVE_GLOSSARY"
msgid "Save AutoText"
msgstr "احفظ النص التلقائي"
#. QxAiF
-#: sw/inc/strings.hrc:818
+#: sw/inc/strings.hrc:819
msgctxt "STR_NO_GLOSSARIES"
msgid "There is no AutoText in this file."
msgstr "لا يحتوي هذا الملف على نص تلقائي."
#. sG8Xt
-#: sw/inc/strings.hrc:819
+#: sw/inc/strings.hrc:820
msgctxt "STR_MY_AUTOTEXT"
msgid "My AutoText"
msgstr "نصوصي التلقائية"
#. GaoqR
-#: sw/inc/strings.hrc:821
+#: sw/inc/strings.hrc:822
msgctxt "STR_NOGLOS"
msgid "AutoText for Shortcut '%1' not found."
msgstr "لم يُعثر على النص التلقائي للاختصار ”%1“."
#. MwUEP
-#: sw/inc/strings.hrc:822
+#: sw/inc/strings.hrc:823
msgctxt "STR_NO_TABLE"
msgid "A table with no rows or no cells cannot be inserted"
msgstr "لا يمكن إدراج جدول بدون صفوف أو أعمدة"
#. AawM4
-#: sw/inc/strings.hrc:823
+#: sw/inc/strings.hrc:824
msgctxt "STR_TABLE_TOO_LARGE"
msgid "The table cannot be inserted because it is too large"
msgstr "تعذر إدراج الجدول لأنه كبير جدًا"
#. GGo8i
-#: sw/inc/strings.hrc:824
+#: sw/inc/strings.hrc:825
msgctxt "STR_ERR_INSERT_GLOS"
msgid "AutoText could not be created."
msgstr "تعذر إنشاء نص تلقائي."
#. DCPSB
-#: sw/inc/strings.hrc:825
+#: sw/inc/strings.hrc:826
msgctxt "STR_CLPBRD_FORMAT_ERROR"
msgid "Requested clipboard format is not available."
msgstr "تنسيق الحافظة المطلوب غير متوفر."
#. YxCCF
-#: sw/inc/strings.hrc:826
+#: sw/inc/strings.hrc:827
msgctxt "STR_PRIVATETEXT"
msgid "%PRODUCTNAME %PRODUCTVERSION Text Document"
msgstr "مستند %PRODUCTNAME %PRODUCTVERSION نصي"
#. 8ygN3
-#: sw/inc/strings.hrc:827
+#: sw/inc/strings.hrc:828
msgctxt "STR_PRIVATEGRAPHIC"
msgid "Image (%PRODUCTNAME %PRODUCTVERSION Text Document)"
msgstr "صورة (مستند %PRODUCTNAME %PRODUCTVERSION نصي)"
#. ewPPB
-#: sw/inc/strings.hrc:828
+#: sw/inc/strings.hrc:829
msgctxt "STR_PRIVATEOLE"
msgid "Object (%PRODUCTNAME %PRODUCTVERSION Text Document)"
msgstr "كائن (مستند %PRODUCTNAME %PRODUCTVERSION نصي)"
#. 9VEc3
-#: sw/inc/strings.hrc:829
+#: sw/inc/strings.hrc:830
msgctxt "STR_DDEFORMAT"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
#. svrE7
-#: sw/inc/strings.hrc:831
+#: sw/inc/strings.hrc:832
msgctxt "STR_DELETE_ALL_NOTES"
msgid "All Comments"
msgstr "جميع التعليقات"
#. YGNN4
-#: sw/inc/strings.hrc:832
+#: sw/inc/strings.hrc:833
msgctxt "STR_FORMAT_ALL_NOTES"
msgid "All Comments"
msgstr "جميع التعليقات"
#. GDH49
-#: sw/inc/strings.hrc:833
+#: sw/inc/strings.hrc:834
msgctxt "STR_DELETE_AUTHOR_NOTES"
msgid "Comments by "
msgstr "التعليقات بواسطة "
#. RwAcm
-#: sw/inc/strings.hrc:834
+#: sw/inc/strings.hrc:835
msgctxt "STR_NODATE"
msgid "(no date)"
msgstr "(بلا تاريخ)"
#. ytxKG
-#: sw/inc/strings.hrc:835
+#: sw/inc/strings.hrc:836
msgctxt "STR_NOAUTHOR"
msgid "(no author)"
msgstr "(بلا مؤلف)"
#. nAwMG
-#: sw/inc/strings.hrc:836
+#: sw/inc/strings.hrc:837
msgctxt "STR_REPLY"
msgid "Reply to $1"
msgstr "الرد على $1"
#. CVVa6
-#: sw/inc/strings.hrc:838
+#: sw/inc/strings.hrc:839
msgctxt "ST_TITLE_EDIT"
msgid "Edit Address Block"
msgstr "حرّر مربّع العنوان"
#. njGGA
-#: sw/inc/strings.hrc:839
+#: sw/inc/strings.hrc:840
msgctxt "ST_TITLE_MALE"
msgid "Custom Salutation (Male Recipients)"
msgstr "تحيّة مخصّصة (المستقبلون الذكور)"
#. ZVuKY
-#: sw/inc/strings.hrc:840
+#: sw/inc/strings.hrc:841
msgctxt "ST_TITLE_FEMALE"
msgid "Custom Salutation (Female Recipients)"
msgstr "تحيّة مُخصّصة (المستقبلات الإناث)"
#. h4yuq
-#: sw/inc/strings.hrc:841
+#: sw/inc/strings.hrc:842
msgctxt "ST_SALUTATIONELEMENTS"
msgid "Salutation e~lements"
msgstr "~عناصر التحيّة"
#. kWhqT
-#: sw/inc/strings.hrc:842
+#: sw/inc/strings.hrc:843
msgctxt "ST_INSERTSALUTATIONFIELD"
msgid "Add to salutation"
msgstr "أضِف إلى التحيّة"
#. hvF3V
-#: sw/inc/strings.hrc:843
+#: sw/inc/strings.hrc:844
msgctxt "ST_REMOVESALUTATIONFIELD"
msgid "Remove from salutation"
msgstr "أزِل من التحيّة"
#. A6XaR
-#: sw/inc/strings.hrc:844
+#: sw/inc/strings.hrc:845
msgctxt "ST_DRAGSALUTATION"
msgid "1. ~Drag salutation elements into the box below"
msgstr "١. ا~سحب عناصر التحيّة إلى المربّع أدناه"
#. 4VJWL
-#: sw/inc/strings.hrc:845
+#: sw/inc/strings.hrc:846
msgctxt "ST_SALUTATION"
msgid "Salutation"
msgstr "تحيّة"
#. Vj6XT
-#: sw/inc/strings.hrc:846
+#: sw/inc/strings.hrc:847
msgctxt "ST_PUNCTUATION"
msgid "Punctuation Mark"
msgstr "علامة ترقيم"
#. bafeG
-#: sw/inc/strings.hrc:847
+#: sw/inc/strings.hrc:848
msgctxt "ST_TEXT"
msgid "Text"
msgstr "النص"
#. tt6sA
-#: sw/inc/strings.hrc:848
+#: sw/inc/strings.hrc:849
msgctxt "ST_SALUTATIONMATCHING"
msgid "Assign the fields from your data source to match the salutation elements."
msgstr "املأ الحقول من مصدر البيانات لمطابقة عناصر التحيّة."
#. zrUsN
-#: sw/inc/strings.hrc:849
+#: sw/inc/strings.hrc:850
msgctxt "ST_SALUTATIONPREVIEW"
msgid "Salutation preview"
msgstr "معاينة التحيّة"
#. 2UVE6
-#: sw/inc/strings.hrc:850
+#: sw/inc/strings.hrc:851
msgctxt "ST_ADDRESSELEMENT"
msgid "Address elements"
msgstr "عناصر العنوان"
#. Bd6pd
-#: sw/inc/strings.hrc:851
+#: sw/inc/strings.hrc:852
msgctxt "ST_SALUTATIONELEMENT"
msgid "Salutation elements"
msgstr "عناصر التحيّة"
#. 9krzf
-#: sw/inc/strings.hrc:852
+#: sw/inc/strings.hrc:853
msgctxt "ST_MATCHESTO"
msgid "Matches to field:"
msgstr "يطابق الحقل:"
#. oahCQ
-#: sw/inc/strings.hrc:853
+#: sw/inc/strings.hrc:854
msgctxt "ST_PREVIEW"
msgid "Preview"
msgstr "معاينة"
#. ijdxe
-#: sw/inc/strings.hrc:854
+#: sw/inc/strings.hrc:855
msgctxt "ST_DELETE_CONFIRM"
msgid "Do you want to delete this registered data source?"
msgstr ""
#. kE5C3
-#: sw/inc/strings.hrc:856
+#: sw/inc/strings.hrc:857
msgctxt "STR_NOTASSIGNED"
msgid " not yet matched "
msgstr " لم يتطابق بعد "
#. Y6FhG
-#: sw/inc/strings.hrc:857
+#: sw/inc/strings.hrc:858
msgctxt "STR_FILTER_ALL"
msgid "All files"
msgstr "كل الملفات"
#. 7cNjh
-#: sw/inc/strings.hrc:858
+#: sw/inc/strings.hrc:859
msgctxt "STR_FILTER_ALL_DATA"
msgid "Address lists(*.*)"
msgstr "قوائم العناوين (*.*)"
#. Ef8TY
-#: sw/inc/strings.hrc:859
+#: sw/inc/strings.hrc:860
msgctxt "STR_FILTER_SXB"
msgid "%PRODUCTNAME Base (*.odb)"
msgstr "%PRODUCTNAME بيز (*.odb)"
#. 24opW
-#: sw/inc/strings.hrc:860
+#: sw/inc/strings.hrc:861
msgctxt "STR_FILTER_SXC"
msgid "%PRODUCTNAME Calc (*.ods;*.sxc)"
msgstr "%PRODUCTNAME كالك (*.ods;*.sxc)"
#. sq73T
-#: sw/inc/strings.hrc:861
+#: sw/inc/strings.hrc:862
msgctxt "STR_FILTER_SXW"
msgid "%PRODUCTNAME Writer (*.odt;*.sxw)"
msgstr "‏%PRODUCTNAME رايتر (*.odt;*.sxw)"
#. QupGC
-#: sw/inc/strings.hrc:862
+#: sw/inc/strings.hrc:863
msgctxt "STR_FILTER_DBF"
msgid "dBase (*.dbf)"
msgstr "‏dBase‏ (*.dbf)"
#. SzqRv
-#: sw/inc/strings.hrc:863
+#: sw/inc/strings.hrc:864
msgctxt "STR_FILTER_XLS"
msgid "Microsoft Excel (*.xls;*.xlsx)"
msgstr "ميكروسوفت إكسل (*.xls;*.xlsx)"
#. zAUu8
-#: sw/inc/strings.hrc:864
+#: sw/inc/strings.hrc:865
msgctxt "STR_FILTER_DOC"
msgid "Microsoft Word (*.doc;*.docx)"
msgstr "ميكروسوفت وورد (*.doc;*.docx)"
#. JBZFc
-#: sw/inc/strings.hrc:865
+#: sw/inc/strings.hrc:866
msgctxt "STR_FILTER_TXT"
msgid "Plain text (*.txt)"
msgstr "نص عادي (*.txt)"
#. CRJb6
-#: sw/inc/strings.hrc:866
+#: sw/inc/strings.hrc:867
msgctxt "STR_FILTER_CSV"
msgid "Text Comma Separated (*.csv)"
msgstr "نص تفصله فواصل (*.csv)"
#. U4H2j
-#: sw/inc/strings.hrc:867
+#: sw/inc/strings.hrc:868
msgctxt "STR_FILTER_MDB"
msgid "Microsoft Access (*.mdb;*.mde)"
msgstr "ميكروسوفت أكسيس (*.mdb;*.mde)"
#. DwxF8
-#: sw/inc/strings.hrc:868
+#: sw/inc/strings.hrc:869
msgctxt "STR_FILTER_ACCDB"
msgid "Microsoft Access 2007 (*.accdb,*.accde)"
msgstr "ميكروسوفت أكسيس ٢٠٠٧ (*.accdb,*.accde)"
#. uDNRt
-#: sw/inc/strings.hrc:869
+#: sw/inc/strings.hrc:870
msgctxt "ST_CONFIGUREMAIL"
msgid ""
"In order to be able to send mail merge documents by email, %PRODUCTNAME requires information about the email account to be used.\n"
@@ -7101,91 +7107,91 @@ msgid ""
msgstr ""
#. r9BVg
-#: sw/inc/strings.hrc:870
+#: sw/inc/strings.hrc:871
msgctxt "ST_FILTERNAME"
msgid "%PRODUCTNAME Address List (.csv)"
msgstr "قائمة عناوين %PRODUCTNAME‏ (.csv)"
#. jiJuZ
-#: sw/inc/strings.hrc:872
+#: sw/inc/strings.hrc:873
msgctxt "ST_STARTING"
msgid "Select Starting Document"
msgstr ""
#. FiUyK
-#: sw/inc/strings.hrc:873
+#: sw/inc/strings.hrc:874
msgctxt "ST_DOCUMENTTYPE"
msgid "Select Document Type"
msgstr ""
#. QwrpS
-#: sw/inc/strings.hrc:874
+#: sw/inc/strings.hrc:875
msgctxt "ST_ADDRESSBLOCK"
msgid "Insert Address Block"
msgstr ""
#. omRZF
-#: sw/inc/strings.hrc:875
+#: sw/inc/strings.hrc:876
msgctxt "ST_ADDRESSLIST"
msgid "Select Address List"
msgstr ""
#. YrDuD
-#: sw/inc/strings.hrc:876
+#: sw/inc/strings.hrc:877
msgctxt "ST_GREETINGSLINE"
msgid "Create Salutation"
msgstr ""
#. tTr4B
-#: sw/inc/strings.hrc:877
+#: sw/inc/strings.hrc:878
msgctxt "ST_LAYOUT"
msgid "Adjust Layout"
msgstr ""
#. S4p5M
-#: sw/inc/strings.hrc:878
+#: sw/inc/strings.hrc:879
msgctxt "ST_EXCLUDE"
msgid "Exclude recipient"
msgstr "استثنِ المستلم"
#. N5YUH
-#: sw/inc/strings.hrc:879
+#: sw/inc/strings.hrc:880
msgctxt "ST_FINISH"
msgid "~Finish"
msgstr "أ~نهِ"
#. L5FEG
-#: sw/inc/strings.hrc:880
+#: sw/inc/strings.hrc:881
msgctxt "ST_MMWTITLE"
msgid "Mail Merge Wizard"
msgstr "مرشد دمج المراسلات"
#. CEhZj
-#: sw/inc/strings.hrc:882
+#: sw/inc/strings.hrc:883
msgctxt "ST_TABLE"
msgid "Table"
msgstr "الجدول"
#. v9hEB
-#: sw/inc/strings.hrc:883
+#: sw/inc/strings.hrc:884
msgctxt "ST_QUERY"
msgid "Query"
msgstr "الاستعلام"
#. HxGAu
-#: sw/inc/strings.hrc:885
+#: sw/inc/strings.hrc:886
msgctxt "STR_QUERY_SPELL_CONTINUE"
msgid "Continue checking at beginning of document?"
msgstr "هل تريد متابعة التدقيق من بداية المستند؟"
#. gE7CA
-#: sw/inc/strings.hrc:886
+#: sw/inc/strings.hrc:887
msgctxt "STR_SPELLING_COMPLETED"
msgid "The spellcheck is complete."
msgstr "اكتمل التدقيق الإملائي."
#. 2SuqF
-#: sw/inc/strings.hrc:887
+#: sw/inc/strings.hrc:888
msgctxt "STR_DICTIONARY_UNAVAILABLE"
msgid "No dictionary available"
msgstr ""
@@ -7195,252 +7201,252 @@ msgstr ""
#. Description: strings for the types
#. --------------------------------------------------------------------
#. range document
-#: sw/inc/strings.hrc:893
+#: sw/inc/strings.hrc:894
msgctxt "STR_DATEFLD"
msgid "Date"
msgstr "التاريخ"
#. V9cQp
-#: sw/inc/strings.hrc:894
+#: sw/inc/strings.hrc:895
msgctxt "STR_TIMEFLD"
msgid "Time"
msgstr "الوقت"
#. 2zgWi
-#: sw/inc/strings.hrc:895
+#: sw/inc/strings.hrc:896
msgctxt "STR_FILENAMEFLD"
msgid "File name"
msgstr "اسم الملف"
#. FdSaU
-#: sw/inc/strings.hrc:896
+#: sw/inc/strings.hrc:897
msgctxt "STR_DBNAMEFLD"
msgid "Database Name"
msgstr "اسم قاعدة البيانات"
#. XZADh
-#: sw/inc/strings.hrc:897
+#: sw/inc/strings.hrc:898
msgctxt "STR_CHAPTERFLD"
msgid "Chapter"
msgstr "الفصل"
#. wYWy2
-#: sw/inc/strings.hrc:898
+#: sw/inc/strings.hrc:899
msgctxt "STR_PAGENUMBERFLD"
msgid "Page number"
msgstr ""
#. EXC6N
-#: sw/inc/strings.hrc:899
+#: sw/inc/strings.hrc:900
msgctxt "STR_DOCSTATFLD"
msgid "Statistics"
msgstr "إحصائيات"
#. EW86G
-#: sw/inc/strings.hrc:900
+#: sw/inc/strings.hrc:901
msgctxt "STR_AUTHORFLD"
msgid "Author"
msgstr "المؤلف"
#. 5aFak
-#: sw/inc/strings.hrc:901
+#: sw/inc/strings.hrc:902
msgctxt "STR_TEMPLNAMEFLD"
msgid "Templates"
msgstr "قوالب"
#. 3wdud
-#: sw/inc/strings.hrc:902
+#: sw/inc/strings.hrc:903
msgctxt "STR_EXTUSERFLD"
msgid "Sender"
msgstr "المرسل"
#. LxZEm
#. range functions
-#: sw/inc/strings.hrc:904
+#: sw/inc/strings.hrc:905
msgctxt "STR_SETFLD"
msgid "Set variable"
msgstr "حدد متغير"
#. ckA26
-#: sw/inc/strings.hrc:905
+#: sw/inc/strings.hrc:906
msgctxt "STR_GETFLD"
msgid "Show variable"
msgstr "أظهر المتغير"
#. Fjzgu
-#: sw/inc/strings.hrc:906
+#: sw/inc/strings.hrc:907
msgctxt "STR_FORMELFLD"
msgid "Insert Formula"
msgstr "أدرج مُعادلة"
#. AXoAT
-#: sw/inc/strings.hrc:907
+#: sw/inc/strings.hrc:908
msgctxt "STR_INPUTFLD"
msgid "Input field"
msgstr "حقل إدخال"
#. VfqNE
-#: sw/inc/strings.hrc:908
+#: sw/inc/strings.hrc:909
msgctxt "STR_SETINPUTFLD"
msgid "Input field (variable)"
msgstr "حقل إدخال (متغير)"
#. E8JAd
-#: sw/inc/strings.hrc:909
+#: sw/inc/strings.hrc:910
msgctxt "STR_USRINPUTFLD"
msgid "Input field (user)"
msgstr "حقل إدخال (مستخدم)"
#. 8LGEQ
-#: sw/inc/strings.hrc:910
+#: sw/inc/strings.hrc:911
msgctxt "STR_CONDTXTFLD"
msgid "Conditional text"
msgstr "نص شرطيّ"
#. jrZ7i
-#: sw/inc/strings.hrc:911
+#: sw/inc/strings.hrc:912
msgctxt "STR_DDEFLD"
msgid "DDE field"
msgstr "حقل DDE"
#. 9WAT9
-#: sw/inc/strings.hrc:912
+#: sw/inc/strings.hrc:913
msgctxt "STR_MACROFLD"
msgid "Execute macro"
msgstr "نفّذ ماكرو"
#. qEBxa
-#: sw/inc/strings.hrc:913
+#: sw/inc/strings.hrc:914
msgctxt "STR_SEQFLD"
msgid "Number range"
msgstr "تسلسل أرقام"
#. ACE5s
-#: sw/inc/strings.hrc:914
+#: sw/inc/strings.hrc:915
msgctxt "STR_SETREFPAGEFLD"
msgid "Set page variable"
msgstr "حدد متغير صفحة"
#. ayB3N
-#: sw/inc/strings.hrc:915
+#: sw/inc/strings.hrc:916
msgctxt "STR_GETREFPAGEFLD"
msgid "Show page variable"
msgstr "أظهر متغير الصفحة"
#. DBM4P
-#: sw/inc/strings.hrc:916
+#: sw/inc/strings.hrc:917
msgctxt "STR_INTERNETFLD"
msgid "Load URL"
msgstr "حمّل المسار"
#. LJFF5
-#: sw/inc/strings.hrc:917
+#: sw/inc/strings.hrc:918
msgctxt "STR_JUMPEDITFLD"
msgid "Placeholder"
msgstr "حافظ مكان"
#. zZCg6
-#: sw/inc/strings.hrc:918
+#: sw/inc/strings.hrc:919
msgctxt "STR_COMBINED_CHARS"
msgid "Combine characters"
msgstr "ضم الأحرف"
#. 9MGU6
-#: sw/inc/strings.hrc:919
+#: sw/inc/strings.hrc:920
msgctxt "STR_DROPDOWN"
msgid "Input list"
msgstr "قائمة مُدخلات"
#. 7BWSk
#. range references
-#: sw/inc/strings.hrc:921
+#: sw/inc/strings.hrc:922
msgctxt "STR_SETREFFLD"
msgid "Set Reference"
msgstr "حدد مرجع"
#. FJ2X8
-#: sw/inc/strings.hrc:922
+#: sw/inc/strings.hrc:923
msgctxt "STR_GETREFFLD"
msgid "Insert Reference"
msgstr "أدرج مرجع"
#. sztLS
#. range database
-#: sw/inc/strings.hrc:924
+#: sw/inc/strings.hrc:925
msgctxt "STR_DBFLD"
msgid "Mail merge fields"
msgstr "حقول دمج المراسلات"
#. JP2DU
-#: sw/inc/strings.hrc:925
+#: sw/inc/strings.hrc:926
msgctxt "STR_DBNEXTSETFLD"
msgid "Next record"
msgstr "السجل التالي"
#. GizhA
-#: sw/inc/strings.hrc:926
+#: sw/inc/strings.hrc:927
msgctxt "STR_DBNUMSETFLD"
msgid "Any record"
msgstr "أي سجل"
#. aMGxm
-#: sw/inc/strings.hrc:927
+#: sw/inc/strings.hrc:928
msgctxt "STR_DBSETNUMBERFLD"
msgid "Record number"
msgstr "رقم السجل"
#. DtYzi
-#: sw/inc/strings.hrc:928
+#: sw/inc/strings.hrc:929
msgctxt "STR_PREVPAGEFLD"
msgid "Previous page"
msgstr "الصفحة السابقة"
#. UCSej
-#: sw/inc/strings.hrc:929
+#: sw/inc/strings.hrc:930
msgctxt "STR_NEXTPAGEFLD"
msgid "Next page"
msgstr "الصفحة التالية"
#. M8Fac
-#: sw/inc/strings.hrc:930
+#: sw/inc/strings.hrc:931
msgctxt "STR_HIDDENTXTFLD"
msgid "Hidden text"
msgstr "نص مخفي"
#. WvBF2
#. range user fields
-#: sw/inc/strings.hrc:932
+#: sw/inc/strings.hrc:933
msgctxt "STR_USERFLD"
msgid "User Field"
msgstr "حقل المستخدم"
#. XELYN
-#: sw/inc/strings.hrc:933
+#: sw/inc/strings.hrc:934
msgctxt "STR_POSTITFLD"
msgid "Note"
msgstr "ملاحظة"
#. MB6kt
-#: sw/inc/strings.hrc:934
+#: sw/inc/strings.hrc:935
msgctxt "STR_SCRIPTFLD"
msgid "Script"
msgstr "نص برمجي"
#. BWU6A
-#: sw/inc/strings.hrc:935
+#: sw/inc/strings.hrc:936
msgctxt "STR_AUTHORITY"
msgid "Bibliography entry"
msgstr "مُدخل بيبلوغرافيا"
#. 7EGCR
-#: sw/inc/strings.hrc:936
+#: sw/inc/strings.hrc:937
msgctxt "STR_HIDDENPARAFLD"
msgid "Hidden Paragraph"
msgstr "فقرة مخفية"
#. dRBRK
#. range DocumentInfo
-#: sw/inc/strings.hrc:938
+#: sw/inc/strings.hrc:939
msgctxt "STR_DOCINFOFLD"
msgid "DocInformation"
msgstr "معلومات المستند"
@@ -7449,87 +7455,87 @@ msgstr "معلومات المستند"
#. --------------------------------------------------------------------
#. Description: SubCmd-Strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:942
+#: sw/inc/strings.hrc:943
msgctxt "FLD_DATE_STD"
msgid "Date"
msgstr "التاريخ"
#. qMCEh
-#: sw/inc/strings.hrc:943
+#: sw/inc/strings.hrc:944
msgctxt "FLD_DATE_FIX"
msgid "Date (fixed)"
msgstr "التاريخ (ثابت)"
#. AXmyw
-#: sw/inc/strings.hrc:944
+#: sw/inc/strings.hrc:945
msgctxt "FLD_TIME_STD"
msgid "Time"
msgstr "الوقت"
#. 6dxVs
-#: sw/inc/strings.hrc:945
+#: sw/inc/strings.hrc:946
msgctxt "FLD_TIME_FIX"
msgid "Time (fixed)"
msgstr "الوقت (ثابت)"
#. U3SW8
#. SubCmd Statistic
-#: sw/inc/strings.hrc:947
+#: sw/inc/strings.hrc:948
msgctxt "FLD_STAT_TABLE"
msgid "Tables"
msgstr "جداول"
#. 7qW4K
-#: sw/inc/strings.hrc:948
+#: sw/inc/strings.hrc:949
msgctxt "FLD_STAT_CHAR"
msgid "Characters"
msgstr "حروف"
#. zDRCp
-#: sw/inc/strings.hrc:949
+#: sw/inc/strings.hrc:950
msgctxt "FLD_STAT_WORD"
msgid "Words"
msgstr "كلمات"
#. 2wgLC
-#: sw/inc/strings.hrc:950
+#: sw/inc/strings.hrc:951
msgctxt "FLD_STAT_PARA"
msgid "Paragraphs"
msgstr "فقرات"
#. JPGG7
-#: sw/inc/strings.hrc:951
+#: sw/inc/strings.hrc:952
msgctxt "FLD_STAT_GRF"
msgid "Image"
msgstr "صورة"
#. CzoFh
-#: sw/inc/strings.hrc:952
+#: sw/inc/strings.hrc:953
msgctxt "FLD_STAT_OBJ"
msgid "Objects"
msgstr "كائنات"
#. bDG6R
-#: sw/inc/strings.hrc:953
+#: sw/inc/strings.hrc:954
msgctxt "FLD_STAT_PAGE"
msgid "Pages"
msgstr "صفحات"
#. yqhF5
#. SubCmd DDETypes
-#: sw/inc/strings.hrc:955
+#: sw/inc/strings.hrc:956
msgctxt "FMT_DDE_HOT"
msgid "DDE automatic"
msgstr "‏DDE تلقائي"
#. xPP2E
-#: sw/inc/strings.hrc:956
+#: sw/inc/strings.hrc:957
msgctxt "FMT_DDE_NORMAL"
msgid "DDE manual"
msgstr "‏DDE يدوي"
#. spdXd
-#: sw/inc/strings.hrc:957
+#: sw/inc/strings.hrc:958
msgctxt "FLD_INPUT_TEXT"
msgid "[Text]"
msgstr "[نص]"
@@ -7538,103 +7544,103 @@ msgstr "[نص]"
#. --------------------------------------------------------------------
#. Description: SubType Extuser
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:962
+#: sw/inc/strings.hrc:963
msgctxt "FLD_EU_FIRMA"
msgid "Company"
msgstr "الشركة"
#. WWxTK
-#: sw/inc/strings.hrc:963
+#: sw/inc/strings.hrc:964
msgctxt "FLD_EU_VORNAME"
msgid "First Name"
msgstr "الاسم الأول"
#. 4tdAc
-#: sw/inc/strings.hrc:964
+#: sw/inc/strings.hrc:965
msgctxt "FLD_EU_NAME"
msgid "Last Name"
msgstr "الاسم الأخير"
#. xTV7n
-#: sw/inc/strings.hrc:965
+#: sw/inc/strings.hrc:966
msgctxt "FLD_EU_ABK"
msgid "Initials"
msgstr "الألقاب"
#. AKD3k
-#: sw/inc/strings.hrc:966
+#: sw/inc/strings.hrc:967
msgctxt "FLD_EU_STRASSE"
msgid "Street"
msgstr "الشارع"
#. ErMju
-#: sw/inc/strings.hrc:967
+#: sw/inc/strings.hrc:968
msgctxt "FLD_EU_LAND"
msgid "Country"
msgstr "الدولة"
#. ESbkx
-#: sw/inc/strings.hrc:968
+#: sw/inc/strings.hrc:969
msgctxt "FLD_EU_PLZ"
msgid "Zip code"
msgstr "الرمز البريدي"
#. WDAc2
-#: sw/inc/strings.hrc:969
+#: sw/inc/strings.hrc:970
msgctxt "FLD_EU_ORT"
msgid "City"
msgstr "المدينة"
#. pg7MV
-#: sw/inc/strings.hrc:970
+#: sw/inc/strings.hrc:971
msgctxt "FLD_EU_TITEL"
msgid "Title"
msgstr "المسمى الوظيفي"
#. DwLhZ
-#: sw/inc/strings.hrc:971
+#: sw/inc/strings.hrc:972
msgctxt "FLD_EU_POS"
msgid "Position"
msgstr "الموضع"
#. LDTdu
-#: sw/inc/strings.hrc:972
+#: sw/inc/strings.hrc:973
msgctxt "FLD_EU_TELPRIV"
msgid "Tel. (Home)"
msgstr "الهاتف (منزل)"
#. JBZyj
-#: sw/inc/strings.hrc:973
+#: sw/inc/strings.hrc:974
msgctxt "FLD_EU_TELFIRMA"
msgid "Tel. (Work)"
msgstr "الهاتف (عمل)"
#. 5EmGH
-#: sw/inc/strings.hrc:974
+#: sw/inc/strings.hrc:975
msgctxt "FLD_EU_FAX"
msgid "Fax"
msgstr "فاكس"
#. AtN9J
-#: sw/inc/strings.hrc:975
+#: sw/inc/strings.hrc:976
msgctxt "FLD_EU_EMAIL"
msgid "Email"
msgstr ""
#. 6GBRm
-#: sw/inc/strings.hrc:976
+#: sw/inc/strings.hrc:977
msgctxt "FLD_EU_STATE"
msgid "State"
msgstr "الولاية"
#. pbrdQ
-#: sw/inc/strings.hrc:977
+#: sw/inc/strings.hrc:978
msgctxt "FLD_PAGEREF_OFF"
msgid "off"
msgstr "أوقف"
#. wC8SE
-#: sw/inc/strings.hrc:978
+#: sw/inc/strings.hrc:979
msgctxt "FLD_PAGEREF_ON"
msgid "on"
msgstr "شغّل"
@@ -7644,37 +7650,37 @@ msgstr "شغّل"
#. Description: path name
#. --------------------------------------------------------------------
#. Format FileName
-#: sw/inc/strings.hrc:983
+#: sw/inc/strings.hrc:984
msgctxt "FMT_FF_NAME"
msgid "File name"
msgstr "اسم الملف"
#. RBpz3
-#: sw/inc/strings.hrc:984
+#: sw/inc/strings.hrc:985
msgctxt "FMT_FF_NAME_NOEXT"
msgid "File name without extension"
msgstr "اسم الملف بدون امتداد"
#. BCzy8
-#: sw/inc/strings.hrc:985
+#: sw/inc/strings.hrc:986
msgctxt "FMT_FF_PATHNAME"
msgid "Path/File name"
msgstr "المسار/اسم الملف"
#. ChFwM
-#: sw/inc/strings.hrc:986
+#: sw/inc/strings.hrc:987
msgctxt "FMT_FF_PATH"
msgid "Path"
msgstr "المسار"
#. R6KrL
-#: sw/inc/strings.hrc:987
+#: sw/inc/strings.hrc:988
msgctxt "FMT_FF_UI_NAME"
msgid "Template name"
msgstr ""
#. ANM2H
-#: sw/inc/strings.hrc:988
+#: sw/inc/strings.hrc:989
msgctxt "FMT_FF_UI_RANGE"
msgid "Category"
msgstr "الفئة"
@@ -7683,25 +7689,25 @@ msgstr "الفئة"
#. --------------------------------------------------------------------
#. Description: format chapter
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:992
+#: sw/inc/strings.hrc:993
msgctxt "FMT_CHAPTER_NAME"
msgid "Chapter name"
msgstr "اسم الفصل"
#. tnLqE
-#: sw/inc/strings.hrc:993
+#: sw/inc/strings.hrc:994
msgctxt "FMT_CHAPTER_NO"
msgid "Chapter number"
msgstr "رقم الفصل"
#. qGEAs
-#: sw/inc/strings.hrc:994
+#: sw/inc/strings.hrc:995
msgctxt "FMT_CHAPTER_NO_NOSEPARATOR"
msgid "Chapter number without separator"
msgstr "رقم الفصل بدون فاصل"
#. WFA5R
-#: sw/inc/strings.hrc:995
+#: sw/inc/strings.hrc:996
msgctxt "FMT_CHAPTER_NAMENO"
msgid "Chapter number and name"
msgstr "رقم واسم الفصل"
@@ -7710,55 +7716,55 @@ msgstr "رقم واسم الفصل"
#. --------------------------------------------------------------------
#. Description: formats
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:999
+#: sw/inc/strings.hrc:1000
msgctxt "FMT_NUM_ABC"
msgid "A B C"
msgstr "A B C"
#. jm7G7
-#: sw/inc/strings.hrc:1000
+#: sw/inc/strings.hrc:1001
msgctxt "FMT_NUM_SABC"
msgid "a b c"
msgstr "a b c"
#. ETgy7
-#: sw/inc/strings.hrc:1001
+#: sw/inc/strings.hrc:1002
msgctxt "FMT_NUM_ABC_N"
msgid "A .. AA .. AAA"
msgstr "A‏ ‏.. AA ‏.. AAA"
#. m84Fb
-#: sw/inc/strings.hrc:1002
+#: sw/inc/strings.hrc:1003
msgctxt "FMT_NUM_SABC_N"
msgid "a .. aa .. aaa"
msgstr "‏a .. ‏aa .. ‏aaa"
#. d9YtB
-#: sw/inc/strings.hrc:1003
+#: sw/inc/strings.hrc:1004
msgctxt "FMT_NUM_ROMAN"
msgid "Roman (I II III)"
msgstr "أرقام رومانية (III II I)"
#. vA5RT
-#: sw/inc/strings.hrc:1004
+#: sw/inc/strings.hrc:1005
msgctxt "FMT_NUM_SROMAN"
msgid "Roman (i ii iii)"
msgstr "أرقام رومانية (iii ii i)"
#. 3ZDgc
-#: sw/inc/strings.hrc:1005
+#: sw/inc/strings.hrc:1006
msgctxt "FMT_NUM_ARABIC"
msgid "Arabic (1 2 3)"
msgstr "أرقام عربية (1 2 3)"
#. CHmdp
-#: sw/inc/strings.hrc:1006
+#: sw/inc/strings.hrc:1007
msgctxt "FMT_NUM_PAGEDESC"
msgid "As Page Style"
msgstr "مثل نمط الصفحة"
#. xBKwZ
-#: sw/inc/strings.hrc:1007
+#: sw/inc/strings.hrc:1008
msgctxt "FMT_NUM_PAGESPECIAL"
msgid "Text"
msgstr "النص"
@@ -7767,13 +7773,13 @@ msgstr "النص"
#. --------------------------------------------------------------------
#. Description: Author
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1011
+#: sw/inc/strings.hrc:1012
msgctxt "FMT_AUTHOR_NAME"
msgid "Name"
msgstr "الاسم"
#. RCnZb
-#: sw/inc/strings.hrc:1012
+#: sw/inc/strings.hrc:1013
msgctxt "FMT_AUTHOR_SCUT"
msgid "Initials"
msgstr "الحروف البادئة"
@@ -7782,49 +7788,49 @@ msgstr "الحروف البادئة"
#. --------------------------------------------------------------------
#. Description: set variable
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1016
+#: sw/inc/strings.hrc:1017
msgctxt "FMT_SETVAR_SYS"
msgid "System"
msgstr "النظام"
#. qKXLW
-#: sw/inc/strings.hrc:1017
+#: sw/inc/strings.hrc:1018
msgctxt "FMT_SETVAR_TEXT"
msgid "Text"
msgstr "النص"
#. E86ZD
-#: sw/inc/strings.hrc:1018
+#: sw/inc/strings.hrc:1019
msgctxt "FMT_GETVAR_NAME"
msgid "Name"
msgstr "الاسم"
#. FB3Rp
-#: sw/inc/strings.hrc:1019
+#: sw/inc/strings.hrc:1020
msgctxt "FMT_GETVAR_TEXT"
msgid "Text"
msgstr "نص"
#. KiBai
-#: sw/inc/strings.hrc:1020
+#: sw/inc/strings.hrc:1021
msgctxt "FMT_USERVAR_CMD"
msgid "Formula"
msgstr "معادلة"
#. 9AsdS
-#: sw/inc/strings.hrc:1021
+#: sw/inc/strings.hrc:1022
msgctxt "FMT_USERVAR_TEXT"
msgid "Text"
msgstr "نص"
#. GokUf
-#: sw/inc/strings.hrc:1022
+#: sw/inc/strings.hrc:1023
msgctxt "FMT_DBFLD_DB"
msgid "Database"
msgstr "قاعدة بيانات"
#. UBADL
-#: sw/inc/strings.hrc:1023
+#: sw/inc/strings.hrc:1024
msgctxt "FMT_DBFLD_SYS"
msgid "System"
msgstr "النظام"
@@ -7833,19 +7839,19 @@ msgstr "النظام"
#. --------------------------------------------------------------------
#. Description: storage fields
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1027
+#: sw/inc/strings.hrc:1028
msgctxt "FMT_REG_AUTHOR"
msgid "Author"
msgstr "المؤلف"
#. aqFVp
-#: sw/inc/strings.hrc:1028
+#: sw/inc/strings.hrc:1029
msgctxt "FMT_REG_TIME"
msgid "Time"
msgstr "الوقت"
#. FaZKx
-#: sw/inc/strings.hrc:1029
+#: sw/inc/strings.hrc:1030
msgctxt "FMT_REG_DATE"
msgid "Date"
msgstr "التاريخ"
@@ -7854,79 +7860,79 @@ msgstr "التاريخ"
#. --------------------------------------------------------------------
#. Description: formats references
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1033
+#: sw/inc/strings.hrc:1034
msgctxt "FMT_REF_TEXT"
msgid "Referenced text"
msgstr ""
#. eeSAu
-#: sw/inc/strings.hrc:1034
+#: sw/inc/strings.hrc:1035
msgctxt "FMT_REF_PAGE"
msgid "Page number (unstyled)"
msgstr ""
#. MaB3q
-#: sw/inc/strings.hrc:1035
+#: sw/inc/strings.hrc:1036
msgctxt "FMT_REF_CHAPTER"
msgid "Chapter"
msgstr "الفصل"
#. VBMno
-#: sw/inc/strings.hrc:1036
+#: sw/inc/strings.hrc:1037
msgctxt "FMT_REF_UPDOWN"
msgid "“Above”/“Below”"
msgstr ""
#. 96emU
-#: sw/inc/strings.hrc:1037
+#: sw/inc/strings.hrc:1038
msgctxt "FMT_REF_PAGE_PGDSC"
msgid "Page number (styled)"
msgstr ""
#. CQitd
-#: sw/inc/strings.hrc:1038
+#: sw/inc/strings.hrc:1039
msgctxt "FMT_REF_ONLYNUMBER"
msgid "Category and Number"
msgstr "الفئة و الرقم"
#. BsvCn
-#: sw/inc/strings.hrc:1039
+#: sw/inc/strings.hrc:1040
msgctxt "FMT_REF_ONLYCAPTION"
msgid "Caption Text"
msgstr "نص الواصفة"
#. P7wiX
-#: sw/inc/strings.hrc:1040
+#: sw/inc/strings.hrc:1041
msgctxt "FMT_REF_ONLYSEQNO"
msgid "Numbering"
msgstr "ترقيم"
#. QBGit
-#: sw/inc/strings.hrc:1041
+#: sw/inc/strings.hrc:1042
msgctxt "FMT_REF_NUMBER"
msgid "Number"
msgstr "رقم"
#. CGkV7
-#: sw/inc/strings.hrc:1042
+#: sw/inc/strings.hrc:1043
msgctxt "FMT_REF_NUMBER_NO_CONTEXT"
msgid "Number (no context)"
msgstr "رقم (دون سياق)"
#. XgSb3
-#: sw/inc/strings.hrc:1043
+#: sw/inc/strings.hrc:1044
msgctxt "FMT_REF_NUMBER_FULL_CONTEXT"
msgid "Number (full context)"
msgstr "رقم (السياق الكامل)"
#. zQTNF
-#: sw/inc/strings.hrc:1045
+#: sw/inc/strings.hrc:1046
msgctxt "FMT_REF_WITH_LOWERCASE_HU_ARTICLE"
msgid "Article a/az + "
msgstr ""
#. 97Vs7
-#: sw/inc/strings.hrc:1046
+#: sw/inc/strings.hrc:1047
msgctxt "FMT_REF_WITH_UPPERCASE_HU_ARTICLE"
msgid "Article A/Az + "
msgstr ""
@@ -7935,31 +7941,31 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: placeholder
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1050
+#: sw/inc/strings.hrc:1051
msgctxt "FMT_MARK_TEXT"
msgid "Text"
msgstr "نص"
#. rAQoE
-#: sw/inc/strings.hrc:1051
+#: sw/inc/strings.hrc:1052
msgctxt "FMT_MARK_TABLE"
msgid "Table"
msgstr "جدول"
#. biUa2
-#: sw/inc/strings.hrc:1052
+#: sw/inc/strings.hrc:1053
msgctxt "FMT_MARK_FRAME"
msgid "Frame"
msgstr "إطار"
#. 7mkZb
-#: sw/inc/strings.hrc:1053
+#: sw/inc/strings.hrc:1054
msgctxt "FMT_MARK_GRAFIC"
msgid "Image"
msgstr "صورة"
#. GgbFY
-#: sw/inc/strings.hrc:1054
+#: sw/inc/strings.hrc:1055
msgctxt "FMT_MARK_OLE"
msgid "Object"
msgstr "كائن"
@@ -7968,1560 +7974,1560 @@ msgstr "كائن"
#. --------------------------------------------------------------------
#. Description: ExchangeStrings for Edit/NameFT
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1058
+#: sw/inc/strings.hrc:1059
msgctxt "STR_COND"
msgid "~Condition"
msgstr "~شرط"
#. X9cqJ
-#: sw/inc/strings.hrc:1059
+#: sw/inc/strings.hrc:1060
msgctxt "STR_TEXT"
msgid "Then, Else"
msgstr "إذن، وإلّا"
#. bo8yF
-#: sw/inc/strings.hrc:1060
+#: sw/inc/strings.hrc:1061
msgctxt "STR_DDE_CMD"
msgid "DDE Statement"
msgstr "عبارة DDE"
#. LixXA
-#: sw/inc/strings.hrc:1061
+#: sw/inc/strings.hrc:1062
msgctxt "STR_INSTEXT"
msgid "Hidden t~ext"
msgstr "~نص غير مرئي"
#. EX3bJ
-#: sw/inc/strings.hrc:1062
+#: sw/inc/strings.hrc:1063
msgctxt "STR_MACNAME"
msgid "~Macro name"
msgstr "اسم ال~ماكرو"
#. dNZtd
-#: sw/inc/strings.hrc:1063
+#: sw/inc/strings.hrc:1064
msgctxt "STR_PROMPT"
msgid "~Reference"
msgstr "مر~جع"
#. bfRPa
-#: sw/inc/strings.hrc:1064
+#: sw/inc/strings.hrc:1065
msgctxt "STR_COMBCHRS_FT"
msgid "Ch~aracters"
msgstr "حرو~ف"
#. j2G5G
-#: sw/inc/strings.hrc:1065
+#: sw/inc/strings.hrc:1066
msgctxt "STR_OFFSET"
msgid "O~ffset"
msgstr "~تعديل"
#. vEgGo
-#: sw/inc/strings.hrc:1066
+#: sw/inc/strings.hrc:1067
msgctxt "STR_VALUE"
msgid "Value"
msgstr "القيمة"
#. YQesU
-#: sw/inc/strings.hrc:1067
+#: sw/inc/strings.hrc:1068
msgctxt "STR_FORMULA"
msgid "Formula"
msgstr "الصيغة"
#. Eq5xq
-#: sw/inc/strings.hrc:1068
+#: sw/inc/strings.hrc:1069
msgctxt "STR_CUSTOM_FIELD"
msgid "Custom"
msgstr "مخصص"
#. 32NzA
-#: sw/inc/strings.hrc:1070
+#: sw/inc/strings.hrc:1071
msgctxt "STR_CUSTOM_LABEL"
msgid "[User]"
msgstr "[مستخدم]"
#. dYQTU
-#: sw/inc/strings.hrc:1072
+#: sw/inc/strings.hrc:1073
msgctxt "STR_HDIST"
msgid "H. Pitch"
msgstr "انحدار أفقي"
#. xELZY
-#: sw/inc/strings.hrc:1073
+#: sw/inc/strings.hrc:1074
msgctxt "STR_VDIST"
msgid "V. Pitch"
msgstr "انحدار رأسي"
#. F9Ldz
-#: sw/inc/strings.hrc:1074
+#: sw/inc/strings.hrc:1075
msgctxt "STR_WIDTH"
msgid "Width"
msgstr "العرض"
#. rdxcb
-#: sw/inc/strings.hrc:1075
+#: sw/inc/strings.hrc:1076
msgctxt "STR_HEIGHT"
msgid "Height"
msgstr "الارتفاع"
#. DQm2h
-#: sw/inc/strings.hrc:1076
+#: sw/inc/strings.hrc:1077
msgctxt "STR_LEFT"
msgid "Left margin"
msgstr "الهامش الأيسر"
#. imDMU
-#: sw/inc/strings.hrc:1077
+#: sw/inc/strings.hrc:1078
msgctxt "STR_UPPER"
msgid "Top margin"
msgstr "الهامش العلوي"
#. ayQss
-#: sw/inc/strings.hrc:1078
+#: sw/inc/strings.hrc:1079
msgctxt "STR_COLS"
msgid "Columns"
msgstr "الأعمدة"
#. 3moLd
-#: sw/inc/strings.hrc:1079
+#: sw/inc/strings.hrc:1080
msgctxt "STR_ROWS"
msgid "Rows"
msgstr "الصفوف"
#. XWMSH
-#: sw/inc/strings.hrc:1081
+#: sw/inc/strings.hrc:1082
msgctxt "STR_WORDCOUNT_HINT"
msgid "Word and character count. Click to open Word Count dialog."
msgstr "عدد الكلمات والمحارف. انقر لفتح حوار عدد الكلمات."
#. nxGNq
-#: sw/inc/strings.hrc:1082
+#: sw/inc/strings.hrc:1083
msgctxt "STR_VIEWLAYOUT_ONE"
msgid "Single-page view"
msgstr "منظور صفحة واحدة"
#. 57ju6
-#: sw/inc/strings.hrc:1083
+#: sw/inc/strings.hrc:1084
msgctxt "STR_VIEWLAYOUT_MULTI"
msgid "Multiple-page view"
msgstr "منظور متعدد الصفحات"
#. tbig8
-#: sw/inc/strings.hrc:1084
+#: sw/inc/strings.hrc:1085
msgctxt "STR_VIEWLAYOUT_BOOK"
msgid "Book view"
msgstr "منظور الكتاب"
#. xBHUG
-#: sw/inc/strings.hrc:1085
+#: sw/inc/strings.hrc:1086
msgctxt "STR_BOOKCTRL_HINT"
msgid "Page number in document. Click to open Go to Page dialog or right-click for bookmark list."
msgstr "رقم الصفحة في المستند. انقر عليه لفتح حواري ”انتقل إلى“ أو انقر عليه باليمين لعرض قائمة العلامات."
#. XaF3v
-#: sw/inc/strings.hrc:1086
+#: sw/inc/strings.hrc:1087
msgctxt "STR_BOOKCTRL_HINT_EXTENDED"
msgid "Page number in document (Page number on printed document). Click to open Go to Page dialog."
msgstr "رقم الصفحة في المستند (رقم الصفحة في المستند المطبوع). انقر عليه لفتح حواري ”انتقل إلى“."
#. EWtd2
-#: sw/inc/strings.hrc:1087
+#: sw/inc/strings.hrc:1088
msgctxt "STR_TMPLCTRL_HINT"
msgid "Page Style. Right-click to change style or click to open Style dialog."
msgstr "نمط الصفحات. انقر باليمين لتغيير النمط أو انقر لفتح حواري الأنماط."
#. jQAym
#. Strings for textual attributes.
-#: sw/inc/strings.hrc:1090
+#: sw/inc/strings.hrc:1091
msgctxt "STR_DROP_OVER"
msgid "Drop Caps over"
msgstr "أحرف استهلالية على"
#. PLAVt
-#: sw/inc/strings.hrc:1091
+#: sw/inc/strings.hrc:1092
msgctxt "STR_DROP_LINES"
msgid "rows"
msgstr "من الصفوف"
#. sg6Za
-#: sw/inc/strings.hrc:1092
+#: sw/inc/strings.hrc:1093
msgctxt "STR_NO_DROP_LINES"
msgid "No Drop Caps"
msgstr "لا أحرف استهلالية"
#. gueRC
-#: sw/inc/strings.hrc:1093
+#: sw/inc/strings.hrc:1094
msgctxt "STR_NO_PAGEDESC"
msgid "No page break"
msgstr "لا فاصل صفحات"
#. G3CQN
-#: sw/inc/strings.hrc:1094
+#: sw/inc/strings.hrc:1095
msgctxt "STR_NO_MIRROR"
msgid "Don't mirror"
msgstr "لا تعكس"
#. MVEk8
-#: sw/inc/strings.hrc:1095
+#: sw/inc/strings.hrc:1096
msgctxt "STR_VERT_MIRROR"
msgid "Flip vertically"
msgstr "قلب رأسيًّا"
#. Dns6t
-#: sw/inc/strings.hrc:1096
+#: sw/inc/strings.hrc:1097
msgctxt "STR_HORI_MIRROR"
msgid "Flip horizontal"
msgstr "اقلب أفقيًّا"
#. ZUKCy
-#: sw/inc/strings.hrc:1097
+#: sw/inc/strings.hrc:1098
msgctxt "STR_BOTH_MIRROR"
msgid "Horizontal and Vertical Flip"
msgstr "اقلب رأسيا وأفقيا"
#. LoQic
-#: sw/inc/strings.hrc:1098
+#: sw/inc/strings.hrc:1099
msgctxt "STR_MIRROR_TOGGLE"
msgid "+ mirror horizontal on even pages"
msgstr "+ اعكس أفقيا في الصفحات الزوجية"
#. kbnTf
-#: sw/inc/strings.hrc:1099
+#: sw/inc/strings.hrc:1100
msgctxt "STR_CHARFMT"
msgid "Character Style"
msgstr "نمط الأحرف"
#. D99ZJ
-#: sw/inc/strings.hrc:1100
+#: sw/inc/strings.hrc:1101
msgctxt "STR_NO_CHARFMT"
msgid "No Character Style"
msgstr "لا نمط أحرف"
#. fzG3P
-#: sw/inc/strings.hrc:1101
+#: sw/inc/strings.hrc:1102
msgctxt "STR_FOOTER"
msgid "Footer"
msgstr "تذييل"
#. 9RCsQ
-#: sw/inc/strings.hrc:1102
+#: sw/inc/strings.hrc:1103
msgctxt "STR_NO_FOOTER"
msgid "No footer"
msgstr "لا تذييل"
#. zFTin
-#: sw/inc/strings.hrc:1103
+#: sw/inc/strings.hrc:1104
msgctxt "STR_HEADER"
msgid "Header"
msgstr "ترويسة"
#. PcYEB
-#: sw/inc/strings.hrc:1104
+#: sw/inc/strings.hrc:1105
msgctxt "STR_NO_HEADER"
msgid "No header"
msgstr "لا ترويسة"
#. 8Jgfg
-#: sw/inc/strings.hrc:1105
+#: sw/inc/strings.hrc:1106
msgctxt "STR_SURROUND_IDEAL"
msgid "Optimal"
msgstr ""
#. HEuGy
-#: sw/inc/strings.hrc:1106
+#: sw/inc/strings.hrc:1107
msgctxt "STR_SURROUND_NONE"
msgid "None"
msgstr ""
#. 4tA4q
-#: sw/inc/strings.hrc:1107
+#: sw/inc/strings.hrc:1108
msgctxt "STR_SURROUND_THROUGH"
msgid "Through"
msgstr "خلال"
#. ypvD6
-#: sw/inc/strings.hrc:1108
+#: sw/inc/strings.hrc:1109
msgctxt "STR_SURROUND_PARALLEL"
msgid "Parallel"
msgstr ""
#. hyEQ5
-#: sw/inc/strings.hrc:1109
+#: sw/inc/strings.hrc:1110
msgctxt "STR_SURROUND_LEFT"
msgid "Before"
msgstr ""
#. bGBtQ
-#: sw/inc/strings.hrc:1110
+#: sw/inc/strings.hrc:1111
msgctxt "STR_SURROUND_RIGHT"
msgid "After"
msgstr ""
#. SrG3D
-#: sw/inc/strings.hrc:1111
+#: sw/inc/strings.hrc:1112
msgctxt "STR_SURROUND_ANCHORONLY"
msgid "(Anchor only)"
msgstr "(مربط فقط)"
#. 9Ywzb
-#: sw/inc/strings.hrc:1112
+#: sw/inc/strings.hrc:1113
msgctxt "STR_FRM_WIDTH"
msgid "Width:"
msgstr "العرض:"
#. 2GYT7
-#: sw/inc/strings.hrc:1113
+#: sw/inc/strings.hrc:1114
msgctxt "STR_FRM_FIXEDHEIGHT"
msgid "Fixed height:"
msgstr "الارتفاع الثابت:"
#. QrFMi
-#: sw/inc/strings.hrc:1114
+#: sw/inc/strings.hrc:1115
msgctxt "STR_FRM_MINHEIGHT"
msgid "Min. height:"
msgstr "أدنى ارتفاع:"
#. kLiYd
-#: sw/inc/strings.hrc:1115
+#: sw/inc/strings.hrc:1116
msgctxt "STR_FLY_AT_PARA"
msgid "to paragraph"
msgstr "مرتبط بالفقرة"
#. A8nAb
-#: sw/inc/strings.hrc:1116
+#: sw/inc/strings.hrc:1117
msgctxt "STR_FLY_AS_CHAR"
msgid "as character"
msgstr ""
#. Uszmm
-#: sw/inc/strings.hrc:1117
+#: sw/inc/strings.hrc:1118
msgctxt "STR_FLY_AT_CHAR"
msgid "to character"
msgstr ""
#. hDUSa
-#: sw/inc/strings.hrc:1118
+#: sw/inc/strings.hrc:1119
msgctxt "STR_FLY_AT_PAGE"
msgid "to page"
msgstr "مرتبط بالصفحة"
#. JMHRz
-#: sw/inc/strings.hrc:1119
+#: sw/inc/strings.hrc:1120
msgctxt "STR_POS_X"
msgid "X Coordinate:"
msgstr "الإحداثي س:"
#. oCZWW
-#: sw/inc/strings.hrc:1120
+#: sw/inc/strings.hrc:1121
msgctxt "STR_POS_Y"
msgid "Y Coordinate:"
msgstr "الإحداثي ص:"
#. YNKE6
-#: sw/inc/strings.hrc:1121
+#: sw/inc/strings.hrc:1122
msgctxt "STR_VERT_TOP"
msgid "at top"
msgstr "للأعلى"
#. GPTAu
-#: sw/inc/strings.hrc:1122
+#: sw/inc/strings.hrc:1123
msgctxt "STR_VERT_CENTER"
msgid "Centered vertically"
msgstr "موسط عمودياً"
#. fcpTS
-#: sw/inc/strings.hrc:1123
+#: sw/inc/strings.hrc:1124
msgctxt "STR_VERT_BOTTOM"
msgid "at bottom"
msgstr "للأسفل"
#. 37hos
-#: sw/inc/strings.hrc:1124
+#: sw/inc/strings.hrc:1125
msgctxt "STR_LINE_TOP"
msgid "Top of line"
msgstr "أعلى السطر"
#. MU7hC
-#: sw/inc/strings.hrc:1125
+#: sw/inc/strings.hrc:1126
#, fuzzy
msgctxt "STR_LINE_CENTER"
msgid "Line centered"
msgstr "وسط اليسار"
#. ZvEq7
-#: sw/inc/strings.hrc:1126
+#: sw/inc/strings.hrc:1127
msgctxt "STR_LINE_BOTTOM"
msgid "Bottom of line"
msgstr "أسفل السطر"
#. jypsG
-#: sw/inc/strings.hrc:1127
+#: sw/inc/strings.hrc:1128
msgctxt "STR_REGISTER_ON"
msgid "Page line-spacing"
msgstr ""
#. Cui3U
-#: sw/inc/strings.hrc:1128
+#: sw/inc/strings.hrc:1129
msgctxt "STR_REGISTER_OFF"
msgid "Not page line-spacing"
msgstr ""
#. 4RL9X
-#: sw/inc/strings.hrc:1129
+#: sw/inc/strings.hrc:1130
msgctxt "STR_HORI_RIGHT"
msgid "at the right"
msgstr "على اليمين"
#. wzGK7
-#: sw/inc/strings.hrc:1130
+#: sw/inc/strings.hrc:1131
msgctxt "STR_HORI_CENTER"
msgid "Centered horizontally"
msgstr "موسط أفقياً"
#. ngRmB
-#: sw/inc/strings.hrc:1131
+#: sw/inc/strings.hrc:1132
msgctxt "STR_HORI_LEFT"
msgid "at the left"
msgstr "على اليسار"
#. JyHkM
-#: sw/inc/strings.hrc:1132
+#: sw/inc/strings.hrc:1133
#, fuzzy
msgctxt "STR_HORI_INSIDE"
msgid "inside"
msgstr "داخل"
#. iXSZZ
-#: sw/inc/strings.hrc:1133
+#: sw/inc/strings.hrc:1134
#, fuzzy
msgctxt "STR_HORI_OUTSIDE"
msgid "outside"
msgstr "خارج"
#. kDY9Z
-#: sw/inc/strings.hrc:1134
+#: sw/inc/strings.hrc:1135
msgctxt "STR_HORI_FULL"
msgid "Full width"
msgstr "كامل العرض"
#. Hvn8D
-#: sw/inc/strings.hrc:1135
+#: sw/inc/strings.hrc:1136
msgctxt "STR_COLUMNS"
msgid "Columns"
msgstr "الأعمدة"
#. 6j6TA
-#: sw/inc/strings.hrc:1136
+#: sw/inc/strings.hrc:1137
msgctxt "STR_LINE_WIDTH"
msgid "Separator Width:"
msgstr "عرض الفاصل:"
#. dvdDt
-#: sw/inc/strings.hrc:1137
+#: sw/inc/strings.hrc:1138
msgctxt "STR_MAX_FTN_HEIGHT"
msgid "Max. footnote area:"
msgstr "الحد الأقصى لمنطقة الحاشية:"
#. BWqF3
-#: sw/inc/strings.hrc:1138
+#: sw/inc/strings.hrc:1139
msgctxt "STR_EDIT_IN_READONLY"
msgid "Editable in read-only document"
msgstr "يمكن تحريره في المستندات المفتوحة للقراءة فقط"
#. SCL5F
-#: sw/inc/strings.hrc:1139
+#: sw/inc/strings.hrc:1140
#, fuzzy
msgctxt "STR_LAYOUT_SPLIT"
msgid "Split"
msgstr "تقسيم"
#. CFmBk
-#: sw/inc/strings.hrc:1140
+#: sw/inc/strings.hrc:1141
msgctxt "STR_NUMRULE_ON"
msgid "List Style: (%LISTSTYLENAME)"
msgstr ""
#. HvZBm
-#: sw/inc/strings.hrc:1141
+#: sw/inc/strings.hrc:1142
msgctxt "STR_NUMRULE_OFF"
msgid "List Style: (None)"
msgstr ""
#. QDaFk
-#: sw/inc/strings.hrc:1142
+#: sw/inc/strings.hrc:1143
msgctxt "STR_CONNECT1"
msgid "linked to "
msgstr ""
#. rWmT8
-#: sw/inc/strings.hrc:1143
+#: sw/inc/strings.hrc:1144
msgctxt "STR_CONNECT2"
msgid "and "
msgstr "و "
#. H2Kwq
-#: sw/inc/strings.hrc:1144
+#: sw/inc/strings.hrc:1145
msgctxt "STR_LINECOUNT"
msgid "Count lines"
msgstr ""
#. yjSiJ
-#: sw/inc/strings.hrc:1145
+#: sw/inc/strings.hrc:1146
msgctxt "STR_DONTLINECOUNT"
msgid "don't count lines"
msgstr ""
#. HE4BV
-#: sw/inc/strings.hrc:1146
+#: sw/inc/strings.hrc:1147
msgctxt "STR_LINCOUNT_START"
msgid "restart line count with: "
msgstr ""
#. 7Q8qC
-#: sw/inc/strings.hrc:1147
+#: sw/inc/strings.hrc:1148
msgctxt "STR_LUMINANCE"
msgid "Brightness: "
msgstr "السطوع: "
#. sNxPE
-#: sw/inc/strings.hrc:1148
+#: sw/inc/strings.hrc:1149
msgctxt "STR_CHANNELR"
msgid "Red: "
msgstr "الأحمر: "
#. u73NC
-#: sw/inc/strings.hrc:1149
+#: sw/inc/strings.hrc:1150
msgctxt "STR_CHANNELG"
msgid "Green: "
msgstr "الأخضر: "
#. qQsPp
-#: sw/inc/strings.hrc:1150
+#: sw/inc/strings.hrc:1151
msgctxt "STR_CHANNELB"
msgid "Blue: "
msgstr "الأزرق: "
#. BS4nZ
-#: sw/inc/strings.hrc:1151
+#: sw/inc/strings.hrc:1152
msgctxt "STR_CONTRAST"
msgid "Contrast: "
msgstr "التباين: "
#. avJBK
-#: sw/inc/strings.hrc:1152
+#: sw/inc/strings.hrc:1153
msgctxt "STR_GAMMA"
msgid "Gamma: "
msgstr "غاما: "
#. HQCJZ
-#: sw/inc/strings.hrc:1153
+#: sw/inc/strings.hrc:1154
msgctxt "STR_TRANSPARENCY"
msgid "Transparency: "
msgstr "الشفافية: "
#. 5jDK3
-#: sw/inc/strings.hrc:1154
+#: sw/inc/strings.hrc:1155
msgctxt "STR_INVERT"
msgid "Invert"
msgstr "اعكس"
#. DVSAx
-#: sw/inc/strings.hrc:1155
+#: sw/inc/strings.hrc:1156
msgctxt "STR_INVERT_NOT"
msgid "do not invert"
msgstr "لا تعكس"
#. Z7tXB
-#: sw/inc/strings.hrc:1156
+#: sw/inc/strings.hrc:1157
msgctxt "STR_DRAWMODE"
msgid "Graphics mode: "
msgstr "وضع الرسوم: "
#. RXuUF
-#: sw/inc/strings.hrc:1157
+#: sw/inc/strings.hrc:1158
#, fuzzy
msgctxt "STR_DRAWMODE_STD"
msgid "Standard"
msgstr "_قياسي"
#. kbALJ
-#: sw/inc/strings.hrc:1158
+#: sw/inc/strings.hrc:1159
#, fuzzy
msgctxt "STR_DRAWMODE_GREY"
msgid "Grayscales"
msgstr "تدرج رمادي"
#. eSHEj
-#: sw/inc/strings.hrc:1159
+#: sw/inc/strings.hrc:1160
msgctxt "STR_DRAWMODE_BLACKWHITE"
msgid "Black & White"
msgstr "أسود و أبيض"
#. tABTr
-#: sw/inc/strings.hrc:1160
+#: sw/inc/strings.hrc:1161
msgctxt "STR_DRAWMODE_WATERMARK"
msgid "Watermark"
msgstr "علامة مائيّة"
#. 8SwC3
-#: sw/inc/strings.hrc:1161
+#: sw/inc/strings.hrc:1162
#, fuzzy
msgctxt "STR_ROTATION"
msgid "Rotation"
msgstr "اقتباس"
#. hWEeF
-#: sw/inc/strings.hrc:1162
+#: sw/inc/strings.hrc:1163
msgctxt "STR_GRID_NONE"
msgid "No grid"
msgstr "بدون شبكة"
#. HEuEv
-#: sw/inc/strings.hrc:1163
+#: sw/inc/strings.hrc:1164
msgctxt "STR_GRID_LINES_ONLY"
msgid "Grid (lines only)"
msgstr "شبكة (السطور فقط)"
#. VFgMq
-#: sw/inc/strings.hrc:1164
+#: sw/inc/strings.hrc:1165
msgctxt "STR_GRID_LINES_CHARS"
msgid "Grid (lines and characters)"
msgstr "شبكة (سطور وحروف)"
#. VRJrB
-#: sw/inc/strings.hrc:1165
+#: sw/inc/strings.hrc:1166
msgctxt "STR_FOLLOW_TEXT_FLOW"
msgid "Follow text flow"
msgstr "اتباع تدفق النّص"
#. Sb3Je
-#: sw/inc/strings.hrc:1166
+#: sw/inc/strings.hrc:1167
msgctxt "STR_DONT_FOLLOW_TEXT_FLOW"
msgid "Do not follow text flow"
msgstr "لا تتبع تدفق النص"
#. yXFKP
-#: sw/inc/strings.hrc:1167
+#: sw/inc/strings.hrc:1168
msgctxt "STR_CONNECT_BORDER_ON"
msgid "Merge borders"
msgstr ""
#. vwHbS
-#: sw/inc/strings.hrc:1168
+#: sw/inc/strings.hrc:1169
msgctxt "STR_CONNECT_BORDER_OFF"
msgid "Do not merge borders"
msgstr "لا تدمج الحدود"
#. 3874B
-#: sw/inc/strings.hrc:1170
+#: sw/inc/strings.hrc:1171
#, fuzzy
msgctxt "ST_TBL"
msgid "Table"
msgstr "الجدول"
#. T9JAj
-#: sw/inc/strings.hrc:1171
+#: sw/inc/strings.hrc:1172
msgctxt "ST_FRM"
msgid "Frame"
msgstr ""
#. Fsnm6
-#: sw/inc/strings.hrc:1172
+#: sw/inc/strings.hrc:1173
#, fuzzy
msgctxt "ST_PGE"
msgid "Page"
msgstr "الصفحة"
#. pKFCz
-#: sw/inc/strings.hrc:1173
+#: sw/inc/strings.hrc:1174
msgctxt "ST_DRW"
msgid "Drawing"
msgstr "الرسم"
#. amiSY
-#: sw/inc/strings.hrc:1174
+#: sw/inc/strings.hrc:1175
msgctxt "ST_CTRL"
msgid "Control"
msgstr "عنصر تحكم"
#. GEw9u
-#: sw/inc/strings.hrc:1175
+#: sw/inc/strings.hrc:1176
#, fuzzy
msgctxt "ST_REG"
msgid "Section"
msgstr "قسم"
#. bEiyL
-#: sw/inc/strings.hrc:1176
+#: sw/inc/strings.hrc:1177
msgctxt "ST_BKM"
msgid "Bookmark"
msgstr "علامة"
#. 6gXCo
-#: sw/inc/strings.hrc:1177
+#: sw/inc/strings.hrc:1178
#, fuzzy
msgctxt "ST_GRF"
msgid "Graphics"
msgstr "رسوميات"
#. d5eSc
-#: sw/inc/strings.hrc:1178
+#: sw/inc/strings.hrc:1179
msgctxt "ST_OLE"
msgid "OLE object"
msgstr "كائن OLE"
#. h5QQ8
-#: sw/inc/strings.hrc:1179
+#: sw/inc/strings.hrc:1180
#, fuzzy
msgctxt "ST_OUTL"
msgid "Headings"
msgstr "عناوين رئيسية"
#. Cbktp
-#: sw/inc/strings.hrc:1180
+#: sw/inc/strings.hrc:1181
msgctxt "ST_SEL"
msgid "Selection"
msgstr "التحديد"
#. nquvS
-#: sw/inc/strings.hrc:1181
+#: sw/inc/strings.hrc:1182
msgctxt "ST_FTN"
msgid "Footnote"
msgstr "حاشية"
#. GpAUo
-#: sw/inc/strings.hrc:1182
+#: sw/inc/strings.hrc:1183
msgctxt "ST_MARK"
msgid "Reminder"
msgstr ""
#. nDFKa
-#: sw/inc/strings.hrc:1183
+#: sw/inc/strings.hrc:1184
msgctxt "ST_POSTIT"
msgid "Comment"
msgstr "تعليق"
#. qpbDE
-#: sw/inc/strings.hrc:1184
+#: sw/inc/strings.hrc:1185
#, fuzzy
msgctxt "ST_SRCH_REP"
msgid "Repeat search"
msgstr "تكرار البحث"
#. ipxfH
-#: sw/inc/strings.hrc:1185
+#: sw/inc/strings.hrc:1186
msgctxt "ST_INDEX_ENTRY"
msgid "Index entry"
msgstr ""
#. sfmff
-#: sw/inc/strings.hrc:1186
+#: sw/inc/strings.hrc:1187
msgctxt "ST_TABLE_FORMULA"
msgid "Table formula"
msgstr ""
#. DtkuT
-#: sw/inc/strings.hrc:1187
+#: sw/inc/strings.hrc:1188
msgctxt "ST_TABLE_FORMULA_ERROR"
msgid "Wrong table formula"
msgstr ""
#. A6Vgk
-#: sw/inc/strings.hrc:1188
+#: sw/inc/strings.hrc:1189
msgctxt "ST_RECENCY"
msgid "Recency"
msgstr ""
#. pCp7u
-#: sw/inc/strings.hrc:1189
+#: sw/inc/strings.hrc:1190
msgctxt "ST_FIELD"
msgid "Field"
msgstr ""
#. LYuHA
-#: sw/inc/strings.hrc:1190
+#: sw/inc/strings.hrc:1191
msgctxt "ST_FIELD_BYTYPE"
msgid "Field by type"
msgstr ""
#. ECFxw
#. Strings for the quickhelp of the View-PgUp/Down-Buttons
-#: sw/inc/strings.hrc:1192
+#: sw/inc/strings.hrc:1193
msgctxt "STR_IMGBTN_TBL_DOWN"
msgid "Next table"
msgstr "الجدول التالي"
#. yhnpi
-#: sw/inc/strings.hrc:1193
+#: sw/inc/strings.hrc:1194
msgctxt "STR_IMGBTN_FRM_DOWN"
msgid "Next frame"
msgstr ""
#. M4BCA
-#: sw/inc/strings.hrc:1194
+#: sw/inc/strings.hrc:1195
msgctxt "STR_IMGBTN_PGE_DOWN"
msgid "Next page"
msgstr "الصفحة التالية"
#. UWeq4
-#: sw/inc/strings.hrc:1195
+#: sw/inc/strings.hrc:1196
msgctxt "STR_IMGBTN_DRW_DOWN"
msgid "Next drawing"
msgstr "الرسمة التالية"
#. ZVCrD
-#: sw/inc/strings.hrc:1196
+#: sw/inc/strings.hrc:1197
msgctxt "STR_IMGBTN_CTRL_DOWN"
msgid "Next control"
msgstr "المتحكّم التالي"
#. NGAqr
-#: sw/inc/strings.hrc:1197
+#: sw/inc/strings.hrc:1198
msgctxt "STR_IMGBTN_REG_DOWN"
msgid "Next section"
msgstr "القسم التالي"
#. Mwcvm
-#: sw/inc/strings.hrc:1198
+#: sw/inc/strings.hrc:1199
msgctxt "STR_IMGBTN_BKM_DOWN"
msgid "Next bookmark"
msgstr "العلامة التالية"
#. xbxDs
-#: sw/inc/strings.hrc:1199
+#: sw/inc/strings.hrc:1200
msgctxt "STR_IMGBTN_GRF_DOWN"
msgid "Next graphic"
msgstr "الرسم التالي"
#. 4ovAF
-#: sw/inc/strings.hrc:1200
+#: sw/inc/strings.hrc:1201
msgctxt "STR_IMGBTN_OLE_DOWN"
msgid "Next OLE object"
msgstr "كائن OLE التالي"
#. YzK6w
-#: sw/inc/strings.hrc:1201
+#: sw/inc/strings.hrc:1202
msgctxt "STR_IMGBTN_OUTL_DOWN"
msgid "Next heading"
msgstr "العنوان الرئيسي التالي"
#. skdRc
-#: sw/inc/strings.hrc:1202
+#: sw/inc/strings.hrc:1203
msgctxt "STR_IMGBTN_SEL_DOWN"
msgid "Next selection"
msgstr ""
#. RBFga
-#: sw/inc/strings.hrc:1203
+#: sw/inc/strings.hrc:1204
msgctxt "STR_IMGBTN_FTN_DOWN"
msgid "Next footnote"
msgstr "الحاشية التالية"
#. GNLrx
-#: sw/inc/strings.hrc:1204
+#: sw/inc/strings.hrc:1205
msgctxt "STR_IMGBTN_MARK_DOWN"
msgid "Next Reminder"
msgstr ""
#. mFCfp
-#: sw/inc/strings.hrc:1205
+#: sw/inc/strings.hrc:1206
msgctxt "STR_IMGBTN_POSTIT_DOWN"
msgid "Next Comment"
msgstr "التعليق التالي"
#. gbnwp
-#: sw/inc/strings.hrc:1206
+#: sw/inc/strings.hrc:1207
msgctxt "STR_IMGBTN_SRCH_REP_DOWN"
msgid "Continue search forward"
msgstr ""
#. TXYkA
-#: sw/inc/strings.hrc:1207
+#: sw/inc/strings.hrc:1208
#, fuzzy
msgctxt "STR_IMGBTN_INDEX_ENTRY_DOWN"
msgid "Next index entry"
msgstr "إدراج مدخل في الفهرس"
#. EyvbV
-#: sw/inc/strings.hrc:1208
+#: sw/inc/strings.hrc:1209
msgctxt "STR_IMGBTN_TBL_UP"
msgid "Previous table"
msgstr "الجدول السابق"
#. cC5vJ
-#: sw/inc/strings.hrc:1209
+#: sw/inc/strings.hrc:1210
msgctxt "STR_IMGBTN_FRM_UP"
msgid "Previous frame"
msgstr ""
#. eQPFD
-#: sw/inc/strings.hrc:1210
+#: sw/inc/strings.hrc:1211
msgctxt "STR_IMGBTN_PGE_UP"
msgid "Previous page"
msgstr "الصفحة السابقة"
#. p5jbU
-#: sw/inc/strings.hrc:1211
+#: sw/inc/strings.hrc:1212
msgctxt "STR_IMGBTN_DRW_UP"
msgid "Previous drawing"
msgstr "الرسمة السابقة"
#. 2WMmZ
-#: sw/inc/strings.hrc:1212
+#: sw/inc/strings.hrc:1213
msgctxt "STR_IMGBTN_CTRL_UP"
msgid "Previous control"
msgstr "المتحكّم السابق"
#. 6uGDP
-#: sw/inc/strings.hrc:1213
+#: sw/inc/strings.hrc:1214
msgctxt "STR_IMGBTN_REG_UP"
msgid "Previous section"
msgstr "القسم السابق"
#. YYCtk
-#: sw/inc/strings.hrc:1214
+#: sw/inc/strings.hrc:1215
msgctxt "STR_IMGBTN_BKM_UP"
msgid "Previous bookmark"
msgstr "العلامة السابقة"
#. nFLdX
-#: sw/inc/strings.hrc:1215
+#: sw/inc/strings.hrc:1216
msgctxt "STR_IMGBTN_GRF_UP"
msgid "Previous graphic"
msgstr "الرسمة السابقة"
#. VuxvB
-#: sw/inc/strings.hrc:1216
+#: sw/inc/strings.hrc:1217
msgctxt "STR_IMGBTN_OLE_UP"
msgid "Previous OLE object"
msgstr "كائن OLE السابق"
#. QSuct
-#: sw/inc/strings.hrc:1217
+#: sw/inc/strings.hrc:1218
msgctxt "STR_IMGBTN_OUTL_UP"
msgid "Previous heading"
msgstr "العنوان الرئيسي السابق"
#. CzLBr
-#: sw/inc/strings.hrc:1218
+#: sw/inc/strings.hrc:1219
msgctxt "STR_IMGBTN_SEL_UP"
msgid "Previous selection"
msgstr "التحديد السابق"
#. B7PoL
-#: sw/inc/strings.hrc:1219
+#: sw/inc/strings.hrc:1220
msgctxt "STR_IMGBTN_FTN_UP"
msgid "Previous footnote"
msgstr "الحاشية السابقة"
#. AgtLD
-#: sw/inc/strings.hrc:1220
+#: sw/inc/strings.hrc:1221
msgctxt "STR_IMGBTN_MARK_UP"
msgid "Previous Reminder"
msgstr "التذكير السابق"
#. GJQ6F
-#: sw/inc/strings.hrc:1221
+#: sw/inc/strings.hrc:1222
msgctxt "STR_IMGBTN_POSTIT_UP"
msgid "Previous Comment"
msgstr "التعليق السابق"
#. GWnfD
-#: sw/inc/strings.hrc:1222
+#: sw/inc/strings.hrc:1223
msgctxt "STR_IMGBTN_SRCH_REP_UP"
msgid "Continue search backwards"
msgstr "تابع البحث خلفًا"
#. uDtcG
-#: sw/inc/strings.hrc:1223
+#: sw/inc/strings.hrc:1224
msgctxt "STR_IMGBTN_INDEX_ENTRY_UP"
msgid "Previous index entry"
msgstr "مدخلة الفهرس السابقة"
#. VR6DX
-#: sw/inc/strings.hrc:1224
+#: sw/inc/strings.hrc:1225
msgctxt "STR_IMGBTN_TBLFML_UP"
msgid "Previous table formula"
msgstr "معادلة الجدول السابقة"
#. GqESF
-#: sw/inc/strings.hrc:1225
+#: sw/inc/strings.hrc:1226
msgctxt "STR_IMGBTN_TBLFML_DOWN"
msgid "Next table formula"
msgstr "معادلة الجدول التالية"
#. gBgxo
-#: sw/inc/strings.hrc:1226
+#: sw/inc/strings.hrc:1227
msgctxt "STR_IMGBTN_TBLFML_ERR_UP"
msgid "Previous faulty table formula"
msgstr "معادلة الجدول الخاطئة السابقة"
#. UAon9
-#: sw/inc/strings.hrc:1227
+#: sw/inc/strings.hrc:1228
msgctxt "STR_IMGBTN_TBLFML_ERR_DOWN"
msgid "Next faulty table formula"
msgstr "معادلة الجدول الخاطئة التالية"
#. L2Apv
-#: sw/inc/strings.hrc:1228
+#: sw/inc/strings.hrc:1229
msgctxt "STR_IMGBTN_RECENCY_UP"
msgid "Go back"
msgstr ""
#. jCsGs
-#: sw/inc/strings.hrc:1229
+#: sw/inc/strings.hrc:1230
msgctxt "STR_IMGBTN_RECENCY_DOWN"
msgid "Go forward"
msgstr ""
#. o3BBz
-#: sw/inc/strings.hrc:1230
+#: sw/inc/strings.hrc:1231
msgctxt "STR_IMGBTN_FIELD_UP"
msgid "Previous field"
msgstr ""
#. bQ33Z
-#: sw/inc/strings.hrc:1231
+#: sw/inc/strings.hrc:1232
msgctxt "STR_IMGBTN_FIELD_DOWN"
msgid "Next field"
msgstr ""
#. bhUaK
-#: sw/inc/strings.hrc:1232
+#: sw/inc/strings.hrc:1233
msgctxt "STR_IMGBTN_FIELD_BYTYPE_UP"
msgid "Previous '%FIELDTYPE' field"
msgstr ""
#. A8HWi
-#: sw/inc/strings.hrc:1233
+#: sw/inc/strings.hrc:1234
msgctxt "STR_IMGBTN_FIELD_BYTYPE_DOWN"
msgid "Next '%FIELDTYPE' field"
msgstr ""
#. hSYa3
-#: sw/inc/strings.hrc:1235
+#: sw/inc/strings.hrc:1236
#, fuzzy
msgctxt "STR_REDLINE_INSERT"
msgid "Inserted"
msgstr "أدرج"
#. LnFkq
-#: sw/inc/strings.hrc:1236
+#: sw/inc/strings.hrc:1237
#, fuzzy
msgctxt "STR_REDLINE_DELETE"
msgid "Deleted"
msgstr "احذف"
#. cTNEn
-#: sw/inc/strings.hrc:1237
+#: sw/inc/strings.hrc:1238
msgctxt "STR_REDLINE_FORMAT"
msgid "Formatted"
msgstr ""
#. YWr7C
-#: sw/inc/strings.hrc:1238
+#: sw/inc/strings.hrc:1239
#, fuzzy
msgctxt "STR_REDLINE_TABLE"
msgid "Table changed"
msgstr "تغيير الجدول"
#. 6xVDN
-#: sw/inc/strings.hrc:1239
+#: sw/inc/strings.hrc:1240
msgctxt "STR_REDLINE_FMTCOLL"
msgid "Applied Paragraph Styles"
msgstr "أنماط الفقرات المطبقّة"
#. 32AND
-#: sw/inc/strings.hrc:1240
+#: sw/inc/strings.hrc:1241
#, fuzzy
msgctxt "STR_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr "تغيير تنسيق الفقرة"
#. wLDkj
-#: sw/inc/strings.hrc:1241
+#: sw/inc/strings.hrc:1242
msgctxt "STR_REDLINE_TABLE_ROW_INSERT"
msgid "Row Inserted"
msgstr "أُدرج السطر"
#. Eb5Gb
-#: sw/inc/strings.hrc:1242
+#: sw/inc/strings.hrc:1243
#, fuzzy
msgctxt "STR_REDLINE_TABLE_ROW_DELETE"
msgid "Row Deleted"
msgstr "تم حذف السطر"
#. i5ZJt
-#: sw/inc/strings.hrc:1243
+#: sw/inc/strings.hrc:1244
msgctxt "STR_REDLINE_TABLE_CELL_INSERT"
msgid "Cell Inserted"
msgstr ""
#. 4gE3z
-#: sw/inc/strings.hrc:1244
+#: sw/inc/strings.hrc:1245
msgctxt "STR_REDLINE_TABLE_CELL_DELETE"
msgid "Cell Deleted"
msgstr ""
#. DRCyp
-#: sw/inc/strings.hrc:1245
+#: sw/inc/strings.hrc:1246
msgctxt "STR_ENDNOTE"
msgid "Endnote: "
msgstr "حاشية ختامية: "
#. qpW2q
-#: sw/inc/strings.hrc:1246
+#: sw/inc/strings.hrc:1247
msgctxt "STR_FTNNOTE"
msgid "Footnote: "
msgstr "حاشية: "
#. 3RFUd
-#: sw/inc/strings.hrc:1247
+#: sw/inc/strings.hrc:1248
msgctxt "STR_SMARTTAG_CLICK"
msgid "%s-click to open Smart Tag menu"
msgstr ""
#. QCD36
-#: sw/inc/strings.hrc:1248
+#: sw/inc/strings.hrc:1249
msgctxt "STR_HEADER_TITLE"
msgid "Header (%1)"
msgstr "الترويسة (%1)"
#. AYjgB
-#: sw/inc/strings.hrc:1249
+#: sw/inc/strings.hrc:1250
msgctxt "STR_FIRST_HEADER_TITLE"
msgid "First Page Header (%1)"
msgstr "ترويسة الصفحة الأولى (%1)"
#. qVX2k
-#: sw/inc/strings.hrc:1250
+#: sw/inc/strings.hrc:1251
msgctxt "STR_LEFT_HEADER_TITLE"
msgid "Left Page Header (%1)"
msgstr "ترويسة الصفحة اليسرى (%1)"
#. DSg3b
-#: sw/inc/strings.hrc:1251
+#: sw/inc/strings.hrc:1252
msgctxt "STR_RIGHT_HEADER_TITLE"
msgid "Right Page Header (%1)"
msgstr "ترويسة الصفحة اليمنى (%1)"
#. 6GzuM
-#: sw/inc/strings.hrc:1252
+#: sw/inc/strings.hrc:1253
msgctxt "STR_FOOTER_TITLE"
msgid "Footer (%1)"
msgstr "التذييل (%1)"
#. FDVNH
-#: sw/inc/strings.hrc:1253
+#: sw/inc/strings.hrc:1254
msgctxt "STR_FIRST_FOOTER_TITLE"
msgid "First Page Footer (%1)"
msgstr "تذييل الصفحة الأولى (%1)"
#. SL7r3
-#: sw/inc/strings.hrc:1254
+#: sw/inc/strings.hrc:1255
msgctxt "STR_LEFT_FOOTER_TITLE"
msgid "Left Page Footer (%1)"
msgstr "تذييل الصفحة اليسرى (%1)"
#. CBvih
-#: sw/inc/strings.hrc:1255
+#: sw/inc/strings.hrc:1256
msgctxt "STR_RIGHT_FOOTER_TITLE"
msgid "Right Page Footer (%1)"
msgstr "تذييل الصفحة اليمنى (%1)"
#. s8v3h
-#: sw/inc/strings.hrc:1256
+#: sw/inc/strings.hrc:1257
msgctxt "STR_DELETE_HEADER"
msgid "Delete Header..."
msgstr "احذف الترويسة..."
#. wL3Fr
-#: sw/inc/strings.hrc:1257
+#: sw/inc/strings.hrc:1258
msgctxt "STR_FORMAT_HEADER"
msgid "Format Header..."
msgstr "نسّق الترويسة..."
#. DrAUe
-#: sw/inc/strings.hrc:1258
+#: sw/inc/strings.hrc:1259
msgctxt "STR_DELETE_FOOTER"
msgid "Delete Footer..."
msgstr "احذف التذييل..."
#. 9Xgou
-#: sw/inc/strings.hrc:1259
+#: sw/inc/strings.hrc:1260
msgctxt "STR_FORMAT_FOOTER"
msgid "Format Footer..."
msgstr "نسّق التذييل..."
#. ApT5B
-#: sw/inc/strings.hrc:1261
+#: sw/inc/strings.hrc:1262
msgctxt "STR_UNFLOAT_TABLE"
msgid "Un-float Table"
msgstr ""
#. wVAZJ
-#: sw/inc/strings.hrc:1263
+#: sw/inc/strings.hrc:1264
msgctxt "STR_PAGE_BREAK_BUTTON"
msgid "Edit page break"
msgstr ""
#. uvDKE
-#: sw/inc/strings.hrc:1265
+#: sw/inc/strings.hrc:1266
msgctxt "STR_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "تعذّر فتح الصورة"
#. iJuAv
-#: sw/inc/strings.hrc:1266
+#: sw/inc/strings.hrc:1267
msgctxt "STR_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr "تعذّرت قراءة الصورة"
#. Bwwho
-#: sw/inc/strings.hrc:1267
+#: sw/inc/strings.hrc:1268
msgctxt "STR_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr "نسق الصّورة مجهول"
#. bfog5
-#: sw/inc/strings.hrc:1268
+#: sw/inc/strings.hrc:1269
msgctxt "STR_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr "إصدارة ملفّ الصّورة هذا غير مدعومة"
#. xy4Vm
-#: sw/inc/strings.hrc:1269
+#: sw/inc/strings.hrc:1270
msgctxt "STR_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr "تعذّر العثور على مرشّح الصورة"
#. tEqyq
-#: sw/inc/strings.hrc:1270
+#: sw/inc/strings.hrc:1271
msgctxt "STR_GRFILTER_TOOBIG"
msgid "Not enough memory to insert the image."
msgstr "لا توجد ذاكرة كافية لإدراج الصّورة."
#. 5ihue
-#: sw/inc/strings.hrc:1271
+#: sw/inc/strings.hrc:1272
msgctxt "STR_INSERT_GRAPHIC"
msgid "Insert Image"
msgstr "أدرج صورة"
#. GWzLN
-#: sw/inc/strings.hrc:1272
+#: sw/inc/strings.hrc:1273
msgctxt "STR_REDLINE_COMMENT"
msgid "Comment: "
msgstr "تعليق: "
#. CoJc8
-#: sw/inc/strings.hrc:1273
+#: sw/inc/strings.hrc:1274
msgctxt "STR_REDLINE_INSERTED"
msgid "Insertion"
msgstr "إدراج"
#. dfMEF
-#: sw/inc/strings.hrc:1274
+#: sw/inc/strings.hrc:1275
msgctxt "STR_REDLINE_DELETED"
msgid "Deletion"
msgstr "حذف"
#. NytQQ
-#: sw/inc/strings.hrc:1275
+#: sw/inc/strings.hrc:1276
msgctxt "STR_REDLINE_AUTOFMT"
msgid "AutoCorrect"
msgstr "التصحيح التلقائي"
#. YRAQL
-#: sw/inc/strings.hrc:1276
+#: sw/inc/strings.hrc:1277
msgctxt "STR_REDLINE_FORMATTED"
msgid "Formats"
msgstr ""
#. ELCVU
-#: sw/inc/strings.hrc:1277
+#: sw/inc/strings.hrc:1278
msgctxt "STR_REDLINE_TABLECHG"
msgid "Table Changes"
msgstr "تغييرات الجدول"
#. PzfQF
-#: sw/inc/strings.hrc:1278
+#: sw/inc/strings.hrc:1279
msgctxt "STR_REDLINE_FMTCOLLSET"
msgid "Applied Paragraph Styles"
msgstr "أنماط الفقرة المُطبّقة"
#. sgEbW
-#: sw/inc/strings.hrc:1279
+#: sw/inc/strings.hrc:1280
msgctxt "STR_PAGE"
msgid "Page "
msgstr "الصفحة "
#. 3DpEx
-#: sw/inc/strings.hrc:1280
+#: sw/inc/strings.hrc:1281
msgctxt "STR_PAGE_COUNT"
msgid "Page %1 of %2"
msgstr "الصفحة %1 من %2"
#. HSbzS
-#: sw/inc/strings.hrc:1281
+#: sw/inc/strings.hrc:1282
msgctxt "STR_PAGE_COUNT_CUSTOM"
msgid "Page %1 of %2 (Page %3)"
msgstr "الصفحة %1 من %2 (الصّفحة %3)"
#. a7tDc
-#: sw/inc/strings.hrc:1282
+#: sw/inc/strings.hrc:1283
msgctxt "STR_PAGE_COUNT_PRINTED"
msgid "Page %1 of %2 (Page %3 of %4 to print)"
msgstr ""
#. KjML8
#. Strings for gallery/background
-#: sw/inc/strings.hrc:1284
+#: sw/inc/strings.hrc:1285
msgctxt "STR_SWBG_PARAGRAPH"
msgid "Paragraph"
msgstr "فقرة"
#. aAtmp
-#: sw/inc/strings.hrc:1285
+#: sw/inc/strings.hrc:1286
msgctxt "STR_SWBG_GRAPHIC"
msgid "Image"
msgstr "صورة"
#. UBDMK
-#: sw/inc/strings.hrc:1286
+#: sw/inc/strings.hrc:1287
msgctxt "STR_SWBG_OLE"
msgid "OLE object"
msgstr "كائن OLE"
#. xEWbo
-#: sw/inc/strings.hrc:1287
+#: sw/inc/strings.hrc:1288
msgctxt "STR_SWBG_FRAME"
msgid "Frame"
msgstr "إطار"
#. hfJns
-#: sw/inc/strings.hrc:1288
+#: sw/inc/strings.hrc:1289
msgctxt "STR_SWBG_TABLE"
msgid "Table"
msgstr "جدول"
#. GRqNY
-#: sw/inc/strings.hrc:1289
+#: sw/inc/strings.hrc:1290
msgctxt "STR_SWBG_TABLE_ROW"
msgid "Table row"
msgstr "صف جدول"
#. CDQY4
-#: sw/inc/strings.hrc:1290
+#: sw/inc/strings.hrc:1291
msgctxt "STR_SWBG_TABLE_CELL"
msgid "Table cell"
msgstr "خلية جدول"
#. 2Db9T
-#: sw/inc/strings.hrc:1291
+#: sw/inc/strings.hrc:1292
msgctxt "STR_SWBG_PAGE"
msgid "Page"
msgstr "صفحة"
#. 63FuG
-#: sw/inc/strings.hrc:1292
+#: sw/inc/strings.hrc:1293
msgctxt "STR_SWBG_HEADER"
msgid "Header"
msgstr "ترويسة"
#. aDuAY
-#: sw/inc/strings.hrc:1293
+#: sw/inc/strings.hrc:1294
msgctxt "STR_SWBG_FOOTER"
msgid "Footer"
msgstr "تذييل"
#. uAp9i
#. End: strings for gallery/background
-#: sw/inc/strings.hrc:1296
+#: sw/inc/strings.hrc:1297
msgctxt "STR_WRITER_WEBDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION HTML Document"
msgstr "ملف %PRODUCTNAME %PRODUCTVERSION HTML"
#. y2GBv
-#: sw/inc/strings.hrc:1298
+#: sw/inc/strings.hrc:1299
msgctxt "STR_TITLE"
msgid "Title"
msgstr "العنوان"
#. AipGR
-#: sw/inc/strings.hrc:1299
+#: sw/inc/strings.hrc:1300
msgctxt "STR_ALPHA"
msgid "Separator"
msgstr "الفاصل"
#. CoSEf
-#: sw/inc/strings.hrc:1300
+#: sw/inc/strings.hrc:1301
msgctxt "STR_LEVEL"
msgid "Level "
msgstr "المستوى "
#. JdTF4
-#: sw/inc/strings.hrc:1301
+#: sw/inc/strings.hrc:1302
msgctxt "STR_FILE_NOT_FOUND"
msgid "The file, \"%1\" in the \"%2\" path could not be found."
msgstr "تعذر العثور على الملف ”%1“ في المسار ”%2“."
#. zRWDZ
-#: sw/inc/strings.hrc:1302
+#: sw/inc/strings.hrc:1303
msgctxt "STR_USER_DEFINED_INDEX"
msgid "User-Defined Index"
msgstr "فهرس معرف من المستخدم"
#. t5uWs
-#: sw/inc/strings.hrc:1303
+#: sw/inc/strings.hrc:1304
msgctxt "STR_NOSORTKEY"
msgid "<None>"
msgstr "<لا شيء>"
#. vSSnJ
-#: sw/inc/strings.hrc:1304
+#: sw/inc/strings.hrc:1305
msgctxt "STR_NO_CHAR_STYLE"
msgid "<None>"
msgstr "<لا شيء>"
#. NSx98
-#: sw/inc/strings.hrc:1305
+#: sw/inc/strings.hrc:1306
msgctxt "STR_DELIM"
msgid "S"
msgstr ""
#. hK8CX
-#: sw/inc/strings.hrc:1306
+#: sw/inc/strings.hrc:1307
msgctxt "STR_TOKEN_ENTRY_NO"
msgid "E#"
msgstr ""
#. 8EgTx
-#: sw/inc/strings.hrc:1307
+#: sw/inc/strings.hrc:1308
msgctxt "STR_TOKEN_ENTRY"
msgid "E"
msgstr ""
#. gxt8B
-#: sw/inc/strings.hrc:1308
+#: sw/inc/strings.hrc:1309
msgctxt "STR_TOKEN_TAB_STOP"
msgid "T"
msgstr ""
#. pGAb4
-#: sw/inc/strings.hrc:1309
+#: sw/inc/strings.hrc:1310
msgctxt "STR_TOKEN_PAGE_NUMS"
msgid "#"
msgstr "#"
#. teDm3
-#: sw/inc/strings.hrc:1310
+#: sw/inc/strings.hrc:1311
msgctxt "STR_TOKEN_CHAPTER_INFO"
msgid "CI"
msgstr ""
#. XWaFn
-#: sw/inc/strings.hrc:1311
+#: sw/inc/strings.hrc:1312
msgctxt "STR_TOKEN_LINK_START"
msgid "LS"
msgstr ""
#. xp6D6
-#: sw/inc/strings.hrc:1312
+#: sw/inc/strings.hrc:1313
msgctxt "STR_TOKEN_LINK_END"
msgid "LE"
msgstr ""
#. AogDK
-#: sw/inc/strings.hrc:1313
+#: sw/inc/strings.hrc:1314
msgctxt "STR_TOKEN_AUTHORITY"
msgid "A"
msgstr ""
#. 5A4jw
-#: sw/inc/strings.hrc:1314
+#: sw/inc/strings.hrc:1315
msgctxt "STR_TOKEN_HELP_ENTRY_NO"
msgid "Chapter number"
msgstr "رقم الفصل"
#. FH365
-#: sw/inc/strings.hrc:1315
+#: sw/inc/strings.hrc:1316
msgctxt "STR_TOKEN_HELP_ENTRY"
msgid "Entry"
msgstr "المدخلة"
#. xZjtZ
-#: sw/inc/strings.hrc:1316
+#: sw/inc/strings.hrc:1317
msgctxt "STR_TOKEN_HELP_TAB_STOP"
msgid "Tab stop"
msgstr "علامة جدولة"
#. aXW8y
-#: sw/inc/strings.hrc:1317
+#: sw/inc/strings.hrc:1318
msgctxt "STR_TOKEN_HELP_TEXT"
msgid "Text"
msgstr "النص"
#. MCUd2
-#: sw/inc/strings.hrc:1318
+#: sw/inc/strings.hrc:1319
msgctxt "STR_TOKEN_HELP_PAGE_NUMS"
msgid "Page number"
msgstr "رقم الصفحة"
#. pXqw3
-#: sw/inc/strings.hrc:1319
+#: sw/inc/strings.hrc:1320
msgctxt "STR_TOKEN_HELP_CHAPTER_INFO"
msgid "Chapter info"
msgstr "معلومات الفصل"
#. DRBSD
-#: sw/inc/strings.hrc:1320
+#: sw/inc/strings.hrc:1321
msgctxt "STR_TOKEN_HELP_LINK_START"
msgid "Hyperlink start"
msgstr "بداية الرابط"
#. Ytn5g
-#: sw/inc/strings.hrc:1321
+#: sw/inc/strings.hrc:1322
msgctxt "STR_TOKEN_HELP_LINK_END"
msgid "Hyperlink end"
msgstr "نهاية الرابط"
#. hRo3J
-#: sw/inc/strings.hrc:1322
+#: sw/inc/strings.hrc:1323
msgctxt "STR_TOKEN_HELP_AUTHORITY"
msgid "Bibliography entry: "
msgstr "مُدخل بيبلوجرافيا: "
#. ZKG5v
-#: sw/inc/strings.hrc:1323
+#: sw/inc/strings.hrc:1324
msgctxt "STR_CHARSTYLE"
msgid "Character Style: "
msgstr "نمط الأحرف: "
#. d9BES
-#: sw/inc/strings.hrc:1324
+#: sw/inc/strings.hrc:1325
msgctxt "STR_STRUCTURE"
msgid "Structure text"
msgstr ""
#. kwoGP
-#: sw/inc/strings.hrc:1325
+#: sw/inc/strings.hrc:1326
msgctxt "STR_ADDITIONAL_ACCNAME_STRING1"
msgid "Press Ctrl+Alt+A to move focus for more operations"
msgstr "اضغط Ctrl+Alt+A لنقل التّركيز لعمليّات أكثر"
#. Avm9y
-#: sw/inc/strings.hrc:1326
+#: sw/inc/strings.hrc:1327
msgctxt "STR_ADDITIONAL_ACCNAME_STRING2"
msgid "Press left or right arrow to choose the structure controls"
msgstr ""
#. 59eRi
-#: sw/inc/strings.hrc:1327
+#: sw/inc/strings.hrc:1328
msgctxt "STR_ADDITIONAL_ACCNAME_STRING3"
msgid "Press Ctrl+Alt+B to move focus back to the current structure control"
msgstr ""
#. 8AagG
-#: sw/inc/strings.hrc:1328
+#: sw/inc/strings.hrc:1329
msgctxt "STR_AUTOMARK_TYPE"
msgid "Selection file for the alphabetical index (*.sdi)"
msgstr ""
@@ -9530,259 +9536,259 @@ msgstr ""
#. -----------------------------------------------------------------------
#. Description: character alignment for frmsh.cxx - context menu
#. -----------------------------------------------------------------------
-#: sw/inc/strings.hrc:1333
+#: sw/inc/strings.hrc:1334
msgctxt "STR_FRMUI_TOP_BASE"
msgid "Base line at ~top"
msgstr "أ~على الخط الأساسي"
#. 5GiEA
-#: sw/inc/strings.hrc:1334
+#: sw/inc/strings.hrc:1335
msgctxt "STR_FRMUI_BOTTOM_BASE"
msgid "~Base line at bottom"
msgstr "أ~سفل الخط الأساسي"
#. sdyVF
-#: sw/inc/strings.hrc:1335
+#: sw/inc/strings.hrc:1336
msgctxt "STR_FRMUI_CENTER_BASE"
msgid "Base line ~centered"
msgstr "و~سط الخط الأساسي"
#. NAXyZ
-#: sw/inc/strings.hrc:1336
+#: sw/inc/strings.hrc:1337
msgctxt "STR_FRMUI_OLE_INSERT"
msgid "Insert object"
msgstr "أدرج كائن"
#. 5C6Rc
-#: sw/inc/strings.hrc:1337
+#: sw/inc/strings.hrc:1338
msgctxt "STR_FRMUI_OLE_EDIT"
msgid "Edit object"
msgstr "حرّر الكائن"
#. 3QFYB
-#: sw/inc/strings.hrc:1338
+#: sw/inc/strings.hrc:1339
msgctxt "STR_FRMUI_COLL_HEADER"
msgid " (Template: "
msgstr " (قالب: "
#. oUhnK
-#: sw/inc/strings.hrc:1339
+#: sw/inc/strings.hrc:1340
msgctxt "STR_FRMUI_BORDER"
msgid "Borders"
msgstr "الحدود"
#. T2SH2
-#: sw/inc/strings.hrc:1340
+#: sw/inc/strings.hrc:1341
msgctxt "STR_FRMUI_PATTERN"
msgid "Background"
msgstr "الخلفية"
#. K6Yvs
-#: sw/inc/strings.hrc:1342
+#: sw/inc/strings.hrc:1343
msgctxt "STR_TEXTCOLL_HEADER"
msgid "(Paragraph Style: "
msgstr "(نمط الفقرة: "
#. Fsanh
-#: sw/inc/strings.hrc:1343
+#: sw/inc/strings.hrc:1344
msgctxt "STR_ILLEGAL_PAGENUM"
msgid "Page numbers cannot be applied to the current page. Even numbers can be used on left pages, odd numbers on right pages."
msgstr "لا يمكن تطبيق أرقام الصفحات على الصفحة الحالية. الأرقام الفردية للصفحات اليمنى والأرقام الزوجية للصفحات اليسرى."
#. VZnJf
-#: sw/inc/strings.hrc:1345
+#: sw/inc/strings.hrc:1346
msgctxt "STR_WRITER_GLOBALDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Master Document"
msgstr "مستند %PRODUCTNAME‏ %PRODUCTVERSION رئيسي"
#. kWe9j
-#: sw/inc/strings.hrc:1347
+#: sw/inc/strings.hrc:1348
msgctxt "STR_QUERY_CONNECT"
msgid "A file connection will delete the contents of the current section. Connect anyway?"
msgstr "سيحذف اتّصال الملفّ متحويات القسم الحاليّ. أأتّصل بأيّ حال؟"
#. dLuAF
-#: sw/inc/strings.hrc:1348
+#: sw/inc/strings.hrc:1349
msgctxt "STR_WRONG_PASSWORD"
msgid "The password entered is invalid."
msgstr "كلمة السر المدخلة غير صالحة."
#. oUR7Y
-#: sw/inc/strings.hrc:1349
+#: sw/inc/strings.hrc:1350
msgctxt "STR_WRONG_PASSWD_REPEAT"
msgid "The password has not been set."
msgstr "لم تُضبط كلمة السر."
#. GBVqD
-#: sw/inc/strings.hrc:1351
+#: sw/inc/strings.hrc:1352
msgctxt "STR_HYP_OK"
msgid "Hyphenation completed"
msgstr ""
#. rZBXF
-#: sw/inc/strings.hrc:1352
+#: sw/inc/strings.hrc:1353
msgctxt "STR_LANGSTATUS_NONE"
msgid "None (Do not check spelling)"
msgstr "بلا (لا تدقّق الإملاء)"
#. Z8EjG
-#: sw/inc/strings.hrc:1353
+#: sw/inc/strings.hrc:1354
msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE"
msgid "Reset to Default Language"
msgstr "صفّر إلى اللغة المبدئيّة"
#. YEXdS
-#: sw/inc/strings.hrc:1354
+#: sw/inc/strings.hrc:1355
msgctxt "STR_LANGSTATUS_MORE"
msgid "More..."
msgstr "أكثر..."
#. QecQ3
-#: sw/inc/strings.hrc:1355
+#: sw/inc/strings.hrc:1356
msgctxt "STR_IGNORE_SELECTION"
msgid "~Ignore"
msgstr "ت~جاهل"
#. aaiBM
-#: sw/inc/strings.hrc:1356
+#: sw/inc/strings.hrc:1357
msgctxt "STR_EXPLANATION_LINK"
msgid "Explanations..."
msgstr "التّفسيرات..."
#. kSDGu
-#: sw/inc/strings.hrc:1358
+#: sw/inc/strings.hrc:1359
msgctxt "STR_QUERY_SPECIAL_FORCED"
msgid "Check special regions is deactivated. Check anyway?"
msgstr ""
#. KiAdJ
-#: sw/inc/strings.hrc:1359
+#: sw/inc/strings.hrc:1360
msgctxt "STR_NO_MERGE_ENTRY"
msgid "Could not merge documents."
msgstr "تعذّر دمج المستندات."
#. FqsCt
-#: sw/inc/strings.hrc:1360
+#: sw/inc/strings.hrc:1361
msgctxt "STR_NO_BASE_FOR_MERGE"
msgid "%PRODUCTNAME Base component is absent, and it is required to use Mail Merge."
msgstr ""
#. wcuf4
-#: sw/inc/strings.hrc:1361
+#: sw/inc/strings.hrc:1362
msgctxt "STR_ERR_SRCSTREAM"
msgid "The source cannot be loaded."
msgstr "تعذّر تحميل المصدر."
#. K9qMS
-#: sw/inc/strings.hrc:1362
+#: sw/inc/strings.hrc:1363
msgctxt "STR_ERR_NO_FAX"
msgid "No fax printer has been set under Tools/Options/%1/Print."
msgstr "لم تعيَّن طابعة تحت أدوات/خيارات/%1/طباعة."
#. XWQ8w
-#: sw/inc/strings.hrc:1363
+#: sw/inc/strings.hrc:1364
msgctxt "STR_WEBOPTIONS"
msgid "HTML document"
msgstr "مستند HTML"
#. qVZBx
-#: sw/inc/strings.hrc:1364
+#: sw/inc/strings.hrc:1365
msgctxt "STR_TEXTOPTIONS"
msgid "Text document"
msgstr "مستند نصّيّ"
#. qmmPU
-#: sw/inc/strings.hrc:1365
+#: sw/inc/strings.hrc:1366
msgctxt "STR_SCAN_NOSOURCE"
msgid "Source not specified."
msgstr "المصدر غير محدّد."
#. 2LgDJ
-#: sw/inc/strings.hrc:1366
+#: sw/inc/strings.hrc:1367
msgctxt "STR_NUM_LEVEL"
msgid "Level "
msgstr "المستوى "
#. AcAD8
-#: sw/inc/strings.hrc:1367
+#: sw/inc/strings.hrc:1368
msgctxt "STR_NUM_OUTLINE"
msgid "Outline "
msgstr "المخطط العام "
#. DE9FZ
-#: sw/inc/strings.hrc:1368
+#: sw/inc/strings.hrc:1369
msgctxt "STR_EDIT_FOOTNOTE"
msgid "Edit Footnote/Endnote"
msgstr "حرّر الحاشية/الحاشية الختامية"
#. EzBCZ
-#: sw/inc/strings.hrc:1369
+#: sw/inc/strings.hrc:1370
msgctxt "STR_NB_REPLACED"
msgid "Search key replaced XX times."
msgstr "استُبدل مفتاح البحث XX مرّة."
#. fgywB
-#: sw/inc/strings.hrc:1370
+#: sw/inc/strings.hrc:1371
msgctxt "STR_SRCVIEW_ROW"
msgid "Row "
msgstr "الصّفّ "
#. GUc4a
-#: sw/inc/strings.hrc:1371
+#: sw/inc/strings.hrc:1372
msgctxt "STR_SRCVIEW_COL"
msgid "Column "
msgstr "العمود "
#. yMyuo
-#: sw/inc/strings.hrc:1372
+#: sw/inc/strings.hrc:1373
msgctxt "STR_SAVEAS_SRC"
msgid "~Export source..."
msgstr "~صدّر المصدر..."
#. ywFCb
-#: sw/inc/strings.hrc:1373
+#: sw/inc/strings.hrc:1374
msgctxt "STR_SAVEACOPY_SRC"
msgid "~Export copy of source..."
msgstr "~صدّر نسخة عن المصدر…"
#. BT3M3
-#: sw/inc/strings.hrc:1375
+#: sw/inc/strings.hrc:1376
msgctxt "ST_CONTINUE"
msgid "~Continue"
msgstr "~تابع"
#. ZR9aw
-#: sw/inc/strings.hrc:1376
+#: sw/inc/strings.hrc:1377
msgctxt "ST_SENDINGTO"
msgid "Sending to: %1"
msgstr "يرسل إلى: %1"
#. YCNYb
-#: sw/inc/strings.hrc:1377
+#: sw/inc/strings.hrc:1378
msgctxt "ST_COMPLETED"
msgid "Successfully sent"
msgstr "نجح الإرسال"
#. fmHmE
-#: sw/inc/strings.hrc:1378
+#: sw/inc/strings.hrc:1379
msgctxt "ST_FAILED"
msgid "Sending failed"
msgstr "فشل الإرسال"
#. yAAPM
-#: sw/inc/strings.hrc:1380
+#: sw/inc/strings.hrc:1381
msgctxt "STR_SENDER_TOKENS"
msgid "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
msgstr "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
#. mWrXk
-#: sw/inc/strings.hrc:1382
+#: sw/inc/strings.hrc:1383
msgctxt "STR_TBL_FORMULA"
msgid "Text formula"
msgstr ""
#. RmBFW
-#: sw/inc/strings.hrc:1384
+#: sw/inc/strings.hrc:1385
msgctxt "STR_DROP_DOWN_EMPTY_LIST"
msgid "No Item specified"
msgstr ""
@@ -9791,7 +9797,7 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Classification strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1390
+#: sw/inc/strings.hrc:1391
msgctxt "STR_CLASSIFICATION_LEVEL_CHANGED"
msgid "Document classification has changed because a paragraph classification level is higher"
msgstr ""
@@ -9800,122 +9806,122 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Paragraph Signature
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1395
+#: sw/inc/strings.hrc:1396
msgctxt "STR_VALID"
msgid " Valid "
msgstr ""
#. xAKRC
-#: sw/inc/strings.hrc:1396
+#: sw/inc/strings.hrc:1397
msgctxt "STR_INVALID"
msgid "Invalid"
msgstr ""
#. pDAHz
-#: sw/inc/strings.hrc:1397
+#: sw/inc/strings.hrc:1398
msgctxt "STR_INVALID_SIGNATURE"
msgid "Invalid Signature"
msgstr ""
#. etEEx
-#: sw/inc/strings.hrc:1398
+#: sw/inc/strings.hrc:1399
msgctxt "STR_SIGNED_BY"
msgid "Signed-by"
msgstr "وقّعها"
#. BK7ub
-#: sw/inc/strings.hrc:1399
+#: sw/inc/strings.hrc:1400
msgctxt "STR_PARAGRAPH_SIGNATURE"
msgid "Paragraph Signature"
msgstr "توقيع الفقرة"
#. kZKCf
-#: sw/inc/strings.hrc:1401
+#: sw/inc/strings.hrc:1402
msgctxt "labeldialog|cards"
msgid "Business Cards"
msgstr "بطاقات عمل"
#. ECFij
-#: sw/inc/strings.hrc:1403
+#: sw/inc/strings.hrc:1404
msgctxt "STR_MAILCONFIG_DLG_TITLE"
msgid "Email settings"
msgstr "إعدادات البريد الالكتروني"
#. PwrB9
-#: sw/inc/strings.hrc:1405
+#: sw/inc/strings.hrc:1406
msgctxt "optredlinepage|insertedpreview"
msgid "Insert"
msgstr "إضافة"
#. NL48o
-#: sw/inc/strings.hrc:1406
+#: sw/inc/strings.hrc:1407
msgctxt "optredlinepage|deletedpreview"
msgid "Delete"
msgstr "احذف"
#. PW4Bz
-#: sw/inc/strings.hrc:1407
+#: sw/inc/strings.hrc:1408
msgctxt "optredlinepage|changedpreview"
msgid "Attributes"
msgstr "الصفات"
#. yfgiq
-#: sw/inc/strings.hrc:1409
+#: sw/inc/strings.hrc:1410
msgctxt "createautomarkdialog|searchterm"
msgid "Search term"
msgstr "ابحث عن مصطلح"
#. fhLzk
-#: sw/inc/strings.hrc:1410
+#: sw/inc/strings.hrc:1411
msgctxt "createautomarkdialog|alternative"
msgid "Alternative entry"
msgstr "مُدخلة بديلة"
#. gD4D3
-#: sw/inc/strings.hrc:1411
+#: sw/inc/strings.hrc:1412
msgctxt "createautomarkdialog|key1"
msgid "1st key"
msgstr "المفتاح الأول"
#. BFszo
-#: sw/inc/strings.hrc:1412
+#: sw/inc/strings.hrc:1413
msgctxt "createautomarkdialog|key2"
msgid "2nd key"
msgstr "المفتاح الثاني"
#. EoAB8
-#: sw/inc/strings.hrc:1413
+#: sw/inc/strings.hrc:1414
#, fuzzy
msgctxt "createautomarkdialog|comment"
msgid "Comment"
msgstr "التعليقات"
#. Shstx
-#: sw/inc/strings.hrc:1414
+#: sw/inc/strings.hrc:1415
msgctxt "createautomarkdialog|casesensitive"
msgid "Match case"
msgstr "مطابقة حالة الأحرف"
#. 8Cjvb
-#: sw/inc/strings.hrc:1415
+#: sw/inc/strings.hrc:1416
msgctxt "createautomarkdialog|wordonly"
msgid "Word only"
msgstr "الكلمة فقط"
#. zD8rb
-#: sw/inc/strings.hrc:1416
+#: sw/inc/strings.hrc:1417
msgctxt "createautomarkdialog|yes"
msgid "Yes"
msgstr "نعم"
#. 4tTop
-#: sw/inc/strings.hrc:1417
+#: sw/inc/strings.hrc:1418
msgctxt "createautomarkdialog|no"
msgid "No"
msgstr "لا"
#. KhKwa
-#: sw/inc/strings.hrc:1419
+#: sw/inc/strings.hrc:1420
msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "مخصص"
@@ -10426,8 +10432,14 @@ msgctxt "asciifilterdialog|includebom"
msgid "Include byte-order mark"
msgstr ""
+#. 9E8VF
+#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:291
+msgctxt "asciifilterdialog|extended_tip|includebom"
+msgid "For Unicode character set only, a byte order mark (BOM) is a sequence of bytes used to indicate Unicode encoding of a text file."
+msgstr ""
+
#. B2ofV
-#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:304
+#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:309
msgctxt "asciifilterdialog|label1"
msgid "Properties"
msgstr "الخصائص"
@@ -19923,44 +19935,50 @@ msgctxt "mmresultsavedialog|extended_tip|individualrb"
msgid "Saves the merged document as a separate file for each recipient. The file names of the documents are constructed from the name that you enter, followed by an underscore, and the number of the current record."
msgstr ""
+#. g3Knf
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:157
+msgctxt "mmresultsavedialog|label2"
+msgid "Save As Options"
+msgstr ""
+
#. xRGbs
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:159
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:191
msgctxt "mmresultsavedialog|fromrb"
msgid "_From"
msgstr "_مِن"
#. gvAQf
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:170
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:202
msgctxt "mmresultsavedialog|extended_tip|fromrb"
msgid "Selects a range of records starting at the record number in the From box and ending at the record number in the To box."
msgstr ""
#. LGEwR
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:183
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:215
msgctxt "mmresultsavedialog|toft"
msgid "_To"
msgstr "إ_لى"
#. XML8V
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:205
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:238
msgctxt "mmresultsavedialog|extended_tip|from"
msgid "Enter the number of the first record to include in the mail merge."
msgstr ""
#. dAWiB
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:224
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:258
msgctxt "mmresultsavedialog|extended_tip|to"
msgid "Enter the number of the last record to include in the mail merge."
msgstr ""
-#. g3Knf
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:245
-msgctxt "mmresultsavedialog|label2"
-msgid "Save As Options"
+#. VibGJ
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:273
+msgctxt "mmresultsavedialog|FromToRange"
+msgid "Range"
msgstr ""
#. 2BCiE
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:267
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:295
msgctxt "mmresultsavedialog|extended_tip|MMResultSaveDialog"
msgid "Save the mail merge output to file."
msgstr ""
@@ -20330,7 +20348,7 @@ msgid "Transfer Status"
msgstr ""
#. c2i5B
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:26
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:20
msgctxt "navigatorcontextmenu|STR_SEND_OUTLINE_TO_CLIPBOARD_ENTRY"
msgid "Send Outline to Clipboard"
msgstr ""
@@ -20342,143 +20360,215 @@ msgid "Go to"
msgstr ""
#. VCmAZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:49
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:43
msgctxt "navigatorcontextmenu|STR_SELECT"
msgid "Select"
msgstr ""
#. dajzZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:57
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:51
msgctxt "navigatorcontextmenu|STR_DELETE"
msgid "Delete"
msgstr ""
#. CQSp3
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:66
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:60
msgctxt "navigatorcontextmenu|STR_PROMOTE_CHAPTER"
msgid "Promote Chapter"
msgstr ""
#. ikRHB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:75
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:69
msgctxt "navigatorcontextmenu|STR_DEMOTE_CHAPTER"
msgid "Demote Chapter"
msgstr ""
#. MhtFa
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:84
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:78
msgctxt "navigatorcontextmenu|STR_PROMOTE_LEVEL"
msgid "Promote Level"
msgstr ""
#. dUM5D
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:93
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:87
msgctxt "navigatorcontextmenu|STR_DEMOTE_LEVEL"
msgid "Demote Level"
msgstr ""
#. tukRq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:102
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:96
msgctxt "navigatorcontextmenu|STR_REMOVE_INDEX"
msgid "_Remove Index"
msgstr ""
#. C4355
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:110
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:104
msgctxt "navigatorcontextmenu|STR_UPDATE"
msgid "_Update"
msgstr ""
#. BtCca
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:118
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:112
msgctxt "navigatorcontextmenu|STR_EDIT_ENTRY"
msgid "Edit..."
msgstr ""
#. BYyhD
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:126
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:120
msgctxt "navigatorcontextmenu|STR_REMOVE_TBL_PROTECTION"
msgid "_Unprotect"
msgstr ""
#. 6KWWG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:134
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:128
msgctxt "navigatorcontextmenu|STR_READONLY_IDX"
msgid "Read-_only"
msgstr ""
#. BUQRq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:142
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:136
msgctxt "navigatorcontextmenu|STR_DELETE_ENTRY"
msgid "_Delete"
msgstr ""
#. CUqD5
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:151
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:145
msgctxt "navigatorcontextmenu|STR_RENAME"
msgid "_Rename..."
msgstr ""
#. U5nAb
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:159
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:153
msgctxt "navigatorcontextmenu|STR_POSTIT_SHOW"
msgid "Show All"
msgstr ""
#. E2wWp
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:167
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:161
msgctxt "navigatorcontextmenu|STR_POSTIT_HIDE"
msgid "Hide All"
msgstr ""
#. aDRke
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:175
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:169
msgctxt "navigatorcontextmenu|STR_POSTIT_DELETE"
msgid "Delete All"
msgstr ""
#. YBipC
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:189
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:183
msgctxt "navigatorcontextmenu|STR_OUTLINE_CONTENT"
msgid "Outline Folding"
msgstr ""
-#. EBK2E
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:209
-msgctxt "navigatorcontextmenu|STR_OUTLINE_TRACKING"
-msgid "Outline Tracking"
-msgstr ""
-
#. cECoG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:223
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:203
msgctxt "navigatorcontextmenu|STR_OUTLINE_LEVEL"
msgid "Outline Level"
msgstr ""
+#. EBK2E
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:217
+msgctxt "navigatorcontextmenu|STR_OUTLINE_TRACKING"
+msgid "Outline Tracking"
+msgstr ""
+
#. fZEEr
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:237
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:231
msgctxt "navigatorcontextmenu|STR_TABLE_TRACKING"
msgid "Table Tracking"
msgstr ""
#. 7oCFa
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:245
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:239
msgctxt "navigatorcontextmenu|STR_SECTION_TRACKING"
msgid "Section Tracking"
msgstr ""
+#. YmjQf
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:247
+msgctxt "navigatorcontextmenu|STR_FRAME_TRACKING"
+msgid "Frame Tracking"
+msgstr ""
+
+#. vhxX5
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:255
+msgctxt "navigatorcontextmenu|STR_IMAGE_TRACKING"
+msgid "Image Tracking"
+msgstr ""
+
+#. mcYqZ
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:263
+msgctxt "navigatorcontextmenu|STR_OLE_OBJECT_TRACKING"
+msgid "OLE Object Tracking"
+msgstr ""
+
+#. DRaED
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:271
+msgctxt "navigatorcontextmenu|STR_BOOKMARK_TRACKING"
+msgid "Bookmark Tracking"
+msgstr ""
+
+#. vpLmh
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:279
+msgctxt "navigatorcontextmenu|STR_HYPERLINK_TRACKING"
+msgid "Hyperlink Tracking"
+msgstr ""
+
+#. EvBzN
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:287
+msgctxt "navigatorcontextmenu|STR_REFERENCE_TRACKING"
+msgid "Reference Tracking"
+msgstr ""
+
+#. M8Bes
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:295
+msgctxt "navigatorcontextmenu|STR_INDEX_TRACKING"
+msgid "Index Tracking"
+msgstr ""
+
+#. KBFwM
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:303
+msgctxt "navigatorcontextmenu|STR_COMMENT_TRACKING"
+msgid "Comment Tracking"
+msgstr ""
+
+#. oGavB
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:311
+msgctxt "navigatorcontextmenu|STR_DRAWING_OBJECT_TRACKING"
+msgid "Drawing Object Tracking"
+msgstr ""
+
+#. w8FTW
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:319
+msgctxt "navigatorcontextmenu|STR_FIELD_TRACKING"
+msgid "Field Tracking"
+msgstr ""
+
+#. BoCeZ
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:327
+msgctxt "navigatorcontextmenu|STR_FOOTNOTE_TRACKING"
+msgid "Footnote Tracking"
+msgstr ""
+
#. GyAcG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:253
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:341
msgctxt "navigatorcontextmenu|STR_DRAGMODE"
msgid "Drag Mode"
msgstr ""
#. Zehx2
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:267
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:355
msgctxt "navigatorcontextmenu|STR_DISPLAY"
msgid "Display"
msgstr ""
+#. bgZoy
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:375
+msgctxt "navigatorcontextmenu|STR_COLLAPSE_ALL_CATEGORIES"
+msgid "Collapse All Categories"
+msgstr ""
+
#. ba8wC
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:18
msgctxt "navigatorpanel|hyperlink"
diff --git a/source/ar/vcl/messages.po b/source/ar/vcl/messages.po
index 4829bd14ffa..4ad9bb14e83 100644
--- a/source/ar/vcl/messages.po
+++ b/source/ar/vcl/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-10 23:12+0200\n"
+"POT-Creation-Date: 2021-10-20 13:09+0200\n"
"PO-Revision-Date: 2021-03-16 04:36+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/ar/>\n"
@@ -1958,529 +1958,529 @@ msgid "_Print"
msgstr ""
#. M3L4L
-#: vcl/uiconfig/ui/printdialog.ui:157
+#: vcl/uiconfig/ui/printdialog.ui:160
msgctxt "printdialog|printpreview"
msgid "Print preview"
msgstr ""
#. 67YPm
-#: vcl/uiconfig/ui/printdialog.ui:163
+#: vcl/uiconfig/ui/printdialog.ui:166
msgctxt "printdialog|extended_tip|preview"
msgid "The preview shows how each sheet of paper will look. You can browse through all sheets of paper with the buttons below the preview."
msgstr ""
#. dQEY8
-#: vcl/uiconfig/ui/printdialog.ui:193
+#: vcl/uiconfig/ui/printdialog.ui:196
msgctxt "printdialog|previewbox"
msgid "Pre_view"
msgstr ""
#. EpB5H
-#: vcl/uiconfig/ui/printdialog.ui:202
+#: vcl/uiconfig/ui/printdialog.ui:205
msgctxt "printdialog|extended_tip|previewbox"
msgid "Turn on or off display of the print preview."
msgstr ""
#. SbgFv
-#: vcl/uiconfig/ui/printdialog.ui:232
+#: vcl/uiconfig/ui/printdialog.ui:235
msgctxt "printdialog|firstpage"
msgid "First page"
msgstr ""
#. GVGSq
-#: vcl/uiconfig/ui/printdialog.ui:236
+#: vcl/uiconfig/ui/printdialog.ui:239
msgctxt "printdialog|extended_tip|btnFirst"
msgid "Shows preview of the first page."
msgstr ""
#. ebceU
-#: vcl/uiconfig/ui/printdialog.ui:251
+#: vcl/uiconfig/ui/printdialog.ui:254
msgctxt "printdialog|backward"
msgid "Previous page"
msgstr ""
#. uS5Ka
-#: vcl/uiconfig/ui/printdialog.ui:255
+#: vcl/uiconfig/ui/printdialog.ui:258
msgctxt "printdialog|extended_tip|backward"
msgid "Shows preview of the previous page."
msgstr ""
#. c7uMG
-#: vcl/uiconfig/ui/printdialog.ui:274
+#: vcl/uiconfig/ui/printdialog.ui:277
msgctxt "printdialog|extended_tip|pageedit"
msgid "Enter the number of page to be shown in the preview."
msgstr ""
#. yyFVV
-#: vcl/uiconfig/ui/printdialog.ui:288
+#: vcl/uiconfig/ui/printdialog.ui:291
msgctxt "printdialog|totalnumpages"
msgid "/ %n"
msgstr "/ %n"
#. CZQLF
-#: vcl/uiconfig/ui/printdialog.ui:301
+#: vcl/uiconfig/ui/printdialog.ui:304
msgctxt "printdialog|forward"
msgid "Next page"
msgstr "الصفحة التالية"
#. emK9r
-#: vcl/uiconfig/ui/printdialog.ui:305
+#: vcl/uiconfig/ui/printdialog.ui:308
msgctxt "printdialog|extended_tip|forward"
msgid "Shows preview of the next page."
msgstr "أظهِر معاينة الصفحة التالية."
#. Aq6Gv
-#: vcl/uiconfig/ui/printdialog.ui:320
+#: vcl/uiconfig/ui/printdialog.ui:323
msgctxt "printdialog|lastpage"
msgid "Last page"
msgstr ""
#. RwCmD
-#: vcl/uiconfig/ui/printdialog.ui:324
+#: vcl/uiconfig/ui/printdialog.ui:327
msgctxt "printdialog|extended_tip|btnLast"
msgid "Shows preview of the last page."
msgstr ""
#. PD6Aj
-#: vcl/uiconfig/ui/printdialog.ui:400
+#: vcl/uiconfig/ui/printdialog.ui:403
msgctxt "printdialog|extended_tip|printersbox"
msgid "The list box shows the installed printers. Click the printer to use for the current print job. Click the Properties button to change some of the printer properties."
msgstr ""
#. qgQDX
-#: vcl/uiconfig/ui/printdialog.ui:419
+#: vcl/uiconfig/ui/printdialog.ui:422
msgctxt "printdialog|labelstatus"
msgid "Status:"
msgstr ""
#. dyo2j
-#: vcl/uiconfig/ui/printdialog.ui:434
+#: vcl/uiconfig/ui/printdialog.ui:437
msgctxt "printdialog|status"
msgid "Default Printer"
msgstr ""
#. McZgQ
-#: vcl/uiconfig/ui/printdialog.ui:440
+#: vcl/uiconfig/ui/printdialog.ui:443
msgctxt "printdialog|extended_tip|status"
msgid "Shows the availability of the selected printer."
msgstr ""
#. oBACQ
-#: vcl/uiconfig/ui/printdialog.ui:452
+#: vcl/uiconfig/ui/printdialog.ui:455
msgctxt "printdialog|setup"
msgid "Properties..."
msgstr "الخصائص..."
#. 89CRC
-#: vcl/uiconfig/ui/printdialog.ui:459
+#: vcl/uiconfig/ui/printdialog.ui:462
msgctxt "printdialog|extended_tip|setup"
msgid "Opens the Printer Properties dialog. The printer properties vary according to the printer that you select."
msgstr ""
#. AJGau
-#: vcl/uiconfig/ui/printdialog.ui:483
+#: vcl/uiconfig/ui/printdialog.ui:486
msgctxt "printdialog|labelprinter"
msgid "Printer"
msgstr ""
#. AyxGJ
-#: vcl/uiconfig/ui/printdialog.ui:521
+#: vcl/uiconfig/ui/printdialog.ui:524
msgctxt "printdialog|rbAllPages"
msgid "_All pages"
msgstr ""
#. AQ7Ms
-#: vcl/uiconfig/ui/printdialog.ui:532
+#: vcl/uiconfig/ui/printdialog.ui:535
msgctxt "printdialog|extended_tip|rbAllPages"
msgid "Prints the entire document."
msgstr ""
#. pYtbq
-#: vcl/uiconfig/ui/printdialog.ui:543
+#: vcl/uiconfig/ui/printdialog.ui:546
msgctxt "printdialog|rbPageRange"
msgid "_Pages:"
msgstr ""
#. azXfE
-#: vcl/uiconfig/ui/printdialog.ui:555
+#: vcl/uiconfig/ui/printdialog.ui:558
msgctxt "printdialog|extended_tip|rbRangePages"
msgid "Prints only the pages or slides that you specify in the Pages box."
msgstr ""
#. 786QC
-#: vcl/uiconfig/ui/printdialog.ui:571
+#: vcl/uiconfig/ui/printdialog.ui:574
msgctxt "printdialog|pagerange"
msgid "e.g.: 1, 3-5, 7, 9"
msgstr ""
#. FTtLK
-#: vcl/uiconfig/ui/printdialog.ui:574
+#: vcl/uiconfig/ui/printdialog.ui:577
msgctxt "printdialog|extended_tip|pagerange"
msgid "To print a range of pages, use a format like 3-6. To print single pages, use a format like 7;9;11. You can print a combination of page ranges and single pages, by using a format like 3-6;8;10;12."
msgstr ""
#. Z5kiB
-#: vcl/uiconfig/ui/printdialog.ui:585
+#: vcl/uiconfig/ui/printdialog.ui:588
msgctxt "printdialog|rbRangeSelection"
msgid "_Selection"
msgstr ""
#. CJ2E7
-#: vcl/uiconfig/ui/printdialog.ui:595
+#: vcl/uiconfig/ui/printdialog.ui:598
msgctxt "printdialog|extended_tip|rbRangeSelection"
msgid "Prints only the selected area(s) or object(s) in the current document."
msgstr ""
#. UKYwM
-#: vcl/uiconfig/ui/printdialog.ui:609
+#: vcl/uiconfig/ui/printdialog.ui:612
msgctxt "printdialog|includeevenodd"
msgid "Include:"
msgstr ""
#. XmeFL
-#: vcl/uiconfig/ui/printdialog.ui:626
+#: vcl/uiconfig/ui/printdialog.ui:629
msgctxt "printdialog|liststore3"
msgid "Odd and Even Pages"
msgstr ""
#. 49y67
-#: vcl/uiconfig/ui/printdialog.ui:627
+#: vcl/uiconfig/ui/printdialog.ui:630
msgctxt "printdialog|liststore3"
msgid "Odd Pages"
msgstr ""
#. 6CkPE
-#: vcl/uiconfig/ui/printdialog.ui:628
+#: vcl/uiconfig/ui/printdialog.ui:631
msgctxt "printdialog|liststore3"
msgid "Even Pages"
msgstr ""
#. ZeA37
-#: vcl/uiconfig/ui/printdialog.ui:632
+#: vcl/uiconfig/ui/printdialog.ui:635
msgctxt "printdialog|extended_tip|evenoddbox"
msgid "Select the subset of pages to print."
msgstr ""
#. wn2kB
-#: vcl/uiconfig/ui/printdialog.ui:663
+#: vcl/uiconfig/ui/printdialog.ui:666
msgctxt "printdialog|fromwhich"
msgid "_From which print:"
msgstr ""
#. Cuc2u
-#: vcl/uiconfig/ui/printdialog.ui:688
+#: vcl/uiconfig/ui/printdialog.ui:691
msgctxt "printdialog|labelpapersides"
msgid "Paper _sides:"
msgstr ""
#. SYxRJ
-#: vcl/uiconfig/ui/printdialog.ui:704
+#: vcl/uiconfig/ui/printdialog.ui:707
msgctxt "printdialog|liststore4"
msgid "Print on one side (simplex)"
msgstr ""
#. hCZPg
-#: vcl/uiconfig/ui/printdialog.ui:705
+#: vcl/uiconfig/ui/printdialog.ui:708
msgctxt "printdialog|liststore4"
msgid "Print on both sides (duplex long edge)"
msgstr ""
#. iqr9C
-#: vcl/uiconfig/ui/printdialog.ui:706
+#: vcl/uiconfig/ui/printdialog.ui:709
msgctxt "printdialog|liststore4"
msgid "Print on both sides (duplex short edge)"
msgstr ""
#. CKpgL
-#: vcl/uiconfig/ui/printdialog.ui:710
+#: vcl/uiconfig/ui/printdialog.ui:713
msgctxt "printdialog|extended_tip|sidesbox"
msgid "If the printer is capable of duplex printing it's possible to choose between using only one side of the paper or both."
msgstr ""
#. AVv6D
-#: vcl/uiconfig/ui/printdialog.ui:724
+#: vcl/uiconfig/ui/printdialog.ui:727
msgctxt "printdialog|labelcopies"
msgid "_Number of copies:"
msgstr ""
#. NwD7S
-#: vcl/uiconfig/ui/printdialog.ui:747
+#: vcl/uiconfig/ui/printdialog.ui:750
msgctxt "printdialog|extended_tip|copycount"
msgid "Enter the number of copies that you want to print."
msgstr ""
#. BT4nY
-#: vcl/uiconfig/ui/printdialog.ui:761
+#: vcl/uiconfig/ui/printdialog.ui:764
msgctxt "printdialog|cbPrintOrder"
msgid "Order:"
msgstr ""
#. vwjVt
-#: vcl/uiconfig/ui/printdialog.ui:774
+#: vcl/uiconfig/ui/printdialog.ui:777
msgctxt "printdialog|reverseorder"
msgid "Print in _reverse order"
msgstr ""
#. svd2Q
-#: vcl/uiconfig/ui/printdialog.ui:783
+#: vcl/uiconfig/ui/printdialog.ui:786
msgctxt "printdialog|extended_tip|reverseorder"
msgid "Check to print pages in reverse order."
msgstr ""
#. G6QEr
-#: vcl/uiconfig/ui/printdialog.ui:800
+#: vcl/uiconfig/ui/printdialog.ui:803
msgctxt "printdialog|collate"
msgid "_Collate"
msgstr ""
#. kR6bA
-#: vcl/uiconfig/ui/printdialog.ui:808
+#: vcl/uiconfig/ui/printdialog.ui:811
msgctxt "printdialog|extended_tip|collate"
msgid "Preserves the page order of the original document."
msgstr ""
#. GZrpG
-#: vcl/uiconfig/ui/printdialog.ui:838
+#: vcl/uiconfig/ui/printdialog.ui:841
msgctxt "printdialog|singlejobs"
msgid "Create separate print jobs for collated output"
msgstr ""
#. X4Am9
-#: vcl/uiconfig/ui/printdialog.ui:846
+#: vcl/uiconfig/ui/printdialog.ui:849
msgctxt "printdialog|extended_tip|collate"
msgid "Check to not rely on the printer to create collated copies but create a print job for each copy instead."
msgstr ""
#. 2MdHu
-#: vcl/uiconfig/ui/printdialog.ui:867
+#: vcl/uiconfig/ui/printdialog.ui:870
msgctxt "printdialog|rangeexpander"
msgid "_More"
msgstr ""
#. ehfCG
-#: vcl/uiconfig/ui/printdialog.ui:883
+#: vcl/uiconfig/ui/printdialog.ui:886
msgctxt "printdialog|label2"
msgid "Range and Copies"
msgstr ""
#. CBLet
-#: vcl/uiconfig/ui/printdialog.ui:922
+#: vcl/uiconfig/ui/printdialog.ui:925
msgctxt "printdialog|labelorientation"
msgid "Orientation:"
msgstr ""
#. U4byk
-#: vcl/uiconfig/ui/printdialog.ui:937
+#: vcl/uiconfig/ui/printdialog.ui:940
msgctxt "printdialog|labelsize"
msgid "Paper size:"
msgstr ""
#. X9iBj
-#: vcl/uiconfig/ui/printdialog.ui:954
+#: vcl/uiconfig/ui/printdialog.ui:957
msgctxt "printdialog|liststore3"
msgid "Automatic"
msgstr "تلقائي"
#. vaWZE
-#: vcl/uiconfig/ui/printdialog.ui:955
+#: vcl/uiconfig/ui/printdialog.ui:958
msgctxt "printdialog|liststore3"
msgid "Portrait"
msgstr "طولي"
#. Qnpje
-#: vcl/uiconfig/ui/printdialog.ui:956
+#: vcl/uiconfig/ui/printdialog.ui:959
msgctxt "printdialog|liststore3"
msgid "Landscape"
msgstr "عرضي"
#. PkAo9
-#: vcl/uiconfig/ui/printdialog.ui:960
+#: vcl/uiconfig/ui/printdialog.ui:963
msgctxt "printdialog|extended_tip|pageorientationbox"
msgid "Select the orientation of the paper."
msgstr ""
#. DSFv2
-#: vcl/uiconfig/ui/printdialog.ui:976
+#: vcl/uiconfig/ui/printdialog.ui:979
msgctxt "printdialog|extended_tip|papersizebox"
msgid "Set the paper size you would like to use. The preview will show how the document would look on a paper of the given size."
msgstr ""
#. EZdsx
-#: vcl/uiconfig/ui/printdialog.ui:1011
+#: vcl/uiconfig/ui/printdialog.ui:1014
msgctxt "printdialog|pagespersheetbtn"
msgid "Pages per sheet:"
msgstr ""
#. ok8Lw
-#: vcl/uiconfig/ui/printdialog.ui:1025
+#: vcl/uiconfig/ui/printdialog.ui:1028
msgctxt "printdialog|extended_tip|pagespersheetbtn"
msgid "Print multiple pages per sheet of paper."
msgstr ""
#. DKP5g
-#: vcl/uiconfig/ui/printdialog.ui:1066
+#: vcl/uiconfig/ui/printdialog.ui:1069
msgctxt "printdialog|liststore1"
msgid "Custom"
msgstr "مخصص"
#. duVEo
-#: vcl/uiconfig/ui/printdialog.ui:1073
+#: vcl/uiconfig/ui/printdialog.ui:1076
msgctxt "printdialog|extended_tip|pagespersheetbox"
msgid "Select how many pages to print per sheet of paper."
msgstr ""
#. 65WWt
-#: vcl/uiconfig/ui/printdialog.ui:1086
+#: vcl/uiconfig/ui/printdialog.ui:1089
msgctxt "printdialog|pagespersheettxt"
msgid "Pages:"
msgstr ""
#. X8bjE
-#: vcl/uiconfig/ui/printdialog.ui:1106
+#: vcl/uiconfig/ui/printdialog.ui:1109
msgctxt "printdialog|extended_tip|pagerows"
msgid "Select number of rows."
msgstr ""
#. DM5aX
-#: vcl/uiconfig/ui/printdialog.ui:1118
+#: vcl/uiconfig/ui/printdialog.ui:1121
msgctxt "printdialog|by"
msgid "by"
msgstr "حسب"
#. Z2EDz
-#: vcl/uiconfig/ui/printdialog.ui:1137
+#: vcl/uiconfig/ui/printdialog.ui:1140
msgctxt "printdialog|extended_tip|pagecols"
msgid "Select number of columns."
msgstr ""
#. szcD7
-#: vcl/uiconfig/ui/printdialog.ui:1149
+#: vcl/uiconfig/ui/printdialog.ui:1152
msgctxt "printdialog|pagemargintxt1"
msgid "Margin:"
msgstr ""
#. QxE58
-#: vcl/uiconfig/ui/printdialog.ui:1168
+#: vcl/uiconfig/ui/printdialog.ui:1171
msgctxt "printdialog|extended_tip|pagemarginsb"
msgid "Select margin between individual pages on each sheet of paper."
msgstr ""
#. iGg2m
-#: vcl/uiconfig/ui/printdialog.ui:1181
+#: vcl/uiconfig/ui/printdialog.ui:1184
msgctxt "printdialog|pagemargintxt2"
msgid "between pages"
msgstr "بين الصفحات"
#. oryuw
-#: vcl/uiconfig/ui/printdialog.ui:1192
+#: vcl/uiconfig/ui/printdialog.ui:1195
msgctxt "printdialog|sheetmargintxt1"
msgid "Distance:"
msgstr ""
#. EDFnW
-#: vcl/uiconfig/ui/printdialog.ui:1211
+#: vcl/uiconfig/ui/printdialog.ui:1214
msgctxt "printdialog|extended_tip|sheetmarginsb"
msgid "Select margin between the printed pages and paper edge."
msgstr ""
#. XhfvB
-#: vcl/uiconfig/ui/printdialog.ui:1224
+#: vcl/uiconfig/ui/printdialog.ui:1227
msgctxt "printdialog|sheetmargintxt2"
msgid "to sheet border"
msgstr "إلى حد الورقة"
#. AGWe3
-#: vcl/uiconfig/ui/printdialog.ui:1237
+#: vcl/uiconfig/ui/printdialog.ui:1240
msgctxt "printdialog|labelorder"
msgid "Order:"
msgstr ""
#. psAku
-#: vcl/uiconfig/ui/printdialog.ui:1254
+#: vcl/uiconfig/ui/printdialog.ui:1257
msgctxt "printdialog|liststore2"
msgid "Left to right, then down"
msgstr ""
#. fnfLt
-#: vcl/uiconfig/ui/printdialog.ui:1255
+#: vcl/uiconfig/ui/printdialog.ui:1258
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then right"
msgstr ""
#. y6nZE
-#: vcl/uiconfig/ui/printdialog.ui:1256
+#: vcl/uiconfig/ui/printdialog.ui:1259
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then left"
msgstr ""
#. PteTg
-#: vcl/uiconfig/ui/printdialog.ui:1257
+#: vcl/uiconfig/ui/printdialog.ui:1260
msgctxt "printdialog|liststore2"
msgid "Right to left, then down"
msgstr ""
#. DvF8r
-#: vcl/uiconfig/ui/printdialog.ui:1261
+#: vcl/uiconfig/ui/printdialog.ui:1264
msgctxt "printdialog|extended_tip|orderbox"
msgid "Select order in which pages are to be printed."
msgstr ""
#. QG59F
-#: vcl/uiconfig/ui/printdialog.ui:1273
+#: vcl/uiconfig/ui/printdialog.ui:1276
msgctxt "printdialog|bordercb"
msgid "Draw a border around each page"
msgstr "ارسم حدًا حول كل صفحة"
#. 8aAGu
-#: vcl/uiconfig/ui/printdialog.ui:1282
+#: vcl/uiconfig/ui/printdialog.ui:1285
msgctxt "printdialog|extended_tip|bordercb"
msgid "Check to draw a border around each page."
msgstr ""
#. Yo4xV
-#: vcl/uiconfig/ui/printdialog.ui:1294
+#: vcl/uiconfig/ui/printdialog.ui:1297
msgctxt "printdialog|brochure"
msgid "Brochure"
msgstr "منشور"
#. 3zcKq
-#: vcl/uiconfig/ui/printdialog.ui:1304
+#: vcl/uiconfig/ui/printdialog.ui:1307
msgctxt "printdialog|extended_tip|brochure"
msgid "Select to print the document in brochure format."
msgstr ""
#. JMA7A
-#: vcl/uiconfig/ui/printdialog.ui:1327
+#: vcl/uiconfig/ui/printdialog.ui:1330
msgctxt "printdialog|collationpreview"
msgid "Collation preview"
msgstr ""
#. dePkB
-#: vcl/uiconfig/ui/printdialog.ui:1332
+#: vcl/uiconfig/ui/printdialog.ui:1335
msgctxt "printdialog|extended_tip|orderpreview"
msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look."
msgstr ""
#. fCjdq
-#: vcl/uiconfig/ui/printdialog.ui:1354
+#: vcl/uiconfig/ui/printdialog.ui:1357
msgctxt "printdialog|layoutexpander"
msgid "M_ore"
msgstr ""
#. rCBA5
-#: vcl/uiconfig/ui/printdialog.ui:1370
+#: vcl/uiconfig/ui/printdialog.ui:1373
msgctxt "printdialog|label3"
msgid "Page Layout"
msgstr ""
#. A2iC5
-#: vcl/uiconfig/ui/printdialog.ui:1393
+#: vcl/uiconfig/ui/printdialog.ui:1396
msgctxt "printdialog|generallabel"
msgid "General"
msgstr ""
#. CzGM4
-#: vcl/uiconfig/ui/printdialog.ui:1447
+#: vcl/uiconfig/ui/printdialog.ui:1450
msgctxt "printdialog|extended_tip|PrintDialog"
msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document."
msgstr ""
diff --git a/source/as/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po b/source/as/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po
index d5f854653d1..1f8b29d3009 100644
--- a/source/as/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po
+++ b/source/as/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-11 18:38+0200\n"
+"POT-Creation-Date: 2021-10-20 13:07+0200\n"
"PO-Revision-Date: 2014-02-14 09:10+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25,12 +25,12 @@ msgctxt ""
msgid "Firebird Embedded"
msgstr "Firebird অন্তৰ্ভুক্ত"
-#. 3davX
+#. ZVyum
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
".Drivers.Installed.sdbc:firebird:*\n"
"DriverTypeDisplayName\n"
"value.text"
-msgid "Firebird File"
-msgstr "Firebird ফাইল"
+msgid "Firebird External"
+msgstr ""
diff --git a/source/as/extensions/messages.po b/source/as/extensions/messages.po
index 4220ebb3b67..b0ed46412c0 100644
--- a/source/as/extensions/messages.po
+++ b/source/as/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-10 23:11+0200\n"
+"POT-Creation-Date: 2021-10-20 13:07+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/extensionsmessages/as/>\n"
@@ -4354,97 +4354,169 @@ msgid "Scanner"
msgstr ""
#. 8aFBr
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:66
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:78
msgctxt "sanedialog|deviceInfoButton"
msgid "About Dev_ice"
msgstr ""
+#. 3aG8b
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:85
+msgctxt "sanedialog|extended_tip|deviceInfoButton"
+msgid "Displays a popup window with information obtained from the scanner driver."
+msgstr ""
+
#. 3EeXn
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:80
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:97
msgctxt "sanedialog|previewButton"
msgid "Create Previe_w"
msgstr ""
+#. FPGEB
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:104
+msgctxt "sanedialog|extended_tip|previewButton"
+msgid "Scans and displays the document in the preview area."
+msgstr ""
+
#. ihLsf
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:94
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:116
#, fuzzy
msgctxt "sanedialog|scanButton"
msgid "_Scan"
msgstr "স্কেন কৰক"
+#. a4hC3
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:123
+msgctxt "sanedialog|extended_tip|ok"
+msgid "Scans an image, and then inserts the result into the document and closes the dialog."
+msgstr ""
+
#. gFREe
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:160
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:187
#, fuzzy
msgctxt "sanedialog|label3"
msgid "_Left:"
msgstr "বাওঁফাল (_L)"
#. ErDB4
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:174
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:201
#, fuzzy
msgctxt "sanedialog|label4"
msgid "To_p:"
msgstr "ওপৰ:"
#. bSfBR
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:188
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:215
#, fuzzy
msgctxt "sanedialog|label5"
msgid "_Right:"
msgstr "সোঁফালৰ:"
#. NGDq3
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:202
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:229
#, fuzzy
msgctxt "sanedialog|label6"
msgid "_Bottom:"
msgstr "তল (_B)"
+#. nu6SM
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:249
+msgctxt "sanedialog|extended_tip|topSpinbutton"
+msgid "Set the top margin of the scan area."
+msgstr ""
+
+#. oDppB
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:268
+msgctxt "sanedialog|extended_tip|rightSpinbutton"
+msgid "Set the right margin of the scan area."
+msgstr ""
+
+#. EdgNn
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:287
+msgctxt "sanedialog|extended_tip|bottomSpinbutton"
+msgid "Set the bottom margin of the scan area."
+msgstr ""
+
+#. L7tZS
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:306
+msgctxt "sanedialog|extended_tip|leftSpinbutton"
+msgid "Set the left margin of the scan area."
+msgstr ""
+
#. YfU4m
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:274
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:321
msgctxt "sanedialog|label1"
msgid "Scan Area"
msgstr ""
+#. wECiq
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:366
+msgctxt "sanedialog|extended_tip|preview"
+msgid "Displays a preview of the scanned image. The preview area contains eight handles. Drag the handles to adjust the scan area or enter a value in the corresponding margin spin box."
+msgstr ""
+
#. FZ7Vw
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:327
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:379
msgctxt "sanedialog|label2"
msgid "Preview"
msgstr "পূৰ্বদৃশ্য"
#. EiiLN
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:361
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:413
msgctxt "sanedialog|label7"
msgid "Device _used"
msgstr ""
#. W6hNP
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:375
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:427
msgctxt "sanedialog|label8"
msgid "Resolution [_DPI]"
msgstr ""
+#. diRy3
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:444
+msgctxt "sanedialog|extended_tip|deviceCombobox"
+msgid "Displays a list of available scanners detected in your system."
+msgstr ""
+
+#. nBuc6
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:466
+msgctxt "sanedialog|extended_tip|reslCombobox"
+msgid "Select the resolution in dots per inch for the scan job."
+msgstr ""
+
#. t3Tuq
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:430
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:492
msgctxt "sanedialog|advancedCheckbutton"
msgid "Show advanced options"
msgstr ""
+#. yXnEA
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:500
+msgctxt "sanedialog|extended_tip|advancedcheckbutton"
+msgid "Mark this checkbox to display more configuration options for the scanner device."
+msgstr ""
+
#. gneMZ
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:460
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:527
#, fuzzy
msgctxt "sanedialog|label10"
msgid "Options:"
msgstr "বিকল্পসমূহ"
+#. 4FHyM
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:569
+msgctxt "sanedialog\\extended_tip|optionSvTreeListBox"
+msgid "Displays the list of available scanner driver advanced options. Double click an option to display its contents just below."
+msgstr ""
+
#. VDQay
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:536
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:607
msgctxt "sanedialog|optionsButton"
msgid "Se_t"
msgstr ""
#. bNTfS
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:609
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:680
msgctxt "sanedialog|vectorLabel"
msgid "Vector element"
msgstr ""
diff --git a/source/as/fpicker/messages.po b/source/as/fpicker/messages.po
index ab880ebd62b..d5d5d0ca570 100644
--- a/source/as/fpicker/messages.po
+++ b/source/as/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+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/fpickermessages/as/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1538496496.000000\n"
#. SJGCw
@@ -227,55 +227,55 @@ msgid "_Open"
msgstr ""
#. JnE2t
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:548
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:551
msgctxt "explorerfiledialog|play"
msgid "_Play"
msgstr ""
#. dWNqZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:586
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:589
#, fuzzy
msgctxt "explorerfiledialog|file_name_label"
msgid "File _name:"
msgstr "নথিপত্ৰৰ নাম:"
#. 9cjFB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:612
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:615
#, fuzzy
msgctxt "explorerfiledialog|file_type_label"
msgid "File _type:"
msgstr "ফাইলৰ ধৰণ (‌~t):"
#. quCXH
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:676
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:679
#, fuzzy
msgctxt "explorerfiledialog|readonly"
msgid "_Read-only"
msgstr "কেৱল-পঢ়িবৰ বাবে (~R)"
#. hm2xy
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:699
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:702
#, fuzzy
msgctxt "explorerfiledialog|password"
msgid "Save with password"
msgstr "পাছৱৰ্ডৰ সৈতে সংৰক্ষণ কৰক (~w)"
#. 8EYcB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:712
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:715
#, fuzzy
msgctxt "explorerfiledialog|extension"
msgid "_Automatic file name extension"
msgstr "স্বচালিত ফাইল নামৰ সম্প্ৰসাৰন (~A)"
#. 2CgAZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:725
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:728
#, fuzzy
msgctxt "explorerfiledialog|options"
msgid "Edit _filter settings"
msgstr "ফিল্টাৰ সংহতিসমূহ সম্পাদনা কৰক (~E)"
#. 6XqLj
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:752
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:755
msgctxt "explorerfiledialog|gpgencrypt"
msgid "Encrypt with GPG key"
msgstr ""
@@ -336,71 +336,65 @@ msgctxt "remotefilesdialog|open"
msgid "_Open"
msgstr ""
-#. kKETY
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:157
-msgctxt "remotefilesdialog|save"
-msgid "_Save"
-msgstr ""
-
#. uGwr4
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:186
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:175
#, fuzzy
msgctxt "remotefilesdialog|label1"
msgid "Service:"
msgstr "সেৱাবোৰ"
#. cwNkT
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:214
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:203
msgctxt "remotefilesdialog|add_service_btn"
msgid "_Manage services"
msgstr ""
#. Jnndg
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:264
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:253
msgctxt "remotefilesdialog|list_view|tooltip_text"
msgid "List view"
msgstr ""
#. xxBtB
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:279
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:268
#, fuzzy
msgctxt "remotefilesdialog|icon_view|tooltip_text"
msgid "Icon view"
msgstr "আইকন দৃশ্য"
#. 6CiqC
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:295
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:284
#, fuzzy
msgctxt "remotefilesdialog|new_folder|tooltip_text"
msgid "Create New Folder"
msgstr "নতুন ফোল্ডাৰ সৃষ্টি কৰক"
#. aXDaC
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:400
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:389
msgctxt "remotefilesdialog|name"
msgid "Name"
msgstr ""
#. qRHnF
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:420
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:409
msgctxt "remotefilesdialog|size"
msgid "Size"
msgstr ""
#. qeF3r
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:434
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:423
msgctxt "remotefilesdialog|date"
msgid "Date modified"
msgstr ""
#. cGNWD
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:508
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:499
msgctxt "remotefilesdialog|filterLabel"
msgid "Filter"
msgstr "ফিল্টাৰ"
#. rCVer
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:522
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:513
msgctxt "remotefilesdialog|nameLabel"
msgid "File name"
msgstr "ফাইলৰ নাম"
diff --git a/source/as/officecfg/registry/data/org/openoffice/Office/UI.po b/source/as/officecfg/registry/data/org/openoffice/Office/UI.po
index 99103ed6eb1..2032afcba88 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: 2021-10-04 19:52+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+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"
@@ -1160,6 +1160,16 @@ msgctxt ""
msgid "~Insert or Edit..."
msgstr ""
+#. dHdzP
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Commands..uno:InsertPivotTableNBLabel\n"
+"Label\n"
+"value.text"
+msgid "~Insert or Edit Pivot Table..."
+msgstr ""
+
#. vqC2u
#: CalcCommands.xcu
msgctxt ""
@@ -3195,15 +3205,15 @@ msgctxt ""
msgid "Merge Cells"
msgstr "কক্ষসমূহ একত্ৰিত কৰক"
-#. GGRNG
+#. APBqu
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:SplitCell\n"
"Label\n"
"value.text"
-msgid "Split Cells"
-msgstr "কোষ বিভাজন কৰক"
+msgid "Unmerge Cells"
+msgstr ""
#. qJGdH
#: CalcCommands.xcu
@@ -3215,6 +3225,16 @@ msgctxt ""
msgid "M~erge and Center Cells"
msgstr "কক্ষসমূহ একত্ৰিত আৰু কেন্দ্ৰীত কৰক (~e)"
+#. ET4vB
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Commands..uno:ToggleMergeCells\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Merge and center or unmerge cells depending on the current toggle state"
+msgstr ""
+
#. VZsps
#: CalcCommands.xcu
msgctxt ""
@@ -4410,15 +4430,15 @@ msgctxt ""
msgid "Cell ~Comments"
msgstr "সকলো মন্তব্য"
-#. 3xhAF
+#. yqd4v
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:MergeCellsMenu\n"
"Label\n"
"value.text"
-msgid "M~erge Cells"
-msgstr "কক্ষসমূহ একত্ৰিত কৰক (~e)"
+msgid "M~erge and Unmerge Cells"
+msgstr ""
#. G3E3Q
#: CalcCommands.xcu
@@ -18786,6 +18806,16 @@ msgctxt ""
msgid "Line Spacing: 1"
msgstr "ৰেখাৰ ব্যৱধান : 1"
+#. jmAwA
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:SpacePara115\n"
+"Label\n"
+"value.text"
+msgid "Line Spacing: 1.15"
+msgstr ""
+
#. q8wJt
#: GenericCommands.xcu
#, fuzzy
diff --git a/source/as/sc/messages.po b/source/as/sc/messages.po
index a9f483453e3..d7585e6d253 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: 2021-09-27 19:09+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+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"
@@ -27761,319 +27761,349 @@ msgctxt "pastespecial|paste_values_only|tooltip_text"
msgid "Values Only"
msgstr ""
+#. tDknw
+#: sc/uiconfig/scalc/ui/pastespecial.ui:141
+msgctxt "pastespecial|extended_tip|paste_values_only"
+msgid "Pastes numbers, text, dates and the results of formulas."
+msgstr ""
+
#. CTEKF
-#: sc/uiconfig/scalc/ui/pastespecial.ui:148
+#: sc/uiconfig/scalc/ui/pastespecial.ui:153
msgctxt "pastespecial|paste_values_formats|label"
msgid "Values & _Formats"
msgstr ""
#. 7GuDi
-#: sc/uiconfig/scalc/ui/pastespecial.ui:152
+#: sc/uiconfig/scalc/ui/pastespecial.ui:157
msgctxt "pastespecial|paste_values_formats|tooltip_text"
msgid "Values & Formats"
msgstr ""
+#. FjJPU
+#: sc/uiconfig/scalc/ui/pastespecial.ui:164
+msgctxt "pastespecial|extended_tip|paste_values_formats"
+msgid "Pastes cell values, formula results and formats applied to cells."
+msgstr ""
+
#. Rb8KR
-#: sc/uiconfig/scalc/ui/pastespecial.ui:166
+#: sc/uiconfig/scalc/ui/pastespecial.ui:176
msgctxt "pastespecial|paste_format|label"
msgid "Formats Onl_y"
msgstr ""
#. Cvyjn
-#: sc/uiconfig/scalc/ui/pastespecial.ui:170
+#: sc/uiconfig/scalc/ui/pastespecial.ui:180
msgctxt "pastespecial|paste_format|tooltip_text"
msgid "Formats Only"
msgstr ""
+#. Jhc4o
+#: sc/uiconfig/scalc/ui/pastespecial.ui:187
+msgctxt "pastespecial|extended_tip|paste_formats"
+msgid "Pastes only the formats from the source range without changing the values in the destination range."
+msgstr ""
+
#. YGdhH
-#: sc/uiconfig/scalc/ui/pastespecial.ui:184
+#: sc/uiconfig/scalc/ui/pastespecial.ui:199
msgctxt "pastespecial|paste_transpose|label"
msgid "_Transpose All"
msgstr ""
#. sbLGi
-#: sc/uiconfig/scalc/ui/pastespecial.ui:188
+#: sc/uiconfig/scalc/ui/pastespecial.ui:203
msgctxt "pastespecial|paste_transpose|tooltip_text"
msgid "Transpose All"
msgstr ""
+#. 3BC6U
+#: sc/uiconfig/scalc/ui/pastespecial.ui:210
+msgctxt "pastespecial|extended_tip|paste_transpose"
+msgid "Pastes cell contents transposed, hence columns are converted to rows."
+msgstr ""
+
#. 4ETCT
-#: sc/uiconfig/scalc/ui/pastespecial.ui:209
+#: sc/uiconfig/scalc/ui/pastespecial.ui:229
msgctxt "pastespecial|cbImmediately"
msgid "_Run immediately"
msgstr ""
+#. 7a9JE
+#: sc/uiconfig/scalc/ui/pastespecial.ui:238
+msgctxt "pastespecial|extended_tip|cbImmediately"
+msgid "Check this option to run the preset immediately. Uncheck it to manipulate the options before clicking OK."
+msgstr ""
+
#. YD43i
-#: sc/uiconfig/scalc/ui/pastespecial.ui:229
+#: sc/uiconfig/scalc/ui/pastespecial.ui:254
msgctxt "pastespecial|frPresets"
msgid "Presets"
msgstr ""
#. g6DfA
-#: sc/uiconfig/scalc/ui/pastespecial.ui:265
+#: sc/uiconfig/scalc/ui/pastespecial.ui:290
msgctxt "pastespecial|paste_all"
msgid "_All"
msgstr ""
#. Labin
-#: sc/uiconfig/scalc/ui/pastespecial.ui:273
+#: sc/uiconfig/scalc/ui/pastespecial.ui:298
msgctxt "pastespecial|extended_tip|paste_all"
msgid "Pastes all cell contents, comments, formats, and objects into the current document."
msgstr ""
#. qzFbg
-#: sc/uiconfig/scalc/ui/pastespecial.ui:284
+#: sc/uiconfig/scalc/ui/pastespecial.ui:309
msgctxt "pastespecial|numbers"
msgid "_Numbers"
msgstr "সংখ্যাসমূহ (_N)"
#. SCVEu
-#: sc/uiconfig/scalc/ui/pastespecial.ui:292
+#: sc/uiconfig/scalc/ui/pastespecial.ui:317
msgctxt "pastespecial|extended_tip|numbers"
msgid "Inserts cells containing numbers."
msgstr ""
#. BSEWE
-#: sc/uiconfig/scalc/ui/pastespecial.ui:303
+#: sc/uiconfig/scalc/ui/pastespecial.ui:328
#, fuzzy
msgctxt "pastespecial|text"
msgid "Te_xt"
msgstr "টেক্সট (_T)"
#. JWDk5
-#: sc/uiconfig/scalc/ui/pastespecial.ui:311
+#: sc/uiconfig/scalc/ui/pastespecial.ui:336
msgctxt "pastespecial|extended_tip|text"
msgid "Inserts cells containing text."
msgstr ""
#. DBaJD
-#: sc/uiconfig/scalc/ui/pastespecial.ui:322
+#: sc/uiconfig/scalc/ui/pastespecial.ui:347
msgctxt "pastespecial|datetime"
msgid "_Date & time"
msgstr "তাৰিখ & সময় (_D)"
#. jq6Md
-#: sc/uiconfig/scalc/ui/pastespecial.ui:330
+#: sc/uiconfig/scalc/ui/pastespecial.ui:355
msgctxt "pastespecial|extended_tip|datetime"
msgid "Inserts cells containing date and time values."
msgstr ""
#. aHXF8
-#: sc/uiconfig/scalc/ui/pastespecial.ui:341
+#: sc/uiconfig/scalc/ui/pastespecial.ui:366
msgctxt "pastespecial|formats"
msgid "For_mats"
msgstr "বিন্যাসসমূহ (_m)"
#. ehyEf
-#: sc/uiconfig/scalc/ui/pastespecial.ui:349
+#: sc/uiconfig/scalc/ui/pastespecial.ui:374
msgctxt "pastespecial|extended_tip|formats"
msgid "Inserts cell format attributes."
msgstr ""
#. NT4Am
-#: sc/uiconfig/scalc/ui/pastespecial.ui:360
+#: sc/uiconfig/scalc/ui/pastespecial.ui:385
msgctxt "pastespecial|comments"
msgid "_Comments"
msgstr "বিষয়সূচী (_C)"
#. 3uP7i
-#: sc/uiconfig/scalc/ui/pastespecial.ui:368
+#: sc/uiconfig/scalc/ui/pastespecial.ui:393
msgctxt "pastespecial|extended_tip|comments"
msgid "Inserts comments that are attached to cells. If you want to add the comments to the existing cell content, select the \"Add\" operation."
msgstr ""
#. YZQBh
-#: sc/uiconfig/scalc/ui/pastespecial.ui:379
+#: sc/uiconfig/scalc/ui/pastespecial.ui:404
msgctxt "pastespecial|objects"
msgid "Ob_jects"
msgstr ""
#. DZsnr
-#: sc/uiconfig/scalc/ui/pastespecial.ui:387
+#: sc/uiconfig/scalc/ui/pastespecial.ui:412
msgctxt "pastespecial|extended_tip|objects"
msgid "Inserts objects contained within the selected cell range. These can be OLE objects, chart objects, or drawing objects."
msgstr ""
#. jrjYA
-#: sc/uiconfig/scalc/ui/pastespecial.ui:398
+#: sc/uiconfig/scalc/ui/pastespecial.ui:423
msgctxt "pastespecial|formulas"
msgid "F_ormulas"
msgstr ""
#. Na5Ba
-#: sc/uiconfig/scalc/ui/pastespecial.ui:406
+#: sc/uiconfig/scalc/ui/pastespecial.ui:431
msgctxt "pastespecial|extended_tip|formulas"
msgid "Inserts cells containing formulae."
msgstr ""
#. UtpWA
-#: sc/uiconfig/scalc/ui/pastespecial.ui:421
+#: sc/uiconfig/scalc/ui/pastespecial.ui:446
msgctxt "pastespecial|label1"
msgid "Paste"
msgstr ""
#. fonBJ
-#: sc/uiconfig/scalc/ui/pastespecial.ui:452
+#: sc/uiconfig/scalc/ui/pastespecial.ui:477
msgctxt "pastespecial|no_shift"
msgid "Don't sh_ift"
msgstr ""
#. q3Xv3
-#: sc/uiconfig/scalc/ui/pastespecial.ui:461
+#: sc/uiconfig/scalc/ui/pastespecial.ui:486
msgctxt "pastespecial|extended_tip|no_shift"
msgid "Inserted cells replace the target cells."
msgstr ""
#. RuiU6
-#: sc/uiconfig/scalc/ui/pastespecial.ui:473
+#: sc/uiconfig/scalc/ui/pastespecial.ui:498
msgctxt "pastespecial|move_down"
msgid "_Down"
msgstr ""
#. BNALN
-#: sc/uiconfig/scalc/ui/pastespecial.ui:482
+#: sc/uiconfig/scalc/ui/pastespecial.ui:507
msgctxt "pastespecial|extended_tip|move_down"
msgid "Target cells are shifted downward when you insert cells from the clipboard."
msgstr ""
#. obSAt
-#: sc/uiconfig/scalc/ui/pastespecial.ui:494
+#: sc/uiconfig/scalc/ui/pastespecial.ui:519
msgctxt "pastespecial|move_right"
msgid "_Right"
msgstr "সোঁফাল (_R)"
#. GEFe7
-#: sc/uiconfig/scalc/ui/pastespecial.ui:503
+#: sc/uiconfig/scalc/ui/pastespecial.ui:528
msgctxt "pastespecial|extended_tip|move_right"
msgid "Target cells are shifted to the right when you insert cells from the clipboard."
msgstr ""
#. fzYTm
-#: sc/uiconfig/scalc/ui/pastespecial.ui:519
+#: sc/uiconfig/scalc/ui/pastespecial.ui:544
msgctxt "pastespecial|label4"
msgid "Shift Cells"
msgstr ""
#. nuJd9
-#: sc/uiconfig/scalc/ui/pastespecial.ui:563
+#: sc/uiconfig/scalc/ui/pastespecial.ui:588
msgctxt "pastespecial|link"
msgid "As _Link"
msgstr ""
#. Bg9dc
-#: sc/uiconfig/scalc/ui/pastespecial.ui:571
+#: sc/uiconfig/scalc/ui/pastespecial.ui:596
msgctxt "pastespecial|extended_tip|link"
msgid "Inserts the cell range as a link, so that changes made to the cells in the source file are updated in the target file. To ensure that changes made to empty cells in the source file are updated in the target file, ensure that the \"Paste All\" option is also selected."
msgstr ""
#. qt6LA
-#: sc/uiconfig/scalc/ui/pastespecial.ui:582
+#: sc/uiconfig/scalc/ui/pastespecial.ui:607
msgctxt "pastespecial|transpose"
msgid "Trans_pose"
msgstr ""
#. P3eE4
-#: sc/uiconfig/scalc/ui/pastespecial.ui:590
+#: sc/uiconfig/scalc/ui/pastespecial.ui:615
msgctxt "pastespecial|extended_tip|transpose"
msgid "The rows of the range in the clipboard are pasted to become columns of the output range. The columns of the range in the clipboard are pasted to become rows."
msgstr ""
#. eG52z
-#: sc/uiconfig/scalc/ui/pastespecial.ui:601
+#: sc/uiconfig/scalc/ui/pastespecial.ui:626
msgctxt "pastespecial|skip_empty"
msgid "_Skip empty cells"
msgstr ""
#. BodqB
-#: sc/uiconfig/scalc/ui/pastespecial.ui:605
+#: sc/uiconfig/scalc/ui/pastespecial.ui:630
msgctxt "pastespecial|skip_empty"
msgid "If enabled, blank cells in source will not override the target."
msgstr ""
#. u2Cms
-#: sc/uiconfig/scalc/ui/pastespecial.ui:610
+#: sc/uiconfig/scalc/ui/pastespecial.ui:635
msgctxt "pastespecial|extended_tip|skip_empty"
msgid "Empty cells from the clipboard do not replace target cells. If you use this option in conjunction with the \"Multiply\" or the \"Divide\" operation, the operation is not applied to the target cell of an empty cell in the clipboard."
msgstr ""
#. jTFAJ
-#: sc/uiconfig/scalc/ui/pastespecial.ui:625
+#: sc/uiconfig/scalc/ui/pastespecial.ui:650
msgctxt "pastespecial|OptionsFrame"
msgid "Options"
msgstr ""
#. nJiy4
-#: sc/uiconfig/scalc/ui/pastespecial.ui:656
+#: sc/uiconfig/scalc/ui/pastespecial.ui:681
#, fuzzy
msgctxt "pastespecial|none"
msgid "Non_e"
msgstr "টীকা"
#. 7GKDG
-#: sc/uiconfig/scalc/ui/pastespecial.ui:665
+#: sc/uiconfig/scalc/ui/pastespecial.ui:690
msgctxt "pastespecial|extended_tip|none"
msgid "Does not apply an operation when you insert the cell range from the clipboard. The contents of the clipboard will replace existing cell contents."
msgstr ""
#. CEsbt
-#: sc/uiconfig/scalc/ui/pastespecial.ui:677
+#: sc/uiconfig/scalc/ui/pastespecial.ui:702
#, fuzzy
msgctxt "pastespecial|add"
msgid "_Add"
msgstr "যোগ কৰক"
#. bNyh2
-#: sc/uiconfig/scalc/ui/pastespecial.ui:686
+#: sc/uiconfig/scalc/ui/pastespecial.ui:711
msgctxt "pastespecial|extended_tip|add"
msgid "Adds the values in the clipboard cells to the values in the target cells. Also, if the clipboard only contains comments, adds the comments to the target cells."
msgstr ""
#. iFTvh
-#: sc/uiconfig/scalc/ui/pastespecial.ui:698
+#: sc/uiconfig/scalc/ui/pastespecial.ui:723
#, fuzzy
msgctxt "pastespecial|subtract"
msgid "_Subtract"
msgstr "বিয়োগ কৰক (~S)"
#. 2SKbT
-#: sc/uiconfig/scalc/ui/pastespecial.ui:707
+#: sc/uiconfig/scalc/ui/pastespecial.ui:732
msgctxt "pastespecial|extended_tip|subtract"
msgid "Subtracts the values in the clipboard cells from the values in the target cells."
msgstr ""
#. zdDUB
-#: sc/uiconfig/scalc/ui/pastespecial.ui:719
+#: sc/uiconfig/scalc/ui/pastespecial.ui:744
msgctxt "pastespecial|multiply"
msgid "_Multiply"
msgstr ""
#. jkRDm
-#: sc/uiconfig/scalc/ui/pastespecial.ui:728
+#: sc/uiconfig/scalc/ui/pastespecial.ui:753
msgctxt "pastespecial|extended_tip|multiply"
msgid "Multiplies the values in the clipboard cells with the values in the target cells."
msgstr ""
#. 7Nd8u
-#: sc/uiconfig/scalc/ui/pastespecial.ui:740
+#: sc/uiconfig/scalc/ui/pastespecial.ui:765
msgctxt "pastespecial|divide"
msgid "_Divide"
msgstr ""
#. 9VKdS
-#: sc/uiconfig/scalc/ui/pastespecial.ui:749
+#: sc/uiconfig/scalc/ui/pastespecial.ui:774
msgctxt "pastespecial|extended_tip|divide"
msgid "Divides the values in the target cells by the values in the clipboard cells."
msgstr ""
#. 9otLM
-#: sc/uiconfig/scalc/ui/pastespecial.ui:765
+#: sc/uiconfig/scalc/ui/pastespecial.ui:790
#, fuzzy
msgctxt "pastespecial|label2"
msgid "Operations"
msgstr "অপাৰেটৰসমূহ"
#. ypkML
-#: sc/uiconfig/scalc/ui/pastespecial.ui:800
+#: sc/uiconfig/scalc/ui/pastespecial.ui:825
msgctxt "pastespecial|extended_tip|PasteSpecial"
msgid "Inserts the contents of the clipboard into the current file in a format that you can specify."
msgstr ""
diff --git a/source/as/sd/messages.po b/source/as/sd/messages.po
index 37983605e4a..ce89f48ad06 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: 2021-09-14 12:01+0200\n"
+"POT-Creation-Date: 2021-10-20 13:09+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"
@@ -5036,250 +5036,262 @@ msgid "Text Animation"
msgstr "লিখনি এনিমেশ্বন"
#. FcztB
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:132
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:140
msgctxt "customanimationspanel|extended_tip|custom_animation_list"
msgid "The animation list displays all animations for the current slide."
msgstr ""
-#. KFRTW
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:163
+#. VBxbo
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:171
msgctxt "customanimationspanel|STR_CUSTOMANIMATION_LIST_HELPTEXT"
-msgid "First select the slide element and then click 'Add...' to add an animation effect."
+msgid "First select the slide element and then click 'Add' to add an animation effect."
+msgstr ""
+
+#. wWeBD
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:215
+msgctxt "customanimationspanel|lbEffect"
+msgid "Effects"
+msgstr ""
+
+#. WGWNA
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:236
+msgctxt "customanimationspanel|add"
+msgid "_Add"
msgstr ""
#. nRqGR
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:195
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:240
msgctxt "customanimationspanel|add_effect|tooltip_text"
msgid "Add Effect"
msgstr "প্ৰভাৱ যোগ কৰক"
#. CskWF
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:199
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:245
msgctxt "customanimationspanel|extended_tip|add_effect"
msgid "Adds another animation effect for the selected object on the slide."
msgstr ""
#. vitMM
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:214
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:260
msgctxt "customanimationspanel|remove_effect|tooltip_text"
msgid "Remove Effect"
msgstr "প্ৰভাৱ আতৰাওক"
#. pvCFG
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:218
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:264
msgctxt "customanimationspanel|extended_tip|remove_effect"
msgid "Removes the selected animation effects from the animation list."
msgstr ""
#. 3wHRp
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:233
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:279
msgctxt "customanimationspanel|move_up|tooltip_text"
msgid "Move Up"
msgstr "ওপৰলৈ স্থানান্তৰ কৰক"
#. buR2G
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:237
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:283
msgctxt "customanimationspanel|extended_tip|move_up"
msgid "Click one of the buttons to move the selected animation effect up or down in the list."
msgstr ""
#. jEksa
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:252
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:298
msgctxt "customanimationspanel|move_down|tooltip_text"
msgid "Move Down"
msgstr "তললৈ স্থানান্তৰ কৰক"
#. x82hp
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:256
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:302
msgctxt "customanimationspanel|extended_tip|move_down"
msgid "Click one of the buttons to move the selected animation effect up or down in the list."
msgstr ""
#. wCc89
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:285
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:324
#, fuzzy
msgctxt "customanimationspanel|categorylabel"
msgid "Category:"
msgstr "শ্রেণী (~C):"
-#. EHRAp
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:299
-#, fuzzy
-msgctxt "customanimationspanel|effectlabel"
-msgid "Effect:"
-msgstr "প্ৰভাৱ"
-
#. jQcZZ
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:314
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:338
#, fuzzy
msgctxt "customanimationspanel|categorylb"
msgid "Entrance"
msgstr "প্ৰৱেশ"
#. 2qTvP
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:315
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:339
#, fuzzy
msgctxt "customanimationspanel|categorylb"
msgid "Emphasis"
msgstr "গুৰুত্ব"
#. TZeh8
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:316
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:340
#, fuzzy
msgctxt "customanimationspanel|categorylb"
msgid "Exit"
msgstr "প্রস্থান কৰক"
#. N8Xvu
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:317
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:341
#, fuzzy
msgctxt "customanimationspanel|categorylb"
msgid "Motion Paths"
msgstr "গতিৰ পথবোৰ"
#. qDYCQ
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:318
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:342
#, fuzzy
msgctxt "customanimationspanel|categorylb"
msgid "Misc Effects"
msgstr "বিভিন্ন প্রভাৱবোৰ"
#. ozsMp
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:322
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:346
msgctxt "customanimationspanel|extended_tip|categorylb"
msgid "Select an animation effect category."
msgstr ""
+#. EHRAp
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:363
+#, fuzzy
+msgctxt "customanimationspanel|effectlabel"
+msgid "Effect:"
+msgstr "প্ৰভাৱ"
+
#. MEJrn
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:366
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:412
msgctxt "customanimationspanel|extended_tip|effect_list"
msgid "Select an animation effect."
msgstr ""
+#. LGuGy
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:428
+msgctxt "customanimationspanel|effect_label"
+msgid "Options"
+msgstr ""
+
#. GDYfC
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:403
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:445
msgctxt "customanimationspanel|start_effect"
msgid "_Start:"
msgstr "আৰম্ভ (_S):"
-#. 8AUq9
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:417
-msgctxt "customanimationspanel|effect_property"
-msgid "_Direction:"
-msgstr "দিশ (_D):"
-
-#. QWndb
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:431
-#, fuzzy
-msgctxt "customanimationspanel|effect_duration"
-msgid "D_uration:"
-msgstr "স্থায়িত্ব"
-
#. DhPiJ
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:446
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:459
msgctxt "customanimationspanel|start_effect_list"
msgid "On click"
msgstr "ক্লিকত"
#. FNFGr
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:447
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:460
msgctxt "customanimationspanel|start_effect_list"
msgid "With previous"
msgstr "পূৰ্বৱৰ্তীৰ সৈতে"
#. dCfj4
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:448
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:461
msgctxt "customanimationspanel|start_effect_list"
msgid "After previous"
msgstr "পূৰ্বৱৰ্তীৰ পাছত"
#. iboET
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:452
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:465
msgctxt "customanimationspanel|extended_tip|start_effect_list"
msgid "Displays when the selected animation effect should be started."
msgstr ""
+#. 8AUq9
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:479
+msgctxt "customanimationspanel|effect_property"
+msgid "_Direction:"
+msgstr "দিশ (_D):"
+
#. mMYic
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:481
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:492
msgctxt "customanimationspanel|more_properties|tooltip_text"
msgid "Options"
msgstr "বিকল্পসমূহ"
#. PE6vL
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:486
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:497
msgctxt "customanimationspanel|extended_tip|more_properties"
msgid "Specifies additional properties for the selected element in the Custom Animations pane."
msgstr ""
+#. QWndb
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:511
+#, fuzzy
+msgctxt "customanimationspanel|effect_duration"
+msgid "D_uration:"
+msgstr "স্থায়িত্ব"
+
#. Ewipq
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:505
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:529
msgctxt "customanimationspanel|extended_tip|anim_duration"
msgid "Specifies the duration of the selected animation effect."
msgstr ""
#. 2cGAb
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:519
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:543
msgctxt "customanimationspanel|delay_label"
msgid "_Delay:"
msgstr "বিলম্ব (_D):"
#. g6bR3
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:538
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:561
msgctxt "customanimationspanel|extended_tip|delay_value"
msgid "The animation starts delayed by this amount of time."
msgstr ""
-#. FgkKZ
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:562
-msgctxt "customanimationspanel|effect_label"
-msgid "Effect"
-msgstr "প্ৰভাৱ"
-
#. J2bC5
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:600
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:583
#, fuzzy
msgctxt "customanimationspanel|auto_preview"
msgid "Automatic Preview"
msgstr "স্বচালিত পূৰ্বদৃশ্য"
#. GufhE
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:608
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:591
msgctxt "customanimationspanel|extended_tip|auto_preview"
msgid "Select to preview new or edited effects on the slide while you assign them."
msgstr ""
#. KP8UC
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:620
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:603
msgctxt "customanimationspanel|play"
msgid "Play"
msgstr "বজাওক"
#. Bn67v
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:624
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:607
msgctxt "customanimationspanel|play|tooltip_text"
msgid "Preview Effect"
msgstr "প্ৰভাৱ পূৰ্বদৰ্শন কৰক"
#. sUTTG
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:631
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:614
msgctxt "customanimationspanel|extended_tip|play"
msgid "Plays the selected animation effect in the preview."
msgstr ""
#. LBEzG
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:658
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:626
msgctxt "customanimationspanel|box1_label"
msgid "Animation Deck"
msgstr ""
#. bUvjt
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:671
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:638
msgctxt "customanimationspanel|custom_animation_list_label"
msgid "Animation List"
msgstr ""
#. F7AZL
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:690
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:694
msgctxt "customanimationspanel|extended_tip|CustomAnimationsPanel"
msgid "Assigns effects to selected objects."
msgstr ""
diff --git a/source/as/sfx2/messages.po b/source/as/sfx2/messages.po
index 1e7d7db94a5..42f1011d319 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: 2021-09-27 19:09+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+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"
@@ -3075,147 +3075,147 @@ msgid "Contains descriptive information about the document."
msgstr ""
#. tC2rt
-#: sfx2/uiconfig/ui/developmenttool.ui:96
+#: sfx2/uiconfig/ui/developmenttool.ui:117
msgctxt "developmenttool|dom_current_selection_toggle-tooltip"
msgid "Current Selection In Document"
msgstr ""
#. Po2S3
-#: sfx2/uiconfig/ui/developmenttool.ui:97
+#: sfx2/uiconfig/ui/developmenttool.ui:118
msgctxt "developmenttool|dom_current_selection_toggle"
msgid "Current Selection"
msgstr ""
#. eB6NR
-#: sfx2/uiconfig/ui/developmenttool.ui:109
+#: sfx2/uiconfig/ui/developmenttool.ui:130
msgctxt "developmenttool|dom_refresh_button-tooltip"
msgid "Refresh Document Model Tree View"
msgstr ""
#. FD2yt
-#: sfx2/uiconfig/ui/developmenttool.ui:110
+#: sfx2/uiconfig/ui/developmenttool.ui:131
msgctxt "developmenttool|dom_refresh_button"
msgid "Refresh"
msgstr ""
#. qVgcX
-#: sfx2/uiconfig/ui/developmenttool.ui:155
+#: sfx2/uiconfig/ui/developmenttool.ui:177
msgctxt "developmenttool|object"
msgid "Object"
msgstr ""
#. x6GLB
-#: sfx2/uiconfig/ui/developmenttool.ui:203
+#: sfx2/uiconfig/ui/developmenttool.ui:226
msgctxt "developmenttool|tooltip-back"
msgid "Back"
msgstr ""
#. SinPk
-#: sfx2/uiconfig/ui/developmenttool.ui:204
+#: sfx2/uiconfig/ui/developmenttool.ui:227
msgctxt "developmenttool|back"
msgid "Back"
msgstr ""
#. 4CBb3
-#: sfx2/uiconfig/ui/developmenttool.ui:217
+#: sfx2/uiconfig/ui/developmenttool.ui:240
msgctxt "developmenttool|tooltip-inspect"
msgid "Inspect"
msgstr ""
#. vCciB
-#: sfx2/uiconfig/ui/developmenttool.ui:218
+#: sfx2/uiconfig/ui/developmenttool.ui:241
msgctxt "developmenttool|inspect"
msgid "Inspect"
msgstr ""
#. nFMXe
-#: sfx2/uiconfig/ui/developmenttool.ui:231
+#: sfx2/uiconfig/ui/developmenttool.ui:254
msgctxt "developmenttool|tooltip-refresh"
msgid "Refresh"
msgstr ""
#. CFuvW
-#: sfx2/uiconfig/ui/developmenttool.ui:232
+#: sfx2/uiconfig/ui/developmenttool.ui:255
msgctxt "developmenttool|refresh"
msgid "Refresh"
msgstr ""
#. 6gFmn
-#: sfx2/uiconfig/ui/developmenttool.ui:256
+#: sfx2/uiconfig/ui/developmenttool.ui:278
msgctxt "developmenttool|classname"
msgid "Class name:"
msgstr ""
#. a9j7f
-#: sfx2/uiconfig/ui/developmenttool.ui:319
-#: sfx2/uiconfig/ui/developmenttool.ui:364
-#: sfx2/uiconfig/ui/developmenttool.ui:418
+#: sfx2/uiconfig/ui/developmenttool.ui:343
+#: sfx2/uiconfig/ui/developmenttool.ui:392
+#: sfx2/uiconfig/ui/developmenttool.ui:450
msgctxt "developmenttool|name"
msgid "Name"
msgstr ""
#. VFqAa
-#: sfx2/uiconfig/ui/developmenttool.ui:338
+#: sfx2/uiconfig/ui/developmenttool.ui:363
msgctxt "developmenttool|interfaces"
msgid "Interfaces"
msgstr ""
#. iCdWe
-#: sfx2/uiconfig/ui/developmenttool.ui:386
+#: sfx2/uiconfig/ui/developmenttool.ui:415
msgctxt "developmenttool|services"
msgid "Services"
msgstr ""
#. H7pYE
-#: sfx2/uiconfig/ui/developmenttool.ui:432
+#: sfx2/uiconfig/ui/developmenttool.ui:465
msgctxt "developmenttool|value"
msgid "Value"
msgstr ""
#. Jjkqh
-#: sfx2/uiconfig/ui/developmenttool.ui:446
+#: sfx2/uiconfig/ui/developmenttool.ui:479
msgctxt "developmenttool|type"
msgid "Type"
msgstr ""
#. zpXuY
-#: sfx2/uiconfig/ui/developmenttool.ui:460
+#: sfx2/uiconfig/ui/developmenttool.ui:493
msgctxt "developmenttool|info"
msgid "Info"
msgstr ""
#. AUktw
-#: sfx2/uiconfig/ui/developmenttool.ui:511
+#: sfx2/uiconfig/ui/developmenttool.ui:544
msgctxt "developmenttool|properties"
msgid "Properties"
msgstr ""
#. wGJtn
-#: sfx2/uiconfig/ui/developmenttool.ui:538
+#: sfx2/uiconfig/ui/developmenttool.ui:574
msgctxt "developmenttool|method"
msgid "Method"
msgstr ""
#. EnGfg
-#: sfx2/uiconfig/ui/developmenttool.ui:552
+#: sfx2/uiconfig/ui/developmenttool.ui:589
msgctxt "developmenttool|returntype"
msgid "Return Type"
msgstr ""
#. AKnSa
-#: sfx2/uiconfig/ui/developmenttool.ui:566
+#: sfx2/uiconfig/ui/developmenttool.ui:603
msgctxt "developmenttool|parameters"
msgid "Parameters"
msgstr ""
#. tmttq
-#: sfx2/uiconfig/ui/developmenttool.ui:580
+#: sfx2/uiconfig/ui/developmenttool.ui:617
msgctxt "developmenttool|implementation_class"
msgid "Implementation Class"
msgstr ""
#. Q2CBK
-#: sfx2/uiconfig/ui/developmenttool.ui:602
+#: sfx2/uiconfig/ui/developmenttool.ui:639
msgctxt "developmenttool|methods"
msgid "Methods"
msgstr ""
@@ -4526,7 +4526,7 @@ msgid "Do_n’t Save"
msgstr ""
#. dzVqL
-#: sfx2/uiconfig/ui/querysavedialog.ui:53
+#: sfx2/uiconfig/ui/querysavedialog.ui:56
msgctxt "querysavedialog|save"
msgid "_Save"
msgstr ""
diff --git a/source/as/svtools/messages.po b/source/as/svtools/messages.po
index b19f1f1542f..fa7872d457d 100644
--- a/source/as/svtools/messages.po
+++ b/source/as/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-20 13:03+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+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/svtoolsmessages/as/>\n"
@@ -5033,6 +5033,12 @@ msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Klingon"
msgstr ""
+#. xFYhC
+#: svtools/inc/langtab.hrc:437
+msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
+msgid "English (Israel)"
+msgstr ""
+
#. fXSja
#: svtools/uiconfig/ui/addresstemplatedialog.ui:8
msgctxt "addresstemplatedialog|AddressTemplateDialog"
@@ -5138,358 +5144,358 @@ msgid "Modify dimensions"
msgstr ""
#. pyd6J
-#: svtools/uiconfig/ui/graphicexport.ui:146
+#: svtools/uiconfig/ui/graphicexport.ui:145
msgctxt "graphicexport|label5"
msgid "Width:"
msgstr "প্ৰস্থ:"
#. drQDY
-#: svtools/uiconfig/ui/graphicexport.ui:160
+#: svtools/uiconfig/ui/graphicexport.ui:159
msgctxt "graphicexport|label6"
msgid "Height:"
msgstr "উচ্চতা:"
#. exCyd
-#: svtools/uiconfig/ui/graphicexport.ui:171
+#: svtools/uiconfig/ui/graphicexport.ui:170
msgctxt "graphicexport|modifyresolutioncb"
msgid "Modify resolution"
msgstr ""
#. ZWxGB
-#: svtools/uiconfig/ui/graphicexport.ui:189
+#: svtools/uiconfig/ui/graphicexport.ui:188
msgctxt "graphicexport|resolutionft"
msgid "Resolution:"
msgstr "বিভেদন:"
#. 2rwEJ
-#: svtools/uiconfig/ui/graphicexport.ui:209
+#: svtools/uiconfig/ui/graphicexport.ui:208
msgctxt "graphicexport|extended_tip|widthmf"
msgid "Specifies the measurement units."
msgstr ""
#. BPaB3
-#: svtools/uiconfig/ui/graphicexport.ui:229
+#: svtools/uiconfig/ui/graphicexport.ui:228
msgctxt "graphicexport|extended_tip|heightmf"
msgid "Specifies the height."
msgstr ""
#. Da3fv
-#: svtools/uiconfig/ui/graphicexport.ui:249
+#: svtools/uiconfig/ui/graphicexport.ui:248
msgctxt "graphicexport|extended_tip|resolutionmf"
msgid "Enter the image resolution. Select the measurement units from the list box."
msgstr ""
#. S9aHs
-#: svtools/uiconfig/ui/graphicexport.ui:263
+#: svtools/uiconfig/ui/graphicexport.ui:262
msgctxt "graphicexport|liststore2"
msgid "inches"
msgstr "ইঞ্চিসমূহ"
#. dCstP
-#: svtools/uiconfig/ui/graphicexport.ui:264
+#: svtools/uiconfig/ui/graphicexport.ui:263
msgctxt "graphicexport|liststore2"
msgid "cm"
msgstr "ছে.মি."
#. X5dLV
-#: svtools/uiconfig/ui/graphicexport.ui:265
+#: svtools/uiconfig/ui/graphicexport.ui:264
msgctxt "graphicexport|liststore2"
msgid "mm"
msgstr "মি.মি."
#. 6vWVJ
-#: svtools/uiconfig/ui/graphicexport.ui:266
+#: svtools/uiconfig/ui/graphicexport.ui:265
msgctxt "graphicexport|liststore2"
msgid "points"
msgstr "বিন্দুবোৰ"
#. ZqyAj
-#: svtools/uiconfig/ui/graphicexport.ui:267
+#: svtools/uiconfig/ui/graphicexport.ui:266
msgctxt "graphicexport|liststore2"
msgid "pixels"
msgstr "পিক্সেলবোৰ"
#. QL8mE
-#: svtools/uiconfig/ui/graphicexport.ui:271
+#: svtools/uiconfig/ui/graphicexport.ui:270
msgctxt "graphicexport|extended_tip|widthlb"
msgid "Specifies the width."
msgstr ""
#. kYLvv
-#: svtools/uiconfig/ui/graphicexport.ui:285
+#: svtools/uiconfig/ui/graphicexport.ui:284
msgctxt "graphicexport|liststore1"
msgid "pixels/cm"
msgstr "পিক্সেল/ছে.মি"
#. zjmFd
-#: svtools/uiconfig/ui/graphicexport.ui:286
+#: svtools/uiconfig/ui/graphicexport.ui:285
msgctxt "graphicexport|liststore1"
msgid "pixels/inch"
msgstr "পিক্সেলসমূহ/ইঞ্চি"
#. iMZW3
-#: svtools/uiconfig/ui/graphicexport.ui:287
+#: svtools/uiconfig/ui/graphicexport.ui:286
msgctxt "graphicexport|liststore1"
msgid "pixels/meter"
msgstr "পিক্সেলসমূহ/মিটাৰস"
#. ND5ki
-#: svtools/uiconfig/ui/graphicexport.ui:291
+#: svtools/uiconfig/ui/graphicexport.ui:290
msgctxt "graphicexport|extended_tip|resolutionlb"
msgid "Enter the image resolution. Select the measurement units from the list box."
msgstr ""
#. ENaqm
-#: svtools/uiconfig/ui/graphicexport.ui:309
+#: svtools/uiconfig/ui/graphicexport.ui:308
msgctxt "graphicexport|label1"
msgid "Size"
msgstr "আকাৰ"
#. Dc5fy
-#: svtools/uiconfig/ui/graphicexport.ui:335
+#: svtools/uiconfig/ui/graphicexport.ui:334
msgctxt "graphicexport|extended_tip|colordepthlb"
msgid "Select the color depth from 8 bit grayscale or 24 bit true color."
msgstr ""
#. hFaPC
-#: svtools/uiconfig/ui/graphicexport.ui:344
+#: svtools/uiconfig/ui/graphicexport.ui:343
msgctxt "graphicexport|label2"
msgid "Color Depth"
msgstr "ৰঙৰ গভীৰতা"
#. 5v8Jn
-#: svtools/uiconfig/ui/graphicexport.ui:380
+#: svtools/uiconfig/ui/graphicexport.ui:379
msgctxt "graphicexport|extended_tip|compressionjpgnf"
msgid "Sets the quality for the export. Choose from a low quality with minimal file size, up to a high quality and big file size."
msgstr ""
#. Tk5y2
-#: svtools/uiconfig/ui/graphicexport.ui:409
+#: svtools/uiconfig/ui/graphicexport.ui:408
msgctxt "graphicexport|label9"
msgid "Quality"
msgstr "গুণ"
#. AHkNV
-#: svtools/uiconfig/ui/graphicexport.ui:445
+#: svtools/uiconfig/ui/graphicexport.ui:444
msgctxt "graphicexport|extended_tip|compressionpngnf"
msgid "Sets the compression for the export. A high compression means a smaller, but slower to load image."
msgstr ""
#. f4LYz
-#: svtools/uiconfig/ui/graphicexport.ui:474
+#: svtools/uiconfig/ui/graphicexport.ui:473
msgctxt "graphicexport|label"
msgid "Compression"
msgstr "সংকোচন"
#. hQadL
-#: svtools/uiconfig/ui/graphicexport.ui:494
+#: svtools/uiconfig/ui/graphicexport.ui:493
#, fuzzy
msgctxt "graphicexport|rlecb"
msgid "RLE encoding"
msgstr "RLE এনকোডিং"
#. DqpKW
-#: svtools/uiconfig/ui/graphicexport.ui:505
+#: svtools/uiconfig/ui/graphicexport.ui:504
msgctxt "graphicexport|extended_tip|rlecb"
msgid "Applies RLE (Run Length Encoding) to the BMP graphics."
msgstr ""
#. EA7BF
-#: svtools/uiconfig/ui/graphicexport.ui:514
+#: svtools/uiconfig/ui/graphicexport.ui:513
msgctxt "graphicexport|label3"
msgid "Compression"
msgstr "সংকোচন"
#. qiLZK
-#: svtools/uiconfig/ui/graphicexport.ui:534
+#: svtools/uiconfig/ui/graphicexport.ui:533
msgctxt "graphicexport|interlacedcb"
msgid "Interlaced"
msgstr "ইন্টাৰলেইচ্ড"
#. cLvu6
-#: svtools/uiconfig/ui/graphicexport.ui:545
+#: svtools/uiconfig/ui/graphicexport.ui:544
msgctxt "graphicexport|extended_tip|interlacedcb"
msgid "Specifies whether the graphic is to be saved in interlaced mode."
msgstr ""
#. BkbD3
-#: svtools/uiconfig/ui/graphicexport.ui:554
+#: svtools/uiconfig/ui/graphicexport.ui:553
msgctxt "graphicexport|label12"
msgid "Mode"
msgstr "অৱস্থা"
#. Nhj88
-#: svtools/uiconfig/ui/graphicexport.ui:574
+#: svtools/uiconfig/ui/graphicexport.ui:573
msgctxt "graphicexport|savetransparencycb"
msgid "Save transparency"
msgstr "স্বচ্ছতা সঞ্চয় কৰক"
#. kZ3uW
-#: svtools/uiconfig/ui/graphicexport.ui:585
+#: svtools/uiconfig/ui/graphicexport.ui:584
msgctxt "graphicexport|extended_tip|savetransparencycb"
msgid "Specifies whether to save the background of the picture as transparent. Only objects will be visible in the GIF image. Use the Color Replacer to set the transparent color in the picture."
msgstr ""
#. ZPmXf
-#: svtools/uiconfig/ui/graphicexport.ui:594
+#: svtools/uiconfig/ui/graphicexport.ui:593
msgctxt "graphicexport|labe"
msgid "Drawing Objects"
msgstr "অঁকা বস্তুবোৰ"
#. KMCxb
-#: svtools/uiconfig/ui/graphicexport.ui:621
+#: svtools/uiconfig/ui/graphicexport.ui:620
msgctxt "graphicexport|binarycb"
msgid "Binary"
msgstr "যুগ্মক"
#. qFTuj
-#: svtools/uiconfig/ui/graphicexport.ui:630
+#: svtools/uiconfig/ui/graphicexport.ui:629
msgctxt "graphicexport|extended_tip|binarycb"
msgid "Exports the file in binary format. The resulting file is smaller than a text file."
msgstr ""
#. 8cZsH
-#: svtools/uiconfig/ui/graphicexport.ui:641
+#: svtools/uiconfig/ui/graphicexport.ui:640
msgctxt "graphicexport|textcb"
msgid "Text"
msgstr "টেক্সট"
#. GFbg2
-#: svtools/uiconfig/ui/graphicexport.ui:650
+#: svtools/uiconfig/ui/graphicexport.ui:649
msgctxt "graphicexport|extended_tip|textcb"
msgid "Exports the file in ASCII text format. The resulting file is larger than a binary file."
msgstr ""
#. ECUb9
-#: svtools/uiconfig/ui/graphicexport.ui:665
+#: svtools/uiconfig/ui/graphicexport.ui:664
msgctxt "graphicexport|label16"
msgid "Encoding"
msgstr "Encoding"
#. aeV52
-#: svtools/uiconfig/ui/graphicexport.ui:697
+#: svtools/uiconfig/ui/graphicexport.ui:696
#, fuzzy
msgctxt "graphicexport|tiffpreviewcb"
msgid "Image preview (TIFF)"
msgstr "পৃষ্ঠাৰ পূর্বদৰ্শন (TIFF)"
#. H8vtD
-#: svtools/uiconfig/ui/graphicexport.ui:706
+#: svtools/uiconfig/ui/graphicexport.ui:705
msgctxt "graphicexport|extended_tip|tiffpreviewcb"
msgid "Specifies whether a preview image is exported in the TIFF format together with the actual PostScript file."
msgstr ""
#. AeEJu
-#: svtools/uiconfig/ui/graphicexport.ui:717
+#: svtools/uiconfig/ui/graphicexport.ui:716
msgctxt "graphicexport|epsipreviewcb"
msgid "Interchange (EPSI)"
msgstr "বিনিময় (EPSI)"
#. gLbUQ
-#: svtools/uiconfig/ui/graphicexport.ui:725
+#: svtools/uiconfig/ui/graphicexport.ui:724
msgctxt "graphicexport|extended_tip|epsipreviewcb"
msgid "Specifies whether a monochrome preview graphic in EPSI format is exported together with the PostScript file. This format only contains printable characters from the 7-bit ASCII code."
msgstr ""
#. sRbZb
-#: svtools/uiconfig/ui/graphicexport.ui:740
+#: svtools/uiconfig/ui/graphicexport.ui:739
msgctxt "graphicexport|label17"
msgid "Preview"
msgstr "পূৰ্বদৃশ্য"
#. Jfbgx
-#: svtools/uiconfig/ui/graphicexport.ui:767
+#: svtools/uiconfig/ui/graphicexport.ui:766
msgctxt "graphicexport|color1rb"
msgid "Color"
msgstr "ৰং"
#. LNHEi
-#: svtools/uiconfig/ui/graphicexport.ui:776
+#: svtools/uiconfig/ui/graphicexport.ui:775
msgctxt "graphicexport|extended_tip|color1rb"
msgid "Exports the file in color."
msgstr ""
#. VeZFK
-#: svtools/uiconfig/ui/graphicexport.ui:787
+#: svtools/uiconfig/ui/graphicexport.ui:786
msgctxt "graphicexport|color2rb"
msgid "Grayscale"
msgstr "ধোঁৱাবৰন"
#. TWEx8
-#: svtools/uiconfig/ui/graphicexport.ui:796
+#: svtools/uiconfig/ui/graphicexport.ui:795
msgctxt "graphicexport|extended_tip|color2rb"
msgid "Exports the file in grayscale tones."
msgstr ""
#. BbSGF
-#: svtools/uiconfig/ui/graphicexport.ui:811
+#: svtools/uiconfig/ui/graphicexport.ui:810
#, fuzzy
msgctxt "graphicexport|label18"
msgid "Color Format"
msgstr "ৰঙ বিন্যাসস"
#. b6J7X
-#: svtools/uiconfig/ui/graphicexport.ui:838
+#: svtools/uiconfig/ui/graphicexport.ui:837
msgctxt "graphicexport|level1rb"
msgid "Level 1"
msgstr "Level 1"
#. pEcBC
-#: svtools/uiconfig/ui/graphicexport.ui:847
+#: svtools/uiconfig/ui/graphicexport.ui:846
msgctxt "graphicexport|extended_tip|level1rb"
msgid "Compression is not available at this level. Select the Level 1 option if your PostScript printer does not offer the capabilities of Level 2."
msgstr ""
#. kuCNX
-#: svtools/uiconfig/ui/graphicexport.ui:858
+#: svtools/uiconfig/ui/graphicexport.ui:857
msgctxt "graphicexport|level2rb"
msgid "Level 2"
msgstr "Level 2"
#. wiWrE
-#: svtools/uiconfig/ui/graphicexport.ui:867
+#: svtools/uiconfig/ui/graphicexport.ui:866
msgctxt "graphicexport|extended_tip|level2rb"
msgid "Select the Level 2 option if your output device supports colored bitmaps, palette graphics and compressed graphics."
msgstr ""
#. JUuBZ
-#: svtools/uiconfig/ui/graphicexport.ui:882
+#: svtools/uiconfig/ui/graphicexport.ui:881
msgctxt "graphicexport|label19"
msgid "Version"
msgstr "সংস্কৰণ"
#. FjkbL
-#: svtools/uiconfig/ui/graphicexport.ui:909
+#: svtools/uiconfig/ui/graphicexport.ui:908
msgctxt "graphicexport|compresslzw"
msgid "LZW encoding"
msgstr "LZW এনকোডিং"
#. 5cYFM
-#: svtools/uiconfig/ui/graphicexport.ui:918
+#: svtools/uiconfig/ui/graphicexport.ui:917
msgctxt "graphicexport|extended_tip|compresslzw"
msgid "LZW compression is the compression of a file into a smaller file using a table-based lookup algorithm."
msgstr ""
#. vXGXe
-#: svtools/uiconfig/ui/graphicexport.ui:929
+#: svtools/uiconfig/ui/graphicexport.ui:928
msgctxt "graphicexport|compressnone"
msgid "None"
msgstr "কোনো নহয়"
#. kW3QD
-#: svtools/uiconfig/ui/graphicexport.ui:938
+#: svtools/uiconfig/ui/graphicexport.ui:937
msgctxt "graphicexport|extended_tip|compressnone"
msgid "Specifies that you do not wish to use compression."
msgstr ""
#. ghAqZ
-#: svtools/uiconfig/ui/graphicexport.ui:953
+#: svtools/uiconfig/ui/graphicexport.ui:952
msgctxt "graphicexport|label20"
msgid "Compression"
msgstr "সংকোচন"
#. LmAeC
-#: svtools/uiconfig/ui/graphicexport.ui:992
+#: svtools/uiconfig/ui/graphicexport.ui:991
msgctxt "graphicexport|label4"
msgid "Information"
msgstr "তথ্য"
@@ -5861,7 +5867,7 @@ msgid "For the Skia changes to take effect, %PRODUCTNAME must be restarted."
msgstr ""
#. v9FjK
-#: svtools/uiconfig/ui/thineditcontrol.ui:69
+#: svtools/uiconfig/ui/thineditcontrol.ui:72
msgctxt "thineditcontrol|button"
msgid "Pick Date"
msgstr ""
diff --git a/source/as/svx/messages.po b/source/as/svx/messages.po
index 7732caef3ed..07fe359cd8f 100644
--- a/source/as/svx/messages.po
+++ b/source/as/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-20 13:03+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+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/svxmessages/as/>\n"
@@ -10024,125 +10024,125 @@ msgctxt "RID_SVXSTR_TRANSPARENCY"
msgid "Transparency:"
msgstr ""
-#. zvqUJ
+#. PGuXa
#. strings related to borders
#: include/svx/strings.hrc:1777
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
-msgid "Set No Borders"
+msgid "No Borders"
msgstr ""
-#. ABKEK
+#. LzhYZ
#: include/svx/strings.hrc:1778
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
-msgid "Set Outer Border Only"
+msgid "Outer Border Only"
msgstr ""
-#. ygU8P
+#. EniNF
#: include/svx/strings.hrc:1779
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
-msgid "Set Outer Border and Horizontal Lines"
+msgid "Outer Border and Horizontal Lines"
msgstr ""
-#. q5KJ8
+#. BuDWX
#: include/svx/strings.hrc:1780
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
-msgid "Set Outer Border and All Inner Lines"
+msgid "Outer Border and All Inner Lines"
msgstr ""
-#. TFuZb
+#. ckL2Z
#: include/svx/strings.hrc:1781
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
-msgid "Set Outer Border and Vertical Lines"
+msgid "Outer Border and Vertical Lines"
msgstr ""
-#. H5s9X
+#. Q9hj4
#: include/svx/strings.hrc:1782
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
-msgid "Set Outer Border Without Changing Inner Lines"
+msgid "Outer Border Without Changing Inner Lines"
msgstr ""
-#. T5crG
+#. b7wCr
#: include/svx/strings.hrc:1783
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
-msgid "Set Diagonal Lines Only"
+msgid "Diagonal Lines Only"
msgstr ""
-#. oodJY
+#. 8r98a
#: include/svx/strings.hrc:1784
-msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALLEFT"
-msgid "Set Diagonal Left Border"
+msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
+msgid "Diagonal Down Border"
msgstr ""
-#. gFFgD
+#. P4FGE
#: include/svx/strings.hrc:1785
-msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALRIGHT"
-msgid "Set Diagonal Right Border"
+msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
+msgid "Diagonal Up Border"
msgstr ""
-#. D6FCE
+#. VxBrT
#: include/svx/strings.hrc:1786
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
-msgid "Set Criss-Cross Border"
+msgid "Criss-Cross Border"
msgstr ""
-#. S6AAA
+#. hTi3j
#: include/svx/strings.hrc:1787
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
-msgid "Set All Four Borders"
+msgid "All Four Borders"
msgstr ""
-#. tknFJ
+#. o8fB8
#: include/svx/strings.hrc:1788
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
-msgid "Set Left and Right Borders Only"
+msgid "Left and Right Borders Only"
msgstr ""
-#. hSmnW
+#. 6NnM2
#: include/svx/strings.hrc:1789
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
-msgid "Set Top and Bottom Borders Only"
+msgid "Top and Bottom Borders Only"
msgstr ""
-#. DsEAB
+#. KTYVW
#: include/svx/strings.hrc:1790
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
-msgid "Set Top and Bottom Borders, and All Horizontal Lines"
+msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. Dy2UG
+#. fRcEu
#: include/svx/strings.hrc:1791
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Set Left Border Only"
+msgid "Left Border Only"
msgstr ""
-#. yF8RP
+#. uqzE7
#: include/svx/strings.hrc:1792
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Set Right Border Only"
+msgid "Right Border Only"
msgstr ""
-#. E2jZj
+#. 6ecLB
#: include/svx/strings.hrc:1793
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Set Top Border Only"
+msgid "Top Border Only"
msgstr ""
-#. 7ixEC
+#. B6KZc
#: include/svx/strings.hrc:1794
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Set Bottom Border Only"
+msgid "Bottom Border Only"
msgstr ""
-#. nCjXG
+#. aCMGz
#: include/svx/strings.hrc:1795
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
-msgid "Set Top and Bottom Borders, and All Inner Lines"
+msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
-#. 46Fq7
+#. t38dT
#: include/svx/strings.hrc:1796
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
-msgid "Set Left and Right Borders, and All Inner Lines"
+msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
#. wH3TZ
@@ -14584,14 +14584,14 @@ msgid "Delete footer?"
msgstr ""
#. GE3hT
-#: svx/uiconfig/ui/deletefooterdialog.ui:14
+#: svx/uiconfig/ui/deletefooterdialog.ui:13
#, fuzzy
msgctxt "deletefooterdialog|DeleteFooterDialog"
msgid "Are you sure you want to delete the footer?"
msgstr "আপুনি নিশ্চিতনে যে আপুনি \"$1\" অঞ্চলটো ডিলিট কৰিব বিচাৰে?"
#. EthWp
-#: svx/uiconfig/ui/deletefooterdialog.ui:15
+#: svx/uiconfig/ui/deletefooterdialog.ui:14
msgctxt "deletefooterdialog|DeleteFooterDialog"
msgid "All contents of the footer will be deleted and can not be restored."
msgstr ""
@@ -14603,14 +14603,14 @@ msgid "Delete header?"
msgstr ""
#. YfZTx
-#: svx/uiconfig/ui/deleteheaderdialog.ui:14
+#: svx/uiconfig/ui/deleteheaderdialog.ui:13
#, fuzzy
msgctxt "deleteheaderdialog|DeleteHeaderDialog"
msgid "Are you sure you want to delete the header?"
msgstr "আপুনি নিশ্চিতনে যে আপুনি \"$1\" অঞ্চলটো ডিলিট কৰিব বিচাৰে?"
#. 86Aks
-#: svx/uiconfig/ui/deleteheaderdialog.ui:15
+#: svx/uiconfig/ui/deleteheaderdialog.ui:14
msgctxt "deleteheaderdialog|DeleteHeaderDialog"
msgid "All contents of the header will be deleted and can not be restored."
msgstr ""
@@ -19309,21 +19309,21 @@ msgid "Standard selection"
msgstr "প্ৰামাণিক নিৰ্বাচন"
#. DGKv2
-#: svx/uiconfig/ui/selectionmenu.ui:20
+#: svx/uiconfig/ui/selectionmenu.ui:21
#, fuzzy
msgctxt "selectionmenu|extending"
msgid "Extending selection"
msgstr "প্ৰসাৰিত নিৰ্বাচন"
#. fqC9L
-#: svx/uiconfig/ui/selectionmenu.ui:28
+#: svx/uiconfig/ui/selectionmenu.ui:30
#, fuzzy
msgctxt "selectionmenu|adding"
msgid "Adding selection"
msgstr "নিৰ্বাচন যোগ কৰা"
#. DbjFT
-#: svx/uiconfig/ui/selectionmenu.ui:36
+#: svx/uiconfig/ui/selectionmenu.ui:39
#, fuzzy
msgctxt "selectionmenu|block"
msgid "Block selection"
@@ -20262,55 +20262,55 @@ msgid "More Options"
msgstr ""
#. DJ6vY
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:18
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:60
#, fuzzy
msgctxt "textcharacterspacingcontrol|very_tight"
msgid "Very Tight"
msgstr "খুউব টান (~V)"
#. GYD7d
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:34
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:77
#, fuzzy
msgctxt "textcharacterspacingcontrol|tight"
msgid "Tight"
msgstr "সোঁফাল"
#. 8EcPH
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:50
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:94
#, fuzzy
msgctxt "textcharacterspacingcontrol|normal"
msgid "Normal"
msgstr "সাধাৰণ (~N)"
#. hEuRj
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:66
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:111
#, fuzzy
msgctxt "textcharacterspacingcontrol|loose"
msgid "Loose"
msgstr "ঢিলা (~L)"
#. 4kdQx
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:82
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:128
#, fuzzy
msgctxt "textcharacterspacingcontrol|very_loose"
msgid "Very Loose"
msgstr "খুউব ঢিলা (~L)"
#. hsu3c
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:98
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:145
#, fuzzy
msgctxt "textcharacterspacingcontrol|last_custom"
msgid "Last Custom Value"
msgstr "সৰ্বশেষ স্বনিৰ্বাচিত মানবোৰ"
#. pZZ9u
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:127
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:177
msgctxt "textcharacterspacingcontrol|kerning"
msgid "0.0"
msgstr ""
#. 6kNQD
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:139
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:187
msgctxt "textcharacterspacingcontrol|label2"
msgid "Custom Value"
msgstr ""
@@ -20375,75 +20375,75 @@ msgid "Tabs"
msgstr "টেগবোৰ"
#. hHwzA
-#: svx/uiconfig/ui/textunderlinecontrol.ui:19
+#: svx/uiconfig/ui/textunderlinecontrol.ui:74
msgctxt "textunderlinecontrol|none"
msgid "(Without)"
msgstr "(বাহিৰে)"
#. 9VDo4
-#: svx/uiconfig/ui/textunderlinecontrol.ui:37
+#: svx/uiconfig/ui/textunderlinecontrol.ui:93
msgctxt "textunderlinecontrol|single|tooltip_text"
msgid "Single"
msgstr "একক"
#. czS3W
-#: svx/uiconfig/ui/textunderlinecontrol.ui:54
+#: svx/uiconfig/ui/textunderlinecontrol.ui:110
#, fuzzy
msgctxt "textunderlinecontrol|double|tooltip_text"
msgid "Double"
msgstr "দ্বিগুণ"
#. DBg8Y
-#: svx/uiconfig/ui/textunderlinecontrol.ui:71
+#: svx/uiconfig/ui/textunderlinecontrol.ui:127
#, fuzzy
msgctxt "textunderlinecontrol|bold|tooltip_text"
msgid "Bold"
msgstr "বল্ড"
#. fNrBz
-#: svx/uiconfig/ui/textunderlinecontrol.ui:88
+#: svx/uiconfig/ui/textunderlinecontrol.ui:144
msgctxt "textunderlinecontrol|dot|tooltip_text"
msgid "Dotted"
msgstr "বিন্দুত"
#. JEgvk
-#: svx/uiconfig/ui/textunderlinecontrol.ui:105
+#: svx/uiconfig/ui/textunderlinecontrol.ui:161
msgctxt "textunderlinecontrol|dotbold|tooltip_text"
msgid "Dotted (Bold)"
msgstr "বিন্দুত (ডাঠ)"
#. 46nci
-#: svx/uiconfig/ui/textunderlinecontrol.ui:122
+#: svx/uiconfig/ui/textunderlinecontrol.ui:178
msgctxt "textunderlinecontrol|dash|tooltip_text"
msgid "Dash"
msgstr "ডেশ"
#. D8gB4
-#: svx/uiconfig/ui/textunderlinecontrol.ui:139
+#: svx/uiconfig/ui/textunderlinecontrol.ui:195
msgctxt "textunderlinecontrol|dashlong|tooltip_text"
msgid "Long Dash"
msgstr "দীঘল ডেশ"
#. gkUzu
-#: svx/uiconfig/ui/textunderlinecontrol.ui:156
+#: svx/uiconfig/ui/textunderlinecontrol.ui:212
msgctxt "textunderlinecontrol|dashdot|tooltip_text"
msgid "Dot Dash"
msgstr "বিন্দু ডেশ"
#. qMLxK
-#: svx/uiconfig/ui/textunderlinecontrol.ui:173
+#: svx/uiconfig/ui/textunderlinecontrol.ui:229
msgctxt "textunderlinecontrol|dashdotdot|tooltip_text"
msgid "Dot Dot Dash"
msgstr "বিন্দু বিন্দু ডেশ"
#. dusMw
-#: svx/uiconfig/ui/textunderlinecontrol.ui:190
+#: svx/uiconfig/ui/textunderlinecontrol.ui:246
msgctxt "textunderlinecontrol|wave|tooltip_text"
msgid "Wave"
msgstr "তৰংগ"
#. xJTZe
-#: svx/uiconfig/ui/textunderlinecontrol.ui:204
+#: svx/uiconfig/ui/textunderlinecontrol.ui:260
#, fuzzy
msgctxt "textunderlinecontrol|moreoptions"
msgid "_More Options..."
diff --git a/source/as/sw/messages.po b/source/as/sw/messages.po
index 2cdb0c74fe8..5ca5b75b391 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: 2021-10-04 19:52+0200\n"
+"POT-Creation-Date: 2021-10-25 12:50+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"
@@ -4479,20 +4479,26 @@ msgctxt "STR_CONTENT_ENDNOTE"
msgid "Endnote"
msgstr ""
-#. jThGW
+#. sEQCK
#: sw/inc/strings.hrc:407
+msgctxt "STR_FOOTNOTE_ENDNOTE_SEPARATOR_TIP"
+msgid "Footnotes are listed above this line and Endnotes are listed below"
+msgstr ""
+
+#. jThGW
+#: sw/inc/strings.hrc:408
msgctxt "STR_DEFINE_NUMBERFORMAT"
msgid "Additional formats..."
msgstr "অতিৰিক্ত ফৰমেটবোৰ..."
#. Cfiyt
-#: sw/inc/strings.hrc:408
+#: sw/inc/strings.hrc:409
msgctxt "RID_STR_SYSTEM"
msgid "[System]"
msgstr "[System]"
#. iD3WQ
-#: sw/inc/strings.hrc:409
+#: sw/inc/strings.hrc:410
msgctxt "STR_MULT_INTERACT_HYPH_WARN"
msgid ""
"The interactive hyphenation is already active\n"
@@ -4500,657 +4506,657 @@ msgid ""
msgstr "ইন্টাৰেক্টিভ হাইফেনেশ্বনটো ইতিমধ্যে এটা বেলেগ দস্তাবেজত সক্ৰিয় আছে"
#. 68AYK
-#: sw/inc/strings.hrc:410
+#: sw/inc/strings.hrc:411
msgctxt "STR_HYPH_TITLE"
msgid "Hyphenation"
msgstr "হাইফেনেশ্বন"
#. EDxsk
-#: sw/inc/strings.hrc:411
+#: sw/inc/strings.hrc:412
msgctxt "STR_HYPH_MISSING"
msgid "Missing hyphenation data"
msgstr ""
#. TEP66
-#: sw/inc/strings.hrc:412
+#: sw/inc/strings.hrc:413
msgctxt "STR_HYPH_MISSING"
msgid "Please install the hyphenation package for locale “%1”."
msgstr ""
#. bJFYS
-#: sw/inc/strings.hrc:413
+#: sw/inc/strings.hrc:414
msgctxt "STR_HIDDEN_CHANGES"
msgid "Track Changes"
msgstr ""
#. DcXvE
-#: sw/inc/strings.hrc:414
+#: sw/inc/strings.hrc:415
msgctxt "STR_HIDDEN_CHANGES_DETAIL"
msgid "Document contains tracked changes and recording is enabled."
msgstr ""
#. zxuEu
-#: sw/inc/strings.hrc:415
+#: sw/inc/strings.hrc:416
msgctxt "STR_HIDDEN_CHANGES_DETAIL2"
msgid "Recording of changes is enabled."
msgstr ""
#. BH7Ud
-#: sw/inc/strings.hrc:416
+#: sw/inc/strings.hrc:417
msgctxt "STR_HIDDEN_CHANGES_DETAIL3"
msgid "Document contains tracked changes."
msgstr ""
#. MEN2d
#. Undo
-#: sw/inc/strings.hrc:419
+#: sw/inc/strings.hrc:420
msgctxt "STR_CANT_UNDO"
msgid "not possible"
msgstr "সম্ভৱ নহয়"
#. 5GdxN
-#: sw/inc/strings.hrc:420
+#: sw/inc/strings.hrc:421
msgctxt "STR_DELETE_UNDO"
msgid "Delete $1"
msgstr "$1 মচি পেলাওক..."
#. i6vB4
-#: sw/inc/strings.hrc:421
+#: sw/inc/strings.hrc:422
msgctxt "STR_INSERT_UNDO"
msgid "Insert $1"
msgstr "$1 সুমুৱাওক"
#. JESFv
-#: sw/inc/strings.hrc:422
+#: sw/inc/strings.hrc:423
msgctxt "STR_OVR_UNDO"
msgid "Overwrite: $1"
msgstr "পুনৰলিখক : $1"
#. FVqpL
-#: sw/inc/strings.hrc:423
+#: sw/inc/strings.hrc:424
msgctxt "STR_SPLITNODE_UNDO"
msgid "New Paragraph"
msgstr "নতুন দফা"
#. r3iVE
-#: sw/inc/strings.hrc:424
+#: sw/inc/strings.hrc:425
msgctxt "STR_MOVE_UNDO"
msgid "Move"
msgstr "স্থানান্তৰ কৰক"
#. Z2Ft8
-#: sw/inc/strings.hrc:425
+#: sw/inc/strings.hrc:426
msgctxt "STR_INSATTR_UNDO"
msgid "Apply attributes"
msgstr "বৈশিষ্টসমূহ প্ৰয়োগ কৰক"
#. hetuZ
-#: sw/inc/strings.hrc:426
+#: sw/inc/strings.hrc:427
msgctxt "STR_SETFMTCOLL_UNDO"
msgid "Apply Styles: $1"
msgstr "শৈলী প্ৰয়োগ কৰক : $1"
#. GokWu
-#: sw/inc/strings.hrc:427
+#: sw/inc/strings.hrc:428
msgctxt "STR_RESET_ATTR_UNDO"
msgid "Reset attributes"
msgstr "বৈশিষ্টসমূহ পুনৰ স্থাপন কৰক"
#. mDgEJ
-#: sw/inc/strings.hrc:428
+#: sw/inc/strings.hrc:429
msgctxt "STR_INSFMT_ATTR_UNDO"
msgid "Change style: $1"
msgstr "শৈলী সলনি কৰক : $1"
#. onBFE
-#: sw/inc/strings.hrc:429
+#: sw/inc/strings.hrc:430
msgctxt "STR_INSERT_DOC_UNDO"
msgid "Insert file"
msgstr "ফাইল সুমুৱাওক"
#. WCCkF
-#: sw/inc/strings.hrc:430
+#: sw/inc/strings.hrc:431
msgctxt "STR_INSERT_GLOSSARY"
msgid "Insert AutoText"
msgstr "স্বচালিত লিখনী সুমুৱাওক"
#. CyNXC
-#: sw/inc/strings.hrc:431
+#: sw/inc/strings.hrc:432
msgctxt "STR_DELBOOKMARK"
msgid "Delete bookmark: $1"
msgstr "পত্ৰচিহ্ন মচি পেলাওক : $1"
#. 54y8f
-#: sw/inc/strings.hrc:432
+#: sw/inc/strings.hrc:433
msgctxt "STR_INSBOOKMARK"
msgid "Insert bookmark: $1"
msgstr "পত্ৰচিহ্ন সুমুৱাওক: $1"
#. XHkEY
-#: sw/inc/strings.hrc:433
+#: sw/inc/strings.hrc:434
msgctxt "STR_SORT_TBL"
msgid "Sort table"
msgstr "টেবুল বৰ্গীকৰণ কৰক"
#. gui6q
-#: sw/inc/strings.hrc:434
+#: sw/inc/strings.hrc:435
msgctxt "STR_SORT_TXT"
msgid "Sort text"
msgstr "লিখনী বৰ্গীকৰণ কৰক"
#. APAMG
-#: sw/inc/strings.hrc:435
+#: sw/inc/strings.hrc:436
msgctxt "STR_INSTABLE_UNDO"
msgid "Insert table: $1$2$3"
msgstr "টেবুল সুমুৱাওক: $1$2$3"
#. 4pGhz
-#: sw/inc/strings.hrc:436
+#: sw/inc/strings.hrc:437
msgctxt "STR_TEXTTOTABLE_UNDO"
msgid "Convert text -> table"
msgstr "লিখনী সলনি কৰক ->টেবুল"
#. h3EH7
-#: sw/inc/strings.hrc:437
+#: sw/inc/strings.hrc:438
msgctxt "STR_TABLETOTEXT_UNDO"
msgid "Convert table -> text"
msgstr "টেবুল সলনি কৰক ->লিখনী"
#. uKreq
-#: sw/inc/strings.hrc:438
+#: sw/inc/strings.hrc:439
msgctxt "STR_COPY_UNDO"
msgid "Copy: $1"
msgstr "প্ৰতিলিপি: $1"
#. BfGaZ
-#: sw/inc/strings.hrc:439
+#: sw/inc/strings.hrc:440
msgctxt "STR_REPLACE_UNDO"
msgid "Replace $1 $2 $3"
msgstr "প্ৰতিস্থাপন কৰক: $1 $2 $3"
#. GEC4C
-#: sw/inc/strings.hrc:440
+#: sw/inc/strings.hrc:441
msgctxt "STR_INSERT_PAGE_BREAK_UNDO"
msgid "Insert page break"
msgstr "পৃষ্ঠা ভাঙন সুমুৱাওক"
#. mrWg2
-#: sw/inc/strings.hrc:441
+#: sw/inc/strings.hrc:442
msgctxt "STR_INSERT_COLUMN_BREAK_UNDO"
msgid "Insert column break"
msgstr "স্তম্ভ ভাঙন সুমুৱাওক"
#. MGqRt
-#: sw/inc/strings.hrc:442
+#: sw/inc/strings.hrc:443
msgctxt "STR_INSERT_ENV_UNDO"
msgid "Insert Envelope"
msgstr "লেফাফা সুমুৱাওক"
#. g8ALR
-#: sw/inc/strings.hrc:443
+#: sw/inc/strings.hrc:444
msgctxt "STR_DRAG_AND_COPY"
msgid "Copy: $1"
msgstr "প্ৰতিলিপি: $1"
#. qHdLG
-#: sw/inc/strings.hrc:444
+#: sw/inc/strings.hrc:445
msgctxt "STR_DRAG_AND_MOVE"
msgid "Move: $1"
msgstr "স্থানান্তৰ কৰক: $1"
#. xqxPn
-#: sw/inc/strings.hrc:445
+#: sw/inc/strings.hrc:446
msgctxt "STR_INSERT_CHART"
msgid "Insert %PRODUCTNAME Chart"
msgstr "%PRODUCTNAME ৰেখাচিত্ৰ সুমুৱাওক"
#. qWEVG
-#: sw/inc/strings.hrc:446
+#: sw/inc/strings.hrc:447
msgctxt "STR_INSERTFLY"
msgid "Insert frame"
msgstr "ফ্রেম সুমুৱাওক"
#. GmqXE
-#: sw/inc/strings.hrc:447
+#: sw/inc/strings.hrc:448
msgctxt "STR_DELETEFLY"
msgid "Delete frame"
msgstr "ফ্রেম মচি পেলাওক"
#. z9Eai
-#: sw/inc/strings.hrc:448
+#: sw/inc/strings.hrc:449
msgctxt "STR_AUTOFORMAT"
msgid "AutoFormat"
msgstr "স্বচালিত ফৰমেট"
#. E6uaH
-#: sw/inc/strings.hrc:449
+#: sw/inc/strings.hrc:450
msgctxt "STR_TABLEHEADLINE"
msgid "Table heading"
msgstr "টেবুলৰ শিৰোনাম"
#. gnndv
-#: sw/inc/strings.hrc:450
+#: sw/inc/strings.hrc:451
msgctxt "STR_REPLACE"
msgid "Replace: $1 $2 $3"
msgstr "প্ৰতিস্থাপন কৰক: $1 $2 $3"
#. WwuFC
-#: sw/inc/strings.hrc:451
+#: sw/inc/strings.hrc:452
msgctxt "STR_INSERTSECTION"
msgid "Insert section"
msgstr "খণ্ড সুমুৱাওক"
#. 7pzWX
-#: sw/inc/strings.hrc:452
+#: sw/inc/strings.hrc:453
msgctxt "STR_DELETESECTION"
msgid "Delete section"
msgstr "খণ্ড মচি পেলাওক"
#. AFkoM
-#: sw/inc/strings.hrc:453
+#: sw/inc/strings.hrc:454
msgctxt "STR_CHANGESECTION"
msgid "Modify section"
msgstr "খণ্ড সলনি কৰক"
#. BY9gB
-#: sw/inc/strings.hrc:454
+#: sw/inc/strings.hrc:455
msgctxt "STR_CHANGEDEFATTR"
msgid "Modify default values"
msgstr "অবিকল্পিত মানসমূহ সলনি কৰক"
#. X7eMx
-#: sw/inc/strings.hrc:455
+#: sw/inc/strings.hrc:456
msgctxt "STR_REPLACE_STYLE"
msgid "Replace style: $1 $2 $3"
msgstr "শৈলী প্ৰতিস্থাপন কৰক: $1 $2 $3"
#. EXFvJ
-#: sw/inc/strings.hrc:456
+#: sw/inc/strings.hrc:457
msgctxt "STR_DELETE_PAGE_BREAK"
msgid "Delete page break"
msgstr "পৃষ্ঠা ভাঙন মচি পেলাওক"
#. kHVr9
-#: sw/inc/strings.hrc:457
+#: sw/inc/strings.hrc:458
msgctxt "STR_TEXT_CORRECTION"
msgid "Text Correction"
msgstr "লিখনীৰ দিশ"
#. ZPCQf
-#: sw/inc/strings.hrc:458
+#: sw/inc/strings.hrc:459
msgctxt "STR_OUTLINE_LR"
msgid "Promote/demote outline"
msgstr "সক্ৰিয়/নিক্ৰিয় ৰূপৰেখা"
#. WQJz2
-#: sw/inc/strings.hrc:459
+#: sw/inc/strings.hrc:460
msgctxt "STR_OUTLINE_UD"
msgid "Move outline"
msgstr "ৰূপৰেখাৰ স্থানান্তৰ কৰক"
#. 3UGKP
-#: sw/inc/strings.hrc:460
+#: sw/inc/strings.hrc:461
msgctxt "STR_OUTLINE_EDIT"
msgid "Modify outline"
msgstr ""
#. RjcRH
-#: sw/inc/strings.hrc:461
+#: sw/inc/strings.hrc:462
msgctxt "STR_INSNUM"
msgid "Insert numbering"
msgstr "নাম্বাৰীং সুমুৱাওক"
#. hbCQa
-#: sw/inc/strings.hrc:462
+#: sw/inc/strings.hrc:463
msgctxt "STR_NUMUP"
msgid "Promote level"
msgstr "স্তৰ সক্ৰিয় কৰক"
#. 63Ec4
-#: sw/inc/strings.hrc:463
+#: sw/inc/strings.hrc:464
msgctxt "STR_NUMDOWN"
msgid "Demote level"
msgstr "স্তৰ নিক্ৰিয় কৰক"
#. FGciC
-#: sw/inc/strings.hrc:464
+#: sw/inc/strings.hrc:465
msgctxt "STR_MOVENUM"
msgid "Move paragraphs"
msgstr "দফা স্থানান্তৰ কৰক"
#. WdMCK
-#: sw/inc/strings.hrc:465
+#: sw/inc/strings.hrc:466
msgctxt "STR_INSERTDRAW"
msgid "Insert drawing object: $1"
msgstr "ছবি অঁকা বস্তু সুমুৱাওক : $1"
#. ErB3W
-#: sw/inc/strings.hrc:466
+#: sw/inc/strings.hrc:467
msgctxt "STR_NUMORNONUM"
msgid "Number On/Off"
msgstr "সংখ্যা অন/অফ"
#. rEZvN
-#: sw/inc/strings.hrc:467
+#: sw/inc/strings.hrc:468
msgctxt "STR_INC_LEFTMARGIN"
msgid "Increase Indent"
msgstr "ইণ্ডেন্ট বৃদ্ধি কৰক"
#. aJxcG
-#: sw/inc/strings.hrc:468
+#: sw/inc/strings.hrc:469
msgctxt "STR_DEC_LEFTMARGIN"
msgid "Decrease indent"
msgstr "ইণ্ডেন্ট হ্রাস কৰক"
#. 4GP7c
-#: sw/inc/strings.hrc:469
+#: sw/inc/strings.hrc:470
msgctxt "STR_INSERTLABEL"
msgid "Insert caption: $1"
msgstr "কেপশ্বন সুমুৱাওক : $1"
#. GGFM8
-#: sw/inc/strings.hrc:470
+#: sw/inc/strings.hrc:471
msgctxt "STR_SETNUMRULESTART"
msgid "Restart numbering"
msgstr "নাম্বাৰীং পুনাৰম্ভ কৰক"
#. pHfp7
-#: sw/inc/strings.hrc:471
+#: sw/inc/strings.hrc:472
msgctxt "STR_CHANGEFTN"
msgid "Modify footnote"
msgstr "পাদটীকা সলনি কৰক"
#. Knr9y
-#: sw/inc/strings.hrc:472
+#: sw/inc/strings.hrc:473
msgctxt "STR_ACCEPT_REDLINE"
msgid "Accept change: $1"
msgstr "সলনি স্বীকাৰ কৰক: $1"
#. jAvjr
-#: sw/inc/strings.hrc:473
+#: sw/inc/strings.hrc:474
msgctxt "STR_REJECT_REDLINE"
msgid "Reject change: $1"
msgstr "সলনি অস্বীকাৰ কৰক: $1"
#. uCGqy
-#: sw/inc/strings.hrc:474
+#: sw/inc/strings.hrc:475
msgctxt "STR_SPLIT_TABLE"
msgid "Split Table"
msgstr "টেবুল বিভাজন কৰক"
#. TJCZ8
-#: sw/inc/strings.hrc:475
+#: sw/inc/strings.hrc:476
msgctxt "STR_DONTEXPAND"
msgid "Stop attribute"
msgstr "বৈশিষ্টসমূহ বন্ধ কৰক"
#. qyCiy
-#: sw/inc/strings.hrc:476
+#: sw/inc/strings.hrc:477
#, fuzzy
msgctxt "STR_AUTOCORRECT"
msgid "AutoCorrect"
msgstr "স্বচালিত শুদ্ধ"
#. f4Jfr
-#: sw/inc/strings.hrc:477
+#: sw/inc/strings.hrc:478
msgctxt "STR_MERGE_TABLE"
msgid "Merge table"
msgstr "টেবুল একত্রিত কৰক"
#. BLcCC
-#: sw/inc/strings.hrc:478
+#: sw/inc/strings.hrc:479
msgctxt "STR_TRANSLITERATE"
msgid "Change Case"
msgstr "ফলা পৰিবৰ্তন কৰক"
#. BTGyD
-#: sw/inc/strings.hrc:479
+#: sw/inc/strings.hrc:480
msgctxt "STR_DELNUM"
msgid "Delete numbering"
msgstr "নাম্বাৰিং মচি পেলাওক"
#. TMvTD
-#: sw/inc/strings.hrc:480
+#: sw/inc/strings.hrc:481
msgctxt "STR_DRAWUNDO"
msgid "Drawing objects: $1"
msgstr "অকাঁ বস্তু : $1"
#. FG7rN
-#: sw/inc/strings.hrc:481
+#: sw/inc/strings.hrc:482
msgctxt "STR_DRAWGROUP"
msgid "Group draw objects"
msgstr "ড্র বস্তুবোৰৰ গোট তৈয়াৰ কৰক"
#. xZqoJ
-#: sw/inc/strings.hrc:482
+#: sw/inc/strings.hrc:483
msgctxt "STR_DRAWUNGROUP"
msgid "Ungroup drawing objects"
msgstr "অকাঁ বস্তুবোৰৰ গোট মুক্ত কৰক"
#. FA3Vo
-#: sw/inc/strings.hrc:483
+#: sw/inc/strings.hrc:484
msgctxt "STR_DRAWDELETE"
msgid "Delete drawing objects"
msgstr "অকাঁ বস্তুবোৰ মচি পেলাওক"
#. MbJSs
-#: sw/inc/strings.hrc:484
+#: sw/inc/strings.hrc:485
msgctxt "STR_REREAD"
msgid "Replace Image"
msgstr "ছবি প্ৰতিস্থাপন কৰক"
#. 6GmVr
-#: sw/inc/strings.hrc:485
+#: sw/inc/strings.hrc:486
msgctxt "STR_DELGRF"
msgid "Delete Image"
msgstr "ছবি মচি পেলাওক"
#. PAmBF
-#: sw/inc/strings.hrc:486
+#: sw/inc/strings.hrc:487
msgctxt "STR_TABLE_ATTR"
msgid "Apply table attributes"
msgstr "টেবুল বৈশিষ্টসমূহ প্ৰয়োগ কৰক"
#. GA8gF
-#: sw/inc/strings.hrc:487
+#: sw/inc/strings.hrc:488
msgctxt "STR_UNDO_TABLE_AUTOFMT"
msgid "AutoFormat Table"
msgstr "টেবুল স্বচালিত ফৰমেট কৰক"
#. AAPTL
-#: sw/inc/strings.hrc:488
+#: sw/inc/strings.hrc:489
msgctxt "STR_UNDO_TABLE_INSCOL"
msgid "Insert Column"
msgstr "স্তম্ভ সুমুৱাওক"
#. tA7ss
-#: sw/inc/strings.hrc:489
+#: sw/inc/strings.hrc:490
msgctxt "STR_UNDO_TABLE_INSROW"
msgid "Insert Row"
msgstr "শাৰী সুমুৱাওক"
#. LAzxr
-#: sw/inc/strings.hrc:490
+#: sw/inc/strings.hrc:491
msgctxt "STR_UNDO_TABLE_DELBOX"
msgid "Delete row/column"
msgstr "শাৰী/স্তম্ভ মচি পেলাওক"
#. yFDYp
-#: sw/inc/strings.hrc:491
+#: sw/inc/strings.hrc:492
msgctxt "STR_UNDO_COL_DELETE"
msgid "Delete column"
msgstr "স্তম্ভ মচি পেলাওক"
#. 9SF9L
-#: sw/inc/strings.hrc:492
+#: sw/inc/strings.hrc:493
msgctxt "STR_UNDO_ROW_DELETE"
msgid "Delete row"
msgstr "শাৰী মচি পেলাওক"
#. FnLC7
-#: sw/inc/strings.hrc:493
+#: sw/inc/strings.hrc:494
msgctxt "STR_UNDO_TABLE_SPLIT"
msgid "Split Cells"
msgstr "কোষবোৰৰ বিভাজন কৰক"
#. 3Em7B
-#: sw/inc/strings.hrc:494
+#: sw/inc/strings.hrc:495
msgctxt "STR_UNDO_TABLE_MERGE"
msgid "Merge Cells"
msgstr "কোষবোৰ একত্রিত কৰক"
#. 3VVmF
-#: sw/inc/strings.hrc:495
+#: sw/inc/strings.hrc:496
msgctxt "STR_TABLE_NUMFORMAT"
msgid "Format cell"
msgstr "ফৰমেট কোষ"
#. UbSKw
-#: sw/inc/strings.hrc:496
+#: sw/inc/strings.hrc:497
msgctxt "STR_INSERT_TOX"
msgid "Insert index/table"
msgstr "টেবুল/অনুক্ৰমণিকা সুমুৱাওক"
#. szpbj
-#: sw/inc/strings.hrc:497
+#: sw/inc/strings.hrc:498
msgctxt "STR_CLEAR_TOX_RANGE"
msgid "Remove index/table"
msgstr "টেবুল/অনুক্ৰমণিকা অতৰাওক"
#. cN5DN
-#: sw/inc/strings.hrc:498
+#: sw/inc/strings.hrc:499
msgctxt "STR_TABLE_TBLCPYTBL"
msgid "Copy table"
msgstr "টেবুল প্ৰতিলিপি কৰক"
#. eUFgx
-#: sw/inc/strings.hrc:499
+#: sw/inc/strings.hrc:500
msgctxt "STR_TABLE_CPYTBL"
msgid "Copy table"
msgstr "টেবুল প্ৰতিলিপি কৰক"
#. TC6mz
-#: sw/inc/strings.hrc:500
+#: sw/inc/strings.hrc:501
msgctxt "STR_INS_FROM_SHADOWCRSR"
msgid "Set cursor"
msgstr "কাঁড় ছেট কৰক"
#. 4GStA
-#: sw/inc/strings.hrc:501
+#: sw/inc/strings.hrc:502
msgctxt "STR_UNDO_CHAIN"
msgid "Link frames"
msgstr ""
#. XV4Ap
-#: sw/inc/strings.hrc:502
+#: sw/inc/strings.hrc:503
msgctxt "STR_UNDO_UNCHAIN"
msgid "Unlink frames"
msgstr ""
#. vUJG9
-#: sw/inc/strings.hrc:503
+#: sw/inc/strings.hrc:504
msgctxt "STR_UNDO_FTNINFO"
msgid "Modify footnote options"
msgstr "পাদটীকাৰ বিকল্পবোৰ ৰূপান্তৰ কৰক"
#. AgREs
-#: sw/inc/strings.hrc:504
+#: sw/inc/strings.hrc:505
msgctxt "STR_UNDO_COMPAREDOC"
msgid "Compare Document"
msgstr "দস্তাবেজ তুলনা কৰক"
#. kZATW
-#: sw/inc/strings.hrc:505
+#: sw/inc/strings.hrc:506
msgctxt "STR_UNDO_SETFLYFRMFMT"
msgid "Apply frame style: $1"
msgstr "ফ্রেম শৈলী প্ৰয়োগ কৰক :$1"
#. 4Ae2X
-#: sw/inc/strings.hrc:506
+#: sw/inc/strings.hrc:507
msgctxt "STR_UNDO_SETRUBYATTR"
msgid "Ruby Setting"
msgstr "ৰুবী ছেটিং"
#. J4AUR
-#: sw/inc/strings.hrc:507
+#: sw/inc/strings.hrc:508
msgctxt "STR_INSERT_FOOTNOTE"
msgid "Insert footnote"
msgstr "পাদটীকা সুমুৱাওক"
#. RMgFD
-#: sw/inc/strings.hrc:508
+#: sw/inc/strings.hrc:509
msgctxt "STR_INSERT_URLBTN"
msgid "insert URL button"
msgstr "URL বাটন সুমুৱাওক"
#. UKN7k
-#: sw/inc/strings.hrc:509
+#: sw/inc/strings.hrc:510
msgctxt "STR_INSERT_URLTXT"
msgid "Insert Hyperlink"
msgstr "হাইপাৰলিংক সুমুৱাওক"
#. 9odT8
-#: sw/inc/strings.hrc:510
+#: sw/inc/strings.hrc:511
msgctxt "STR_DELETE_INVISIBLECNTNT"
msgid "remove invisible content"
msgstr "অদৃশ্য বিষয় আঁতৰাওক"
#. e6U2R
-#: sw/inc/strings.hrc:511
+#: sw/inc/strings.hrc:512
msgctxt "STR_TOXCHANGE"
msgid "Table/index changed"
msgstr "টেবুল/অনুক্ৰমণিকা সলনি কৰা হ'ল"
#. JpGh6
-#: sw/inc/strings.hrc:512
+#: sw/inc/strings.hrc:513
msgctxt "STR_START_QUOTE"
msgid "“"
msgstr ""
#. kZoAG
-#: sw/inc/strings.hrc:513
+#: sw/inc/strings.hrc:514
msgctxt "STR_END_QUOTE"
msgid "”"
msgstr ""
#. wNZDq
-#: sw/inc/strings.hrc:514
+#: sw/inc/strings.hrc:515
msgctxt "STR_LDOTS"
msgid "..."
msgstr "..."
#. yiQgo
-#: sw/inc/strings.hrc:515
+#: sw/inc/strings.hrc:516
msgctxt "STR_MULTISEL"
msgid "multiple selection"
msgstr "বহু অংশ বিশিষ্ঠ নিৰ্বাচন"
#. qFESB
-#: sw/inc/strings.hrc:516
+#: sw/inc/strings.hrc:517
msgctxt "STR_TYPING_UNDO"
msgid "Typing: $1"
msgstr "টাইপ কৰি আছে: $1"
#. A6HSG
-#: sw/inc/strings.hrc:517
+#: sw/inc/strings.hrc:518
msgctxt "STR_PASTE_CLIPBOARD_UNDO"
msgid "Paste clipboard"
msgstr "ক্লিপবৰ্ডক আঠা লগাওক"
#. mfDMF
-#: sw/inc/strings.hrc:518
+#: sw/inc/strings.hrc:519
msgctxt "STR_YIELDS"
msgid "→"
msgstr ""
#. wNRhZ
-#: sw/inc/strings.hrc:519
+#: sw/inc/strings.hrc:520
msgctxt "STR_OCCURRENCES_OF"
msgid "occurrences of"
msgstr "-ৰ সংঘটন"
#. hHUZi
-#: sw/inc/strings.hrc:520
+#: sw/inc/strings.hrc:521
msgctxt "STR_UNDO_TABS"
msgid "One tab"
msgid_plural "$1 tabs"
@@ -5158,7 +5164,7 @@ msgstr[0] ""
msgstr[1] ""
#. eP6mC
-#: sw/inc/strings.hrc:521
+#: sw/inc/strings.hrc:522
msgctxt "STR_UNDO_NLS"
msgid "One line break"
msgid_plural "$1 line breaks"
@@ -5166,314 +5172,314 @@ msgstr[0] ""
msgstr[1] ""
#. yS3nP
-#: sw/inc/strings.hrc:522
+#: sw/inc/strings.hrc:523
msgctxt "STR_UNDO_PAGEBREAKS"
msgid "page break"
msgstr "পৃষ্ঠা ভাঙন"
#. Q4YVg
-#: sw/inc/strings.hrc:523
+#: sw/inc/strings.hrc:524
msgctxt "STR_UNDO_COLBRKS"
msgid "column break"
msgstr "স্তম্ভ ভাঙন"
#. L6qva
-#: sw/inc/strings.hrc:524
+#: sw/inc/strings.hrc:525
msgctxt "STR_UNDO_REDLINE_INSERT"
msgid "Insert $1"
msgstr "$1 সুমুৱাওক"
#. i8ZQo
-#: sw/inc/strings.hrc:525
+#: sw/inc/strings.hrc:526
msgctxt "STR_UNDO_REDLINE_DELETE"
msgid "Delete $1"
msgstr "$1 মচি পেলাওক..."
#. 5KECk
-#: sw/inc/strings.hrc:526
+#: sw/inc/strings.hrc:527
#, fuzzy
msgctxt "STR_UNDO_REDLINE_FORMAT"
msgid "Attributes changed"
msgstr "বৈশিষ্টসমূহ সলনি কৰা হ'ল"
#. N7CUk
-#: sw/inc/strings.hrc:527
+#: sw/inc/strings.hrc:528
#, fuzzy
msgctxt "STR_UNDO_REDLINE_TABLE"
msgid "Table changed"
msgstr "টেবুল সলনি হয়"
#. DCGPF
-#: sw/inc/strings.hrc:528
+#: sw/inc/strings.hrc:529
#, fuzzy
msgctxt "STR_UNDO_REDLINE_FMTCOLL"
msgid "Style changed"
msgstr "টেবুল সলনি হয়"
#. p77WZ
-#: sw/inc/strings.hrc:529
+#: sw/inc/strings.hrc:530
msgctxt "STR_UNDO_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr ""
#. nehrq
-#: sw/inc/strings.hrc:530
+#: sw/inc/strings.hrc:531
msgctxt "STR_UNDO_REDLINE_TABLE_ROW_INSERT"
msgid "Insert Row"
msgstr "শাৰী সুমুৱাওক"
#. Ud4qT
-#: sw/inc/strings.hrc:531
+#: sw/inc/strings.hrc:532
#, fuzzy
msgctxt "STR_UNDO_REDLINE_TABLE_ROW_DELETE"
msgid "Delete Row"
msgstr "শাৰী মচি পেলাওক"
#. GvxsC
-#: sw/inc/strings.hrc:532
+#: sw/inc/strings.hrc:533
msgctxt "STR_UNDO_REDLINE_TABLE_CELL_INSERT"
msgid "Insert Cell"
msgstr "কক্ষ সুমুৱাওক"
#. ZMrVY
-#: sw/inc/strings.hrc:533
+#: sw/inc/strings.hrc:534
#, fuzzy
msgctxt "STR_UNDO_REDLINE_TABLE_CELL_DELETE"
msgid "Delete Cell"
msgstr "কোষবোৰ মচি পেলাওক"
#. DqprY
-#: sw/inc/strings.hrc:534
+#: sw/inc/strings.hrc:535
msgctxt "STR_N_REDLINES"
msgid "$1 changes"
msgstr "$1 সলনিবোৰ"
#. ve5ZA
-#: sw/inc/strings.hrc:535
+#: sw/inc/strings.hrc:536
msgctxt "STR_UNDO_PAGEDESC"
msgid "Change page style: $1"
msgstr "পৃষ্ঠা শৈলী সলনি কৰক : $1"
#. RDkdy
-#: sw/inc/strings.hrc:536
+#: sw/inc/strings.hrc:537
msgctxt "STR_UNDO_PAGEDESC_CREATE"
msgid "Create page style: $1"
msgstr "পৃষ্ঠা শৈলী সৃষ্ঠি কৰক : $1"
#. tBVzV
-#: sw/inc/strings.hrc:537
+#: sw/inc/strings.hrc:538
msgctxt "STR_UNDO_PAGEDESC_DELETE"
msgid "Delete page style: $1"
msgstr "পৃষ্ঠা শৈলী মচি পেলাওক : $1"
#. wzjRB
-#: sw/inc/strings.hrc:538
+#: sw/inc/strings.hrc:539
msgctxt "STR_UNDO_PAGEDESC_RENAME"
msgid "Rename page style: $1 $2 $3"
msgstr "পৃষ্ঠা শৈলী পুনৰ নামকৰণ কৰক : $1 $2 $3"
#. UcTVv
-#: sw/inc/strings.hrc:539
+#: sw/inc/strings.hrc:540
msgctxt "STR_UNDO_HEADER_FOOTER"
msgid "Header/footer changed"
msgstr "হেডাৰ /ফুটাৰ সলনি কৰা হ'ল"
#. tGyeC
-#: sw/inc/strings.hrc:540
+#: sw/inc/strings.hrc:541
msgctxt "STR_UNDO_FIELD"
msgid "Field changed"
msgstr "ফিল্ড সলনি কৰা হ'ল"
#. xh3dq
-#: sw/inc/strings.hrc:541
+#: sw/inc/strings.hrc:542
msgctxt "STR_UNDO_TXTFMTCOL_CREATE"
msgid "Create paragraph style: $1"
msgstr "দফা শৈলী সৃষ্টি কৰক : $1"
#. aRf6Z
-#: sw/inc/strings.hrc:542
+#: sw/inc/strings.hrc:543
msgctxt "STR_UNDO_TXTFMTCOL_DELETE"
msgid "Delete paragraph style: $1"
msgstr "দফা শৈলী মচি পেলাওক : $1"
#. DtD6w
-#: sw/inc/strings.hrc:543
+#: sw/inc/strings.hrc:544
msgctxt "STR_UNDO_TXTFMTCOL_RENAME"
msgid "Rename paragraph style: $1 $2 $3"
msgstr "দফা শৈলী পুনৰ নামকৰণ কৰক : $1 $2 $3"
#. J2FcF
-#: sw/inc/strings.hrc:544
+#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_CHARFMT_CREATE"
msgid "Create character style: $1"
msgstr "আখৰ শৈলী সৃষ্টি কৰক : $1"
#. FjT56
-#: sw/inc/strings.hrc:545
+#: sw/inc/strings.hrc:546
msgctxt "STR_UNDO_CHARFMT_DELETE"
msgid "Delete character style: $1"
msgstr "আখৰ শৈলী মচি পেলাওক : $1"
#. mT2GJ
-#: sw/inc/strings.hrc:546
+#: sw/inc/strings.hrc:547
msgctxt "STR_UNDO_CHARFMT_RENAME"
msgid "Rename character style: $1 $2 $3"
msgstr "আখৰ শৈলী পুনৰ নামকৰণ কৰক : $1 $2 $3"
#. AvK4p
-#: sw/inc/strings.hrc:547
+#: sw/inc/strings.hrc:548
msgctxt "STR_UNDO_FRMFMT_CREATE"
msgid "Create frame style: $1"
msgstr "ফ্ৰেম শৈলী সৃষ্টি কৰক : $1"
#. zHLcd
-#: sw/inc/strings.hrc:548
+#: sw/inc/strings.hrc:549
msgctxt "STR_UNDO_FRMFMT_DELETE"
msgid "Delete frame style: $1"
msgstr "ফ্ৰেম শৈলী মচি পেলাওক: $1"
#. BUdbD
-#: sw/inc/strings.hrc:549
+#: sw/inc/strings.hrc:550
msgctxt "STR_UNDO_FRMFMT_RENAME"
msgid "Rename frame style: $1 $2 $3"
msgstr "ফ্ৰেম শৈলী পুনৰ নামকৰণ কৰক : $1 $2 $3"
#. GG9BH
-#: sw/inc/strings.hrc:550
+#: sw/inc/strings.hrc:551
msgctxt "STR_UNDO_NUMRULE_CREATE"
msgid "Create numbering style: $1"
msgstr "নাম্বাৰিং শৈলী সৃষ্টি কৰক : $1"
#. zYZW8
-#: sw/inc/strings.hrc:551
+#: sw/inc/strings.hrc:552
msgctxt "STR_UNDO_NUMRULE_DELETE"
msgid "Delete numbering style: $1"
msgstr "নাম্বাৰিং শৈলী মচি পেলাওক : $1"
#. QhDFe
-#: sw/inc/strings.hrc:552
+#: sw/inc/strings.hrc:553
msgctxt "STR_UNDO_NUMRULE_RENAME"
msgid "Rename numbering style: $1 $2 $3"
msgstr "নাম্বাৰিং শৈলী পুনৰ নামকৰণ কৰক : $1 $2 $3"
#. oWrh9
-#: sw/inc/strings.hrc:553
+#: sw/inc/strings.hrc:554
msgctxt "STR_UNDO_BOOKMARK_RENAME"
msgid "Rename bookmark: $1 $2 $3"
msgstr "পত্ৰচিহ্নৰ পুনৰ নাম দিয়ক : $1 $2 $3"
#. WTcEw
-#: sw/inc/strings.hrc:554
+#: sw/inc/strings.hrc:555
msgctxt "STR_UNDO_INDEX_ENTRY_INSERT"
msgid "Insert index entry"
msgstr "সূচী প্রৱিষ্টি সুমুৱাওক"
#. fbidx
-#: sw/inc/strings.hrc:555
+#: sw/inc/strings.hrc:556
msgctxt "STR_UNDO_INDEX_ENTRY_DELETE"
msgid "Delete index entry"
msgstr "সূচী প্রৱিষ্টি মচি পেলাওক"
#. WCDy7
-#: sw/inc/strings.hrc:556
+#: sw/inc/strings.hrc:557
msgctxt "STR_FIELD"
msgid "field"
msgstr "ফিল্ড"
#. aC9iU
-#: sw/inc/strings.hrc:557
+#: sw/inc/strings.hrc:558
msgctxt "STR_UNDO_INSERT_TEXTBOX"
msgid "text box"
msgstr ""
#. yNjem
#. undo: STR_PARAGRAPHS, string.text
-#: sw/inc/strings.hrc:559
+#: sw/inc/strings.hrc:560
msgctxt "STR_PARAGRAPHS"
msgid "Paragraphs"
msgstr "দফাবোৰ"
#. 9fb4z
-#: sw/inc/strings.hrc:560
+#: sw/inc/strings.hrc:561
msgctxt "STR_FRAME"
msgid "frame"
msgstr "ফ্রেম"
#. gcZ3a
-#: sw/inc/strings.hrc:561
+#: sw/inc/strings.hrc:562
msgctxt "STR_OLE"
msgid "OLE-object"
msgstr "OLE-বস্তু"
#. db5Tg
-#: sw/inc/strings.hrc:562
+#: sw/inc/strings.hrc:563
msgctxt "STR_MATH_FORMULA"
msgid "formula"
msgstr "সূত্র"
#. BirkF
-#: sw/inc/strings.hrc:563
+#: sw/inc/strings.hrc:564
msgctxt "STR_CHART"
msgid "chart"
msgstr "ছার্ট"
#. YxCuu
-#: sw/inc/strings.hrc:564
+#: sw/inc/strings.hrc:565
msgctxt "STR_NOTE"
msgid "comment"
msgstr "মন্তব্য"
#. CKqsU
-#: sw/inc/strings.hrc:565
+#: sw/inc/strings.hrc:566
msgctxt "STR_REFERENCE"
msgid "cross-reference"
msgstr "অন্যান্য প্ৰসংগ"
#. q9BGR
-#: sw/inc/strings.hrc:566
+#: sw/inc/strings.hrc:567
msgctxt "STR_SCRIPT"
msgid "script"
msgstr "স্ক্ৰিপ্ট"
#. o6FWi
-#: sw/inc/strings.hrc:567
+#: sw/inc/strings.hrc:568
msgctxt "STR_AUTHORITY_ENTRY"
msgid "bibliography entry"
msgstr "গ্রন্থ-সূচী প্রৱিষ্টি"
#. qbRLG
-#: sw/inc/strings.hrc:568
+#: sw/inc/strings.hrc:569
msgctxt "STR_SPECIALCHAR"
msgid "special character"
msgstr "বিশেষ আখৰ"
#. qJd8G
-#: sw/inc/strings.hrc:569
+#: sw/inc/strings.hrc:570
msgctxt "STR_FOOTNOTE"
msgid "footnote"
msgstr "পাদটীকা"
#. bKvaD
-#: sw/inc/strings.hrc:570
+#: sw/inc/strings.hrc:571
#, fuzzy
msgctxt "STR_GRAPHIC"
msgid "image"
msgstr "ছবি"
#. J7CgG
-#: sw/inc/strings.hrc:571
+#: sw/inc/strings.hrc:572
msgctxt "STR_DRAWING_OBJECTS"
msgid "drawing object(s)"
msgstr "ছবি অঁকা বস্তু(বোৰ)"
#. rYPFG
-#: sw/inc/strings.hrc:572
+#: sw/inc/strings.hrc:573
msgctxt "STR_TABLE_NAME"
msgid "table: $1$2$3"
msgstr "টেবুল: $1$2$3"
#. AtWxA
-#: sw/inc/strings.hrc:573
+#: sw/inc/strings.hrc:574
msgctxt "STR_CHAPTERS"
msgid "chapter"
msgid_plural "chapters"
@@ -5481,807 +5487,807 @@ msgstr[0] ""
msgstr[1] ""
#. 2JCL2
-#: sw/inc/strings.hrc:574
+#: sw/inc/strings.hrc:575
msgctxt "STR_PARAGRAPH_UNDO"
msgid "paragraph"
msgstr "দফা"
#. DvnGA
-#: sw/inc/strings.hrc:575
+#: sw/inc/strings.hrc:576
msgctxt "STR_PARAGRAPH_SIGN_UNDO"
msgid "Paragraph sign"
msgstr ""
#. oL9GG
-#: sw/inc/strings.hrc:576
+#: sw/inc/strings.hrc:577
msgctxt "STR_UNDO_FLYFRMFMT_TITLE"
msgid "Change object title of $1"
msgstr "$1 -ৰ অবজেক্ট শীৰ্ষক সলনি কৰক"
#. 3Cv7E
-#: sw/inc/strings.hrc:577
+#: sw/inc/strings.hrc:578
msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr ""
#. rWw8U
-#: sw/inc/strings.hrc:578
+#: sw/inc/strings.hrc:579
#, fuzzy
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
msgid "Create table style: $1"
msgstr "পৃষ্ঠা শৈলী সৃষ্ঠি কৰক : $1"
#. jGxgy
-#: sw/inc/strings.hrc:579
+#: sw/inc/strings.hrc:580
#, fuzzy
msgctxt "STR_UNDO_TBLSTYLE_DELETE"
msgid "Delete table style: $1"
msgstr "পৃষ্ঠা শৈলী মচি পেলাওক : $1"
#. 6NWP3
-#: sw/inc/strings.hrc:580
+#: sw/inc/strings.hrc:581
#, fuzzy
msgctxt "STR_UNDO_TBLSTYLE_UPDATE"
msgid "Update table style: $1"
msgstr "পৃষ্ঠা শৈলী সৃষ্ঠি কৰক : $1"
#. JegfU
-#: sw/inc/strings.hrc:581
+#: sw/inc/strings.hrc:582
msgctxt "STR_UNDO_TABLE_DELETE"
msgid "Delete table"
msgstr "টেবুল মচি পেলাওক"
#. KSMpJ
-#: sw/inc/strings.hrc:582
+#: sw/inc/strings.hrc:583
msgctxt "STR_UNDO_INSERT_FORM_FIELD"
msgid "Insert form field"
msgstr ""
#. 2zJmG
-#: sw/inc/strings.hrc:583
+#: sw/inc/strings.hrc:584
msgctxt "STR_DROP_DOWN_FIELD_ITEM_LIMIT"
msgid "You can specify maximum of 25 items for a drop-down form field."
msgstr ""
#. CUXeF
-#: sw/inc/strings.hrc:585
+#: sw/inc/strings.hrc:586
msgctxt "STR_ACCESS_DOC_NAME"
msgid "Document view"
msgstr "দস্তাবেজ দৃশ্য"
#. FrBrC
-#: sw/inc/strings.hrc:586
+#: sw/inc/strings.hrc:587
msgctxt "STR_ACCESS_DOC_DESC"
msgid "Document view"
msgstr "দস্তাবেজ দৃশ্য"
#. BCEgS
-#: sw/inc/strings.hrc:587
+#: sw/inc/strings.hrc:588
msgctxt "STR_ACCESS_HEADER_NAME"
msgid "Header $(ARG1)"
msgstr "হেডাৰ $(ARG1)"
#. zKdDR
-#: sw/inc/strings.hrc:588
+#: sw/inc/strings.hrc:589
msgctxt "STR_ACCESS_HEADER_DESC"
msgid "Header page $(ARG1)"
msgstr "হেডাৰ পৃষ্ঠা $(ARG1)"
#. NhFrV
-#: sw/inc/strings.hrc:589
+#: sw/inc/strings.hrc:590
msgctxt "STR_ACCESS_FOOTER_NAME"
msgid "Footer $(ARG1)"
msgstr "ফুটাৰ $(ARG1)"
#. 6GJNd
-#: sw/inc/strings.hrc:590
+#: sw/inc/strings.hrc:591
msgctxt "STR_ACCESS_FOOTER_DESC"
msgid "Footer page $(ARG1)"
msgstr "ফুটাৰ পৃষ্ঠা $(ARG1)"
#. VGUwW
-#: sw/inc/strings.hrc:591
+#: sw/inc/strings.hrc:592
msgctxt "STR_ACCESS_FOOTNOTE_NAME"
msgid "Footnote $(ARG1)"
msgstr "পাদটীকা $(ARG1)"
#. a7XMU
-#: sw/inc/strings.hrc:592
+#: sw/inc/strings.hrc:593
msgctxt "STR_ACCESS_FOOTNOTE_DESC"
msgid "Footnote $(ARG1)"
msgstr "পাদটীকা $(ARG1)"
#. 3ExiP
-#: sw/inc/strings.hrc:593
+#: sw/inc/strings.hrc:594
msgctxt "STR_ACCESS_ENDNOTE_NAME"
msgid "Endnote $(ARG1)"
msgstr "অন্তিম টীকা $(ARG1)"
#. 8XdTm
-#: sw/inc/strings.hrc:594
+#: sw/inc/strings.hrc:595
msgctxt "STR_ACCESS_ENDNOTE_DESC"
msgid "Endnote $(ARG1)"
msgstr "অন্তিম টীকা $(ARG1)"
#. 4sTZN
-#: sw/inc/strings.hrc:595
+#: sw/inc/strings.hrc:596
msgctxt "STR_ACCESS_TABLE_DESC"
msgid "$(ARG1) on page $(ARG2)"
msgstr "$(ARG2) পৃষ্ঠাত $(ARG1)"
#. Z5Uy9
-#: sw/inc/strings.hrc:596
+#: sw/inc/strings.hrc:597
msgctxt "STR_ACCESS_PAGE_NAME"
msgid "Page $(ARG1)"
msgstr "পৃষ্ঠা: $(ARG1)"
#. CWroT
-#: sw/inc/strings.hrc:597
+#: sw/inc/strings.hrc:598
msgctxt "STR_ACCESS_PAGE_DESC"
msgid "Page: $(ARG1)"
msgstr "পৃষ্ঠা: $(ARG1)"
#. iwfxM
-#: sw/inc/strings.hrc:598
+#: sw/inc/strings.hrc:599
msgctxt "STR_ACCESS_ANNOTATION_AUTHOR_NAME"
msgid "Author"
msgstr "লেখক"
#. sff9t
-#: sw/inc/strings.hrc:599
+#: sw/inc/strings.hrc:600
msgctxt "STR_ACCESS_ANNOTATION_DATE_NAME"
msgid "Date"
msgstr "তাৰিখ"
#. VScXC
-#: sw/inc/strings.hrc:600
+#: sw/inc/strings.hrc:601
msgctxt "STR_ACCESS_ANNOTATION_RESOLVED_NAME"
msgid "Resolved"
msgstr ""
#. JtzA4
-#: sw/inc/strings.hrc:601
+#: sw/inc/strings.hrc:602
msgctxt "STR_ACCESS_ANNOTATION_BUTTON_NAME"
msgid "Actions"
msgstr "কাৰ্য্যসমূহ"
#. cHWqM
-#: sw/inc/strings.hrc:602
+#: sw/inc/strings.hrc:603
msgctxt "STR_ACCESS_ANNOTATION_BUTTON_DESC"
msgid "Activate this button to open a list of actions which can be performed on this comment and other comments"
msgstr "এই মন্তব্য আৰু অন্য মন্তব্যসমূহৰ উপৰত প্ৰদৰ্শন কৰিব পৰা কাৰ্য্যসমূহৰ তালিকা খুলিবলে এই বুটাম স্বক্ৰিয় কৰক"
#. 9YxaB
-#: sw/inc/strings.hrc:603
+#: sw/inc/strings.hrc:604
msgctxt "STR_ACCESS_PREVIEW_DOC_NAME"
msgid "Document preview"
msgstr "দস্তাবেজ পূৰ্বদৰ্শন"
#. eYFFo
-#: sw/inc/strings.hrc:604
+#: sw/inc/strings.hrc:605
msgctxt "STR_ACCESS_PREVIEW_DOC_SUFFIX"
msgid "(Preview mode)"
msgstr "(পূৰ্বদৰ্শন অৱস্থা)"
#. Fp7Hn
-#: sw/inc/strings.hrc:605
+#: sw/inc/strings.hrc:606
msgctxt "STR_ACCESS_DOC_WORDPROCESSING"
msgid "%PRODUCTNAME Document"
msgstr "%PRODUCTNAME দস্তাবেজ"
#. CsQKH
-#: sw/inc/strings.hrc:607
+#: sw/inc/strings.hrc:608
#, fuzzy
msgctxt "STR_COMCORE_READERROR"
msgid "Read Error"
msgstr "পঢ়া-ত্ৰুটি"
#. ztbVu
-#: sw/inc/strings.hrc:608
+#: sw/inc/strings.hrc:609
msgctxt "STR_COMCORE_CANT_SHOW"
msgid "Image cannot be displayed."
msgstr "ছবি প্ৰদৰ্শন কৰিব নোৱাৰি।"
#. iJsFt
-#: sw/inc/strings.hrc:609
+#: sw/inc/strings.hrc:610
msgctxt "STR_ERROR_CLPBRD_READ"
msgid "Error reading from the clipboard."
msgstr "ক্লিপ বৰ্ডৰ পৰা ভুল পাঠ."
#. bXZQD
-#: sw/inc/strings.hrc:611
+#: sw/inc/strings.hrc:612
msgctxt "STR_COLUMN_BREAK"
msgid "Manual Column Break"
msgstr "হস্তচালিত স্তম্ভ ভাঙন"
#. 7DzNG
-#: sw/inc/strings.hrc:613
+#: sw/inc/strings.hrc:614
msgctxt "STR_CHART2_ROW_LABEL_TEXT"
msgid "Row %ROWNUMBER"
msgstr "শাৰী %ROWNUMBER"
#. GYFVF
-#: sw/inc/strings.hrc:614
+#: sw/inc/strings.hrc:615
msgctxt "STR_CHART2_COL_LABEL_TEXT"
msgid "Column %COLUMNLETTER"
msgstr "স্তম্ভ %COLUMNLETTER"
#. GGS2b
-#: sw/inc/strings.hrc:615
+#: sw/inc/strings.hrc:616
msgctxt "STR_STYLE_FAMILY_CHARACTER"
msgid "Character"
msgstr "আখৰ"
#. KBw5e
-#: sw/inc/strings.hrc:616
+#: sw/inc/strings.hrc:617
msgctxt "STR_STYLE_FAMILY_PARAGRAPH"
msgid "Paragraph"
msgstr "দফা"
#. ERH8o
-#: sw/inc/strings.hrc:617
+#: sw/inc/strings.hrc:618
msgctxt "STR_STYLE_FAMILY_FRAME"
msgid "Frame"
msgstr "ফ্ৰেম"
#. Cqjn8
-#: sw/inc/strings.hrc:618
+#: sw/inc/strings.hrc:619
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Pages"
msgstr "পৃষ্ঠাবোৰ"
#. FFZEr
-#: sw/inc/strings.hrc:619
+#: sw/inc/strings.hrc:620
msgctxt "STR_STYLE_FAMILY_NUMBERING"
msgid "List"
msgstr ""
#. NydLs
-#: sw/inc/strings.hrc:620
+#: sw/inc/strings.hrc:621
msgctxt "STR_STYLE_FAMILY_TABLE"
msgid "Table"
msgstr "টেবুল"
#. XUhuM
-#: sw/inc/strings.hrc:621
+#: sw/inc/strings.hrc:622
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell"
msgstr "কক্ষ"
#. DRqDZ
-#: sw/inc/strings.hrc:623
+#: sw/inc/strings.hrc:624
msgctxt "ST_SCRIPT_ASIAN"
msgid "Asian"
msgstr "এছিয়ান"
#. owFtq
-#: sw/inc/strings.hrc:624
+#: sw/inc/strings.hrc:625
msgctxt "ST_SCRIPT_CTL"
msgid "CTL"
msgstr "CTL"
#. ap5iF
-#: sw/inc/strings.hrc:625
+#: sw/inc/strings.hrc:626
msgctxt "ST_SCRIPT_WESTERN"
msgid "Western"
msgstr "পশ্চিমী"
#. HD64i
-#: sw/inc/strings.hrc:626
+#: sw/inc/strings.hrc:627
#, fuzzy
msgctxt "STR_PRINTOPTUI_PRODUCTNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. q6egu
-#: sw/inc/strings.hrc:627
+#: sw/inc/strings.hrc:628
msgctxt "STR_PRINTOPTUI_CONTENTS"
msgid "Contents"
msgstr "বিষয়সূচী"
#. Ka4fM
-#: sw/inc/strings.hrc:628
+#: sw/inc/strings.hrc:629
#, fuzzy
msgctxt "STR_PRINTOPTUI_PAGE_BACKGROUND"
msgid "Page ba~ckground"
msgstr "পৃষ্ঠা পটভূমী (~c)"
#. YPEEH
-#: sw/inc/strings.hrc:629
+#: sw/inc/strings.hrc:630
msgctxt "STR_PRINTOPTUI_PICTURES"
msgid "~Images and other graphic objects"
msgstr ""
#. L6GSj
-#: sw/inc/strings.hrc:630
+#: sw/inc/strings.hrc:631
#, fuzzy
msgctxt "STR_PRINTOPTUI_HIDDEN"
msgid "Hidden te~xt"
msgstr "লুকুৱাই ৰখা টেক্সট (~x)"
#. pXiRN
-#: sw/inc/strings.hrc:631
+#: sw/inc/strings.hrc:632
#, fuzzy
msgctxt "STR_PRINTOPTUI_TEXT_PLACEHOLDERS"
msgid "~Text placeholders"
msgstr "পৰৱৰ্তী স্থানধাৰকলৈ (~T)"
#. JBWVd
-#: sw/inc/strings.hrc:632
+#: sw/inc/strings.hrc:633
#, fuzzy
msgctxt "STR_PRINTOPTUI_FORM_CONTROLS"
msgid "Form control~s"
msgstr "ফৰ্ম নিয়ন্ত্ৰণসমূহ (~s)"
#. X8Bfu
-#: sw/inc/strings.hrc:633
+#: sw/inc/strings.hrc:634
msgctxt "STR_PRINTOPTUI_COLOR"
msgid "Color"
msgstr "ৰং"
#. kQDcq
-#: sw/inc/strings.hrc:634
+#: sw/inc/strings.hrc:635
#, fuzzy
msgctxt "STR_PRINTOPTUI_PRINT_BLACK"
msgid "Print text in blac~k"
msgstr "লিখনীক কলাত প্ৰিন্ট কৰক (~k)"
#. DEELn
-#: sw/inc/strings.hrc:635
+#: sw/inc/strings.hrc:636
msgctxt "STR_PRINTOPTUI_PAGES_TEXT"
msgid "Pages:"
msgstr ""
#. uddbB
-#: sw/inc/strings.hrc:636
+#: sw/inc/strings.hrc:637
#, fuzzy
msgctxt "STR_PRINTOPTUI_PRINT_BLANK"
msgid "Print ~automatically inserted blank pages"
msgstr "স্বয়ংক্রিয়ভাৱে ভৰোৱা ৰিক্ত পৃষ্ঠাৰ মূদ্ৰণ কৰক (~a)"
#. MTJt2
-#: sw/inc/strings.hrc:637
+#: sw/inc/strings.hrc:638
#, fuzzy
msgctxt "STR_PRINTOPTUI_ONLY_PAPER"
msgid "~Use only paper tray from printer preferences"
msgstr "প্ৰিন্টাৰ পছন্দসমূহৰ পৰা কেৱল পৃষ্ঠা ট্ৰে ব্যৱহাৰ কৰক (~U)"
#. 4uBam
-#: sw/inc/strings.hrc:638
+#: sw/inc/strings.hrc:639
#, fuzzy
msgctxt "STR_PRINTOPTUI_NONE"
msgid "None (document only)"
msgstr "কোনো নহয় (কেৱল দস্তাবেজ)"
#. pbQtA
-#: sw/inc/strings.hrc:639
+#: sw/inc/strings.hrc:640
#, fuzzy
msgctxt "STR_PRINTOPTUI_COMMENTS_ONLY"
msgid "Comments only"
msgstr "কেৱল মন্তব্যসমূহ"
#. sVnbD
-#: sw/inc/strings.hrc:640
+#: sw/inc/strings.hrc:641
#, fuzzy
msgctxt "STR_PRINTOPTUI_PLACE_END"
msgid "Place at end of document"
msgstr "দস্তাবেজৰ শেষৰ স্থান"
#. D4BXH
-#: sw/inc/strings.hrc:641
+#: sw/inc/strings.hrc:642
#, fuzzy
msgctxt "STR_PRINTOPTUI_PLACE_PAGE"
msgid "Place at end of page"
msgstr "পৃষ্ঠাৰ শেষত থকা স্থান"
#. 6rzab
-#: sw/inc/strings.hrc:642
+#: sw/inc/strings.hrc:643
#, fuzzy
msgctxt "STR_PRINTOPTUI_COMMENTS"
msgid "~Comments"
msgstr "বিষয়সূচী (~C)"
#. cnqLU
-#: sw/inc/strings.hrc:643
+#: sw/inc/strings.hrc:644
#, fuzzy
msgctxt "STR_PRINTOPTUI_BROCHURE"
msgid "Broch~ure"
msgstr "ক্ষুদ্র পুস্তিকা (~u)"
#. t6drz
-#: sw/inc/strings.hrc:644
+#: sw/inc/strings.hrc:645
#, fuzzy
msgctxt "STR_PRINTOPTUI_LEFT_SCRIPT"
msgid "Left-to-right script"
msgstr "বাওৰ-পৰা-সোঁ স্ক্ৰিপ্ট"
#. QgmxB
-#: sw/inc/strings.hrc:645
+#: sw/inc/strings.hrc:646
#, fuzzy
msgctxt "STR_PRINTOPTUI_RIGHT_SCRIPT"
msgid "Right-to-left script"
msgstr "সোঁৰ-পৰা-বাও স্ক্ৰিপ্ট"
#. t4Cm7
-#: sw/inc/strings.hrc:646
+#: sw/inc/strings.hrc:647
msgctxt "STR_PRINTOPTUI_PRINTALLPAGES"
msgid "~All Pages"
msgstr ""
#. ZDRM2
-#: sw/inc/strings.hrc:647
+#: sw/inc/strings.hrc:648
msgctxt "STR_PRINTOPTUI_PRINTPAGES"
msgid "Pa~ges:"
msgstr ""
#. rajyx
-#: sw/inc/strings.hrc:648
+#: sw/inc/strings.hrc:649
msgctxt "STR_PRINTOPTUI_PRINTSELECTION"
msgid "~Selection"
msgstr ""
#. 9EXcV
-#: sw/inc/strings.hrc:649
+#: sw/inc/strings.hrc:650
#, fuzzy
msgctxt "STR_PRINTOPTUI_PLACE_MARGINS"
msgid "Place in margins"
msgstr "সীমাবোৰত থওক"
#. NGQw3
-#: sw/inc/strings.hrc:651
+#: sw/inc/strings.hrc:652
#, fuzzy
msgctxt "STR_FORMULA_CALC"
msgid "Functions"
msgstr "ফাংকশ্বনসমূহ"
#. D3RCG
-#: sw/inc/strings.hrc:652
+#: sw/inc/strings.hrc:653
msgctxt "STR_FORMULA_CANCEL"
msgid "Cancel"
msgstr "বাতিল কৰক"
#. 3Tg3C
-#: sw/inc/strings.hrc:653
+#: sw/inc/strings.hrc:654
msgctxt "STR_FORMULA_APPLY"
msgid "Apply"
msgstr "প্ৰয়োগ কৰক"
#. UDkFb
-#: sw/inc/strings.hrc:654
+#: sw/inc/strings.hrc:655
msgctxt "STR_ACCESS_FORMULA_TOOLBAR"
msgid "Formula Tool Bar"
msgstr "সূত্র টুলবাৰ"
#. Z3CB5
-#: sw/inc/strings.hrc:655
+#: sw/inc/strings.hrc:656
msgctxt "STR_ACCESS_FORMULA_TYPE"
msgid "Formula Type"
msgstr ""
#. 3CCa7
-#: sw/inc/strings.hrc:656
+#: sw/inc/strings.hrc:657
#, fuzzy
msgctxt "STR_ACCESS_FORMULA_TEXT"
msgid "Formula Text"
msgstr "সূত্র লিখনী"
#. FXNer
-#: sw/inc/strings.hrc:658
+#: sw/inc/strings.hrc:659
msgctxt "STR_ACCESS_TL_GLOBAL"
msgid "Global View"
msgstr ""
#. aeeRP
-#: sw/inc/strings.hrc:659
+#: sw/inc/strings.hrc:660
msgctxt "STR_ACCESS_TL_CONTENT"
msgid "Content Navigation View"
msgstr ""
#. UAExA
-#: sw/inc/strings.hrc:660
+#: sw/inc/strings.hrc:661
#, fuzzy
msgctxt "STR_OUTLINE_LEVEL"
msgid "Outline Level"
msgstr "ৰূপৰেখা: স্তৰ "
#. yERK6
-#: sw/inc/strings.hrc:661
+#: sw/inc/strings.hrc:662
#, fuzzy
msgctxt "STR_DRAGMODE"
msgid "Drag Mode"
msgstr "ড্ৰেগ কৰাৰ প্ৰকাৰ"
#. PAB4k
-#: sw/inc/strings.hrc:662
+#: sw/inc/strings.hrc:663
msgctxt "STR_SEND_OUTLINE_TO_CLIPBOARD_ENTRY"
msgid "Send Outline to Clipboard"
msgstr ""
#. b5tPU
-#: sw/inc/strings.hrc:663
+#: sw/inc/strings.hrc:664
msgctxt "STR_OUTLINE_TRACKING"
msgid "Outline Tracking"
msgstr ""
#. qzXwn
-#: sw/inc/strings.hrc:664
+#: sw/inc/strings.hrc:665
msgctxt "STR_OUTLINE_TRACKING_DEFAULT"
msgid "Default"
msgstr ""
#. HGDgJ
-#: sw/inc/strings.hrc:665
+#: sw/inc/strings.hrc:666
msgctxt "STR_OUTLINE_TRACKING_FOCUS"
msgid "Focus"
msgstr ""
#. BYRpF
-#: sw/inc/strings.hrc:666
+#: sw/inc/strings.hrc:667
msgctxt "STR_OUTLINE_TRACKING_OFF"
msgid "Off"
msgstr ""
#. NGgt3
-#: sw/inc/strings.hrc:667
+#: sw/inc/strings.hrc:668
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle outline folding"
msgstr ""
#. 44jEc
-#: sw/inc/strings.hrc:668
+#: sw/inc/strings.hrc:669
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
msgstr ""
#. mnZA9
-#: sw/inc/strings.hrc:669
+#: sw/inc/strings.hrc:670
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle outline folding"
msgstr ""
#. rkD8H
-#: sw/inc/strings.hrc:670
+#: sw/inc/strings.hrc:671
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
msgstr ""
#. oBH6y
-#: sw/inc/strings.hrc:671
+#: sw/inc/strings.hrc:672
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_TOGGLE"
msgid "Toggle"
msgstr ""
#. YBDFD
-#: sw/inc/strings.hrc:672
+#: sw/inc/strings.hrc:673
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_SHOW_ALL"
msgid "Unfold All"
msgstr ""
#. Cj4js
-#: sw/inc/strings.hrc:673
+#: sw/inc/strings.hrc:674
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_HIDE_ALL"
msgid "Fold All"
msgstr ""
#. 9Fipd
-#: sw/inc/strings.hrc:675
+#: sw/inc/strings.hrc:676
msgctxt "STR_EXPANDALL"
msgid "Expand All"
msgstr ""
#. FxGVt
-#: sw/inc/strings.hrc:676
+#: sw/inc/strings.hrc:677
msgctxt "STR_COLLAPSEALL"
msgid "Collapse All"
msgstr ""
#. xvSRm
-#: sw/inc/strings.hrc:677
+#: sw/inc/strings.hrc:678
#, fuzzy
msgctxt "STR_HYPERLINK"
msgid "Insert as Hyperlink"
msgstr "হাইপাৰলিংক সুমুৱাওক"
#. sdfGe
-#: sw/inc/strings.hrc:678
+#: sw/inc/strings.hrc:679
msgctxt "STR_LINK_REGION"
msgid "Insert as Link"
msgstr "লিংক ৰূপে সুমুৱাওক"
#. Suaiz
-#: sw/inc/strings.hrc:679
+#: sw/inc/strings.hrc:680
msgctxt "STR_COPY_REGION"
msgid "Insert as Copy"
msgstr "কপি ৰূপে সুমুৱাওক"
#. VgdhT
-#: sw/inc/strings.hrc:680
+#: sw/inc/strings.hrc:681
msgctxt "STR_DISPLAY"
msgid "Display"
msgstr "প্রদর্শন কৰক"
#. 3VXp5
-#: sw/inc/strings.hrc:681
+#: sw/inc/strings.hrc:682
#, fuzzy
msgctxt "STR_ACTIVE_VIEW"
msgid "Active Window"
msgstr "সক্রিয় উইণ্ড'"
#. fAAUc
-#: sw/inc/strings.hrc:682
+#: sw/inc/strings.hrc:683
#, fuzzy
msgctxt "STR_HIDDEN"
msgid "hidden"
msgstr "লুকুৱাই থোৱা"
#. 3VWjq
-#: sw/inc/strings.hrc:683
+#: sw/inc/strings.hrc:684
#, fuzzy
msgctxt "STR_ACTIVE"
msgid "active"
msgstr "সক্রিয়"
#. YjPvg
-#: sw/inc/strings.hrc:684
+#: sw/inc/strings.hrc:685
#, fuzzy
msgctxt "STR_INACTIVE"
msgid "inactive"
msgstr "নিষ্ক্রিয়"
#. tBPKU
-#: sw/inc/strings.hrc:685
+#: sw/inc/strings.hrc:686
msgctxt "STR_EDIT_ENTRY"
msgid "Edit..."
msgstr "সম্পাদন কৰক..."
#. ppC87
-#: sw/inc/strings.hrc:686
+#: sw/inc/strings.hrc:687
#, fuzzy
msgctxt "STR_UPDATE"
msgid "~Update"
msgstr "আপডেট কৰক"
#. 44Esc
-#: sw/inc/strings.hrc:687
+#: sw/inc/strings.hrc:688
msgctxt "STR_EDIT_CONTENT"
msgid "Edit"
msgstr "সম্পাদনা"
#. w3ZrD
-#: sw/inc/strings.hrc:688
+#: sw/inc/strings.hrc:689
#, fuzzy
msgctxt "STR_EDIT_LINK"
msgid "Edit link"
msgstr "লিংকবোৰ সম্পাদনা কৰক"
#. xyPWE
-#: sw/inc/strings.hrc:689
+#: sw/inc/strings.hrc:690
msgctxt "STR_EDIT_INSERT"
msgid "Insert"
msgstr "সুমুৱাওক"
#. AT9SS
-#: sw/inc/strings.hrc:690
+#: sw/inc/strings.hrc:691
#, fuzzy
msgctxt "STR_INDEX"
msgid "~Index"
msgstr "অনুক্ৰমণিকা"
#. MnBLc
-#: sw/inc/strings.hrc:691
+#: sw/inc/strings.hrc:692
msgctxt "STR_FILE"
msgid "File"
msgstr "ফাইল"
#. DdBgh
-#: sw/inc/strings.hrc:692
+#: sw/inc/strings.hrc:693
#, fuzzy
msgctxt "STR_NEW_FILE"
msgid "New Document"
msgstr "প্ৰতিটো দস্তাবেজত"
#. aV9Uy
-#: sw/inc/strings.hrc:693
+#: sw/inc/strings.hrc:694
#, fuzzy
msgctxt "STR_INSERT_TEXT"
msgid "Text"
msgstr "টেক্সট"
#. 5rD3D
-#: sw/inc/strings.hrc:694
+#: sw/inc/strings.hrc:695
msgctxt "STR_DELETE"
msgid "Delete"
msgstr "মচি পেলাওক"
#. 9MrsU
-#: sw/inc/strings.hrc:695
+#: sw/inc/strings.hrc:696
#, fuzzy
msgctxt "STR_DELETE_ENTRY"
msgid "~Delete"
msgstr "মচি পেলাওক"
#. A28Rb
-#: sw/inc/strings.hrc:696
+#: sw/inc/strings.hrc:697
msgctxt "STR_UPDATE_SEL"
msgid "Selection"
msgstr "নিৰ্বাচন"
#. gRBxA
-#: sw/inc/strings.hrc:697
+#: sw/inc/strings.hrc:698
msgctxt "STR_UPDATE_INDEX"
msgid "Indexes"
msgstr "অনুক্ৰমনিকাবোৰ"
#. WKwLS
-#: sw/inc/strings.hrc:698
+#: sw/inc/strings.hrc:699
#, fuzzy
msgctxt "STR_UPDATE_LINK"
msgid "Links"
msgstr "সংযোগ কৰক"
#. TaaJK
-#: sw/inc/strings.hrc:699
+#: sw/inc/strings.hrc:700
msgctxt "STR_UPDATE_ALL"
msgid "All"
msgstr "সকলো"
#. HpMeb
-#: sw/inc/strings.hrc:701
+#: sw/inc/strings.hrc:702
#, fuzzy
msgctxt "STR_INVISIBLE"
msgid "hidden"
msgstr "লুকুৱাই থোৱা"
#. XcCnB
-#: sw/inc/strings.hrc:702
+#: sw/inc/strings.hrc:703
#, fuzzy
msgctxt "STR_BROKEN_LINK"
msgid "File not found: "
msgstr "ফিল্টাৰ বিচাৰি পোৱা নাই."
#. UC53U
-#: sw/inc/strings.hrc:704
+#: sw/inc/strings.hrc:705
msgctxt "STR_RESOLVED"
msgid "RESOLVED"
msgstr ""
#. 3ceMF
-#: sw/inc/strings.hrc:706
+#: sw/inc/strings.hrc:707
#, fuzzy
msgctxt "STR_MARGIN_TOOLTIP_LEFT"
msgid "Left: "
msgstr "বাঁও: "
#. EiXF2
-#: sw/inc/strings.hrc:707
+#: sw/inc/strings.hrc:708
#, fuzzy
msgctxt "STR_MARGIN_TOOLTIP_RIGHT"
msgid ". Right: "
msgstr ". সোঁ: "
#. UFpVa
-#: sw/inc/strings.hrc:708
+#: sw/inc/strings.hrc:709
#, fuzzy
msgctxt "STR_MARGIN_TOOLTIP_INNER"
msgid "Inner: "
msgstr "অভ্যন্তৰীণ: "
#. XE7Wb
-#: sw/inc/strings.hrc:709
+#: sw/inc/strings.hrc:710
#, fuzzy
msgctxt "STR_MARGIN_TOOLTIP_OUTER"
msgid ". Outer: "
msgstr ". বাহিৰ: "
#. 3A8Vg
-#: sw/inc/strings.hrc:710
+#: sw/inc/strings.hrc:711
#, fuzzy
msgctxt "STR_MARGIN_TOOLTIP_TOP"
msgid ". Top: "
msgstr ". ওপৰ: "
#. dRhyZ
-#: sw/inc/strings.hrc:711
+#: sw/inc/strings.hrc:712
#, fuzzy
msgctxt "STR_MARGIN_TOOLTIP_BOT"
msgid ". Bottom: "
@@ -6289,920 +6295,920 @@ msgstr ". তলৰ: "
#. XuC4Y
#. Error calculator
-#: sw/inc/strings.hrc:714
+#: sw/inc/strings.hrc:715
msgctxt "STR_POSTIT_PAGE"
msgid "Page"
msgstr "পৃষ্ঠা"
#. AeDYh
-#: sw/inc/strings.hrc:715
+#: sw/inc/strings.hrc:716
msgctxt "STR_POSTIT_LINE"
msgid "Line"
msgstr "ৰেখা"
#. kfJG6
-#: sw/inc/strings.hrc:716
+#: sw/inc/strings.hrc:717
msgctxt "STR_POSTIT_AUTHOR"
msgid "Author"
msgstr "লেখক"
#. gejqG
-#: sw/inc/strings.hrc:717
+#: sw/inc/strings.hrc:718
msgctxt "STR_CALC_SYNTAX"
msgid "** Syntax Error **"
msgstr ""
#. q6dUT
-#: sw/inc/strings.hrc:718
+#: sw/inc/strings.hrc:719
msgctxt "STR_CALC_ZERODIV"
msgid "** Division by zero **"
msgstr ""
#. HSo6d
-#: sw/inc/strings.hrc:719
+#: sw/inc/strings.hrc:720
msgctxt "STR_CALC_BRACK"
msgid "** Wrong use of brackets **"
msgstr ""
#. jcNfg
-#: sw/inc/strings.hrc:720
+#: sw/inc/strings.hrc:721
msgctxt "STR_CALC_POW"
msgid "** Square function overflow **"
msgstr ""
#. C453V
-#: sw/inc/strings.hrc:721
+#: sw/inc/strings.hrc:722
msgctxt "STR_CALC_OVERFLOW"
msgid "** Overflow **"
msgstr ""
#. KEQfz
-#: sw/inc/strings.hrc:722
+#: sw/inc/strings.hrc:723
msgctxt "STR_CALC_DEFAULT"
msgid "** Error **"
msgstr ""
#. hxrg9
-#: sw/inc/strings.hrc:723
+#: sw/inc/strings.hrc:724
msgctxt "STR_CALC_ERROR"
msgid "** Expression is faulty **"
msgstr ""
#. 2yBhF
-#: sw/inc/strings.hrc:724
+#: sw/inc/strings.hrc:725
msgctxt "STR_GETREFFLD_REFITEMNOTFOUND"
msgid "Error: Reference source not found"
msgstr ""
#. jgRW7
-#: sw/inc/strings.hrc:725
+#: sw/inc/strings.hrc:726
msgctxt "STR_TEMPLATE_NONE"
msgid "None"
msgstr "কোনো নহয়"
#. KRD6s
-#: sw/inc/strings.hrc:726
+#: sw/inc/strings.hrc:727
msgctxt "STR_FIELD_FIXED"
msgid "(fixed)"
msgstr ""
#. FCRUB
-#: sw/inc/strings.hrc:727
+#: sw/inc/strings.hrc:728
msgctxt "STR_DURATION_FORMAT"
msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#. ocA84
-#: sw/inc/strings.hrc:728
+#: sw/inc/strings.hrc:729
msgctxt "STR_TOI"
msgid "Alphabetical Index"
msgstr ""
#. GDCRF
-#: sw/inc/strings.hrc:729
+#: sw/inc/strings.hrc:730
#, fuzzy
msgctxt "STR_TOU"
msgid "User-Defined"
msgstr "ব্যৱহাকাৰী বিৱৰীত"
#. vnaNc
-#: sw/inc/strings.hrc:730
+#: sw/inc/strings.hrc:731
#, fuzzy
msgctxt "STR_TOC"
msgid "Table of Contents"
msgstr "টেবুলৰ বিষয়বোৰ"
#. BESjb
-#: sw/inc/strings.hrc:731
+#: sw/inc/strings.hrc:732
#, fuzzy
msgctxt "STR_TOX_AUTH"
msgid "Bibliography"
msgstr "গ্রন্থ-সূচী 1"
#. ZFBUD
-#: sw/inc/strings.hrc:732
+#: sw/inc/strings.hrc:733
msgctxt "STR_TOX_CITATION"
msgid "Citation"
msgstr "উদ্ধৃতি"
#. WAs8q
-#: sw/inc/strings.hrc:733
+#: sw/inc/strings.hrc:734
msgctxt "STR_TOX_TBL"
msgid "Index of Tables"
msgstr ""
#. NFzTx
-#: sw/inc/strings.hrc:734
+#: sw/inc/strings.hrc:735
msgctxt "STR_TOX_OBJ"
msgid "Table of Objects"
msgstr ""
#. mSyms
-#: sw/inc/strings.hrc:735
+#: sw/inc/strings.hrc:736
msgctxt "STR_TOX_ILL"
msgid "Table of Figures"
msgstr ""
#. TspkU
#. SubType DocInfo
-#: sw/inc/strings.hrc:737
+#: sw/inc/strings.hrc:738
msgctxt "FLD_DOCINFO_TITEL"
msgid "Title"
msgstr "শীৰ্ষক"
#. ziEpC
-#: sw/inc/strings.hrc:738
+#: sw/inc/strings.hrc:739
msgctxt "FLD_DOCINFO_THEMA"
msgid "Subject"
msgstr "বিষয়"
#. FCVZS
-#: sw/inc/strings.hrc:739
+#: sw/inc/strings.hrc:740
msgctxt "FLD_DOCINFO_KEYS"
msgid "Keywords"
msgstr "প্রধান শব্দবোৰ"
#. kHC7q
-#: sw/inc/strings.hrc:740
+#: sw/inc/strings.hrc:741
#, fuzzy
msgctxt "FLD_DOCINFO_COMMENT"
msgid "Comments"
msgstr "মন্তব্যবোৰ"
#. i6psX
-#: sw/inc/strings.hrc:741
+#: sw/inc/strings.hrc:742
#, fuzzy
msgctxt "FLD_DOCINFO_CREATE"
msgid "Created"
msgstr "সৃষ্টি কৰা হল:"
#. L2Bxp
-#: sw/inc/strings.hrc:742
+#: sw/inc/strings.hrc:743
msgctxt "FLD_DOCINFO_CHANGE"
msgid "Modified"
msgstr "ৰূপান্তৰিত"
#. D2YKS
-#: sw/inc/strings.hrc:743
+#: sw/inc/strings.hrc:744
#, fuzzy
msgctxt "FLD_DOCINFO_PRINT"
msgid "Last printed"
msgstr "সৰ্বশেষ প্ৰিন্টেড (_n):"
#. QtuZM
-#: sw/inc/strings.hrc:744
+#: sw/inc/strings.hrc:745
msgctxt "FLD_DOCINFO_DOCNO"
msgid "Revision number"
msgstr "পুনৰীক্ষণৰ সংখ্যা"
#. YDFbi
-#: sw/inc/strings.hrc:745
+#: sw/inc/strings.hrc:746
msgctxt "FLD_DOCINFO_EDIT"
msgid "Total editing time"
msgstr "সম্পাদনাৰ মুঠ সময়"
#. EpZ9C
-#: sw/inc/strings.hrc:746
+#: sw/inc/strings.hrc:747
msgctxt "STR_PAGEDESC_NAME"
msgid "Convert $(ARG1)"
msgstr ""
#. nY3NU
-#: sw/inc/strings.hrc:747
+#: sw/inc/strings.hrc:748
msgctxt "STR_PAGEDESC_FIRSTNAME"
msgid "First convert $(ARG1)"
msgstr ""
#. eQtGV
-#: sw/inc/strings.hrc:748
+#: sw/inc/strings.hrc:749
msgctxt "STR_PAGEDESC_FOLLOWNAME"
msgid "Next convert $(ARG1)"
msgstr ""
#. aBwxC
-#: sw/inc/strings.hrc:749
+#: sw/inc/strings.hrc:750
msgctxt "STR_AUTH_TYPE_ARTICLE"
msgid "Article"
msgstr "দফা"
#. di8ud
-#: sw/inc/strings.hrc:750
+#: sw/inc/strings.hrc:751
msgctxt "STR_AUTH_TYPE_BOOK"
msgid "Book"
msgstr "কিতাপ"
#. GD5KJ
-#: sw/inc/strings.hrc:751
+#: sw/inc/strings.hrc:752
#, fuzzy
msgctxt "STR_AUTH_TYPE_BOOKLET"
msgid "Brochures"
msgstr "ক্ষুদ্র পুস্তিকা (~u)"
#. mfFSf
-#: sw/inc/strings.hrc:752
+#: sw/inc/strings.hrc:753
msgctxt "STR_AUTH_TYPE_CONFERENCE"
msgid "Conference proceedings"
msgstr "সন্মিলনৰ কার্য-ব্যৱস্থা"
#. Et2Px
-#: sw/inc/strings.hrc:753
+#: sw/inc/strings.hrc:754
msgctxt "STR_AUTH_TYPE_INBOOK"
msgid "Book excerpt"
msgstr "কিতাপৰ উদ্ধৃতি"
#. ys2B8
-#: sw/inc/strings.hrc:754
+#: sw/inc/strings.hrc:755
msgctxt "STR_AUTH_TYPE_INCOLLECTION"
msgid "Book excerpt with title"
msgstr "শিৰোনামৰ সৈতে কিতাপৰ উদ্ধৃতি"
#. mdEqj
-#: sw/inc/strings.hrc:755
+#: sw/inc/strings.hrc:756
msgctxt "STR_AUTH_TYPE_INPROCEEDINGS"
msgid "Conference proceedings"
msgstr "সন্মিলনৰ কার্য-ব্যৱস্থা"
#. jNmVD
-#: sw/inc/strings.hrc:756
+#: sw/inc/strings.hrc:757
msgctxt "STR_AUTH_TYPE_JOURNAL"
msgid "Journal"
msgstr "জার্নেল"
#. M3xkM
-#: sw/inc/strings.hrc:757
+#: sw/inc/strings.hrc:758
msgctxt "STR_AUTH_TYPE_MANUAL"
msgid "Techn. documentation"
msgstr "পাৰিভাষিক ডকুমেন্টেশ্বন"
#. EJAj4
-#: sw/inc/strings.hrc:758
+#: sw/inc/strings.hrc:759
msgctxt "STR_AUTH_TYPE_MASTERSTHESIS"
msgid "Thesis"
msgstr "থেছিছ"
#. NoUCv
-#: sw/inc/strings.hrc:759
+#: sw/inc/strings.hrc:760
msgctxt "STR_AUTH_TYPE_MISC"
msgid "Miscellaneous"
msgstr "সানমিহলি"
#. qNGGE
-#: sw/inc/strings.hrc:760
+#: sw/inc/strings.hrc:761
msgctxt "STR_AUTH_TYPE_PHDTHESIS"
msgid "Dissertation"
msgstr "আলোচনা"
#. L7W7R
-#: sw/inc/strings.hrc:761
+#: sw/inc/strings.hrc:762
msgctxt "STR_AUTH_TYPE_PROCEEDINGS"
msgid "Conference proceedings"
msgstr "সন্মিলনৰ কার্য-ব্যৱস্থা"
#. X8bGG
-#: sw/inc/strings.hrc:762
+#: sw/inc/strings.hrc:763
msgctxt "STR_AUTH_TYPE_TECHREPORT"
msgid "Research report"
msgstr "গৱেষণাৰ ৰিপৰ্ট"
#. 4dDC9
-#: sw/inc/strings.hrc:763
+#: sw/inc/strings.hrc:764
msgctxt "STR_AUTH_TYPE_UNPUBLISHED"
msgid "Unpublished"
msgstr "অপ্ৰকাশিত"
#. Gb38d
-#: sw/inc/strings.hrc:764
+#: sw/inc/strings.hrc:765
msgctxt "STR_AUTH_TYPE_EMAIL"
msgid "Email"
msgstr ""
#. 9HKD6
-#: sw/inc/strings.hrc:765
+#: sw/inc/strings.hrc:766
#, fuzzy
msgctxt "STR_AUTH_TYPE_WWW"
msgid "WWW document"
msgstr "প্ৰতিটো দস্তাবেজত"
#. qA449
-#: sw/inc/strings.hrc:766
+#: sw/inc/strings.hrc:767
msgctxt "STR_AUTH_TYPE_CUSTOM1"
msgid "User-defined1"
msgstr "ব্যৱহাৰকৰ্তাৰ দ্বাৰা সংজ্ঞা নিৰূপিত1"
#. nyzxz
-#: sw/inc/strings.hrc:767
+#: sw/inc/strings.hrc:768
msgctxt "STR_AUTH_TYPE_CUSTOM2"
msgid "User-defined2"
msgstr "ব্যৱহাৰকৰ্তাৰ দ্বাৰা সংজ্ঞা নিৰূপিত2"
#. cCFTF
-#: sw/inc/strings.hrc:768
+#: sw/inc/strings.hrc:769
msgctxt "STR_AUTH_TYPE_CUSTOM3"
msgid "User-defined3"
msgstr "ব্যৱহাৰকৰ্তাৰ দ্বাৰা সংজ্ঞা নিৰূপিত3"
#. mrqJC
-#: sw/inc/strings.hrc:769
+#: sw/inc/strings.hrc:770
msgctxt "STR_AUTH_TYPE_CUSTOM4"
msgid "User-defined4"
msgstr "ব্যৱহাৰকৰ্তাৰ দ্বাৰা সংজ্ঞা নিৰূপিত4"
#. fFs86
-#: sw/inc/strings.hrc:770
+#: sw/inc/strings.hrc:771
msgctxt "STR_AUTH_TYPE_CUSTOM5"
msgid "User-defined5"
msgstr "ব্যৱহাৰকৰ্তাৰ দ্বাৰা সংজ্ঞা নিৰূপিত5"
#. nsCwi
-#: sw/inc/strings.hrc:771
+#: sw/inc/strings.hrc:772
msgctxt "STR_AUTH_FIELD_IDENTIFIER"
msgid "Short name"
msgstr "চুটি নাম"
#. CpKgc
-#: sw/inc/strings.hrc:772
+#: sw/inc/strings.hrc:773
#, fuzzy
msgctxt "STR_AUTH_FIELD_AUTHORITY_TYPE"
msgid "Type"
msgstr "প্ৰকাৰ"
#. kUGDr
-#: sw/inc/strings.hrc:773
+#: sw/inc/strings.hrc:774
#, fuzzy
msgctxt "STR_AUTH_FIELD_ADDRESS"
msgid "Address"
msgstr "এড্রেছী"
#. DquVQ
-#: sw/inc/strings.hrc:774
+#: sw/inc/strings.hrc:775
#, fuzzy
msgctxt "STR_AUTH_FIELD_ANNOTE"
msgid "Annotation"
msgstr "টীকাকৰণ (~o)"
#. sduuV
-#: sw/inc/strings.hrc:775
+#: sw/inc/strings.hrc:776
#, fuzzy
msgctxt "STR_AUTH_FIELD_AUTHOR"
msgid "Author(s)"
msgstr "লেখক(বোৰ)"
#. fXvz6
-#: sw/inc/strings.hrc:776
+#: sw/inc/strings.hrc:777
#, fuzzy
msgctxt "STR_AUTH_FIELD_BOOKTITLE"
msgid "Book title"
msgstr "কিতাপৰ শিৰোনাম (~B)"
#. c8PFE
-#: sw/inc/strings.hrc:777
+#: sw/inc/strings.hrc:778
msgctxt "STR_AUTH_FIELD_CHAPTER"
msgid "Chapter"
msgstr "অধ্যায়"
#. GXqxF
-#: sw/inc/strings.hrc:778
+#: sw/inc/strings.hrc:779
#, fuzzy
msgctxt "STR_AUTH_FIELD_EDITION"
msgid "Edition"
msgstr "সংস্কৰণ (~i)"
#. p7A3p
-#: sw/inc/strings.hrc:779
+#: sw/inc/strings.hrc:780
#, fuzzy
msgctxt "STR_AUTH_FIELD_EDITOR"
msgid "Editor"
msgstr "সম্পাদক"
#. aAFEz
-#: sw/inc/strings.hrc:780
+#: sw/inc/strings.hrc:781
#, fuzzy
msgctxt "STR_AUTH_FIELD_HOWPUBLISHED"
msgid "Publication type"
msgstr "প্ৰকাশনৰ প্ৰকাৰ (~y)"
#. 8DwdJ
-#: sw/inc/strings.hrc:781
+#: sw/inc/strings.hrc:782
#, fuzzy
msgctxt "STR_AUTH_FIELD_INSTITUTION"
msgid "Institution"
msgstr "অনুষ্ঠান (~u)"
#. VWNxy
-#: sw/inc/strings.hrc:782
+#: sw/inc/strings.hrc:783
msgctxt "STR_AUTH_FIELD_JOURNAL"
msgid "Journal"
msgstr "জার্নেল"
#. Da4fW
-#: sw/inc/strings.hrc:783
+#: sw/inc/strings.hrc:784
msgctxt "STR_AUTH_FIELD_MONTH"
msgid "Month"
msgstr "মাহ"
#. SdSBt
-#: sw/inc/strings.hrc:784
+#: sw/inc/strings.hrc:785
msgctxt "STR_AUTH_FIELD_NOTE"
msgid "Note"
msgstr "টিপ্পনী"
#. MZYpD
-#: sw/inc/strings.hrc:785
+#: sw/inc/strings.hrc:786
msgctxt "STR_AUTH_FIELD_NUMBER"
msgid "Number"
msgstr "সংখ্যা"
#. ZB7Go
-#: sw/inc/strings.hrc:786
+#: sw/inc/strings.hrc:787
#, fuzzy
msgctxt "STR_AUTH_FIELD_ORGANIZATIONS"
msgid "Organization"
msgstr "প্ৰতিষ্ঠান (~z)"
#. C4CdP
-#: sw/inc/strings.hrc:787
+#: sw/inc/strings.hrc:788
#, fuzzy
msgctxt "STR_AUTH_FIELD_PAGES"
msgid "Page(s)"
msgstr "পৃষ্ঠা(বোৰ) (~g)"
#. yFPFa
-#: sw/inc/strings.hrc:788
+#: sw/inc/strings.hrc:789
msgctxt "STR_AUTH_FIELD_PUBLISHER"
msgid "Publisher"
msgstr "প্ৰকাশক"
#. d9u3p
-#: sw/inc/strings.hrc:789
+#: sw/inc/strings.hrc:790
#, fuzzy
msgctxt "STR_AUTH_FIELD_SCHOOL"
msgid "University"
msgstr "বিশ্ববিদ্যালয়"
#. Qxsdb
-#: sw/inc/strings.hrc:790
+#: sw/inc/strings.hrc:791
#, fuzzy
msgctxt "STR_AUTH_FIELD_SERIES"
msgid "Series"
msgstr "শৃংখলাবোৰ (~r)"
#. YhXPg
-#: sw/inc/strings.hrc:791
+#: sw/inc/strings.hrc:792
msgctxt "STR_AUTH_FIELD_TITLE"
msgid "Title"
msgstr "শীৰ্ষক"
#. qEBhL
-#: sw/inc/strings.hrc:792
+#: sw/inc/strings.hrc:793
#, fuzzy
msgctxt "STR_AUTH_FIELD_TYPE"
msgid "Type of report"
msgstr "সংবাদৰ ধৰণ (~p)"
#. Sij9w
-#: sw/inc/strings.hrc:793
+#: sw/inc/strings.hrc:794
msgctxt "STR_AUTH_FIELD_VOLUME"
msgid "Volume"
msgstr "ভলিউম"
#. K8miv
-#: sw/inc/strings.hrc:794
+#: sw/inc/strings.hrc:795
#, fuzzy
msgctxt "STR_AUTH_FIELD_YEAR"
msgid "Year"
msgstr "মৰমৰ"
#. pFMSV
-#: sw/inc/strings.hrc:795
+#: sw/inc/strings.hrc:796
msgctxt "STR_AUTH_FIELD_URL"
msgid "URL"
msgstr "URL"
#. xFG3c
-#: sw/inc/strings.hrc:796
+#: sw/inc/strings.hrc:797
msgctxt "STR_AUTH_FIELD_CUSTOM1"
msgid "User-defined1"
msgstr "ব্যৱহাৰকৰ্তাৰ দ্বাৰা সংজ্ঞা নিৰূপিত1"
#. wtDyU
-#: sw/inc/strings.hrc:797
+#: sw/inc/strings.hrc:798
msgctxt "STR_AUTH_FIELD_CUSTOM2"
msgid "User-defined2"
msgstr "ব্যৱহাৰকৰ্তাৰ দ্বাৰা সংজ্ঞা নিৰূপিত2"
#. VH3Se
-#: sw/inc/strings.hrc:798
+#: sw/inc/strings.hrc:799
msgctxt "STR_AUTH_FIELD_CUSTOM3"
msgid "User-defined3"
msgstr "ব্যৱহাৰকৰ্তাৰ দ্বাৰা সংজ্ঞা নিৰূপিত3"
#. twuKb
-#: sw/inc/strings.hrc:799
+#: sw/inc/strings.hrc:800
msgctxt "STR_AUTH_FIELD_CUSTOM4"
msgid "User-defined4"
msgstr "ব্যৱহাৰকৰ্তাৰ দ্বাৰা সংজ্ঞা নিৰূপিত4"
#. WAo7Z
-#: sw/inc/strings.hrc:800
+#: sw/inc/strings.hrc:801
msgctxt "STR_AUTH_FIELD_CUSTOM5"
msgid "User-defined5"
msgstr "ব্যৱহাৰকৰ্তাৰ দ্বাৰা সংজ্ঞা নিৰূপিত5"
#. 3r6Wg
-#: sw/inc/strings.hrc:801
+#: sw/inc/strings.hrc:802
#, fuzzy
msgctxt "STR_AUTH_FIELD_ISBN"
msgid "ISBN"
msgstr "ISBN (~I)"
#. BhDrt
-#: sw/inc/strings.hrc:802
+#: sw/inc/strings.hrc:803
msgctxt "STR_AUTH_FIELD_LOCAL_URL"
msgid "Local copy"
msgstr ""
#. eFnnx
-#: sw/inc/strings.hrc:804
+#: sw/inc/strings.hrc:805
msgctxt "STR_IDXMRK_EDIT"
msgid "Edit Index Entry"
msgstr "সূচী প্রৱিষ্টিৰ সম্পাদনা কৰক"
#. EHTHH
-#: sw/inc/strings.hrc:805
+#: sw/inc/strings.hrc:806
msgctxt "STR_IDXMRK_INSERT"
msgid "Insert Index Entry"
msgstr "সূচী প্রৱিষ্টি ভৰাওক"
#. D2gkA
-#: sw/inc/strings.hrc:806
+#: sw/inc/strings.hrc:807
#, fuzzy
msgctxt "STR_QUERY_CHANGE_AUTH_ENTRY"
msgid "The document already contains the bibliography entry but with different data. Do you want to adjust the existing entries?"
msgstr "দস্তাবেজটোত ইতিমধ্যে গ্রন্থ-সূচী প্রৱিষ্টি আছে কিন্তু বেলেগ ডাটাৰ সৈতে. আপুনি বর্তি থকা প্রৱিষ্টিবোৰ সমাযোজন কৰিব বিচাৰে নেকি?"
#. mK84T
-#: sw/inc/strings.hrc:808
+#: sw/inc/strings.hrc:809
msgctxt "STR_COMMENTS_LABEL"
msgid "Comments"
msgstr "মন্তব্যসমূহ"
#. fwecS
-#: sw/inc/strings.hrc:809
+#: sw/inc/strings.hrc:810
msgctxt "STR_SHOW_COMMENTS"
msgid "Show comments"
msgstr "মন্তব্যসমূহ দেখুৱাওক"
#. HkUvy
-#: sw/inc/strings.hrc:810
+#: sw/inc/strings.hrc:811
msgctxt "STR_HIDE_COMMENTS"
msgid "Hide comments"
msgstr "মন্তব্যসমূহ লুকাওক"
#. FcmEy
-#: sw/inc/strings.hrc:812
+#: sw/inc/strings.hrc:813
msgctxt "STR_DOUBLE_SHORTNAME"
msgid "Shortcut name already exists. Please choose another name."
msgstr "চমুপথৰ নাম ইতিমধ্যে আছে. এটা বেলেগ নাম বাছনী কৰক."
#. VhMST
-#: sw/inc/strings.hrc:813
+#: sw/inc/strings.hrc:814
msgctxt "STR_QUERY_DELETE"
msgid "Delete AutoText?"
msgstr "স্বয়ংক্ৰিয় টেক্সট ডিলিট কৰিব নেকি?"
#. E5MLr
-#: sw/inc/strings.hrc:814
+#: sw/inc/strings.hrc:815
msgctxt "STR_QUERY_DELETE_GROUP1"
msgid "Delete the category "
msgstr "বর্গটো মচি পেলাওক "
#. qndNh
-#: sw/inc/strings.hrc:815
+#: sw/inc/strings.hrc:816
msgctxt "STR_QUERY_DELETE_GROUP2"
msgid "?"
msgstr "?"
#. B6xah
-#: sw/inc/strings.hrc:816
+#: sw/inc/strings.hrc:817
msgctxt "STR_GLOSSARY"
msgid "AutoText :"
msgstr "স্বয়ংক্ৰিয় টেক্সট:"
#. ChetY
-#: sw/inc/strings.hrc:817
+#: sw/inc/strings.hrc:818
msgctxt "STR_SAVE_GLOSSARY"
msgid "Save AutoText"
msgstr "স্বয়ংক্ৰিয় টেক্সট ছেভ কৰক"
#. QxAiF
-#: sw/inc/strings.hrc:818
+#: sw/inc/strings.hrc:819
msgctxt "STR_NO_GLOSSARIES"
msgid "There is no AutoText in this file."
msgstr "এই ফাইলটোত স্বয়ংক্ৰিয় টেক্সট নাই."
#. sG8Xt
-#: sw/inc/strings.hrc:819
+#: sw/inc/strings.hrc:820
msgctxt "STR_MY_AUTOTEXT"
msgid "My AutoText"
msgstr "মোৰ স্বলিখনী"
#. GaoqR
-#: sw/inc/strings.hrc:821
+#: sw/inc/strings.hrc:822
msgctxt "STR_NOGLOS"
msgid "AutoText for Shortcut '%1' not found."
msgstr "চৰ্টকাট '%1' -ৰ কাৰণে স্বলিখনি পোৱা নগল।"
#. MwUEP
-#: sw/inc/strings.hrc:822
+#: sw/inc/strings.hrc:823
msgctxt "STR_NO_TABLE"
msgid "A table with no rows or no cells cannot be inserted"
msgstr ""
#. AawM4
-#: sw/inc/strings.hrc:823
+#: sw/inc/strings.hrc:824
msgctxt "STR_TABLE_TOO_LARGE"
msgid "The table cannot be inserted because it is too large"
msgstr ""
#. GGo8i
-#: sw/inc/strings.hrc:824
+#: sw/inc/strings.hrc:825
msgctxt "STR_ERR_INSERT_GLOS"
msgid "AutoText could not be created."
msgstr "স্বয়ংক্ৰিয় টেক্সট সৃষ্টি কৰিব পৰা নগ'ল."
#. DCPSB
-#: sw/inc/strings.hrc:825
+#: sw/inc/strings.hrc:826
msgctxt "STR_CLPBRD_FORMAT_ERROR"
msgid "Requested clipboard format is not available."
msgstr "অনুগ্ৰহ কৰা ক্লিপবৰ্ড ফৰ্মেটটো মজুত নাই."
#. YxCCF
-#: sw/inc/strings.hrc:826
+#: sw/inc/strings.hrc:827
msgctxt "STR_PRIVATETEXT"
msgid "%PRODUCTNAME %PRODUCTVERSION Text Document"
msgstr ""
#. 8ygN3
-#: sw/inc/strings.hrc:827
+#: sw/inc/strings.hrc:828
msgctxt "STR_PRIVATEGRAPHIC"
msgid "Image (%PRODUCTNAME %PRODUCTVERSION Text Document)"
msgstr ""
#. ewPPB
-#: sw/inc/strings.hrc:828
+#: sw/inc/strings.hrc:829
msgctxt "STR_PRIVATEOLE"
msgid "Object (%PRODUCTNAME %PRODUCTVERSION Text Document)"
msgstr ""
#. 9VEc3
-#: sw/inc/strings.hrc:829
+#: sw/inc/strings.hrc:830
msgctxt "STR_DDEFORMAT"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
#. svrE7
-#: sw/inc/strings.hrc:831
+#: sw/inc/strings.hrc:832
msgctxt "STR_DELETE_ALL_NOTES"
msgid "All Comments"
msgstr "সকলো মন্তব্য"
#. YGNN4
-#: sw/inc/strings.hrc:832
+#: sw/inc/strings.hrc:833
msgctxt "STR_FORMAT_ALL_NOTES"
msgid "All Comments"
msgstr "সকলো মন্তব্য"
#. GDH49
-#: sw/inc/strings.hrc:833
+#: sw/inc/strings.hrc:834
msgctxt "STR_DELETE_AUTHOR_NOTES"
msgid "Comments by "
msgstr "মন্তব্য দিছে "
#. RwAcm
-#: sw/inc/strings.hrc:834
+#: sw/inc/strings.hrc:835
msgctxt "STR_NODATE"
msgid "(no date)"
msgstr "(no date)"
#. ytxKG
-#: sw/inc/strings.hrc:835
+#: sw/inc/strings.hrc:836
msgctxt "STR_NOAUTHOR"
msgid "(no author)"
msgstr "লেখক"
#. nAwMG
-#: sw/inc/strings.hrc:836
+#: sw/inc/strings.hrc:837
msgctxt "STR_REPLY"
msgid "Reply to $1"
msgstr "$1 লৈ উত্তৰ দিয়ক"
#. CVVa6
-#: sw/inc/strings.hrc:838
+#: sw/inc/strings.hrc:839
msgctxt "ST_TITLE_EDIT"
msgid "Edit Address Block"
msgstr "ঠিকনা ব্লক সম্পাদনা কৰক"
#. njGGA
-#: sw/inc/strings.hrc:839
+#: sw/inc/strings.hrc:840
msgctxt "ST_TITLE_MALE"
msgid "Custom Salutation (Male Recipients)"
msgstr "স্বনিৰ্বাচিত অভিবাদন (পুৰুষ প্ৰাপক)"
#. ZVuKY
-#: sw/inc/strings.hrc:840
+#: sw/inc/strings.hrc:841
msgctxt "ST_TITLE_FEMALE"
msgid "Custom Salutation (Female Recipients)"
msgstr "স্বনিৰ্বাচিত অভিবাদন (মহিলা প্ৰাপক)"
#. h4yuq
-#: sw/inc/strings.hrc:841
+#: sw/inc/strings.hrc:842
msgctxt "ST_SALUTATIONELEMENTS"
msgid "Salutation e~lements"
msgstr "অভিবাদন উপাদানবোৰ (~l)"
#. kWhqT
-#: sw/inc/strings.hrc:842
+#: sw/inc/strings.hrc:843
msgctxt "ST_INSERTSALUTATIONFIELD"
msgid "Add to salutation"
msgstr "অভিবাদনৰ লগত যোগ কৰক"
#. hvF3V
-#: sw/inc/strings.hrc:843
+#: sw/inc/strings.hrc:844
msgctxt "ST_REMOVESALUTATIONFIELD"
msgid "Remove from salutation"
msgstr "অভিবাদনৰ পৰা আঁতৰাওক"
#. A6XaR
-#: sw/inc/strings.hrc:844
+#: sw/inc/strings.hrc:845
msgctxt "ST_DRAGSALUTATION"
msgid "1. ~Drag salutation elements into the box below"
msgstr "1. তলৰ বাকচটোলৈ অভিবাদন উপাদানবোৰ ড্ৰেগ কৰক (~D)"
#. 4VJWL
-#: sw/inc/strings.hrc:845
+#: sw/inc/strings.hrc:846
msgctxt "ST_SALUTATION"
msgid "Salutation"
msgstr "অভিবাদন"
#. Vj6XT
-#: sw/inc/strings.hrc:846
+#: sw/inc/strings.hrc:847
msgctxt "ST_PUNCTUATION"
msgid "Punctuation Mark"
msgstr "যতি চিহ্ন"
#. bafeG
-#: sw/inc/strings.hrc:847
+#: sw/inc/strings.hrc:848
msgctxt "ST_TEXT"
msgid "Text"
msgstr "লিখনি"
#. tt6sA
-#: sw/inc/strings.hrc:848
+#: sw/inc/strings.hrc:849
#, fuzzy
msgctxt "ST_SALUTATIONMATCHING"
msgid "Assign the fields from your data source to match the salutation elements."
msgstr "ঠিকনা উপাদানবোৰ মিলাবলৈ আপোনাৰ ডাটা উত্সৰ পৰা ফিল্ডবোৰ নির্ধাৰণ কৰক."
#. zrUsN
-#: sw/inc/strings.hrc:849
+#: sw/inc/strings.hrc:850
msgctxt "ST_SALUTATIONPREVIEW"
msgid "Salutation preview"
msgstr "অভিবাদনৰ পূৰ্বদৃশ্য"
#. 2UVE6
-#: sw/inc/strings.hrc:850
+#: sw/inc/strings.hrc:851
msgctxt "ST_ADDRESSELEMENT"
msgid "Address elements"
msgstr "ঠিকনা উপাদানবোৰ"
#. Bd6pd
-#: sw/inc/strings.hrc:851
+#: sw/inc/strings.hrc:852
msgctxt "ST_SALUTATIONELEMENT"
msgid "Salutation elements"
msgstr "অভিবাদন উপাদানবোৰ"
#. 9krzf
-#: sw/inc/strings.hrc:852
+#: sw/inc/strings.hrc:853
msgctxt "ST_MATCHESTO"
msgid "Matches to field:"
msgstr "ফিল্ডলৈ মিলাওক:"
#. oahCQ
-#: sw/inc/strings.hrc:853
+#: sw/inc/strings.hrc:854
msgctxt "ST_PREVIEW"
msgid "Preview"
msgstr "পূৰ্বদৃশ্য"
#. ijdxe
-#: sw/inc/strings.hrc:854
+#: sw/inc/strings.hrc:855
msgctxt "ST_DELETE_CONFIRM"
msgid "Do you want to delete this registered data source?"
msgstr ""
#. kE5C3
-#: sw/inc/strings.hrc:856
+#: sw/inc/strings.hrc:857
msgctxt "STR_NOTASSIGNED"
msgid " not yet matched "
msgstr " এতিয়ালৈকে পুনৰুদ্ধাৰ হোৱা নাই "
#. Y6FhG
-#: sw/inc/strings.hrc:857
+#: sw/inc/strings.hrc:858
msgctxt "STR_FILTER_ALL"
msgid "All files"
msgstr "সকলো ফাইল"
#. 7cNjh
-#: sw/inc/strings.hrc:858
+#: sw/inc/strings.hrc:859
msgctxt "STR_FILTER_ALL_DATA"
msgid "Address lists(*.*)"
msgstr "ঠিকনা তালিকাবোৰ (*.*)"
#. Ef8TY
-#: sw/inc/strings.hrc:859
+#: sw/inc/strings.hrc:860
msgctxt "STR_FILTER_SXB"
msgid "%PRODUCTNAME Base (*.odb)"
msgstr "%PRODUCTNAME আধাৰ (*.odb)"
#. 24opW
-#: sw/inc/strings.hrc:860
+#: sw/inc/strings.hrc:861
msgctxt "STR_FILTER_SXC"
msgid "%PRODUCTNAME Calc (*.ods;*.sxc)"
msgstr "%PRODUCTNAME কেলক (*.ods;*.sxc)"
#. sq73T
-#: sw/inc/strings.hrc:861
+#: sw/inc/strings.hrc:862
#, fuzzy
msgctxt "STR_FILTER_SXW"
msgid "%PRODUCTNAME Writer (*.odt;*.sxw)"
msgstr "%PRODUCTNAME কেলক (*.ods;*.sxc)"
#. QupGC
-#: sw/inc/strings.hrc:862
+#: sw/inc/strings.hrc:863
msgctxt "STR_FILTER_DBF"
msgid "dBase (*.dbf)"
msgstr "d আধাৰ (*.dbf)"
#. SzqRv
-#: sw/inc/strings.hrc:863
+#: sw/inc/strings.hrc:864
#, fuzzy
msgctxt "STR_FILTER_XLS"
msgid "Microsoft Excel (*.xls;*.xlsx)"
msgstr "মাইক্ৰছফট এক্সেল (*.xls)"
#. zAUu8
-#: sw/inc/strings.hrc:864
+#: sw/inc/strings.hrc:865
msgctxt "STR_FILTER_DOC"
msgid "Microsoft Word (*.doc;*.docx)"
msgstr ""
#. JBZFc
-#: sw/inc/strings.hrc:865
+#: sw/inc/strings.hrc:866
msgctxt "STR_FILTER_TXT"
msgid "Plain text (*.txt)"
msgstr "সৰল টেক্সট (*.txt)"
#. CRJb6
-#: sw/inc/strings.hrc:866
+#: sw/inc/strings.hrc:867
msgctxt "STR_FILTER_CSV"
msgid "Text Comma Separated (*.csv)"
msgstr "টেক্সট কমা বিভাজন কৰা হ'ল (*.csv)"
#. U4H2j
-#: sw/inc/strings.hrc:867
+#: sw/inc/strings.hrc:868
#, fuzzy
msgctxt "STR_FILTER_MDB"
msgid "Microsoft Access (*.mdb;*.mde)"
msgstr "Microsoft Access (*.mdb)"
#. DwxF8
-#: sw/inc/strings.hrc:868
+#: sw/inc/strings.hrc:869
#, fuzzy
msgctxt "STR_FILTER_ACCDB"
msgid "Microsoft Access 2007 (*.accdb,*.accde)"
msgstr "Microsoft Access 2007 (*.accdb)"
#. uDNRt
-#: sw/inc/strings.hrc:869
+#: sw/inc/strings.hrc:870
msgctxt "ST_CONFIGUREMAIL"
msgid ""
"In order to be able to send mail merge documents by email, %PRODUCTNAME requires information about the email account to be used.\n"
@@ -7211,92 +7217,92 @@ msgid ""
msgstr ""
#. r9BVg
-#: sw/inc/strings.hrc:870
+#: sw/inc/strings.hrc:871
msgctxt "ST_FILTERNAME"
msgid "%PRODUCTNAME Address List (.csv)"
msgstr "%PRODUCTNAME ঠিকনা তালিকা (.csv)"
#. jiJuZ
-#: sw/inc/strings.hrc:872
+#: sw/inc/strings.hrc:873
msgctxt "ST_STARTING"
msgid "Select Starting Document"
msgstr ""
#. FiUyK
-#: sw/inc/strings.hrc:873
+#: sw/inc/strings.hrc:874
msgctxt "ST_DOCUMENTTYPE"
msgid "Select Document Type"
msgstr ""
#. QwrpS
-#: sw/inc/strings.hrc:874
+#: sw/inc/strings.hrc:875
msgctxt "ST_ADDRESSBLOCK"
msgid "Insert Address Block"
msgstr ""
#. omRZF
-#: sw/inc/strings.hrc:875
+#: sw/inc/strings.hrc:876
msgctxt "ST_ADDRESSLIST"
msgid "Select Address List"
msgstr ""
#. YrDuD
-#: sw/inc/strings.hrc:876
+#: sw/inc/strings.hrc:877
msgctxt "ST_GREETINGSLINE"
msgid "Create Salutation"
msgstr ""
#. tTr4B
-#: sw/inc/strings.hrc:877
+#: sw/inc/strings.hrc:878
msgctxt "ST_LAYOUT"
msgid "Adjust Layout"
msgstr ""
#. S4p5M
-#: sw/inc/strings.hrc:878
+#: sw/inc/strings.hrc:879
msgctxt "ST_EXCLUDE"
msgid "Exclude recipient"
msgstr ""
#. N5YUH
-#: sw/inc/strings.hrc:879
+#: sw/inc/strings.hrc:880
msgctxt "ST_FINISH"
msgid "~Finish"
msgstr "সমাপ্ত (~F)"
#. L5FEG
-#: sw/inc/strings.hrc:880
+#: sw/inc/strings.hrc:881
#, fuzzy
msgctxt "ST_MMWTITLE"
msgid "Mail Merge Wizard"
msgstr "মেইল একত্ৰিত উইজাৰ্ড"
#. CEhZj
-#: sw/inc/strings.hrc:882
+#: sw/inc/strings.hrc:883
msgctxt "ST_TABLE"
msgid "Table"
msgstr "টেবুল"
#. v9hEB
-#: sw/inc/strings.hrc:883
+#: sw/inc/strings.hrc:884
msgctxt "ST_QUERY"
msgid "Query"
msgstr "প্ৰশ্ন"
#. HxGAu
-#: sw/inc/strings.hrc:885
+#: sw/inc/strings.hrc:886
msgctxt "STR_QUERY_SPELL_CONTINUE"
msgid "Continue checking at beginning of document?"
msgstr "দস্তাবেজৰ আৰম্ভনিত পৰীক্ষা অব্যাহত ৰাখিব বিচাৰে নেকি ?"
#. gE7CA
-#: sw/inc/strings.hrc:886
+#: sw/inc/strings.hrc:887
msgctxt "STR_SPELLING_COMPLETED"
msgid "The spellcheck is complete."
msgstr "বানান পৰীক্ষা সম্পূৰ্ণ হ'ল."
#. 2SuqF
-#: sw/inc/strings.hrc:887
+#: sw/inc/strings.hrc:888
msgctxt "STR_DICTIONARY_UNAVAILABLE"
msgid "No dictionary available"
msgstr ""
@@ -7306,252 +7312,252 @@ msgstr ""
#. Description: strings for the types
#. --------------------------------------------------------------------
#. range document
-#: sw/inc/strings.hrc:893
+#: sw/inc/strings.hrc:894
msgctxt "STR_DATEFLD"
msgid "Date"
msgstr "দিনাংক"
#. V9cQp
-#: sw/inc/strings.hrc:894
+#: sw/inc/strings.hrc:895
msgctxt "STR_TIMEFLD"
msgid "Time"
msgstr "সময়"
#. 2zgWi
-#: sw/inc/strings.hrc:895
+#: sw/inc/strings.hrc:896
msgctxt "STR_FILENAMEFLD"
msgid "File name"
msgstr "ফাইলৰ নাম"
#. FdSaU
-#: sw/inc/strings.hrc:896
+#: sw/inc/strings.hrc:897
msgctxt "STR_DBNAMEFLD"
msgid "Database Name"
msgstr "ডাটাবেছৰ নাম"
#. XZADh
-#: sw/inc/strings.hrc:897
+#: sw/inc/strings.hrc:898
msgctxt "STR_CHAPTERFLD"
msgid "Chapter"
msgstr "অধ্যায়"
#. wYWy2
-#: sw/inc/strings.hrc:898
+#: sw/inc/strings.hrc:899
msgctxt "STR_PAGENUMBERFLD"
msgid "Page number"
msgstr ""
#. EXC6N
-#: sw/inc/strings.hrc:899
+#: sw/inc/strings.hrc:900
msgctxt "STR_DOCSTATFLD"
msgid "Statistics"
msgstr "পৰিসংখ্যা"
#. EW86G
-#: sw/inc/strings.hrc:900
+#: sw/inc/strings.hrc:901
msgctxt "STR_AUTHORFLD"
msgid "Author"
msgstr "লেখক"
#. 5aFak
-#: sw/inc/strings.hrc:901
+#: sw/inc/strings.hrc:902
msgctxt "STR_TEMPLNAMEFLD"
msgid "Templates"
msgstr "নমুনাবোৰ"
#. 3wdud
-#: sw/inc/strings.hrc:902
+#: sw/inc/strings.hrc:903
msgctxt "STR_EXTUSERFLD"
msgid "Sender"
msgstr "পথাওতা"
#. LxZEm
#. range functions
-#: sw/inc/strings.hrc:904
+#: sw/inc/strings.hrc:905
msgctxt "STR_SETFLD"
msgid "Set variable"
msgstr "চলক ছেট কৰক"
#. ckA26
-#: sw/inc/strings.hrc:905
+#: sw/inc/strings.hrc:906
msgctxt "STR_GETFLD"
msgid "Show variable"
msgstr "চলক দেখুৱাওক"
#. Fjzgu
-#: sw/inc/strings.hrc:906
+#: sw/inc/strings.hrc:907
msgctxt "STR_FORMELFLD"
msgid "Insert Formula"
msgstr "সূত্র ভৰাওক"
#. AXoAT
-#: sw/inc/strings.hrc:907
+#: sw/inc/strings.hrc:908
msgctxt "STR_INPUTFLD"
msgid "Input field"
msgstr "ইনপুট ফিল্ড"
#. VfqNE
-#: sw/inc/strings.hrc:908
+#: sw/inc/strings.hrc:909
msgctxt "STR_SETINPUTFLD"
msgid "Input field (variable)"
msgstr "ইনপুট ফিল্ড (চলক)"
#. E8JAd
-#: sw/inc/strings.hrc:909
+#: sw/inc/strings.hrc:910
msgctxt "STR_USRINPUTFLD"
msgid "Input field (user)"
msgstr "ইনপুট ফিল্ড (ব্যৱহাৰকৰ্তা)"
#. 8LGEQ
-#: sw/inc/strings.hrc:910
+#: sw/inc/strings.hrc:911
msgctxt "STR_CONDTXTFLD"
msgid "Conditional text"
msgstr "চর্তসাপেক্ষ টেক্সট"
#. jrZ7i
-#: sw/inc/strings.hrc:911
+#: sw/inc/strings.hrc:912
msgctxt "STR_DDEFLD"
msgid "DDE field"
msgstr "DDE ফিল্ড"
#. 9WAT9
-#: sw/inc/strings.hrc:912
+#: sw/inc/strings.hrc:913
msgctxt "STR_MACROFLD"
msgid "Execute macro"
msgstr "মেক্র' কার্যকৰী কৰক"
#. qEBxa
-#: sw/inc/strings.hrc:913
+#: sw/inc/strings.hrc:914
msgctxt "STR_SEQFLD"
msgid "Number range"
msgstr "সংখ্যাৰ পৰিসৰ"
#. ACE5s
-#: sw/inc/strings.hrc:914
+#: sw/inc/strings.hrc:915
msgctxt "STR_SETREFPAGEFLD"
msgid "Set page variable"
msgstr "পৰিৱৰ্তনশীল পৃষ্ঠা ছেট কৰক"
#. ayB3N
-#: sw/inc/strings.hrc:915
+#: sw/inc/strings.hrc:916
msgctxt "STR_GETREFPAGEFLD"
msgid "Show page variable"
msgstr "পৰিৱৰ্তনশীল পৃষ্ঠা দেখুৱাওক"
#. DBM4P
-#: sw/inc/strings.hrc:916
+#: sw/inc/strings.hrc:917
msgctxt "STR_INTERNETFLD"
msgid "Load URL"
msgstr "URL ল'ড কৰক"
#. LJFF5
-#: sw/inc/strings.hrc:917
+#: sw/inc/strings.hrc:918
msgctxt "STR_JUMPEDITFLD"
msgid "Placeholder"
msgstr "স্থান ধাৰক"
#. zZCg6
-#: sw/inc/strings.hrc:918
+#: sw/inc/strings.hrc:919
msgctxt "STR_COMBINED_CHARS"
msgid "Combine characters"
msgstr "আখৰবোৰক যোগ কৰক"
#. 9MGU6
-#: sw/inc/strings.hrc:919
+#: sw/inc/strings.hrc:920
msgctxt "STR_DROPDOWN"
msgid "Input list"
msgstr "ইনপুট তালিকা"
#. 7BWSk
#. range references
-#: sw/inc/strings.hrc:921
+#: sw/inc/strings.hrc:922
msgctxt "STR_SETREFFLD"
msgid "Set Reference"
msgstr "প্ৰসংগ ছেট কৰক"
#. FJ2X8
-#: sw/inc/strings.hrc:922
+#: sw/inc/strings.hrc:923
msgctxt "STR_GETREFFLD"
msgid "Insert Reference"
msgstr "প্রসংগ ভৰাওক"
#. sztLS
#. range database
-#: sw/inc/strings.hrc:924
+#: sw/inc/strings.hrc:925
msgctxt "STR_DBFLD"
msgid "Mail merge fields"
msgstr "মেইল একত্ৰিত ফিল্ড"
#. JP2DU
-#: sw/inc/strings.hrc:925
+#: sw/inc/strings.hrc:926
msgctxt "STR_DBNEXTSETFLD"
msgid "Next record"
msgstr "পৰৱর্তী ৰেকৰ্ড"
#. GizhA
-#: sw/inc/strings.hrc:926
+#: sw/inc/strings.hrc:927
msgctxt "STR_DBNUMSETFLD"
msgid "Any record"
msgstr "যিকোনো ৰেকৰ্ড"
#. aMGxm
-#: sw/inc/strings.hrc:927
+#: sw/inc/strings.hrc:928
msgctxt "STR_DBSETNUMBERFLD"
msgid "Record number"
msgstr "সংখ্যা ৰেকৰ্ড কৰক"
#. DtYzi
-#: sw/inc/strings.hrc:928
+#: sw/inc/strings.hrc:929
msgctxt "STR_PREVPAGEFLD"
msgid "Previous page"
msgstr "পূৰ্বৱৰ্তী পৃষ্ঠা"
#. UCSej
-#: sw/inc/strings.hrc:929
+#: sw/inc/strings.hrc:930
msgctxt "STR_NEXTPAGEFLD"
msgid "Next page"
msgstr "পৰৱর্তী পৃষ্ঠা"
#. M8Fac
-#: sw/inc/strings.hrc:930
+#: sw/inc/strings.hrc:931
msgctxt "STR_HIDDENTXTFLD"
msgid "Hidden text"
msgstr "লুকুৱাই থোৱা টেক্সট"
#. WvBF2
#. range user fields
-#: sw/inc/strings.hrc:932
+#: sw/inc/strings.hrc:933
msgctxt "STR_USERFLD"
msgid "User Field"
msgstr "ব্যৱহাৰকৰ্তাৰ ফিল্ড"
#. XELYN
-#: sw/inc/strings.hrc:933
+#: sw/inc/strings.hrc:934
msgctxt "STR_POSTITFLD"
msgid "Note"
msgstr "টিপ্পনী"
#. MB6kt
-#: sw/inc/strings.hrc:934
+#: sw/inc/strings.hrc:935
msgctxt "STR_SCRIPTFLD"
msgid "Script"
msgstr "স্ক্ৰিপ্ট"
#. BWU6A
-#: sw/inc/strings.hrc:935
+#: sw/inc/strings.hrc:936
msgctxt "STR_AUTHORITY"
msgid "Bibliography entry"
msgstr "গ্রন্থ-সূচী প্রৱিষ্টি"
#. 7EGCR
-#: sw/inc/strings.hrc:936
+#: sw/inc/strings.hrc:937
msgctxt "STR_HIDDENPARAFLD"
msgid "Hidden Paragraph"
msgstr "লুকুৱাই থোৱা পেৰেগ্ৰাফ"
#. dRBRK
#. range DocumentInfo
-#: sw/inc/strings.hrc:938
+#: sw/inc/strings.hrc:939
msgctxt "STR_DOCINFOFLD"
msgid "DocInformation"
msgstr "দস্তাবেজ তথ্য"
@@ -7560,87 +7566,87 @@ msgstr "দস্তাবেজ তথ্য"
#. --------------------------------------------------------------------
#. Description: SubCmd-Strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:942
+#: sw/inc/strings.hrc:943
msgctxt "FLD_DATE_STD"
msgid "Date"
msgstr "দিনাংক"
#. qMCEh
-#: sw/inc/strings.hrc:943
+#: sw/inc/strings.hrc:944
msgctxt "FLD_DATE_FIX"
msgid "Date (fixed)"
msgstr "তাৰিখ (নিৰ্ধাৰিত)"
#. AXmyw
-#: sw/inc/strings.hrc:944
+#: sw/inc/strings.hrc:945
msgctxt "FLD_TIME_STD"
msgid "Time"
msgstr "সময়"
#. 6dxVs
-#: sw/inc/strings.hrc:945
+#: sw/inc/strings.hrc:946
msgctxt "FLD_TIME_FIX"
msgid "Time (fixed)"
msgstr "সময় (নিৰ্ধাৰিত)"
#. U3SW8
#. SubCmd Statistic
-#: sw/inc/strings.hrc:947
+#: sw/inc/strings.hrc:948
msgctxt "FLD_STAT_TABLE"
msgid "Tables"
msgstr "টেবুলবোৰ"
#. 7qW4K
-#: sw/inc/strings.hrc:948
+#: sw/inc/strings.hrc:949
msgctxt "FLD_STAT_CHAR"
msgid "Characters"
msgstr "আখৰবোৰ"
#. zDRCp
-#: sw/inc/strings.hrc:949
+#: sw/inc/strings.hrc:950
msgctxt "FLD_STAT_WORD"
msgid "Words"
msgstr "শব্দবোৰ"
#. 2wgLC
-#: sw/inc/strings.hrc:950
+#: sw/inc/strings.hrc:951
msgctxt "FLD_STAT_PARA"
msgid "Paragraphs"
msgstr "পেৰেগ্ৰাফবোৰ"
#. JPGG7
-#: sw/inc/strings.hrc:951
+#: sw/inc/strings.hrc:952
msgctxt "FLD_STAT_GRF"
msgid "Image"
msgstr "ছবি"
#. CzoFh
-#: sw/inc/strings.hrc:952
+#: sw/inc/strings.hrc:953
msgctxt "FLD_STAT_OBJ"
msgid "Objects"
msgstr "বস্তুবোৰ"
#. bDG6R
-#: sw/inc/strings.hrc:953
+#: sw/inc/strings.hrc:954
msgctxt "FLD_STAT_PAGE"
msgid "Pages"
msgstr "পৃষ্ঠাবোৰ"
#. yqhF5
#. SubCmd DDETypes
-#: sw/inc/strings.hrc:955
+#: sw/inc/strings.hrc:956
msgctxt "FMT_DDE_HOT"
msgid "DDE automatic"
msgstr "DDE স্বয়ংক্রিয়"
#. xPP2E
-#: sw/inc/strings.hrc:956
+#: sw/inc/strings.hrc:957
msgctxt "FMT_DDE_NORMAL"
msgid "DDE manual"
msgstr "DDE হাতেৰে"
#. spdXd
-#: sw/inc/strings.hrc:957
+#: sw/inc/strings.hrc:958
msgctxt "FLD_INPUT_TEXT"
msgid "[Text]"
msgstr ""
@@ -7649,103 +7655,103 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: SubType Extuser
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:962
+#: sw/inc/strings.hrc:963
msgctxt "FLD_EU_FIRMA"
msgid "Company"
msgstr "সংস্থা"
#. WWxTK
-#: sw/inc/strings.hrc:963
+#: sw/inc/strings.hrc:964
msgctxt "FLD_EU_VORNAME"
msgid "First Name"
msgstr "প্রথম নাম"
#. 4tdAc
-#: sw/inc/strings.hrc:964
+#: sw/inc/strings.hrc:965
msgctxt "FLD_EU_NAME"
msgid "Last Name"
msgstr "অন্তিম নাম"
#. xTV7n
-#: sw/inc/strings.hrc:965
+#: sw/inc/strings.hrc:966
msgctxt "FLD_EU_ABK"
msgid "Initials"
msgstr "ইনিশ্বিয়েলছ"
#. AKD3k
-#: sw/inc/strings.hrc:966
+#: sw/inc/strings.hrc:967
msgctxt "FLD_EU_STRASSE"
msgid "Street"
msgstr "পথ"
#. ErMju
-#: sw/inc/strings.hrc:967
+#: sw/inc/strings.hrc:968
msgctxt "FLD_EU_LAND"
msgid "Country"
msgstr "দেশ"
#. ESbkx
-#: sw/inc/strings.hrc:968
+#: sw/inc/strings.hrc:969
msgctxt "FLD_EU_PLZ"
msgid "Zip code"
msgstr "জিপ ক'ড"
#. WDAc2
-#: sw/inc/strings.hrc:969
+#: sw/inc/strings.hrc:970
msgctxt "FLD_EU_ORT"
msgid "City"
msgstr "চহৰ"
#. pg7MV
-#: sw/inc/strings.hrc:970
+#: sw/inc/strings.hrc:971
msgctxt "FLD_EU_TITEL"
msgid "Title"
msgstr "শীৰ্ষক"
#. DwLhZ
-#: sw/inc/strings.hrc:971
+#: sw/inc/strings.hrc:972
msgctxt "FLD_EU_POS"
msgid "Position"
msgstr "স্থান"
#. LDTdu
-#: sw/inc/strings.hrc:972
+#: sw/inc/strings.hrc:973
msgctxt "FLD_EU_TELPRIV"
msgid "Tel. (Home)"
msgstr "টেলিফোন (ঘৰ)"
#. JBZyj
-#: sw/inc/strings.hrc:973
+#: sw/inc/strings.hrc:974
msgctxt "FLD_EU_TELFIRMA"
msgid "Tel. (Work)"
msgstr "টেলিফোন (কাম)"
#. 5EmGH
-#: sw/inc/strings.hrc:974
+#: sw/inc/strings.hrc:975
msgctxt "FLD_EU_FAX"
msgid "Fax"
msgstr ""
#. AtN9J
-#: sw/inc/strings.hrc:975
+#: sw/inc/strings.hrc:976
msgctxt "FLD_EU_EMAIL"
msgid "Email"
msgstr ""
#. 6GBRm
-#: sw/inc/strings.hrc:976
+#: sw/inc/strings.hrc:977
msgctxt "FLD_EU_STATE"
msgid "State"
msgstr "ৰাজ্য"
#. pbrdQ
-#: sw/inc/strings.hrc:977
+#: sw/inc/strings.hrc:978
msgctxt "FLD_PAGEREF_OFF"
msgid "off"
msgstr "অফ"
#. wC8SE
-#: sw/inc/strings.hrc:978
+#: sw/inc/strings.hrc:979
msgctxt "FLD_PAGEREF_ON"
msgid "on"
msgstr "-ত"
@@ -7755,37 +7761,37 @@ msgstr "-ত"
#. Description: path name
#. --------------------------------------------------------------------
#. Format FileName
-#: sw/inc/strings.hrc:983
+#: sw/inc/strings.hrc:984
msgctxt "FMT_FF_NAME"
msgid "File name"
msgstr "ফাইলৰ নাম"
#. RBpz3
-#: sw/inc/strings.hrc:984
+#: sw/inc/strings.hrc:985
msgctxt "FMT_FF_NAME_NOEXT"
msgid "File name without extension"
msgstr "ফাইলৰ নাম প্ৰসাৰণৰ অবিহনে"
#. BCzy8
-#: sw/inc/strings.hrc:985
+#: sw/inc/strings.hrc:986
msgctxt "FMT_FF_PATHNAME"
msgid "Path/File name"
msgstr "পথ/ফাইলৰ নাম"
#. ChFwM
-#: sw/inc/strings.hrc:986
+#: sw/inc/strings.hrc:987
msgctxt "FMT_FF_PATH"
msgid "Path"
msgstr "পথ"
#. R6KrL
-#: sw/inc/strings.hrc:987
+#: sw/inc/strings.hrc:988
msgctxt "FMT_FF_UI_NAME"
msgid "Template name"
msgstr ""
#. ANM2H
-#: sw/inc/strings.hrc:988
+#: sw/inc/strings.hrc:989
msgctxt "FMT_FF_UI_RANGE"
msgid "Category"
msgstr "শ্রেণী"
@@ -7794,25 +7800,25 @@ msgstr "শ্রেণী"
#. --------------------------------------------------------------------
#. Description: format chapter
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:992
+#: sw/inc/strings.hrc:993
msgctxt "FMT_CHAPTER_NAME"
msgid "Chapter name"
msgstr "অধ্যায় নাম"
#. tnLqE
-#: sw/inc/strings.hrc:993
+#: sw/inc/strings.hrc:994
msgctxt "FMT_CHAPTER_NO"
msgid "Chapter number"
msgstr "অধ্যায় সংখ্যা"
#. qGEAs
-#: sw/inc/strings.hrc:994
+#: sw/inc/strings.hrc:995
msgctxt "FMT_CHAPTER_NO_NOSEPARATOR"
msgid "Chapter number without separator"
msgstr "অধ্যায়ৰ সংখ্যা আৰু নাম পৃথক কঁৰোতাৰ অবিহনে"
#. WFA5R
-#: sw/inc/strings.hrc:995
+#: sw/inc/strings.hrc:996
msgctxt "FMT_CHAPTER_NAMENO"
msgid "Chapter number and name"
msgstr "অধ্যায়ৰ সংখ্যা আৰু নাম"
@@ -7821,55 +7827,55 @@ msgstr "অধ্যায়ৰ সংখ্যা আৰু নাম"
#. --------------------------------------------------------------------
#. Description: formats
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:999
+#: sw/inc/strings.hrc:1000
msgctxt "FMT_NUM_ABC"
msgid "A B C"
msgstr ""
#. jm7G7
-#: sw/inc/strings.hrc:1000
+#: sw/inc/strings.hrc:1001
msgctxt "FMT_NUM_SABC"
msgid "a b c"
msgstr ""
#. ETgy7
-#: sw/inc/strings.hrc:1001
+#: sw/inc/strings.hrc:1002
msgctxt "FMT_NUM_ABC_N"
msgid "A .. AA .. AAA"
msgstr ""
#. m84Fb
-#: sw/inc/strings.hrc:1002
+#: sw/inc/strings.hrc:1003
msgctxt "FMT_NUM_SABC_N"
msgid "a .. aa .. aaa"
msgstr ""
#. d9YtB
-#: sw/inc/strings.hrc:1003
+#: sw/inc/strings.hrc:1004
msgctxt "FMT_NUM_ROMAN"
msgid "Roman (I II III)"
msgstr "ৰোমান (I II III)"
#. vA5RT
-#: sw/inc/strings.hrc:1004
+#: sw/inc/strings.hrc:1005
msgctxt "FMT_NUM_SROMAN"
msgid "Roman (i ii iii)"
msgstr "ৰোমান (i ii iii)"
#. 3ZDgc
-#: sw/inc/strings.hrc:1005
+#: sw/inc/strings.hrc:1006
msgctxt "FMT_NUM_ARABIC"
msgid "Arabic (1 2 3)"
msgstr "আৰবী (1 2 3)"
#. CHmdp
-#: sw/inc/strings.hrc:1006
+#: sw/inc/strings.hrc:1007
msgctxt "FMT_NUM_PAGEDESC"
msgid "As Page Style"
msgstr "পৃষ্ঠা শৈলী হিচাপে"
#. xBKwZ
-#: sw/inc/strings.hrc:1007
+#: sw/inc/strings.hrc:1008
msgctxt "FMT_NUM_PAGESPECIAL"
msgid "Text"
msgstr "টেক্সট"
@@ -7878,13 +7884,13 @@ msgstr "টেক্সট"
#. --------------------------------------------------------------------
#. Description: Author
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1011
+#: sw/inc/strings.hrc:1012
msgctxt "FMT_AUTHOR_NAME"
msgid "Name"
msgstr "নাম"
#. RCnZb
-#: sw/inc/strings.hrc:1012
+#: sw/inc/strings.hrc:1013
msgctxt "FMT_AUTHOR_SCUT"
msgid "Initials"
msgstr "ইনিশ্বিয়েলছ"
@@ -7893,49 +7899,49 @@ msgstr "ইনিশ্বিয়েলছ"
#. --------------------------------------------------------------------
#. Description: set variable
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1016
+#: sw/inc/strings.hrc:1017
msgctxt "FMT_SETVAR_SYS"
msgid "System"
msgstr "ছিষ্টেম"
#. qKXLW
-#: sw/inc/strings.hrc:1017
+#: sw/inc/strings.hrc:1018
msgctxt "FMT_SETVAR_TEXT"
msgid "Text"
msgstr "টেক্সট"
#. E86ZD
-#: sw/inc/strings.hrc:1018
+#: sw/inc/strings.hrc:1019
msgctxt "FMT_GETVAR_NAME"
msgid "Name"
msgstr "নাম"
#. FB3Rp
-#: sw/inc/strings.hrc:1019
+#: sw/inc/strings.hrc:1020
msgctxt "FMT_GETVAR_TEXT"
msgid "Text"
msgstr "টেক্সট"
#. KiBai
-#: sw/inc/strings.hrc:1020
+#: sw/inc/strings.hrc:1021
msgctxt "FMT_USERVAR_CMD"
msgid "Formula"
msgstr "সূত্ৰ"
#. 9AsdS
-#: sw/inc/strings.hrc:1021
+#: sw/inc/strings.hrc:1022
msgctxt "FMT_USERVAR_TEXT"
msgid "Text"
msgstr "টেক্সট"
#. GokUf
-#: sw/inc/strings.hrc:1022
+#: sw/inc/strings.hrc:1023
msgctxt "FMT_DBFLD_DB"
msgid "Database"
msgstr "ডাটাবেছ"
#. UBADL
-#: sw/inc/strings.hrc:1023
+#: sw/inc/strings.hrc:1024
msgctxt "FMT_DBFLD_SYS"
msgid "System"
msgstr "ছিষ্টেম"
@@ -7944,19 +7950,19 @@ msgstr "ছিষ্টেম"
#. --------------------------------------------------------------------
#. Description: storage fields
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1027
+#: sw/inc/strings.hrc:1028
msgctxt "FMT_REG_AUTHOR"
msgid "Author"
msgstr "লেখক"
#. aqFVp
-#: sw/inc/strings.hrc:1028
+#: sw/inc/strings.hrc:1029
msgctxt "FMT_REG_TIME"
msgid "Time"
msgstr "সময়"
#. FaZKx
-#: sw/inc/strings.hrc:1029
+#: sw/inc/strings.hrc:1030
msgctxt "FMT_REG_DATE"
msgid "Date"
msgstr "দিনাংক"
@@ -7965,79 +7971,79 @@ msgstr "দিনাংক"
#. --------------------------------------------------------------------
#. Description: formats references
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1033
+#: sw/inc/strings.hrc:1034
msgctxt "FMT_REF_TEXT"
msgid "Referenced text"
msgstr ""
#. eeSAu
-#: sw/inc/strings.hrc:1034
+#: sw/inc/strings.hrc:1035
msgctxt "FMT_REF_PAGE"
msgid "Page number (unstyled)"
msgstr ""
#. MaB3q
-#: sw/inc/strings.hrc:1035
+#: sw/inc/strings.hrc:1036
msgctxt "FMT_REF_CHAPTER"
msgid "Chapter"
msgstr "অধ্যায়"
#. VBMno
-#: sw/inc/strings.hrc:1036
+#: sw/inc/strings.hrc:1037
msgctxt "FMT_REF_UPDOWN"
msgid "“Above”/“Below”"
msgstr ""
#. 96emU
-#: sw/inc/strings.hrc:1037
+#: sw/inc/strings.hrc:1038
msgctxt "FMT_REF_PAGE_PGDSC"
msgid "Page number (styled)"
msgstr ""
#. CQitd
-#: sw/inc/strings.hrc:1038
+#: sw/inc/strings.hrc:1039
msgctxt "FMT_REF_ONLYNUMBER"
msgid "Category and Number"
msgstr "শ্রেণী আৰু সংখ্যা"
#. BsvCn
-#: sw/inc/strings.hrc:1039
+#: sw/inc/strings.hrc:1040
msgctxt "FMT_REF_ONLYCAPTION"
msgid "Caption Text"
msgstr "কেপশ্বন টেক্সট"
#. P7wiX
-#: sw/inc/strings.hrc:1040
+#: sw/inc/strings.hrc:1041
msgctxt "FMT_REF_ONLYSEQNO"
msgid "Numbering"
msgstr "নাম্বাৰীং"
#. QBGit
-#: sw/inc/strings.hrc:1041
+#: sw/inc/strings.hrc:1042
msgctxt "FMT_REF_NUMBER"
msgid "Number"
msgstr "সংখ্যা"
#. CGkV7
-#: sw/inc/strings.hrc:1042
+#: sw/inc/strings.hrc:1043
msgctxt "FMT_REF_NUMBER_NO_CONTEXT"
msgid "Number (no context)"
msgstr "সংখ্যা"
#. XgSb3
-#: sw/inc/strings.hrc:1043
+#: sw/inc/strings.hrc:1044
msgctxt "FMT_REF_NUMBER_FULL_CONTEXT"
msgid "Number (full context)"
msgstr "Number 1) 2) 3)"
#. zQTNF
-#: sw/inc/strings.hrc:1045
+#: sw/inc/strings.hrc:1046
msgctxt "FMT_REF_WITH_LOWERCASE_HU_ARTICLE"
msgid "Article a/az + "
msgstr ""
#. 97Vs7
-#: sw/inc/strings.hrc:1046
+#: sw/inc/strings.hrc:1047
msgctxt "FMT_REF_WITH_UPPERCASE_HU_ARTICLE"
msgid "Article A/Az + "
msgstr ""
@@ -8046,31 +8052,31 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: placeholder
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1050
+#: sw/inc/strings.hrc:1051
msgctxt "FMT_MARK_TEXT"
msgid "Text"
msgstr "টেক্সট"
#. rAQoE
-#: sw/inc/strings.hrc:1051
+#: sw/inc/strings.hrc:1052
msgctxt "FMT_MARK_TABLE"
msgid "Table"
msgstr "টেবুল"
#. biUa2
-#: sw/inc/strings.hrc:1052
+#: sw/inc/strings.hrc:1053
msgctxt "FMT_MARK_FRAME"
msgid "Frame"
msgstr "ফ্রেম"
#. 7mkZb
-#: sw/inc/strings.hrc:1053
+#: sw/inc/strings.hrc:1054
msgctxt "FMT_MARK_GRAFIC"
msgid "Image"
msgstr "ছবি"
#. GgbFY
-#: sw/inc/strings.hrc:1054
+#: sw/inc/strings.hrc:1055
msgctxt "FMT_MARK_OLE"
msgid "Object"
msgstr "বস্তু"
@@ -8079,1597 +8085,1597 @@ msgstr "বস্তু"
#. --------------------------------------------------------------------
#. Description: ExchangeStrings for Edit/NameFT
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1058
+#: sw/inc/strings.hrc:1059
msgctxt "STR_COND"
msgid "~Condition"
msgstr "চৰ্ত (~C)"
#. X9cqJ
-#: sw/inc/strings.hrc:1059
+#: sw/inc/strings.hrc:1060
msgctxt "STR_TEXT"
msgid "Then, Else"
msgstr "তেনে হ'লে, অন্যথা"
#. bo8yF
-#: sw/inc/strings.hrc:1060
+#: sw/inc/strings.hrc:1061
msgctxt "STR_DDE_CMD"
msgid "DDE Statement"
msgstr "DDE উক্তি"
#. LixXA
-#: sw/inc/strings.hrc:1061
+#: sw/inc/strings.hrc:1062
msgctxt "STR_INSTEXT"
msgid "Hidden t~ext"
msgstr "লুকাই থকা টেক্সট (~e)"
#. EX3bJ
-#: sw/inc/strings.hrc:1062
+#: sw/inc/strings.hrc:1063
msgctxt "STR_MACNAME"
msgid "~Macro name"
msgstr "মেক্ৰ' নাম (~M)"
#. dNZtd
-#: sw/inc/strings.hrc:1063
+#: sw/inc/strings.hrc:1064
msgctxt "STR_PROMPT"
msgid "~Reference"
msgstr "প্ৰসংগ (~R)"
#. bfRPa
-#: sw/inc/strings.hrc:1064
+#: sw/inc/strings.hrc:1065
msgctxt "STR_COMBCHRS_FT"
msgid "Ch~aracters"
msgstr "আখৰবোৰ (~a)"
#. j2G5G
-#: sw/inc/strings.hrc:1065
+#: sw/inc/strings.hrc:1066
msgctxt "STR_OFFSET"
msgid "O~ffset"
msgstr "অফছেট (~f)"
#. vEgGo
-#: sw/inc/strings.hrc:1066
+#: sw/inc/strings.hrc:1067
msgctxt "STR_VALUE"
msgid "Value"
msgstr "মূল্য"
#. YQesU
-#: sw/inc/strings.hrc:1067
+#: sw/inc/strings.hrc:1068
msgctxt "STR_FORMULA"
msgid "Formula"
msgstr "সূত্ৰ"
#. Eq5xq
-#: sw/inc/strings.hrc:1068
+#: sw/inc/strings.hrc:1069
msgctxt "STR_CUSTOM_FIELD"
msgid "Custom"
msgstr "নিজৰ পছন্দৰ মতে"
#. 32NzA
-#: sw/inc/strings.hrc:1070
+#: sw/inc/strings.hrc:1071
msgctxt "STR_CUSTOM_LABEL"
msgid "[User]"
msgstr "[User]"
#. dYQTU
-#: sw/inc/strings.hrc:1072
+#: sw/inc/strings.hrc:1073
msgctxt "STR_HDIST"
msgid "H. Pitch"
msgstr "H. পীটচ"
#. xELZY
-#: sw/inc/strings.hrc:1073
+#: sw/inc/strings.hrc:1074
msgctxt "STR_VDIST"
msgid "V. Pitch"
msgstr "V. পীটচ"
#. F9Ldz
-#: sw/inc/strings.hrc:1074
+#: sw/inc/strings.hrc:1075
msgctxt "STR_WIDTH"
msgid "Width"
msgstr "প্ৰস্থ"
#. rdxcb
-#: sw/inc/strings.hrc:1075
+#: sw/inc/strings.hrc:1076
msgctxt "STR_HEIGHT"
msgid "Height"
msgstr "উচ্চতা"
#. DQm2h
-#: sw/inc/strings.hrc:1076
+#: sw/inc/strings.hrc:1077
msgctxt "STR_LEFT"
msgid "Left margin"
msgstr "বাওঁফালৰ সীমা"
#. imDMU
-#: sw/inc/strings.hrc:1077
+#: sw/inc/strings.hrc:1078
msgctxt "STR_UPPER"
msgid "Top margin"
msgstr "ওপৰৰ সীমা"
#. ayQss
-#: sw/inc/strings.hrc:1078
+#: sw/inc/strings.hrc:1079
msgctxt "STR_COLS"
msgid "Columns"
msgstr "স্তম্ভবোৰ"
#. 3moLd
-#: sw/inc/strings.hrc:1079
+#: sw/inc/strings.hrc:1080
msgctxt "STR_ROWS"
msgid "Rows"
msgstr "শাৰীবোৰ"
#. XWMSH
-#: sw/inc/strings.hrc:1081
+#: sw/inc/strings.hrc:1082
msgctxt "STR_WORDCOUNT_HINT"
msgid "Word and character count. Click to open Word Count dialog."
msgstr ""
#. nxGNq
-#: sw/inc/strings.hrc:1082
+#: sw/inc/strings.hrc:1083
msgctxt "STR_VIEWLAYOUT_ONE"
msgid "Single-page view"
msgstr ""
#. 57ju6
-#: sw/inc/strings.hrc:1083
+#: sw/inc/strings.hrc:1084
msgctxt "STR_VIEWLAYOUT_MULTI"
msgid "Multiple-page view"
msgstr ""
#. tbig8
-#: sw/inc/strings.hrc:1084
+#: sw/inc/strings.hrc:1085
#, fuzzy
msgctxt "STR_VIEWLAYOUT_BOOK"
msgid "Book view"
msgstr "কিতাপৰ পূর্বদৃশ্য"
#. xBHUG
-#: sw/inc/strings.hrc:1085
+#: sw/inc/strings.hrc:1086
msgctxt "STR_BOOKCTRL_HINT"
msgid "Page number in document. Click to open Go to Page dialog or right-click for bookmark list."
msgstr ""
#. XaF3v
-#: sw/inc/strings.hrc:1086
+#: sw/inc/strings.hrc:1087
msgctxt "STR_BOOKCTRL_HINT_EXTENDED"
msgid "Page number in document (Page number on printed document). Click to open Go to Page dialog."
msgstr ""
#. EWtd2
-#: sw/inc/strings.hrc:1087
+#: sw/inc/strings.hrc:1088
msgctxt "STR_TMPLCTRL_HINT"
msgid "Page Style. Right-click to change style or click to open Style dialog."
msgstr ""
#. jQAym
#. Strings for textual attributes.
-#: sw/inc/strings.hrc:1090
+#: sw/inc/strings.hrc:1091
msgctxt "STR_DROP_OVER"
msgid "Drop Caps over"
msgstr ""
#. PLAVt
-#: sw/inc/strings.hrc:1091
+#: sw/inc/strings.hrc:1092
msgctxt "STR_DROP_LINES"
msgid "rows"
msgstr "শাৰীবোৰ"
#. sg6Za
-#: sw/inc/strings.hrc:1092
+#: sw/inc/strings.hrc:1093
#, fuzzy
msgctxt "STR_NO_DROP_LINES"
msgid "No Drop Caps"
msgstr "ডাঙৰ আখৰবোৰ আঁতৰাওক"
#. gueRC
-#: sw/inc/strings.hrc:1093
+#: sw/inc/strings.hrc:1094
#, fuzzy
msgctxt "STR_NO_PAGEDESC"
msgid "No page break"
msgstr "পৃষ্ঠা ভাঙন"
#. G3CQN
-#: sw/inc/strings.hrc:1094
+#: sw/inc/strings.hrc:1095
msgctxt "STR_NO_MIRROR"
msgid "Don't mirror"
msgstr ""
#. MVEk8
-#: sw/inc/strings.hrc:1095
+#: sw/inc/strings.hrc:1096
#, fuzzy
msgctxt "STR_VERT_MIRROR"
msgid "Flip vertically"
msgstr "উলম্বভাৱে লুটিৱাওক"
#. Dns6t
-#: sw/inc/strings.hrc:1096
+#: sw/inc/strings.hrc:1097
#, fuzzy
msgctxt "STR_HORI_MIRROR"
msgid "Flip horizontal"
msgstr "%1 অনুভূমিক"
#. ZUKCy
-#: sw/inc/strings.hrc:1097
+#: sw/inc/strings.hrc:1098
msgctxt "STR_BOTH_MIRROR"
msgid "Horizontal and Vertical Flip"
msgstr ""
#. LoQic
-#: sw/inc/strings.hrc:1098
+#: sw/inc/strings.hrc:1099
msgctxt "STR_MIRROR_TOGGLE"
msgid "+ mirror horizontal on even pages"
msgstr ""
#. kbnTf
-#: sw/inc/strings.hrc:1099
+#: sw/inc/strings.hrc:1100
msgctxt "STR_CHARFMT"
msgid "Character Style"
msgstr "আখৰৰ শৈলী"
#. D99ZJ
-#: sw/inc/strings.hrc:1100
+#: sw/inc/strings.hrc:1101
#, fuzzy
msgctxt "STR_NO_CHARFMT"
msgid "No Character Style"
msgstr "আখৰৰ শৈলী"
#. fzG3P
-#: sw/inc/strings.hrc:1101
+#: sw/inc/strings.hrc:1102
msgctxt "STR_FOOTER"
msgid "Footer"
msgstr "ফুটাৰ"
#. 9RCsQ
-#: sw/inc/strings.hrc:1102
+#: sw/inc/strings.hrc:1103
#, fuzzy
msgctxt "STR_NO_FOOTER"
msgid "No footer"
msgstr "ফুটাৰলৈ"
#. zFTin
-#: sw/inc/strings.hrc:1103
+#: sw/inc/strings.hrc:1104
msgctxt "STR_HEADER"
msgid "Header"
msgstr "হেডাৰ"
#. PcYEB
-#: sw/inc/strings.hrc:1104
+#: sw/inc/strings.hrc:1105
#, fuzzy
msgctxt "STR_NO_HEADER"
msgid "No header"
msgstr "হেডাৰলৈ"
#. 8Jgfg
-#: sw/inc/strings.hrc:1105
+#: sw/inc/strings.hrc:1106
msgctxt "STR_SURROUND_IDEAL"
msgid "Optimal"
msgstr ""
#. HEuGy
-#: sw/inc/strings.hrc:1106
+#: sw/inc/strings.hrc:1107
msgctxt "STR_SURROUND_NONE"
msgid "None"
msgstr ""
#. 4tA4q
-#: sw/inc/strings.hrc:1107
+#: sw/inc/strings.hrc:1108
msgctxt "STR_SURROUND_THROUGH"
msgid "Through"
msgstr ""
#. ypvD6
-#: sw/inc/strings.hrc:1108
+#: sw/inc/strings.hrc:1109
msgctxt "STR_SURROUND_PARALLEL"
msgid "Parallel"
msgstr ""
#. hyEQ5
-#: sw/inc/strings.hrc:1109
+#: sw/inc/strings.hrc:1110
msgctxt "STR_SURROUND_LEFT"
msgid "Before"
msgstr ""
#. bGBtQ
-#: sw/inc/strings.hrc:1110
+#: sw/inc/strings.hrc:1111
msgctxt "STR_SURROUND_RIGHT"
msgid "After"
msgstr ""
#. SrG3D
-#: sw/inc/strings.hrc:1111
+#: sw/inc/strings.hrc:1112
msgctxt "STR_SURROUND_ANCHORONLY"
msgid "(Anchor only)"
msgstr ""
#. 9Ywzb
-#: sw/inc/strings.hrc:1112
+#: sw/inc/strings.hrc:1113
#, fuzzy
msgctxt "STR_FRM_WIDTH"
msgid "Width:"
msgstr "প্ৰস্থ"
#. 2GYT7
-#: sw/inc/strings.hrc:1113
+#: sw/inc/strings.hrc:1114
msgctxt "STR_FRM_FIXEDHEIGHT"
msgid "Fixed height:"
msgstr ""
#. QrFMi
-#: sw/inc/strings.hrc:1114
+#: sw/inc/strings.hrc:1115
msgctxt "STR_FRM_MINHEIGHT"
msgid "Min. height:"
msgstr ""
#. kLiYd
-#: sw/inc/strings.hrc:1115
+#: sw/inc/strings.hrc:1116
#, fuzzy
msgctxt "STR_FLY_AT_PARA"
msgid "to paragraph"
msgstr "দফা"
#. A8nAb
-#: sw/inc/strings.hrc:1116
+#: sw/inc/strings.hrc:1117
msgctxt "STR_FLY_AS_CHAR"
msgid "as character"
msgstr ""
#. Uszmm
-#: sw/inc/strings.hrc:1117
+#: sw/inc/strings.hrc:1118
msgctxt "STR_FLY_AT_CHAR"
msgid "to character"
msgstr ""
#. hDUSa
-#: sw/inc/strings.hrc:1118
+#: sw/inc/strings.hrc:1119
#, fuzzy
msgctxt "STR_FLY_AT_PAGE"
msgid "to page"
msgstr "কোনো পৃষ্ঠা নাই"
#. JMHRz
-#: sw/inc/strings.hrc:1119
+#: sw/inc/strings.hrc:1120
msgctxt "STR_POS_X"
msgid "X Coordinate:"
msgstr ""
#. oCZWW
-#: sw/inc/strings.hrc:1120
+#: sw/inc/strings.hrc:1121
msgctxt "STR_POS_Y"
msgid "Y Coordinate:"
msgstr ""
#. YNKE6
-#: sw/inc/strings.hrc:1121
+#: sw/inc/strings.hrc:1122
msgctxt "STR_VERT_TOP"
msgid "at top"
msgstr ""
#. GPTAu
-#: sw/inc/strings.hrc:1122
+#: sw/inc/strings.hrc:1123
msgctxt "STR_VERT_CENTER"
msgid "Centered vertically"
msgstr "উলম্বভাৱে কেন্দ্ৰীত"
#. fcpTS
-#: sw/inc/strings.hrc:1123
+#: sw/inc/strings.hrc:1124
#, fuzzy
msgctxt "STR_VERT_BOTTOM"
msgid "at bottom"
msgstr "তললৈ"
#. 37hos
-#: sw/inc/strings.hrc:1124
+#: sw/inc/strings.hrc:1125
msgctxt "STR_LINE_TOP"
msgid "Top of line"
msgstr "ৰেখাৰ ওপৰত"
#. MU7hC
-#: sw/inc/strings.hrc:1125
+#: sw/inc/strings.hrc:1126
#, fuzzy
msgctxt "STR_LINE_CENTER"
msgid "Line centered"
msgstr "বাওঁফালে কেন্দ্রীকৃত"
#. ZvEq7
-#: sw/inc/strings.hrc:1126
+#: sw/inc/strings.hrc:1127
msgctxt "STR_LINE_BOTTOM"
msgid "Bottom of line"
msgstr "ৰেখাৰ তলত"
#. jypsG
-#: sw/inc/strings.hrc:1127
+#: sw/inc/strings.hrc:1128
msgctxt "STR_REGISTER_ON"
msgid "Page line-spacing"
msgstr ""
#. Cui3U
-#: sw/inc/strings.hrc:1128
+#: sw/inc/strings.hrc:1129
msgctxt "STR_REGISTER_OFF"
msgid "Not page line-spacing"
msgstr ""
#. 4RL9X
-#: sw/inc/strings.hrc:1129
+#: sw/inc/strings.hrc:1130
msgctxt "STR_HORI_RIGHT"
msgid "at the right"
msgstr ""
#. wzGK7
-#: sw/inc/strings.hrc:1130
+#: sw/inc/strings.hrc:1131
msgctxt "STR_HORI_CENTER"
msgid "Centered horizontally"
msgstr "আনুভূমিকভাৱে কেন্দ্ৰীত"
#. ngRmB
-#: sw/inc/strings.hrc:1131
+#: sw/inc/strings.hrc:1132
msgctxt "STR_HORI_LEFT"
msgid "at the left"
msgstr ""
#. JyHkM
-#: sw/inc/strings.hrc:1132
+#: sw/inc/strings.hrc:1133
#, fuzzy
msgctxt "STR_HORI_INSIDE"
msgid "inside"
msgstr "অভ্যন্তৰ"
#. iXSZZ
-#: sw/inc/strings.hrc:1133
+#: sw/inc/strings.hrc:1134
#, fuzzy
msgctxt "STR_HORI_OUTSIDE"
msgid "outside"
msgstr "বাহিৰ"
#. kDY9Z
-#: sw/inc/strings.hrc:1134
+#: sw/inc/strings.hrc:1135
#, fuzzy
msgctxt "STR_HORI_FULL"
msgid "Full width"
msgstr "সম্পূর্ণ প্রস্থ"
#. Hvn8D
-#: sw/inc/strings.hrc:1135
+#: sw/inc/strings.hrc:1136
msgctxt "STR_COLUMNS"
msgid "Columns"
msgstr "স্তম্ভবোৰ"
#. 6j6TA
-#: sw/inc/strings.hrc:1136
+#: sw/inc/strings.hrc:1137
msgctxt "STR_LINE_WIDTH"
msgid "Separator Width:"
msgstr ""
#. dvdDt
-#: sw/inc/strings.hrc:1137
+#: sw/inc/strings.hrc:1138
msgctxt "STR_MAX_FTN_HEIGHT"
msgid "Max. footnote area:"
msgstr ""
#. BWqF3
-#: sw/inc/strings.hrc:1138
+#: sw/inc/strings.hrc:1139
#, fuzzy
msgctxt "STR_EDIT_IN_READONLY"
msgid "Editable in read-only document"
msgstr "কেৱল পঢ়িবৰ বাবে দস্তাবেজত সম্পাদনা কৰিব পাৰি (_d)"
#. SCL5F
-#: sw/inc/strings.hrc:1139
+#: sw/inc/strings.hrc:1140
msgctxt "STR_LAYOUT_SPLIT"
msgid "Split"
msgstr "বিভাজন কৰক"
#. CFmBk
-#: sw/inc/strings.hrc:1140
+#: sw/inc/strings.hrc:1141
msgctxt "STR_NUMRULE_ON"
msgid "List Style: (%LISTSTYLENAME)"
msgstr ""
#. HvZBm
-#: sw/inc/strings.hrc:1141
+#: sw/inc/strings.hrc:1142
msgctxt "STR_NUMRULE_OFF"
msgid "List Style: (None)"
msgstr ""
#. QDaFk
-#: sw/inc/strings.hrc:1142
+#: sw/inc/strings.hrc:1143
msgctxt "STR_CONNECT1"
msgid "linked to "
msgstr ""
#. rWmT8
-#: sw/inc/strings.hrc:1143
+#: sw/inc/strings.hrc:1144
msgctxt "STR_CONNECT2"
msgid "and "
msgstr "আৰু "
#. H2Kwq
-#: sw/inc/strings.hrc:1144
+#: sw/inc/strings.hrc:1145
msgctxt "STR_LINECOUNT"
msgid "Count lines"
msgstr ""
#. yjSiJ
-#: sw/inc/strings.hrc:1145
+#: sw/inc/strings.hrc:1146
msgctxt "STR_DONTLINECOUNT"
msgid "don't count lines"
msgstr ""
#. HE4BV
-#: sw/inc/strings.hrc:1146
+#: sw/inc/strings.hrc:1147
msgctxt "STR_LINCOUNT_START"
msgid "restart line count with: "
msgstr ""
#. 7Q8qC
-#: sw/inc/strings.hrc:1147
+#: sw/inc/strings.hrc:1148
#, fuzzy
msgctxt "STR_LUMINANCE"
msgid "Brightness: "
msgstr "উজ্জ্বলতা"
#. sNxPE
-#: sw/inc/strings.hrc:1148
+#: sw/inc/strings.hrc:1149
#, fuzzy
msgctxt "STR_CHANNELR"
msgid "Red: "
msgstr "পুনৰ কৰক "
#. u73NC
-#: sw/inc/strings.hrc:1149
+#: sw/inc/strings.hrc:1150
msgctxt "STR_CHANNELG"
msgid "Green: "
msgstr ""
#. qQsPp
-#: sw/inc/strings.hrc:1150
+#: sw/inc/strings.hrc:1151
msgctxt "STR_CHANNELB"
msgid "Blue: "
msgstr ""
#. BS4nZ
-#: sw/inc/strings.hrc:1151
+#: sw/inc/strings.hrc:1152
#, fuzzy
msgctxt "STR_CONTRAST"
msgid "Contrast: "
msgstr "পার্থক্য"
#. avJBK
-#: sw/inc/strings.hrc:1152
+#: sw/inc/strings.hrc:1153
msgctxt "STR_GAMMA"
msgid "Gamma: "
msgstr ""
#. HQCJZ
-#: sw/inc/strings.hrc:1153
+#: sw/inc/strings.hrc:1154
#, fuzzy
msgctxt "STR_TRANSPARENCY"
msgid "Transparency: "
msgstr "স্বচ্ছতা"
#. 5jDK3
-#: sw/inc/strings.hrc:1154
+#: sw/inc/strings.hrc:1155
#, fuzzy
msgctxt "STR_INVERT"
msgid "Invert"
msgstr "সুমুৱাওক"
#. DVSAx
-#: sw/inc/strings.hrc:1155
+#: sw/inc/strings.hrc:1156
msgctxt "STR_INVERT_NOT"
msgid "do not invert"
msgstr ""
#. Z7tXB
-#: sw/inc/strings.hrc:1156
+#: sw/inc/strings.hrc:1157
#, fuzzy
msgctxt "STR_DRAWMODE"
msgid "Graphics mode: "
msgstr "গ্ৰাফিক্সৰ প্ৰকাৰ"
#. RXuUF
-#: sw/inc/strings.hrc:1157
+#: sw/inc/strings.hrc:1158
#, fuzzy
msgctxt "STR_DRAWMODE_STD"
msgid "Standard"
msgstr "মানবিশিষ্ট"
#. kbALJ
-#: sw/inc/strings.hrc:1158
+#: sw/inc/strings.hrc:1159
#, fuzzy
msgctxt "STR_DRAWMODE_GREY"
msgid "Grayscales"
msgstr "গ্রেস্কেল"
#. eSHEj
-#: sw/inc/strings.hrc:1159
+#: sw/inc/strings.hrc:1160
#, fuzzy
msgctxt "STR_DRAWMODE_BLACKWHITE"
msgid "Black & White"
msgstr "ক'লা আৰু বগা"
#. tABTr
-#: sw/inc/strings.hrc:1160
+#: sw/inc/strings.hrc:1161
msgctxt "STR_DRAWMODE_WATERMARK"
msgid "Watermark"
msgstr "জলচিহ্ন"
#. 8SwC3
-#: sw/inc/strings.hrc:1161
+#: sw/inc/strings.hrc:1162
#, fuzzy
msgctxt "STR_ROTATION"
msgid "Rotation"
msgstr "উদ্ধৃতি"
#. hWEeF
-#: sw/inc/strings.hrc:1162
+#: sw/inc/strings.hrc:1163
msgctxt "STR_GRID_NONE"
msgid "No grid"
msgstr "জাল নাই"
#. HEuEv
-#: sw/inc/strings.hrc:1163
+#: sw/inc/strings.hrc:1164
msgctxt "STR_GRID_LINES_ONLY"
msgid "Grid (lines only)"
msgstr "জাল (কেৱল শাৰী)"
#. VFgMq
-#: sw/inc/strings.hrc:1164
+#: sw/inc/strings.hrc:1165
msgctxt "STR_GRID_LINES_CHARS"
msgid "Grid (lines and characters)"
msgstr "জাল (শাৰী আৰু আখৰবোৰ)"
#. VRJrB
-#: sw/inc/strings.hrc:1165
+#: sw/inc/strings.hrc:1166
msgctxt "STR_FOLLOW_TEXT_FLOW"
msgid "Follow text flow"
msgstr ""
#. Sb3Je
-#: sw/inc/strings.hrc:1166
+#: sw/inc/strings.hrc:1167
msgctxt "STR_DONT_FOLLOW_TEXT_FLOW"
msgid "Do not follow text flow"
msgstr ""
#. yXFKP
-#: sw/inc/strings.hrc:1167
+#: sw/inc/strings.hrc:1168
msgctxt "STR_CONNECT_BORDER_ON"
msgid "Merge borders"
msgstr ""
#. vwHbS
-#: sw/inc/strings.hrc:1168
+#: sw/inc/strings.hrc:1169
msgctxt "STR_CONNECT_BORDER_OFF"
msgid "Do not merge borders"
msgstr ""
#. 3874B
-#: sw/inc/strings.hrc:1170
+#: sw/inc/strings.hrc:1171
msgctxt "ST_TBL"
msgid "Table"
msgstr "টেবুল"
#. T9JAj
-#: sw/inc/strings.hrc:1171
+#: sw/inc/strings.hrc:1172
msgctxt "ST_FRM"
msgid "Frame"
msgstr ""
#. Fsnm6
-#: sw/inc/strings.hrc:1172
+#: sw/inc/strings.hrc:1173
msgctxt "ST_PGE"
msgid "Page"
msgstr "পৃষ্ঠা"
#. pKFCz
-#: sw/inc/strings.hrc:1173
+#: sw/inc/strings.hrc:1174
msgctxt "ST_DRW"
msgid "Drawing"
msgstr "ছবি"
#. amiSY
-#: sw/inc/strings.hrc:1174
+#: sw/inc/strings.hrc:1175
msgctxt "ST_CTRL"
msgid "Control"
msgstr "নিয়ন্ত্রণ"
#. GEw9u
-#: sw/inc/strings.hrc:1175
+#: sw/inc/strings.hrc:1176
#, fuzzy
msgctxt "ST_REG"
msgid "Section"
msgstr "খণ্ড"
#. bEiyL
-#: sw/inc/strings.hrc:1176
+#: sw/inc/strings.hrc:1177
msgctxt "ST_BKM"
msgid "Bookmark"
msgstr "পৃষ্ঠাসংকেত"
#. 6gXCo
-#: sw/inc/strings.hrc:1177
+#: sw/inc/strings.hrc:1178
msgctxt "ST_GRF"
msgid "Graphics"
msgstr "গ্ৰাফিক্স"
#. d5eSc
-#: sw/inc/strings.hrc:1178
+#: sw/inc/strings.hrc:1179
#, fuzzy
msgctxt "ST_OLE"
msgid "OLE object"
msgstr "OLEবস্তু"
#. h5QQ8
-#: sw/inc/strings.hrc:1179
+#: sw/inc/strings.hrc:1180
msgctxt "ST_OUTL"
msgid "Headings"
msgstr "শিৰোনামবোৰ"
#. Cbktp
-#: sw/inc/strings.hrc:1180
+#: sw/inc/strings.hrc:1181
msgctxt "ST_SEL"
msgid "Selection"
msgstr "নিৰ্বাচন"
#. nquvS
-#: sw/inc/strings.hrc:1181
+#: sw/inc/strings.hrc:1182
#, fuzzy
msgctxt "ST_FTN"
msgid "Footnote"
msgstr "পাদটীকা"
#. GpAUo
-#: sw/inc/strings.hrc:1182
+#: sw/inc/strings.hrc:1183
msgctxt "ST_MARK"
msgid "Reminder"
msgstr ""
#. nDFKa
-#: sw/inc/strings.hrc:1183
+#: sw/inc/strings.hrc:1184
msgctxt "ST_POSTIT"
msgid "Comment"
msgstr "মন্তব্যবোৰ"
#. qpbDE
-#: sw/inc/strings.hrc:1184
+#: sw/inc/strings.hrc:1185
#, fuzzy
msgctxt "ST_SRCH_REP"
msgid "Repeat search"
msgstr "বিচৰাৰ পুনৰাবৃত্তি"
#. ipxfH
-#: sw/inc/strings.hrc:1185
+#: sw/inc/strings.hrc:1186
msgctxt "ST_INDEX_ENTRY"
msgid "Index entry"
msgstr ""
#. sfmff
-#: sw/inc/strings.hrc:1186
+#: sw/inc/strings.hrc:1187
msgctxt "ST_TABLE_FORMULA"
msgid "Table formula"
msgstr ""
#. DtkuT
-#: sw/inc/strings.hrc:1187
+#: sw/inc/strings.hrc:1188
msgctxt "ST_TABLE_FORMULA_ERROR"
msgid "Wrong table formula"
msgstr ""
#. A6Vgk
-#: sw/inc/strings.hrc:1188
+#: sw/inc/strings.hrc:1189
msgctxt "ST_RECENCY"
msgid "Recency"
msgstr ""
#. pCp7u
-#: sw/inc/strings.hrc:1189
+#: sw/inc/strings.hrc:1190
msgctxt "ST_FIELD"
msgid "Field"
msgstr ""
#. LYuHA
-#: sw/inc/strings.hrc:1190
+#: sw/inc/strings.hrc:1191
msgctxt "ST_FIELD_BYTYPE"
msgid "Field by type"
msgstr ""
#. ECFxw
#. Strings for the quickhelp of the View-PgUp/Down-Buttons
-#: sw/inc/strings.hrc:1192
+#: sw/inc/strings.hrc:1193
msgctxt "STR_IMGBTN_TBL_DOWN"
msgid "Next table"
msgstr ""
#. yhnpi
-#: sw/inc/strings.hrc:1193
+#: sw/inc/strings.hrc:1194
msgctxt "STR_IMGBTN_FRM_DOWN"
msgid "Next frame"
msgstr ""
#. M4BCA
-#: sw/inc/strings.hrc:1194
+#: sw/inc/strings.hrc:1195
msgctxt "STR_IMGBTN_PGE_DOWN"
msgid "Next page"
msgstr "পৰৱর্তী পৃষ্ঠা"
#. UWeq4
-#: sw/inc/strings.hrc:1195
+#: sw/inc/strings.hrc:1196
#, fuzzy
msgctxt "STR_IMGBTN_DRW_DOWN"
msgid "Next drawing"
msgstr "কোনো শিৰোনাম নাই"
#. ZVCrD
-#: sw/inc/strings.hrc:1196
+#: sw/inc/strings.hrc:1197
msgctxt "STR_IMGBTN_CTRL_DOWN"
msgid "Next control"
msgstr ""
#. NGAqr
-#: sw/inc/strings.hrc:1197
+#: sw/inc/strings.hrc:1198
msgctxt "STR_IMGBTN_REG_DOWN"
msgid "Next section"
msgstr ""
#. Mwcvm
-#: sw/inc/strings.hrc:1198
+#: sw/inc/strings.hrc:1199
#, fuzzy
msgctxt "STR_IMGBTN_BKM_DOWN"
msgid "Next bookmark"
msgstr "পৰৱৰ্তী পৃষ্ঠাসংকেতলৈ"
#. xbxDs
-#: sw/inc/strings.hrc:1199
+#: sw/inc/strings.hrc:1200
msgctxt "STR_IMGBTN_GRF_DOWN"
msgid "Next graphic"
msgstr ""
#. 4ovAF
-#: sw/inc/strings.hrc:1200
+#: sw/inc/strings.hrc:1201
msgctxt "STR_IMGBTN_OLE_DOWN"
msgid "Next OLE object"
msgstr ""
#. YzK6w
-#: sw/inc/strings.hrc:1201
+#: sw/inc/strings.hrc:1202
#, fuzzy
msgctxt "STR_IMGBTN_OUTL_DOWN"
msgid "Next heading"
msgstr "কোনো শিৰোনাম নাই"
#. skdRc
-#: sw/inc/strings.hrc:1202
+#: sw/inc/strings.hrc:1203
msgctxt "STR_IMGBTN_SEL_DOWN"
msgid "Next selection"
msgstr ""
#. RBFga
-#: sw/inc/strings.hrc:1203
+#: sw/inc/strings.hrc:1204
#, fuzzy
msgctxt "STR_IMGBTN_FTN_DOWN"
msgid "Next footnote"
msgstr "পৰৱৰ্তী পাদটীকালৈ"
#. GNLrx
-#: sw/inc/strings.hrc:1204
+#: sw/inc/strings.hrc:1205
msgctxt "STR_IMGBTN_MARK_DOWN"
msgid "Next Reminder"
msgstr ""
#. mFCfp
-#: sw/inc/strings.hrc:1205
+#: sw/inc/strings.hrc:1206
msgctxt "STR_IMGBTN_POSTIT_DOWN"
msgid "Next Comment"
msgstr "পৰৱৰ্তী মন্তব্য"
#. gbnwp
-#: sw/inc/strings.hrc:1206
+#: sw/inc/strings.hrc:1207
msgctxt "STR_IMGBTN_SRCH_REP_DOWN"
msgid "Continue search forward"
msgstr ""
#. TXYkA
-#: sw/inc/strings.hrc:1207
+#: sw/inc/strings.hrc:1208
#, fuzzy
msgctxt "STR_IMGBTN_INDEX_ENTRY_DOWN"
msgid "Next index entry"
msgstr "সূচী প্রৱিষ্টি সুমুৱাওক"
#. EyvbV
-#: sw/inc/strings.hrc:1208
+#: sw/inc/strings.hrc:1209
#, fuzzy
msgctxt "STR_IMGBTN_TBL_UP"
msgid "Previous table"
msgstr "পূৰ্বৱৰ্তী পৃষ্ঠা"
#. cC5vJ
-#: sw/inc/strings.hrc:1209
+#: sw/inc/strings.hrc:1210
msgctxt "STR_IMGBTN_FRM_UP"
msgid "Previous frame"
msgstr ""
#. eQPFD
-#: sw/inc/strings.hrc:1210
+#: sw/inc/strings.hrc:1211
msgctxt "STR_IMGBTN_PGE_UP"
msgid "Previous page"
msgstr "পূৰ্বৱৰ্তী পৃষ্ঠা"
#. p5jbU
-#: sw/inc/strings.hrc:1211
+#: sw/inc/strings.hrc:1212
msgctxt "STR_IMGBTN_DRW_UP"
msgid "Previous drawing"
msgstr ""
#. 2WMmZ
-#: sw/inc/strings.hrc:1212
+#: sw/inc/strings.hrc:1213
msgctxt "STR_IMGBTN_CTRL_UP"
msgid "Previous control"
msgstr ""
#. 6uGDP
-#: sw/inc/strings.hrc:1213
+#: sw/inc/strings.hrc:1214
#, fuzzy
msgctxt "STR_IMGBTN_REG_UP"
msgid "Previous section"
msgstr "পৰৱৰ্তী খণ্ডলৈ"
#. YYCtk
-#: sw/inc/strings.hrc:1214
+#: sw/inc/strings.hrc:1215
#, fuzzy
msgctxt "STR_IMGBTN_BKM_UP"
msgid "Previous bookmark"
msgstr "পূৰ্বৱৰ্তী পৃষ্ঠাসংকেতলৈ"
#. nFLdX
-#: sw/inc/strings.hrc:1215
+#: sw/inc/strings.hrc:1216
msgctxt "STR_IMGBTN_GRF_UP"
msgid "Previous graphic"
msgstr ""
#. VuxvB
-#: sw/inc/strings.hrc:1216
+#: sw/inc/strings.hrc:1217
msgctxt "STR_IMGBTN_OLE_UP"
msgid "Previous OLE object"
msgstr ""
#. QSuct
-#: sw/inc/strings.hrc:1217
+#: sw/inc/strings.hrc:1218
msgctxt "STR_IMGBTN_OUTL_UP"
msgid "Previous heading"
msgstr ""
#. CzLBr
-#: sw/inc/strings.hrc:1218
+#: sw/inc/strings.hrc:1219
msgctxt "STR_IMGBTN_SEL_UP"
msgid "Previous selection"
msgstr ""
#. B7PoL
-#: sw/inc/strings.hrc:1219
+#: sw/inc/strings.hrc:1220
#, fuzzy
msgctxt "STR_IMGBTN_FTN_UP"
msgid "Previous footnote"
msgstr "পূৰ্বৱৰ্তী পাদটীকালৈ"
#. AgtLD
-#: sw/inc/strings.hrc:1220
+#: sw/inc/strings.hrc:1221
msgctxt "STR_IMGBTN_MARK_UP"
msgid "Previous Reminder"
msgstr ""
#. GJQ6F
-#: sw/inc/strings.hrc:1221
+#: sw/inc/strings.hrc:1222
msgctxt "STR_IMGBTN_POSTIT_UP"
msgid "Previous Comment"
msgstr "পূৰ্বৱৰ্তী মন্তব্য"
#. GWnfD
-#: sw/inc/strings.hrc:1222
+#: sw/inc/strings.hrc:1223
msgctxt "STR_IMGBTN_SRCH_REP_UP"
msgid "Continue search backwards"
msgstr ""
#. uDtcG
-#: sw/inc/strings.hrc:1223
+#: sw/inc/strings.hrc:1224
msgctxt "STR_IMGBTN_INDEX_ENTRY_UP"
msgid "Previous index entry"
msgstr ""
#. VR6DX
-#: sw/inc/strings.hrc:1224
+#: sw/inc/strings.hrc:1225
#, fuzzy
msgctxt "STR_IMGBTN_TBLFML_UP"
msgid "Previous table formula"
msgstr "পূৰ্বৱৰ্তী টেবুল সূত্ৰলৈ যাওক"
#. GqESF
-#: sw/inc/strings.hrc:1225
+#: sw/inc/strings.hrc:1226
msgctxt "STR_IMGBTN_TBLFML_DOWN"
msgid "Next table formula"
msgstr ""
#. gBgxo
-#: sw/inc/strings.hrc:1226
+#: sw/inc/strings.hrc:1227
#, fuzzy
msgctxt "STR_IMGBTN_TBLFML_ERR_UP"
msgid "Previous faulty table formula"
msgstr "অশুদ্ধ টেবুল সূত্ৰলৈ যাওক"
#. UAon9
-#: sw/inc/strings.hrc:1227
+#: sw/inc/strings.hrc:1228
#, fuzzy
msgctxt "STR_IMGBTN_TBLFML_ERR_DOWN"
msgid "Next faulty table formula"
msgstr "পৰৱৰ্তী অশুদ্ধ টেবুল সূত্ৰলৈ যাওক"
#. L2Apv
-#: sw/inc/strings.hrc:1228
+#: sw/inc/strings.hrc:1229
msgctxt "STR_IMGBTN_RECENCY_UP"
msgid "Go back"
msgstr ""
#. jCsGs
-#: sw/inc/strings.hrc:1229
+#: sw/inc/strings.hrc:1230
msgctxt "STR_IMGBTN_RECENCY_DOWN"
msgid "Go forward"
msgstr ""
#. o3BBz
-#: sw/inc/strings.hrc:1230
+#: sw/inc/strings.hrc:1231
msgctxt "STR_IMGBTN_FIELD_UP"
msgid "Previous field"
msgstr ""
#. bQ33Z
-#: sw/inc/strings.hrc:1231
+#: sw/inc/strings.hrc:1232
msgctxt "STR_IMGBTN_FIELD_DOWN"
msgid "Next field"
msgstr ""
#. bhUaK
-#: sw/inc/strings.hrc:1232
+#: sw/inc/strings.hrc:1233
msgctxt "STR_IMGBTN_FIELD_BYTYPE_UP"
msgid "Previous '%FIELDTYPE' field"
msgstr ""
#. A8HWi
-#: sw/inc/strings.hrc:1233
+#: sw/inc/strings.hrc:1234
msgctxt "STR_IMGBTN_FIELD_BYTYPE_DOWN"
msgid "Next '%FIELDTYPE' field"
msgstr ""
#. hSYa3
-#: sw/inc/strings.hrc:1235
+#: sw/inc/strings.hrc:1236
#, fuzzy
msgctxt "STR_REDLINE_INSERT"
msgid "Inserted"
msgstr "সুমুৱাওক"
#. LnFkq
-#: sw/inc/strings.hrc:1236
+#: sw/inc/strings.hrc:1237
#, fuzzy
msgctxt "STR_REDLINE_DELETE"
msgid "Deleted"
msgstr "মচি পেলাওক"
#. cTNEn
-#: sw/inc/strings.hrc:1237
+#: sw/inc/strings.hrc:1238
msgctxt "STR_REDLINE_FORMAT"
msgid "Formatted"
msgstr ""
#. YWr7C
-#: sw/inc/strings.hrc:1238
+#: sw/inc/strings.hrc:1239
#, fuzzy
msgctxt "STR_REDLINE_TABLE"
msgid "Table changed"
msgstr "টেবুল সলনি হয়"
#. 6xVDN
-#: sw/inc/strings.hrc:1239
+#: sw/inc/strings.hrc:1240
msgctxt "STR_REDLINE_FMTCOLL"
msgid "Applied Paragraph Styles"
msgstr "ব্যৱহৃত পেৰেগ্ৰাফ শৈলীবোৰ"
#. 32AND
-#: sw/inc/strings.hrc:1240
+#: sw/inc/strings.hrc:1241
msgctxt "STR_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr ""
#. wLDkj
-#: sw/inc/strings.hrc:1241
+#: sw/inc/strings.hrc:1242
#, fuzzy
msgctxt "STR_REDLINE_TABLE_ROW_INSERT"
msgid "Row Inserted"
msgstr "শাৰী সুমুৱা হল "
#. Eb5Gb
-#: sw/inc/strings.hrc:1242
+#: sw/inc/strings.hrc:1243
#, fuzzy
msgctxt "STR_REDLINE_TABLE_ROW_DELETE"
msgid "Row Deleted"
msgstr "শাৰী মচি পেলোৱা হ'ল"
#. i5ZJt
-#: sw/inc/strings.hrc:1243
+#: sw/inc/strings.hrc:1244
msgctxt "STR_REDLINE_TABLE_CELL_INSERT"
msgid "Cell Inserted"
msgstr ""
#. 4gE3z
-#: sw/inc/strings.hrc:1244
+#: sw/inc/strings.hrc:1245
msgctxt "STR_REDLINE_TABLE_CELL_DELETE"
msgid "Cell Deleted"
msgstr ""
#. DRCyp
-#: sw/inc/strings.hrc:1245
+#: sw/inc/strings.hrc:1246
#, fuzzy
msgctxt "STR_ENDNOTE"
msgid "Endnote: "
msgstr "অন্তিম টীকা"
#. qpW2q
-#: sw/inc/strings.hrc:1246
+#: sw/inc/strings.hrc:1247
#, fuzzy
msgctxt "STR_FTNNOTE"
msgid "Footnote: "
msgstr "পাদটীকা"
#. 3RFUd
-#: sw/inc/strings.hrc:1247
+#: sw/inc/strings.hrc:1248
msgctxt "STR_SMARTTAG_CLICK"
msgid "%s-click to open Smart Tag menu"
msgstr ""
#. QCD36
-#: sw/inc/strings.hrc:1248
+#: sw/inc/strings.hrc:1249
msgctxt "STR_HEADER_TITLE"
msgid "Header (%1)"
msgstr ""
#. AYjgB
-#: sw/inc/strings.hrc:1249
+#: sw/inc/strings.hrc:1250
msgctxt "STR_FIRST_HEADER_TITLE"
msgid "First Page Header (%1)"
msgstr ""
#. qVX2k
-#: sw/inc/strings.hrc:1250
+#: sw/inc/strings.hrc:1251
msgctxt "STR_LEFT_HEADER_TITLE"
msgid "Left Page Header (%1)"
msgstr ""
#. DSg3b
-#: sw/inc/strings.hrc:1251
+#: sw/inc/strings.hrc:1252
msgctxt "STR_RIGHT_HEADER_TITLE"
msgid "Right Page Header (%1)"
msgstr ""
#. 6GzuM
-#: sw/inc/strings.hrc:1252
+#: sw/inc/strings.hrc:1253
msgctxt "STR_FOOTER_TITLE"
msgid "Footer (%1)"
msgstr ""
#. FDVNH
-#: sw/inc/strings.hrc:1253
+#: sw/inc/strings.hrc:1254
msgctxt "STR_FIRST_FOOTER_TITLE"
msgid "First Page Footer (%1)"
msgstr ""
#. SL7r3
-#: sw/inc/strings.hrc:1254
+#: sw/inc/strings.hrc:1255
msgctxt "STR_LEFT_FOOTER_TITLE"
msgid "Left Page Footer (%1)"
msgstr ""
#. CBvih
-#: sw/inc/strings.hrc:1255
+#: sw/inc/strings.hrc:1256
msgctxt "STR_RIGHT_FOOTER_TITLE"
msgid "Right Page Footer (%1)"
msgstr ""
#. s8v3h
-#: sw/inc/strings.hrc:1256
+#: sw/inc/strings.hrc:1257
#, fuzzy
msgctxt "STR_DELETE_HEADER"
msgid "Delete Header..."
msgstr "স্তৰ মচি পেলাওক (~L)..."
#. wL3Fr
-#: sw/inc/strings.hrc:1257
+#: sw/inc/strings.hrc:1258
#, fuzzy
msgctxt "STR_FORMAT_HEADER"
msgid "Format Header..."
msgstr "পৃষ্ঠা ফৰমেট কৰক (~P)..."
#. DrAUe
-#: sw/inc/strings.hrc:1258
+#: sw/inc/strings.hrc:1259
#, fuzzy
msgctxt "STR_DELETE_FOOTER"
msgid "Delete Footer..."
msgstr "স্তৰ মচি পেলাওক (~L)..."
#. 9Xgou
-#: sw/inc/strings.hrc:1259
+#: sw/inc/strings.hrc:1260
#, fuzzy
msgctxt "STR_FORMAT_FOOTER"
msgid "Format Footer..."
msgstr "মজীয়া ফৰমেট..."
#. ApT5B
-#: sw/inc/strings.hrc:1261
+#: sw/inc/strings.hrc:1262
msgctxt "STR_UNFLOAT_TABLE"
msgid "Un-float Table"
msgstr ""
#. wVAZJ
-#: sw/inc/strings.hrc:1263
+#: sw/inc/strings.hrc:1264
msgctxt "STR_PAGE_BREAK_BUTTON"
msgid "Edit page break"
msgstr ""
#. uvDKE
-#: sw/inc/strings.hrc:1265
+#: sw/inc/strings.hrc:1266
msgctxt "STR_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "ছবি ফাইলখন খুলিব নোৱাৰি"
#. iJuAv
-#: sw/inc/strings.hrc:1266
+#: sw/inc/strings.hrc:1267
msgctxt "STR_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr "ছবি ফাইল পঢ়িব নোৱাৰি"
#. Bwwho
-#: sw/inc/strings.hrc:1267
+#: sw/inc/strings.hrc:1268
msgctxt "STR_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr "অজ্ঞাত ছবি বিন্যাস"
#. bfog5
-#: sw/inc/strings.hrc:1268
+#: sw/inc/strings.hrc:1269
msgctxt "STR_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr "এই ছবি ফাইল সংস্কৰণ সমৰ্থিত নহয়"
#. xy4Vm
-#: sw/inc/strings.hrc:1269
+#: sw/inc/strings.hrc:1270
msgctxt "STR_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr "ছবি ফিল্টাৰ পোৱা নগল"
#. tEqyq
-#: sw/inc/strings.hrc:1270
+#: sw/inc/strings.hrc:1271
#, fuzzy
msgctxt "STR_GRFILTER_TOOBIG"
msgid "Not enough memory to insert the image."
msgstr "ছবি সুমুৱাবলৈ পৰ্যাপ্ত মেমৰি নাই।"
#. 5ihue
-#: sw/inc/strings.hrc:1271
+#: sw/inc/strings.hrc:1272
msgctxt "STR_INSERT_GRAPHIC"
msgid "Insert Image"
msgstr "ছবি সুমুৱাওক"
#. GWzLN
-#: sw/inc/strings.hrc:1272
+#: sw/inc/strings.hrc:1273
msgctxt "STR_REDLINE_COMMENT"
msgid "Comment: "
msgstr "মন্তব্য: "
#. CoJc8
-#: sw/inc/strings.hrc:1273
+#: sw/inc/strings.hrc:1274
msgctxt "STR_REDLINE_INSERTED"
msgid "Insertion"
msgstr "অন্তর্ভূক্তি"
#. dfMEF
-#: sw/inc/strings.hrc:1274
+#: sw/inc/strings.hrc:1275
msgctxt "STR_REDLINE_DELETED"
msgid "Deletion"
msgstr "ডিলিশ্বন"
#. NytQQ
-#: sw/inc/strings.hrc:1275
+#: sw/inc/strings.hrc:1276
msgctxt "STR_REDLINE_AUTOFMT"
msgid "AutoCorrect"
msgstr "স্বশুদ্ধকৰণ"
#. YRAQL
-#: sw/inc/strings.hrc:1276
+#: sw/inc/strings.hrc:1277
msgctxt "STR_REDLINE_FORMATTED"
msgid "Formats"
msgstr ""
#. ELCVU
-#: sw/inc/strings.hrc:1277
+#: sw/inc/strings.hrc:1278
msgctxt "STR_REDLINE_TABLECHG"
msgid "Table Changes"
msgstr "টেবুল সলনি হয়"
#. PzfQF
-#: sw/inc/strings.hrc:1278
+#: sw/inc/strings.hrc:1279
msgctxt "STR_REDLINE_FMTCOLLSET"
msgid "Applied Paragraph Styles"
msgstr "ব্যৱহৃত পেৰেগ্ৰাফ শৈলীবোৰ"
#. sgEbW
-#: sw/inc/strings.hrc:1279
+#: sw/inc/strings.hrc:1280
msgctxt "STR_PAGE"
msgid "Page "
msgstr "পৃষ্ঠা "
#. 3DpEx
-#: sw/inc/strings.hrc:1280
+#: sw/inc/strings.hrc:1281
#, fuzzy
msgctxt "STR_PAGE_COUNT"
msgid "Page %1 of %2"
msgstr "%n ৰ %p পৃষ্ঠা"
#. HSbzS
-#: sw/inc/strings.hrc:1281
+#: sw/inc/strings.hrc:1282
msgctxt "STR_PAGE_COUNT_CUSTOM"
msgid "Page %1 of %2 (Page %3)"
msgstr ""
#. a7tDc
-#: sw/inc/strings.hrc:1282
+#: sw/inc/strings.hrc:1283
msgctxt "STR_PAGE_COUNT_PRINTED"
msgid "Page %1 of %2 (Page %3 of %4 to print)"
msgstr ""
#. KjML8
#. Strings for gallery/background
-#: sw/inc/strings.hrc:1284
+#: sw/inc/strings.hrc:1285
msgctxt "STR_SWBG_PARAGRAPH"
msgid "Paragraph"
msgstr "পেৰেগ্ৰাফ"
#. aAtmp
-#: sw/inc/strings.hrc:1285
+#: sw/inc/strings.hrc:1286
msgctxt "STR_SWBG_GRAPHIC"
msgid "Image"
msgstr "ছবি"
#. UBDMK
-#: sw/inc/strings.hrc:1286
+#: sw/inc/strings.hrc:1287
msgctxt "STR_SWBG_OLE"
msgid "OLE object"
msgstr "OLE বস্তু"
#. xEWbo
-#: sw/inc/strings.hrc:1287
+#: sw/inc/strings.hrc:1288
msgctxt "STR_SWBG_FRAME"
msgid "Frame"
msgstr "ফ্ৰেম"
#. hfJns
-#: sw/inc/strings.hrc:1288
+#: sw/inc/strings.hrc:1289
msgctxt "STR_SWBG_TABLE"
msgid "Table"
msgstr "টেবুল"
#. GRqNY
-#: sw/inc/strings.hrc:1289
+#: sw/inc/strings.hrc:1290
msgctxt "STR_SWBG_TABLE_ROW"
msgid "Table row"
msgstr "টেবুলৰ শাৰী"
#. CDQY4
-#: sw/inc/strings.hrc:1290
+#: sw/inc/strings.hrc:1291
msgctxt "STR_SWBG_TABLE_CELL"
msgid "Table cell"
msgstr "টেবুল কক্ষ"
#. 2Db9T
-#: sw/inc/strings.hrc:1291
+#: sw/inc/strings.hrc:1292
msgctxt "STR_SWBG_PAGE"
msgid "Page"
msgstr "পৃষ্ঠা"
#. 63FuG
-#: sw/inc/strings.hrc:1292
+#: sw/inc/strings.hrc:1293
msgctxt "STR_SWBG_HEADER"
msgid "Header"
msgstr "হেডাৰ"
#. aDuAY
-#: sw/inc/strings.hrc:1293
+#: sw/inc/strings.hrc:1294
msgctxt "STR_SWBG_FOOTER"
msgid "Footer"
msgstr "ফুটাৰ"
#. uAp9i
#. End: strings for gallery/background
-#: sw/inc/strings.hrc:1296
+#: sw/inc/strings.hrc:1297
msgctxt "STR_WRITER_WEBDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION HTML Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION HTML দস্তাবেজ"
#. y2GBv
-#: sw/inc/strings.hrc:1298
+#: sw/inc/strings.hrc:1299
msgctxt "STR_TITLE"
msgid "Title"
msgstr "শীৰ্ষক"
#. AipGR
-#: sw/inc/strings.hrc:1299
+#: sw/inc/strings.hrc:1300
msgctxt "STR_ALPHA"
msgid "Separator"
msgstr "পৃথক কৰোঁতা"
#. CoSEf
-#: sw/inc/strings.hrc:1300
+#: sw/inc/strings.hrc:1301
msgctxt "STR_LEVEL"
msgid "Level "
msgstr "Level "
#. JdTF4
-#: sw/inc/strings.hrc:1301
+#: sw/inc/strings.hrc:1302
msgctxt "STR_FILE_NOT_FOUND"
msgid "The file, \"%1\" in the \"%2\" path could not be found."
msgstr "ফাইল, \"%1\" যি \"%2\" পথত আছে তাক বিচাৰি পোৱা নগ'ল।"
#. zRWDZ
-#: sw/inc/strings.hrc:1302
+#: sw/inc/strings.hrc:1303
msgctxt "STR_USER_DEFINED_INDEX"
msgid "User-Defined Index"
msgstr "ব্যৱহাৰকাৰী-বিৱৰিত সূচী"
#. t5uWs
-#: sw/inc/strings.hrc:1303
+#: sw/inc/strings.hrc:1304
msgctxt "STR_NOSORTKEY"
msgid "<None>"
msgstr "<None>"
#. vSSnJ
-#: sw/inc/strings.hrc:1304
+#: sw/inc/strings.hrc:1305
msgctxt "STR_NO_CHAR_STYLE"
msgid "<None>"
msgstr "<None>"
#. NSx98
-#: sw/inc/strings.hrc:1305
+#: sw/inc/strings.hrc:1306
msgctxt "STR_DELIM"
msgid "S"
msgstr "S"
#. hK8CX
-#: sw/inc/strings.hrc:1306
+#: sw/inc/strings.hrc:1307
msgctxt "STR_TOKEN_ENTRY_NO"
msgid "E#"
msgstr "E#"
#. 8EgTx
-#: sw/inc/strings.hrc:1307
+#: sw/inc/strings.hrc:1308
msgctxt "STR_TOKEN_ENTRY"
msgid "E"
msgstr "E"
#. gxt8B
-#: sw/inc/strings.hrc:1308
+#: sw/inc/strings.hrc:1309
msgctxt "STR_TOKEN_TAB_STOP"
msgid "T"
msgstr "T"
#. pGAb4
-#: sw/inc/strings.hrc:1309
+#: sw/inc/strings.hrc:1310
msgctxt "STR_TOKEN_PAGE_NUMS"
msgid "#"
msgstr "#"
#. teDm3
-#: sw/inc/strings.hrc:1310
+#: sw/inc/strings.hrc:1311
msgctxt "STR_TOKEN_CHAPTER_INFO"
msgid "CI"
msgstr "CI"
#. XWaFn
-#: sw/inc/strings.hrc:1311
+#: sw/inc/strings.hrc:1312
msgctxt "STR_TOKEN_LINK_START"
msgid "LS"
msgstr "LS"
#. xp6D6
-#: sw/inc/strings.hrc:1312
+#: sw/inc/strings.hrc:1313
msgctxt "STR_TOKEN_LINK_END"
msgid "LE"
msgstr "LE"
#. AogDK
-#: sw/inc/strings.hrc:1313
+#: sw/inc/strings.hrc:1314
msgctxt "STR_TOKEN_AUTHORITY"
msgid "A"
msgstr "A"
#. 5A4jw
-#: sw/inc/strings.hrc:1314
+#: sw/inc/strings.hrc:1315
msgctxt "STR_TOKEN_HELP_ENTRY_NO"
msgid "Chapter number"
msgstr "পাঠ সংখ্যা"
#. FH365
-#: sw/inc/strings.hrc:1315
+#: sw/inc/strings.hrc:1316
msgctxt "STR_TOKEN_HELP_ENTRY"
msgid "Entry"
msgstr "প্রৱিষ্টি"
#. xZjtZ
-#: sw/inc/strings.hrc:1316
+#: sw/inc/strings.hrc:1317
msgctxt "STR_TOKEN_HELP_TAB_STOP"
msgid "Tab stop"
msgstr "টেব বন্ধ"
#. aXW8y
-#: sw/inc/strings.hrc:1317
+#: sw/inc/strings.hrc:1318
msgctxt "STR_TOKEN_HELP_TEXT"
msgid "Text"
msgstr "লিখনি"
#. MCUd2
-#: sw/inc/strings.hrc:1318
+#: sw/inc/strings.hrc:1319
msgctxt "STR_TOKEN_HELP_PAGE_NUMS"
msgid "Page number"
msgstr "পৃষ্ঠাৰ সংখ্যা"
#. pXqw3
-#: sw/inc/strings.hrc:1319
+#: sw/inc/strings.hrc:1320
msgctxt "STR_TOKEN_HELP_CHAPTER_INFO"
msgid "Chapter info"
msgstr "পাঠৰ তথ্য"
#. DRBSD
-#: sw/inc/strings.hrc:1320
+#: sw/inc/strings.hrc:1321
msgctxt "STR_TOKEN_HELP_LINK_START"
msgid "Hyperlink start"
msgstr "হাইপাৰলিংক আৰম্ভ"
#. Ytn5g
-#: sw/inc/strings.hrc:1321
+#: sw/inc/strings.hrc:1322
msgctxt "STR_TOKEN_HELP_LINK_END"
msgid "Hyperlink end"
msgstr "হাইপাৰলিংক অন্ত"
#. hRo3J
-#: sw/inc/strings.hrc:1322
+#: sw/inc/strings.hrc:1323
msgctxt "STR_TOKEN_HELP_AUTHORITY"
msgid "Bibliography entry: "
msgstr "গ্রন্থ-সূচী প্রৱিষ্টি: "
#. ZKG5v
-#: sw/inc/strings.hrc:1323
+#: sw/inc/strings.hrc:1324
msgctxt "STR_CHARSTYLE"
msgid "Character Style: "
msgstr "আখৰৰ শৈলী: "
#. d9BES
-#: sw/inc/strings.hrc:1324
+#: sw/inc/strings.hrc:1325
msgctxt "STR_STRUCTURE"
msgid "Structure text"
msgstr "গঠন লিখনি"
#. kwoGP
-#: sw/inc/strings.hrc:1325
+#: sw/inc/strings.hrc:1326
msgctxt "STR_ADDITIONAL_ACCNAME_STRING1"
msgid "Press Ctrl+Alt+A to move focus for more operations"
msgstr "অধিক কাৰ্য্যৰ বাবে ফকাচ স্থানান্তৰ কৰিবলে Ctrl+Alt+A টিপক"
#. Avm9y
-#: sw/inc/strings.hrc:1326
+#: sw/inc/strings.hrc:1327
msgctxt "STR_ADDITIONAL_ACCNAME_STRING2"
msgid "Press left or right arrow to choose the structure controls"
msgstr "গঠন নিয়ন্ত্ৰণসমূহ বাছিবলে বাঁও অথবা সোঁ কাঁড় টিপক"
#. 59eRi
-#: sw/inc/strings.hrc:1327
+#: sw/inc/strings.hrc:1328
msgctxt "STR_ADDITIONAL_ACCNAME_STRING3"
msgid "Press Ctrl+Alt+B to move focus back to the current structure control"
msgstr "ফকাচ পুনৰ বৰ্তমান গঠন নিয়ন্ত্ৰণলৈ নিবলৈ Ctrl+Alt+B টিপক"
#. 8AagG
-#: sw/inc/strings.hrc:1328
+#: sw/inc/strings.hrc:1329
msgctxt "STR_AUTOMARK_TYPE"
msgid "Selection file for the alphabetical index (*.sdi)"
msgstr "বর্ণমালা সূচীৰ বাবে বাছনী ফাইল (*.sdi)"
@@ -9678,268 +9684,268 @@ msgstr "বর্ণমালা সূচীৰ বাবে বাছনী
#. -----------------------------------------------------------------------
#. Description: character alignment for frmsh.cxx - context menu
#. -----------------------------------------------------------------------
-#: sw/inc/strings.hrc:1333
+#: sw/inc/strings.hrc:1334
msgctxt "STR_FRMUI_TOP_BASE"
msgid "Base line at ~top"
msgstr "ওপৰত আধাৰ ৰেখা (~t)"
#. 5GiEA
-#: sw/inc/strings.hrc:1334
+#: sw/inc/strings.hrc:1335
msgctxt "STR_FRMUI_BOTTOM_BASE"
msgid "~Base line at bottom"
msgstr "তলত আধাৰ ৰেখা (~B)"
#. sdyVF
-#: sw/inc/strings.hrc:1335
+#: sw/inc/strings.hrc:1336
msgctxt "STR_FRMUI_CENTER_BASE"
msgid "Base line ~centered"
msgstr "আধাৰ ৰেখা কেন্দ্রীকৃত (~c)"
#. NAXyZ
-#: sw/inc/strings.hrc:1336
+#: sw/inc/strings.hrc:1337
msgctxt "STR_FRMUI_OLE_INSERT"
msgid "Insert object"
msgstr "বস্তু ভৰাওক"
#. 5C6Rc
-#: sw/inc/strings.hrc:1337
+#: sw/inc/strings.hrc:1338
msgctxt "STR_FRMUI_OLE_EDIT"
msgid "Edit object"
msgstr "বস্তু সম্পাদনা কৰক"
#. 3QFYB
-#: sw/inc/strings.hrc:1338
+#: sw/inc/strings.hrc:1339
msgctxt "STR_FRMUI_COLL_HEADER"
msgid " (Template: "
msgstr " (নমুনা: "
#. oUhnK
-#: sw/inc/strings.hrc:1339
+#: sw/inc/strings.hrc:1340
msgctxt "STR_FRMUI_BORDER"
msgid "Borders"
msgstr "সীমাৰেখাবোৰ"
#. T2SH2
-#: sw/inc/strings.hrc:1340
+#: sw/inc/strings.hrc:1341
msgctxt "STR_FRMUI_PATTERN"
msgid "Background"
msgstr "পৃষ্ঠভূমি"
#. K6Yvs
-#: sw/inc/strings.hrc:1342
+#: sw/inc/strings.hrc:1343
msgctxt "STR_TEXTCOLL_HEADER"
msgid "(Paragraph Style: "
msgstr "(পেৰেগ্ৰাফ শৈলী: "
#. Fsanh
-#: sw/inc/strings.hrc:1343
+#: sw/inc/strings.hrc:1344
#, fuzzy
msgctxt "STR_ILLEGAL_PAGENUM"
msgid "Page numbers cannot be applied to the current page. Even numbers can be used on left pages, odd numbers on right pages."
msgstr "বৰ্তমান পৃষ্ঠালে পৃষ্ঠা নম্বৰসমূহ প্ৰয়োগ কৰিব নোৱাৰি। যুগ্ম নম্বৰসমূহ বাও পৃষ্ঠাসমূহত ব্যৱহাৰ কৰিব পাৰি, অযুগ্ম নম্বৰসমূহ সোঁ পৃষ্ঠাসমূহত ব্যৱহাৰ কৰিব পাৰি।"
#. VZnJf
-#: sw/inc/strings.hrc:1345
+#: sw/inc/strings.hrc:1346
msgctxt "STR_WRITER_GLOBALDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Master Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION মুখ্য দস্তাবেজ"
#. kWe9j
-#: sw/inc/strings.hrc:1347
+#: sw/inc/strings.hrc:1348
msgctxt "STR_QUERY_CONNECT"
msgid "A file connection will delete the contents of the current section. Connect anyway?"
msgstr ""
#. dLuAF
-#: sw/inc/strings.hrc:1348
+#: sw/inc/strings.hrc:1349
msgctxt "STR_WRONG_PASSWORD"
msgid "The password entered is invalid."
msgstr ""
#. oUR7Y
-#: sw/inc/strings.hrc:1349
+#: sw/inc/strings.hrc:1350
msgctxt "STR_WRONG_PASSWD_REPEAT"
msgid "The password has not been set."
msgstr ""
#. GBVqD
-#: sw/inc/strings.hrc:1351
+#: sw/inc/strings.hrc:1352
msgctxt "STR_HYP_OK"
msgid "Hyphenation completed"
msgstr ""
#. rZBXF
-#: sw/inc/strings.hrc:1352
+#: sw/inc/strings.hrc:1353
msgctxt "STR_LANGSTATUS_NONE"
msgid "None (Do not check spelling)"
msgstr "কোনো নহয় (বানান নিৰীক্ষন নকৰিব)"
#. Z8EjG
-#: sw/inc/strings.hrc:1353
+#: sw/inc/strings.hrc:1354
msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE"
msgid "Reset to Default Language"
msgstr "অবিকল্পিত ভাষালৈ পুনৰ সংহতি কৰা"
#. YEXdS
-#: sw/inc/strings.hrc:1354
+#: sw/inc/strings.hrc:1355
msgctxt "STR_LANGSTATUS_MORE"
msgid "More..."
msgstr "অধিক..."
#. QecQ3
-#: sw/inc/strings.hrc:1355
+#: sw/inc/strings.hrc:1356
msgctxt "STR_IGNORE_SELECTION"
msgid "~Ignore"
msgstr "উপেক্ষা কৰক (~I)"
#. aaiBM
-#: sw/inc/strings.hrc:1356
+#: sw/inc/strings.hrc:1357
msgctxt "STR_EXPLANATION_LINK"
msgid "Explanations..."
msgstr ""
#. kSDGu
-#: sw/inc/strings.hrc:1358
+#: sw/inc/strings.hrc:1359
msgctxt "STR_QUERY_SPECIAL_FORCED"
msgid "Check special regions is deactivated. Check anyway?"
msgstr ""
#. KiAdJ
-#: sw/inc/strings.hrc:1359
+#: sw/inc/strings.hrc:1360
msgctxt "STR_NO_MERGE_ENTRY"
msgid "Could not merge documents."
msgstr ""
#. FqsCt
-#: sw/inc/strings.hrc:1360
+#: sw/inc/strings.hrc:1361
msgctxt "STR_NO_BASE_FOR_MERGE"
msgid "%PRODUCTNAME Base component is absent, and it is required to use Mail Merge."
msgstr ""
#. wcuf4
-#: sw/inc/strings.hrc:1361
+#: sw/inc/strings.hrc:1362
msgctxt "STR_ERR_SRCSTREAM"
msgid "The source cannot be loaded."
msgstr ""
#. K9qMS
-#: sw/inc/strings.hrc:1362
+#: sw/inc/strings.hrc:1363
msgctxt "STR_ERR_NO_FAX"
msgid "No fax printer has been set under Tools/Options/%1/Print."
msgstr ""
#. XWQ8w
-#: sw/inc/strings.hrc:1363
+#: sw/inc/strings.hrc:1364
#, fuzzy
msgctxt "STR_WEBOPTIONS"
msgid "HTML document"
msgstr "HTML ডকুমেন্ট"
#. qVZBx
-#: sw/inc/strings.hrc:1364
+#: sw/inc/strings.hrc:1365
#, fuzzy
msgctxt "STR_TEXTOPTIONS"
msgid "Text document"
msgstr "প্ৰতিটো দস্তাবেজত"
#. qmmPU
-#: sw/inc/strings.hrc:1365
+#: sw/inc/strings.hrc:1366
msgctxt "STR_SCAN_NOSOURCE"
msgid "Source not specified."
msgstr ""
#. 2LgDJ
-#: sw/inc/strings.hrc:1366
+#: sw/inc/strings.hrc:1367
msgctxt "STR_NUM_LEVEL"
msgid "Level "
msgstr "Level "
#. AcAD8
-#: sw/inc/strings.hrc:1367
+#: sw/inc/strings.hrc:1368
#, fuzzy
msgctxt "STR_NUM_OUTLINE"
msgid "Outline "
msgstr "ৰূপৰেখা"
#. DE9FZ
-#: sw/inc/strings.hrc:1368
+#: sw/inc/strings.hrc:1369
#, fuzzy
msgctxt "STR_EDIT_FOOTNOTE"
msgid "Edit Footnote/Endnote"
msgstr "ফুটনোট/এণ্ডনোট সুমুৱাওক"
#. EzBCZ
-#: sw/inc/strings.hrc:1369
+#: sw/inc/strings.hrc:1370
#, fuzzy
msgctxt "STR_NB_REPLACED"
msgid "Search key replaced XX times."
msgstr "সন্ধান চাবিৰে XX সময় সলনি কৰা হ'ল"
#. fgywB
-#: sw/inc/strings.hrc:1370
+#: sw/inc/strings.hrc:1371
#, fuzzy
msgctxt "STR_SRCVIEW_ROW"
msgid "Row "
msgstr "শাৰীবোৰ"
#. GUc4a
-#: sw/inc/strings.hrc:1371
+#: sw/inc/strings.hrc:1372
#, fuzzy
msgctxt "STR_SRCVIEW_COL"
msgid "Column "
msgstr "স্তম্ভ"
#. yMyuo
-#: sw/inc/strings.hrc:1372
+#: sw/inc/strings.hrc:1373
msgctxt "STR_SAVEAS_SRC"
msgid "~Export source..."
msgstr ""
#. ywFCb
-#: sw/inc/strings.hrc:1373
+#: sw/inc/strings.hrc:1374
msgctxt "STR_SAVEACOPY_SRC"
msgid "~Export copy of source..."
msgstr ""
#. BT3M3
-#: sw/inc/strings.hrc:1375
+#: sw/inc/strings.hrc:1376
#, fuzzy
msgctxt "ST_CONTINUE"
msgid "~Continue"
msgstr "চলাই থাকক"
#. ZR9aw
-#: sw/inc/strings.hrc:1376
+#: sw/inc/strings.hrc:1377
msgctxt "ST_SENDINGTO"
msgid "Sending to: %1"
msgstr ""
#. YCNYb
-#: sw/inc/strings.hrc:1377
+#: sw/inc/strings.hrc:1378
msgctxt "ST_COMPLETED"
msgid "Successfully sent"
msgstr ""
#. fmHmE
-#: sw/inc/strings.hrc:1378
+#: sw/inc/strings.hrc:1379
msgctxt "ST_FAILED"
msgid "Sending failed"
msgstr ""
#. yAAPM
-#: sw/inc/strings.hrc:1380
+#: sw/inc/strings.hrc:1381
msgctxt "STR_SENDER_TOKENS"
msgid "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
msgstr "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
#. mWrXk
-#: sw/inc/strings.hrc:1382
+#: sw/inc/strings.hrc:1383
msgctxt "STR_TBL_FORMULA"
msgid "Text formula"
msgstr ""
#. RmBFW
-#: sw/inc/strings.hrc:1384
+#: sw/inc/strings.hrc:1385
msgctxt "STR_DROP_DOWN_EMPTY_LIST"
msgid "No Item specified"
msgstr ""
@@ -9948,7 +9954,7 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Classification strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1390
+#: sw/inc/strings.hrc:1391
msgctxt "STR_CLASSIFICATION_LEVEL_CHANGED"
msgid "Document classification has changed because a paragraph classification level is higher"
msgstr ""
@@ -9957,125 +9963,125 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Paragraph Signature
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1395
+#: sw/inc/strings.hrc:1396
msgctxt "STR_VALID"
msgid " Valid "
msgstr ""
#. xAKRC
-#: sw/inc/strings.hrc:1396
+#: sw/inc/strings.hrc:1397
msgctxt "STR_INVALID"
msgid "Invalid"
msgstr ""
#. pDAHz
-#: sw/inc/strings.hrc:1397
+#: sw/inc/strings.hrc:1398
msgctxt "STR_INVALID_SIGNATURE"
msgid "Invalid Signature"
msgstr ""
#. etEEx
-#: sw/inc/strings.hrc:1398
+#: sw/inc/strings.hrc:1399
#, fuzzy
msgctxt "STR_SIGNED_BY"
msgid "Signed-by"
msgstr "স্বাক্ষৰ কৰিছে "
#. BK7ub
-#: sw/inc/strings.hrc:1399
+#: sw/inc/strings.hrc:1400
msgctxt "STR_PARAGRAPH_SIGNATURE"
msgid "Paragraph Signature"
msgstr ""
#. kZKCf
-#: sw/inc/strings.hrc:1401
+#: sw/inc/strings.hrc:1402
#, fuzzy
msgctxt "labeldialog|cards"
msgid "Business Cards"
msgstr "ব্যৱসায়িক কার্ডসমূহ (~u)"
#. ECFij
-#: sw/inc/strings.hrc:1403
+#: sw/inc/strings.hrc:1404
msgctxt "STR_MAILCONFIG_DLG_TITLE"
msgid "Email settings"
msgstr ""
#. PwrB9
-#: sw/inc/strings.hrc:1405
+#: sw/inc/strings.hrc:1406
msgctxt "optredlinepage|insertedpreview"
msgid "Insert"
msgstr "সুমুৱাওক"
#. NL48o
-#: sw/inc/strings.hrc:1406
+#: sw/inc/strings.hrc:1407
msgctxt "optredlinepage|deletedpreview"
msgid "Delete"
msgstr "মচি পেলাওক"
#. PW4Bz
-#: sw/inc/strings.hrc:1407
+#: sw/inc/strings.hrc:1408
#, fuzzy
msgctxt "optredlinepage|changedpreview"
msgid "Attributes"
msgstr "এট্রিবিয়ুটবোৰ"
#. yfgiq
-#: sw/inc/strings.hrc:1409
+#: sw/inc/strings.hrc:1410
msgctxt "createautomarkdialog|searchterm"
msgid "Search term"
msgstr ""
#. fhLzk
-#: sw/inc/strings.hrc:1410
+#: sw/inc/strings.hrc:1411
msgctxt "createautomarkdialog|alternative"
msgid "Alternative entry"
msgstr ""
#. gD4D3
-#: sw/inc/strings.hrc:1411
+#: sw/inc/strings.hrc:1412
msgctxt "createautomarkdialog|key1"
msgid "1st key"
msgstr "প্ৰথম চাবি"
#. BFszo
-#: sw/inc/strings.hrc:1412
+#: sw/inc/strings.hrc:1413
msgctxt "createautomarkdialog|key2"
msgid "2nd key"
msgstr "দ্বিতীয় চাবি"
#. EoAB8
-#: sw/inc/strings.hrc:1413
+#: sw/inc/strings.hrc:1414
#, fuzzy
msgctxt "createautomarkdialog|comment"
msgid "Comment"
msgstr "মন্তব্যসমূহ"
#. Shstx
-#: sw/inc/strings.hrc:1414
+#: sw/inc/strings.hrc:1415
msgctxt "createautomarkdialog|casesensitive"
msgid "Match case"
msgstr "ফলা মিল খোৱাওক"
#. 8Cjvb
-#: sw/inc/strings.hrc:1415
+#: sw/inc/strings.hrc:1416
msgctxt "createautomarkdialog|wordonly"
msgid "Word only"
msgstr ""
#. zD8rb
-#: sw/inc/strings.hrc:1416
+#: sw/inc/strings.hrc:1417
msgctxt "createautomarkdialog|yes"
msgid "Yes"
msgstr "হয়"
#. 4tTop
-#: sw/inc/strings.hrc:1417
+#: sw/inc/strings.hrc:1418
msgctxt "createautomarkdialog|no"
msgid "No"
msgstr "নহয়"
#. KhKwa
-#: sw/inc/strings.hrc:1419
+#: sw/inc/strings.hrc:1420
msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "নিজৰ পছন্দৰ মতে"
@@ -10599,8 +10605,14 @@ msgctxt "asciifilterdialog|includebom"
msgid "Include byte-order mark"
msgstr ""
+#. 9E8VF
+#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:291
+msgctxt "asciifilterdialog|extended_tip|includebom"
+msgid "For Unicode character set only, a byte order mark (BOM) is a sequence of bytes used to indicate Unicode encoding of a text file."
+msgstr ""
+
#. B2ofV
-#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:304
+#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:309
msgctxt "asciifilterdialog|label1"
msgid "Properties"
msgstr "বৈশিষ্টসমূহ"
@@ -20348,46 +20360,52 @@ msgctxt "mmresultsavedialog|extended_tip|individualrb"
msgid "Saves the merged document as a separate file for each recipient. The file names of the documents are constructed from the name that you enter, followed by an underscore, and the number of the current record."
msgstr ""
+#. g3Knf
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:157
+msgctxt "mmresultsavedialog|label2"
+msgid "Save As Options"
+msgstr ""
+
#. xRGbs
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:159
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:191
#, fuzzy
msgctxt "mmresultsavedialog|fromrb"
msgid "_From"
msgstr "চিহ্নিত স্থানৰ পৰা (_F)"
#. gvAQf
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:170
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:202
msgctxt "mmresultsavedialog|extended_tip|fromrb"
msgid "Selects a range of records starting at the record number in the From box and ending at the record number in the To box."
msgstr ""
#. LGEwR
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:183
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:215
#, fuzzy
msgctxt "mmresultsavedialog|toft"
msgid "_To"
msgstr "ওপৰ"
#. XML8V
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:205
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:238
msgctxt "mmresultsavedialog|extended_tip|from"
msgid "Enter the number of the first record to include in the mail merge."
msgstr ""
#. dAWiB
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:224
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:258
msgctxt "mmresultsavedialog|extended_tip|to"
msgid "Enter the number of the last record to include in the mail merge."
msgstr ""
-#. g3Knf
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:245
-msgctxt "mmresultsavedialog|label2"
-msgid "Save As Options"
+#. VibGJ
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:273
+msgctxt "mmresultsavedialog|FromToRange"
+msgid "Range"
msgstr ""
#. 2BCiE
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:267
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:295
msgctxt "mmresultsavedialog|extended_tip|MMResultSaveDialog"
msgid "Save the mail merge output to file."
msgstr ""
@@ -20767,7 +20785,7 @@ msgid "Transfer Status"
msgstr ""
#. c2i5B
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:26
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:20
msgctxt "navigatorcontextmenu|STR_SEND_OUTLINE_TO_CLIPBOARD_ENTRY"
msgid "Send Outline to Clipboard"
msgstr ""
@@ -20779,143 +20797,215 @@ msgid "Go to"
msgstr ""
#. VCmAZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:49
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:43
msgctxt "navigatorcontextmenu|STR_SELECT"
msgid "Select"
msgstr ""
#. dajzZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:57
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:51
msgctxt "navigatorcontextmenu|STR_DELETE"
msgid "Delete"
msgstr ""
#. CQSp3
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:66
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:60
msgctxt "navigatorcontextmenu|STR_PROMOTE_CHAPTER"
msgid "Promote Chapter"
msgstr ""
#. ikRHB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:75
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:69
msgctxt "navigatorcontextmenu|STR_DEMOTE_CHAPTER"
msgid "Demote Chapter"
msgstr ""
#. MhtFa
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:84
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:78
msgctxt "navigatorcontextmenu|STR_PROMOTE_LEVEL"
msgid "Promote Level"
msgstr ""
#. dUM5D
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:93
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:87
msgctxt "navigatorcontextmenu|STR_DEMOTE_LEVEL"
msgid "Demote Level"
msgstr ""
#. tukRq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:102
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:96
msgctxt "navigatorcontextmenu|STR_REMOVE_INDEX"
msgid "_Remove Index"
msgstr ""
#. C4355
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:110
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:104
msgctxt "navigatorcontextmenu|STR_UPDATE"
msgid "_Update"
msgstr ""
#. BtCca
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:118
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:112
msgctxt "navigatorcontextmenu|STR_EDIT_ENTRY"
msgid "Edit..."
msgstr ""
#. BYyhD
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:126
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:120
msgctxt "navigatorcontextmenu|STR_REMOVE_TBL_PROTECTION"
msgid "_Unprotect"
msgstr ""
#. 6KWWG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:134
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:128
msgctxt "navigatorcontextmenu|STR_READONLY_IDX"
msgid "Read-_only"
msgstr ""
#. BUQRq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:142
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:136
msgctxt "navigatorcontextmenu|STR_DELETE_ENTRY"
msgid "_Delete"
msgstr ""
#. CUqD5
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:151
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:145
msgctxt "navigatorcontextmenu|STR_RENAME"
msgid "_Rename..."
msgstr ""
#. U5nAb
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:159
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:153
msgctxt "navigatorcontextmenu|STR_POSTIT_SHOW"
msgid "Show All"
msgstr ""
#. E2wWp
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:167
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:161
msgctxt "navigatorcontextmenu|STR_POSTIT_HIDE"
msgid "Hide All"
msgstr ""
#. aDRke
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:175
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:169
msgctxt "navigatorcontextmenu|STR_POSTIT_DELETE"
msgid "Delete All"
msgstr ""
#. YBipC
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:189
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:183
msgctxt "navigatorcontextmenu|STR_OUTLINE_CONTENT"
msgid "Outline Folding"
msgstr ""
-#. EBK2E
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:209
-msgctxt "navigatorcontextmenu|STR_OUTLINE_TRACKING"
-msgid "Outline Tracking"
-msgstr ""
-
#. cECoG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:223
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:203
msgctxt "navigatorcontextmenu|STR_OUTLINE_LEVEL"
msgid "Outline Level"
msgstr ""
+#. EBK2E
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:217
+msgctxt "navigatorcontextmenu|STR_OUTLINE_TRACKING"
+msgid "Outline Tracking"
+msgstr ""
+
#. fZEEr
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:237
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:231
msgctxt "navigatorcontextmenu|STR_TABLE_TRACKING"
msgid "Table Tracking"
msgstr ""
#. 7oCFa
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:245
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:239
msgctxt "navigatorcontextmenu|STR_SECTION_TRACKING"
msgid "Section Tracking"
msgstr ""
+#. YmjQf
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:247
+msgctxt "navigatorcontextmenu|STR_FRAME_TRACKING"
+msgid "Frame Tracking"
+msgstr ""
+
+#. vhxX5
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:255
+msgctxt "navigatorcontextmenu|STR_IMAGE_TRACKING"
+msgid "Image Tracking"
+msgstr ""
+
+#. mcYqZ
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:263
+msgctxt "navigatorcontextmenu|STR_OLE_OBJECT_TRACKING"
+msgid "OLE Object Tracking"
+msgstr ""
+
+#. DRaED
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:271
+msgctxt "navigatorcontextmenu|STR_BOOKMARK_TRACKING"
+msgid "Bookmark Tracking"
+msgstr ""
+
+#. vpLmh
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:279
+msgctxt "navigatorcontextmenu|STR_HYPERLINK_TRACKING"
+msgid "Hyperlink Tracking"
+msgstr ""
+
+#. EvBzN
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:287
+msgctxt "navigatorcontextmenu|STR_REFERENCE_TRACKING"
+msgid "Reference Tracking"
+msgstr ""
+
+#. M8Bes
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:295
+msgctxt "navigatorcontextmenu|STR_INDEX_TRACKING"
+msgid "Index Tracking"
+msgstr ""
+
+#. KBFwM
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:303
+msgctxt "navigatorcontextmenu|STR_COMMENT_TRACKING"
+msgid "Comment Tracking"
+msgstr ""
+
+#. oGavB
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:311
+msgctxt "navigatorcontextmenu|STR_DRAWING_OBJECT_TRACKING"
+msgid "Drawing Object Tracking"
+msgstr ""
+
+#. w8FTW
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:319
+msgctxt "navigatorcontextmenu|STR_FIELD_TRACKING"
+msgid "Field Tracking"
+msgstr ""
+
+#. BoCeZ
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:327
+msgctxt "navigatorcontextmenu|STR_FOOTNOTE_TRACKING"
+msgid "Footnote Tracking"
+msgstr ""
+
#. GyAcG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:253
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:341
msgctxt "navigatorcontextmenu|STR_DRAGMODE"
msgid "Drag Mode"
msgstr ""
#. Zehx2
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:267
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:355
msgctxt "navigatorcontextmenu|STR_DISPLAY"
msgid "Display"
msgstr ""
+#. bgZoy
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:375
+msgctxt "navigatorcontextmenu|STR_COLLAPSE_ALL_CATEGORIES"
+msgid "Collapse All Categories"
+msgstr ""
+
#. ba8wC
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:18
msgctxt "navigatorpanel|hyperlink"
diff --git a/source/as/vcl/messages.po b/source/as/vcl/messages.po
index 68005f10921..adf4d393572 100644
--- a/source/as/vcl/messages.po
+++ b/source/as/vcl/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-10 23:12+0200\n"
+"POT-Creation-Date: 2021-10-20 13:09+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/vclmessages/as/>\n"
@@ -1971,529 +1971,529 @@ msgid "_Print"
msgstr ""
#. M3L4L
-#: vcl/uiconfig/ui/printdialog.ui:157
+#: vcl/uiconfig/ui/printdialog.ui:160
msgctxt "printdialog|printpreview"
msgid "Print preview"
msgstr ""
#. 67YPm
-#: vcl/uiconfig/ui/printdialog.ui:163
+#: vcl/uiconfig/ui/printdialog.ui:166
msgctxt "printdialog|extended_tip|preview"
msgid "The preview shows how each sheet of paper will look. You can browse through all sheets of paper with the buttons below the preview."
msgstr ""
#. dQEY8
-#: vcl/uiconfig/ui/printdialog.ui:193
+#: vcl/uiconfig/ui/printdialog.ui:196
msgctxt "printdialog|previewbox"
msgid "Pre_view"
msgstr ""
#. EpB5H
-#: vcl/uiconfig/ui/printdialog.ui:202
+#: vcl/uiconfig/ui/printdialog.ui:205
msgctxt "printdialog|extended_tip|previewbox"
msgid "Turn on or off display of the print preview."
msgstr ""
#. SbgFv
-#: vcl/uiconfig/ui/printdialog.ui:232
+#: vcl/uiconfig/ui/printdialog.ui:235
msgctxt "printdialog|firstpage"
msgid "First page"
msgstr ""
#. GVGSq
-#: vcl/uiconfig/ui/printdialog.ui:236
+#: vcl/uiconfig/ui/printdialog.ui:239
msgctxt "printdialog|extended_tip|btnFirst"
msgid "Shows preview of the first page."
msgstr ""
#. ebceU
-#: vcl/uiconfig/ui/printdialog.ui:251
+#: vcl/uiconfig/ui/printdialog.ui:254
msgctxt "printdialog|backward"
msgid "Previous page"
msgstr ""
#. uS5Ka
-#: vcl/uiconfig/ui/printdialog.ui:255
+#: vcl/uiconfig/ui/printdialog.ui:258
msgctxt "printdialog|extended_tip|backward"
msgid "Shows preview of the previous page."
msgstr ""
#. c7uMG
-#: vcl/uiconfig/ui/printdialog.ui:274
+#: vcl/uiconfig/ui/printdialog.ui:277
msgctxt "printdialog|extended_tip|pageedit"
msgid "Enter the number of page to be shown in the preview."
msgstr ""
#. yyFVV
-#: vcl/uiconfig/ui/printdialog.ui:288
+#: vcl/uiconfig/ui/printdialog.ui:291
msgctxt "printdialog|totalnumpages"
msgid "/ %n"
msgstr "/ %n"
#. CZQLF
-#: vcl/uiconfig/ui/printdialog.ui:301
+#: vcl/uiconfig/ui/printdialog.ui:304
msgctxt "printdialog|forward"
msgid "Next page"
msgstr ""
#. emK9r
-#: vcl/uiconfig/ui/printdialog.ui:305
+#: vcl/uiconfig/ui/printdialog.ui:308
msgctxt "printdialog|extended_tip|forward"
msgid "Shows preview of the next page."
msgstr ""
#. Aq6Gv
-#: vcl/uiconfig/ui/printdialog.ui:320
+#: vcl/uiconfig/ui/printdialog.ui:323
msgctxt "printdialog|lastpage"
msgid "Last page"
msgstr ""
#. RwCmD
-#: vcl/uiconfig/ui/printdialog.ui:324
+#: vcl/uiconfig/ui/printdialog.ui:327
msgctxt "printdialog|extended_tip|btnLast"
msgid "Shows preview of the last page."
msgstr ""
#. PD6Aj
-#: vcl/uiconfig/ui/printdialog.ui:400
+#: vcl/uiconfig/ui/printdialog.ui:403
msgctxt "printdialog|extended_tip|printersbox"
msgid "The list box shows the installed printers. Click the printer to use for the current print job. Click the Properties button to change some of the printer properties."
msgstr ""
#. qgQDX
-#: vcl/uiconfig/ui/printdialog.ui:419
+#: vcl/uiconfig/ui/printdialog.ui:422
msgctxt "printdialog|labelstatus"
msgid "Status:"
msgstr ""
#. dyo2j
-#: vcl/uiconfig/ui/printdialog.ui:434
+#: vcl/uiconfig/ui/printdialog.ui:437
msgctxt "printdialog|status"
msgid "Default Printer"
msgstr ""
#. McZgQ
-#: vcl/uiconfig/ui/printdialog.ui:440
+#: vcl/uiconfig/ui/printdialog.ui:443
msgctxt "printdialog|extended_tip|status"
msgid "Shows the availability of the selected printer."
msgstr ""
#. oBACQ
-#: vcl/uiconfig/ui/printdialog.ui:452
+#: vcl/uiconfig/ui/printdialog.ui:455
msgctxt "printdialog|setup"
msgid "Properties..."
msgstr "বৈশিষ্ট্যবোৰ..."
#. 89CRC
-#: vcl/uiconfig/ui/printdialog.ui:459
+#: vcl/uiconfig/ui/printdialog.ui:462
msgctxt "printdialog|extended_tip|setup"
msgid "Opens the Printer Properties dialog. The printer properties vary according to the printer that you select."
msgstr ""
#. AJGau
-#: vcl/uiconfig/ui/printdialog.ui:483
+#: vcl/uiconfig/ui/printdialog.ui:486
msgctxt "printdialog|labelprinter"
msgid "Printer"
msgstr ""
#. AyxGJ
-#: vcl/uiconfig/ui/printdialog.ui:521
+#: vcl/uiconfig/ui/printdialog.ui:524
msgctxt "printdialog|rbAllPages"
msgid "_All pages"
msgstr ""
#. AQ7Ms
-#: vcl/uiconfig/ui/printdialog.ui:532
+#: vcl/uiconfig/ui/printdialog.ui:535
msgctxt "printdialog|extended_tip|rbAllPages"
msgid "Prints the entire document."
msgstr ""
#. pYtbq
-#: vcl/uiconfig/ui/printdialog.ui:543
+#: vcl/uiconfig/ui/printdialog.ui:546
msgctxt "printdialog|rbPageRange"
msgid "_Pages:"
msgstr ""
#. azXfE
-#: vcl/uiconfig/ui/printdialog.ui:555
+#: vcl/uiconfig/ui/printdialog.ui:558
msgctxt "printdialog|extended_tip|rbRangePages"
msgid "Prints only the pages or slides that you specify in the Pages box."
msgstr ""
#. 786QC
-#: vcl/uiconfig/ui/printdialog.ui:571
+#: vcl/uiconfig/ui/printdialog.ui:574
msgctxt "printdialog|pagerange"
msgid "e.g.: 1, 3-5, 7, 9"
msgstr ""
#. FTtLK
-#: vcl/uiconfig/ui/printdialog.ui:574
+#: vcl/uiconfig/ui/printdialog.ui:577
msgctxt "printdialog|extended_tip|pagerange"
msgid "To print a range of pages, use a format like 3-6. To print single pages, use a format like 7;9;11. You can print a combination of page ranges and single pages, by using a format like 3-6;8;10;12."
msgstr ""
#. Z5kiB
-#: vcl/uiconfig/ui/printdialog.ui:585
+#: vcl/uiconfig/ui/printdialog.ui:588
msgctxt "printdialog|rbRangeSelection"
msgid "_Selection"
msgstr ""
#. CJ2E7
-#: vcl/uiconfig/ui/printdialog.ui:595
+#: vcl/uiconfig/ui/printdialog.ui:598
msgctxt "printdialog|extended_tip|rbRangeSelection"
msgid "Prints only the selected area(s) or object(s) in the current document."
msgstr ""
#. UKYwM
-#: vcl/uiconfig/ui/printdialog.ui:609
+#: vcl/uiconfig/ui/printdialog.ui:612
msgctxt "printdialog|includeevenodd"
msgid "Include:"
msgstr ""
#. XmeFL
-#: vcl/uiconfig/ui/printdialog.ui:626
+#: vcl/uiconfig/ui/printdialog.ui:629
msgctxt "printdialog|liststore3"
msgid "Odd and Even Pages"
msgstr ""
#. 49y67
-#: vcl/uiconfig/ui/printdialog.ui:627
+#: vcl/uiconfig/ui/printdialog.ui:630
msgctxt "printdialog|liststore3"
msgid "Odd Pages"
msgstr ""
#. 6CkPE
-#: vcl/uiconfig/ui/printdialog.ui:628
+#: vcl/uiconfig/ui/printdialog.ui:631
msgctxt "printdialog|liststore3"
msgid "Even Pages"
msgstr ""
#. ZeA37
-#: vcl/uiconfig/ui/printdialog.ui:632
+#: vcl/uiconfig/ui/printdialog.ui:635
msgctxt "printdialog|extended_tip|evenoddbox"
msgid "Select the subset of pages to print."
msgstr ""
#. wn2kB
-#: vcl/uiconfig/ui/printdialog.ui:663
+#: vcl/uiconfig/ui/printdialog.ui:666
msgctxt "printdialog|fromwhich"
msgid "_From which print:"
msgstr ""
#. Cuc2u
-#: vcl/uiconfig/ui/printdialog.ui:688
+#: vcl/uiconfig/ui/printdialog.ui:691
msgctxt "printdialog|labelpapersides"
msgid "Paper _sides:"
msgstr ""
#. SYxRJ
-#: vcl/uiconfig/ui/printdialog.ui:704
+#: vcl/uiconfig/ui/printdialog.ui:707
msgctxt "printdialog|liststore4"
msgid "Print on one side (simplex)"
msgstr ""
#. hCZPg
-#: vcl/uiconfig/ui/printdialog.ui:705
+#: vcl/uiconfig/ui/printdialog.ui:708
msgctxt "printdialog|liststore4"
msgid "Print on both sides (duplex long edge)"
msgstr ""
#. iqr9C
-#: vcl/uiconfig/ui/printdialog.ui:706
+#: vcl/uiconfig/ui/printdialog.ui:709
msgctxt "printdialog|liststore4"
msgid "Print on both sides (duplex short edge)"
msgstr ""
#. CKpgL
-#: vcl/uiconfig/ui/printdialog.ui:710
+#: vcl/uiconfig/ui/printdialog.ui:713
msgctxt "printdialog|extended_tip|sidesbox"
msgid "If the printer is capable of duplex printing it's possible to choose between using only one side of the paper or both."
msgstr ""
#. AVv6D
-#: vcl/uiconfig/ui/printdialog.ui:724
+#: vcl/uiconfig/ui/printdialog.ui:727
msgctxt "printdialog|labelcopies"
msgid "_Number of copies:"
msgstr ""
#. NwD7S
-#: vcl/uiconfig/ui/printdialog.ui:747
+#: vcl/uiconfig/ui/printdialog.ui:750
msgctxt "printdialog|extended_tip|copycount"
msgid "Enter the number of copies that you want to print."
msgstr ""
#. BT4nY
-#: vcl/uiconfig/ui/printdialog.ui:761
+#: vcl/uiconfig/ui/printdialog.ui:764
msgctxt "printdialog|cbPrintOrder"
msgid "Order:"
msgstr ""
#. vwjVt
-#: vcl/uiconfig/ui/printdialog.ui:774
+#: vcl/uiconfig/ui/printdialog.ui:777
msgctxt "printdialog|reverseorder"
msgid "Print in _reverse order"
msgstr ""
#. svd2Q
-#: vcl/uiconfig/ui/printdialog.ui:783
+#: vcl/uiconfig/ui/printdialog.ui:786
msgctxt "printdialog|extended_tip|reverseorder"
msgid "Check to print pages in reverse order."
msgstr ""
#. G6QEr
-#: vcl/uiconfig/ui/printdialog.ui:800
+#: vcl/uiconfig/ui/printdialog.ui:803
msgctxt "printdialog|collate"
msgid "_Collate"
msgstr ""
#. kR6bA
-#: vcl/uiconfig/ui/printdialog.ui:808
+#: vcl/uiconfig/ui/printdialog.ui:811
msgctxt "printdialog|extended_tip|collate"
msgid "Preserves the page order of the original document."
msgstr ""
#. GZrpG
-#: vcl/uiconfig/ui/printdialog.ui:838
+#: vcl/uiconfig/ui/printdialog.ui:841
msgctxt "printdialog|singlejobs"
msgid "Create separate print jobs for collated output"
msgstr ""
#. X4Am9
-#: vcl/uiconfig/ui/printdialog.ui:846
+#: vcl/uiconfig/ui/printdialog.ui:849
msgctxt "printdialog|extended_tip|collate"
msgid "Check to not rely on the printer to create collated copies but create a print job for each copy instead."
msgstr ""
#. 2MdHu
-#: vcl/uiconfig/ui/printdialog.ui:867
+#: vcl/uiconfig/ui/printdialog.ui:870
msgctxt "printdialog|rangeexpander"
msgid "_More"
msgstr ""
#. ehfCG
-#: vcl/uiconfig/ui/printdialog.ui:883
+#: vcl/uiconfig/ui/printdialog.ui:886
msgctxt "printdialog|label2"
msgid "Range and Copies"
msgstr ""
#. CBLet
-#: vcl/uiconfig/ui/printdialog.ui:922
+#: vcl/uiconfig/ui/printdialog.ui:925
msgctxt "printdialog|labelorientation"
msgid "Orientation:"
msgstr ""
#. U4byk
-#: vcl/uiconfig/ui/printdialog.ui:937
+#: vcl/uiconfig/ui/printdialog.ui:940
msgctxt "printdialog|labelsize"
msgid "Paper size:"
msgstr ""
#. X9iBj
-#: vcl/uiconfig/ui/printdialog.ui:954
+#: vcl/uiconfig/ui/printdialog.ui:957
msgctxt "printdialog|liststore3"
msgid "Automatic"
msgstr "স্বচালিত"
#. vaWZE
-#: vcl/uiconfig/ui/printdialog.ui:955
+#: vcl/uiconfig/ui/printdialog.ui:958
msgctxt "printdialog|liststore3"
msgid "Portrait"
msgstr "পট্ৰেইট"
#. Qnpje
-#: vcl/uiconfig/ui/printdialog.ui:956
+#: vcl/uiconfig/ui/printdialog.ui:959
msgctxt "printdialog|liststore3"
msgid "Landscape"
msgstr "লেণ্ডস্কেইপ"
#. PkAo9
-#: vcl/uiconfig/ui/printdialog.ui:960
+#: vcl/uiconfig/ui/printdialog.ui:963
msgctxt "printdialog|extended_tip|pageorientationbox"
msgid "Select the orientation of the paper."
msgstr ""
#. DSFv2
-#: vcl/uiconfig/ui/printdialog.ui:976
+#: vcl/uiconfig/ui/printdialog.ui:979
msgctxt "printdialog|extended_tip|papersizebox"
msgid "Set the paper size you would like to use. The preview will show how the document would look on a paper of the given size."
msgstr ""
#. EZdsx
-#: vcl/uiconfig/ui/printdialog.ui:1011
+#: vcl/uiconfig/ui/printdialog.ui:1014
msgctxt "printdialog|pagespersheetbtn"
msgid "Pages per sheet:"
msgstr ""
#. ok8Lw
-#: vcl/uiconfig/ui/printdialog.ui:1025
+#: vcl/uiconfig/ui/printdialog.ui:1028
msgctxt "printdialog|extended_tip|pagespersheetbtn"
msgid "Print multiple pages per sheet of paper."
msgstr ""
#. DKP5g
-#: vcl/uiconfig/ui/printdialog.ui:1066
+#: vcl/uiconfig/ui/printdialog.ui:1069
msgctxt "printdialog|liststore1"
msgid "Custom"
msgstr "স্বনিৰ্বাচিত"
#. duVEo
-#: vcl/uiconfig/ui/printdialog.ui:1073
+#: vcl/uiconfig/ui/printdialog.ui:1076
msgctxt "printdialog|extended_tip|pagespersheetbox"
msgid "Select how many pages to print per sheet of paper."
msgstr ""
#. 65WWt
-#: vcl/uiconfig/ui/printdialog.ui:1086
+#: vcl/uiconfig/ui/printdialog.ui:1089
msgctxt "printdialog|pagespersheettxt"
msgid "Pages:"
msgstr ""
#. X8bjE
-#: vcl/uiconfig/ui/printdialog.ui:1106
+#: vcl/uiconfig/ui/printdialog.ui:1109
msgctxt "printdialog|extended_tip|pagerows"
msgid "Select number of rows."
msgstr ""
#. DM5aX
-#: vcl/uiconfig/ui/printdialog.ui:1118
+#: vcl/uiconfig/ui/printdialog.ui:1121
msgctxt "printdialog|by"
msgid "by"
msgstr "দ্বাৰা"
#. Z2EDz
-#: vcl/uiconfig/ui/printdialog.ui:1137
+#: vcl/uiconfig/ui/printdialog.ui:1140
msgctxt "printdialog|extended_tip|pagecols"
msgid "Select number of columns."
msgstr ""
#. szcD7
-#: vcl/uiconfig/ui/printdialog.ui:1149
+#: vcl/uiconfig/ui/printdialog.ui:1152
msgctxt "printdialog|pagemargintxt1"
msgid "Margin:"
msgstr ""
#. QxE58
-#: vcl/uiconfig/ui/printdialog.ui:1168
+#: vcl/uiconfig/ui/printdialog.ui:1171
msgctxt "printdialog|extended_tip|pagemarginsb"
msgid "Select margin between individual pages on each sheet of paper."
msgstr ""
#. iGg2m
-#: vcl/uiconfig/ui/printdialog.ui:1181
+#: vcl/uiconfig/ui/printdialog.ui:1184
msgctxt "printdialog|pagemargintxt2"
msgid "between pages"
msgstr "পৃষ্ঠাসমূহৰ মাজত"
#. oryuw
-#: vcl/uiconfig/ui/printdialog.ui:1192
+#: vcl/uiconfig/ui/printdialog.ui:1195
msgctxt "printdialog|sheetmargintxt1"
msgid "Distance:"
msgstr ""
#. EDFnW
-#: vcl/uiconfig/ui/printdialog.ui:1211
+#: vcl/uiconfig/ui/printdialog.ui:1214
msgctxt "printdialog|extended_tip|sheetmarginsb"
msgid "Select margin between the printed pages and paper edge."
msgstr ""
#. XhfvB
-#: vcl/uiconfig/ui/printdialog.ui:1224
+#: vcl/uiconfig/ui/printdialog.ui:1227
msgctxt "printdialog|sheetmargintxt2"
msgid "to sheet border"
msgstr "চাদৰৰ সীমালৈ"
#. AGWe3
-#: vcl/uiconfig/ui/printdialog.ui:1237
+#: vcl/uiconfig/ui/printdialog.ui:1240
msgctxt "printdialog|labelorder"
msgid "Order:"
msgstr ""
#. psAku
-#: vcl/uiconfig/ui/printdialog.ui:1254
+#: vcl/uiconfig/ui/printdialog.ui:1257
msgctxt "printdialog|liststore2"
msgid "Left to right, then down"
msgstr ""
#. fnfLt
-#: vcl/uiconfig/ui/printdialog.ui:1255
+#: vcl/uiconfig/ui/printdialog.ui:1258
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then right"
msgstr ""
#. y6nZE
-#: vcl/uiconfig/ui/printdialog.ui:1256
+#: vcl/uiconfig/ui/printdialog.ui:1259
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then left"
msgstr ""
#. PteTg
-#: vcl/uiconfig/ui/printdialog.ui:1257
+#: vcl/uiconfig/ui/printdialog.ui:1260
msgctxt "printdialog|liststore2"
msgid "Right to left, then down"
msgstr ""
#. DvF8r
-#: vcl/uiconfig/ui/printdialog.ui:1261
+#: vcl/uiconfig/ui/printdialog.ui:1264
msgctxt "printdialog|extended_tip|orderbox"
msgid "Select order in which pages are to be printed."
msgstr ""
#. QG59F
-#: vcl/uiconfig/ui/printdialog.ui:1273
+#: vcl/uiconfig/ui/printdialog.ui:1276
msgctxt "printdialog|bordercb"
msgid "Draw a border around each page"
msgstr "প্ৰতিটো পৃষ্ঠাৰ চাৰিওফালে এটা প্ৰান্ত আকক"
#. 8aAGu
-#: vcl/uiconfig/ui/printdialog.ui:1282
+#: vcl/uiconfig/ui/printdialog.ui:1285
msgctxt "printdialog|extended_tip|bordercb"
msgid "Check to draw a border around each page."
msgstr ""
#. Yo4xV
-#: vcl/uiconfig/ui/printdialog.ui:1294
+#: vcl/uiconfig/ui/printdialog.ui:1297
msgctxt "printdialog|brochure"
msgid "Brochure"
msgstr "বিষয়সূচী"
#. 3zcKq
-#: vcl/uiconfig/ui/printdialog.ui:1304
+#: vcl/uiconfig/ui/printdialog.ui:1307
msgctxt "printdialog|extended_tip|brochure"
msgid "Select to print the document in brochure format."
msgstr ""
#. JMA7A
-#: vcl/uiconfig/ui/printdialog.ui:1327
+#: vcl/uiconfig/ui/printdialog.ui:1330
msgctxt "printdialog|collationpreview"
msgid "Collation preview"
msgstr ""
#. dePkB
-#: vcl/uiconfig/ui/printdialog.ui:1332
+#: vcl/uiconfig/ui/printdialog.ui:1335
msgctxt "printdialog|extended_tip|orderpreview"
msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look."
msgstr ""
#. fCjdq
-#: vcl/uiconfig/ui/printdialog.ui:1354
+#: vcl/uiconfig/ui/printdialog.ui:1357
msgctxt "printdialog|layoutexpander"
msgid "M_ore"
msgstr ""
#. rCBA5
-#: vcl/uiconfig/ui/printdialog.ui:1370
+#: vcl/uiconfig/ui/printdialog.ui:1373
msgctxt "printdialog|label3"
msgid "Page Layout"
msgstr ""
#. A2iC5
-#: vcl/uiconfig/ui/printdialog.ui:1393
+#: vcl/uiconfig/ui/printdialog.ui:1396
msgctxt "printdialog|generallabel"
msgid "General"
msgstr ""
#. CzGM4
-#: vcl/uiconfig/ui/printdialog.ui:1447
+#: vcl/uiconfig/ui/printdialog.ui:1450
msgctxt "printdialog|extended_tip|PrintDialog"
msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document."
msgstr ""
diff --git a/source/ast/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po b/source/ast/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po
index f4d22aefa9e..ba58b202971 100644
--- a/source/ast/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po
+++ b/source/ast/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-11 18:38+0200\n"
+"POT-Creation-Date: 2021-10-20 13:07+0200\n"
"PO-Revision-Date: 2021-08-29 06:23+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/connectivityregistryfirebirdorgopenofficeofficedataaccess/ast/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.6.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1389128566.000000\n"
#. DfEKx
@@ -26,12 +26,12 @@ msgctxt ""
msgid "Firebird Embedded"
msgstr "Firebird incrustáu"
-#. 3davX
+#. ZVyum
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
".Drivers.Installed.sdbc:firebird:*\n"
"DriverTypeDisplayName\n"
"value.text"
-msgid "Firebird File"
-msgstr "Ficheru de Firebird"
+msgid "Firebird External"
+msgstr ""
diff --git a/source/ast/cui/messages.po b/source/ast/cui/messages.po
index 5e7bbe4a3e5..22fe09cd641 100644
--- a/source/ast/cui/messages.po
+++ b/source/ast/cui/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-10-04 19:50+0200\n"
-"PO-Revision-Date: 2021-10-04 11:36+0000\n"
+"PO-Revision-Date: 2021-10-18 06:08+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.8.1\n"
"X-POOTLE-MTIME: 1542195213.000000\n"
#. GyY9M
@@ -2127,7 +2127,7 @@ msgstr ""
#: cui/inc/strings.hrc:397
msgctxt "RID_SVXSTR_OLE_INSERT"
msgid "Inserting OLE object..."
-msgstr ""
+msgstr "Inxertando l'oxetu OLE..."
#. mpS3V
#: cui/inc/tipoftheday.hrc:50
@@ -4755,7 +4755,7 @@ msgstr ""
#: cui/uiconfig/ui/additionsfragment.ui:16
msgctxt "additionsDialog|buttonShowMore"
msgid "Show More Extensions"
-msgstr ""
+msgstr "Amosar más estensiones"
#. 2pPGn
#: cui/uiconfig/ui/additionsfragment.ui:21
@@ -4767,7 +4767,7 @@ msgstr ""
#: cui/uiconfig/ui/additionsfragment.ui:22
msgctxt "additionsDialog|buttonShowMore"
msgid "This button shows more extensions."
-msgstr ""
+msgstr "Esti botón amuesa más estensiones."
#. UzjvF
#: cui/uiconfig/ui/additionsfragment.ui:68
@@ -5229,7 +5229,7 @@ msgstr "Permitir puntuación llibre"
#: cui/uiconfig/ui/asiantypography.ui:53
msgctxt "asiantypography|checkApplySpacing"
msgid "Apply spacing between Asian and non-Asian text"
-msgstr ""
+msgstr "Aplicar espaciáu ente'l testu asiáticu y el non asiáticu"
#. Xr8Ls
#: cui/uiconfig/ui/asiantypography.ui:73
@@ -7311,7 +7311,7 @@ msgstr "Nuevu"
#: cui/uiconfig/ui/colorpickerdialog.ui:60
msgctxt "colorpickerdialog|ColorPicker"
msgid "Pick a Color"
-msgstr ""
+msgstr "Escueyi una color"
#. fMFDR
#: cui/uiconfig/ui/colorpickerdialog.ui:158
@@ -7395,7 +7395,7 @@ msgstr ""
#: cui/uiconfig/ui/colorpickerdialog.ui:413
msgctxt "colorpickerdialog|label2"
msgid "Hex _#:"
-msgstr ""
+msgstr "Nᵘ he_x.:"
#. zPsRu
#: cui/uiconfig/ui/colorpickerdialog.ui:432
@@ -7485,7 +7485,7 @@ msgstr "_Maxenta:"
#: cui/uiconfig/ui/colorpickerdialog.ui:669
msgctxt "colorpickerdialog|label7"
msgid "_Yellow:"
-msgstr "_Mariellu:"
+msgstr "Marie_llu:"
#. aFvbe
#: cui/uiconfig/ui/colorpickerdialog.ui:684
@@ -7569,7 +7569,7 @@ msgstr "Autor"
#: cui/uiconfig/ui/comment.ui:274
msgctxt "comment|alttitle"
msgid "Edit Comment"
-msgstr "Editar Comentariu"
+msgstr "Editar el comentariu"
#. JKZFi
#: cui/uiconfig/ui/comment.ui:288
@@ -7707,7 +7707,7 @@ msgstr "Exemplu"
#: cui/uiconfig/ui/connectortabpage.ui:443
msgctxt "connectortabpage|extended_tip|ConnectorTabPage"
msgid "Sets the properties of a connector."
-msgstr ""
+msgstr "Define les propiedaes d'un coneutor."
#. ezicB
#: cui/uiconfig/ui/connpooloptions.ui:52
@@ -9844,7 +9844,7 @@ msgstr ""
#: cui/uiconfig/ui/graphictestdlg.ui:56
msgctxt "graphictestdlg|gptest_label"
msgid "What's this?"
-msgstr ""
+msgstr "¿Qué ye esto?"
#. 7LB9A
#: cui/uiconfig/ui/graphictestdlg.ui:105
@@ -9892,7 +9892,7 @@ msgstr "Diccionariu"
#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:16
msgctxt "hangulhanjaconversiondialog|HangulHanjaConversionDialog"
msgid "Hangul/Hanja Conversion"
-msgstr "Conversión Hangul/Hanja"
+msgstr "Conversión hangul/hanja"
#. kh2or
#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:103
diff --git a/source/ast/dbaccess/messages.po b/source/ast/dbaccess/messages.po
index f2e34d4b58a..92cde939182 100644
--- a/source/ast/dbaccess/messages.po
+++ b/source/ast/dbaccess/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-10-04 19:51+0200\n"
-"PO-Revision-Date: 2021-09-22 20:36+0000\n"
+"PO-Revision-Date: 2021-10-10 22:02+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.8.1\n"
"X-POOTLE-MTIME: 1524566374.000000\n"
#. BiN6g
@@ -2125,7 +2125,7 @@ msgstr "Configurar autenticación del usuariu"
#: dbaccess/inc/strings.hrc:372
msgctxt "STR_PAGETITLE_MYSQL_NATIVE"
msgid "Set up MySQL server data"
-msgstr "Configurar MySQL server data"
+msgstr "Configurar datos del sirvidor MySQL"
#. 6Fy7C
#: dbaccess/inc/strings.hrc:373
@@ -4321,10 +4321,9 @@ msgstr ""
#. SESZq
#: dbaccess/uiconfig/ui/queryfilterdialog.ui:359
-#, fuzzy
msgctxt "queryfilterdialog|label1"
msgid "Criteria"
-msgstr "criterios"
+msgstr "Criterios"
#. S22Fy
#: dbaccess/uiconfig/ui/queryfilterdialog.ui:384
@@ -4956,7 +4955,7 @@ msgstr ""
#: dbaccess/uiconfig/ui/specialsettingspage.ui:337
msgctxt "specialsettingspage|comparisonft"
msgid "Comparison of Boolean values:"
-msgstr ""
+msgstr "Comparanza de valores booleanos:"
#. MrrnQ
#: dbaccess/uiconfig/ui/specialsettingspage.ui:352
diff --git a/source/ast/dictionaries/pt_BR/dialog.po b/source/ast/dictionaries/pt_BR/dialog.po
index 0e3b0af5d46..39c28d713b0 100644
--- a/source/ast/dictionaries/pt_BR/dialog.po
+++ b/source/ast/dictionaries/pt_BR/dialog.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-09-10 23:11+0200\n"
-"PO-Revision-Date: 2021-09-13 16:36+0000\n"
+"PO-Revision-Date: 2021-10-07 00:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/dictionariespt_brdialog/ast/>\n"
"Language: ast\n"
@@ -385,7 +385,7 @@ msgctxt ""
"paronimo\n"
"property.text"
msgid "Paronyms"
-msgstr ""
+msgstr "Parónimos"
#. nJ4AT
#: pt_BR_en_US.properties
diff --git a/source/ast/extensions/messages.po b/source/ast/extensions/messages.po
index 7bb23855cc4..0f81f1dc37a 100644
--- a/source/ast/extensions/messages.po
+++ b/source/ast/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-10 23:11+0200\n"
+"POT-Creation-Date: 2021-10-20 13:07+0200\n"
"PO-Revision-Date: 2021-07-08 08:50+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/extensionsmessages/ast/>\n"
@@ -4268,97 +4268,169 @@ msgid "Scanner"
msgstr ""
#. 8aFBr
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:66
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:78
msgctxt "sanedialog|deviceInfoButton"
msgid "About Dev_ice"
msgstr ""
+#. 3aG8b
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:85
+msgctxt "sanedialog|extended_tip|deviceInfoButton"
+msgid "Displays a popup window with information obtained from the scanner driver."
+msgstr ""
+
#. 3EeXn
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:80
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:97
msgctxt "sanedialog|previewButton"
msgid "Create Previe_w"
msgstr ""
+#. FPGEB
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:104
+msgctxt "sanedialog|extended_tip|previewButton"
+msgid "Scans and displays the document in the preview area."
+msgstr ""
+
#. ihLsf
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:94
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:116
#, fuzzy
msgctxt "sanedialog|scanButton"
msgid "_Scan"
msgstr "Esplorar"
+#. a4hC3
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:123
+msgctxt "sanedialog|extended_tip|ok"
+msgid "Scans an image, and then inserts the result into the document and closes the dialog."
+msgstr ""
+
#. gFREe
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:160
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:187
#, fuzzy
msgctxt "sanedialog|label3"
msgid "_Left:"
msgstr "_Izquierda"
#. ErDB4
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:174
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:201
#, fuzzy
msgctxt "sanedialog|label4"
msgid "To_p:"
msgstr "Arriba:"
#. bSfBR
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:188
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:215
#, fuzzy
msgctxt "sanedialog|label5"
msgid "_Right:"
msgstr "D_recha"
#. NGDq3
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:202
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:229
#, fuzzy
msgctxt "sanedialog|label6"
msgid "_Bottom:"
msgstr "_Baxero"
+#. nu6SM
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:249
+msgctxt "sanedialog|extended_tip|topSpinbutton"
+msgid "Set the top margin of the scan area."
+msgstr ""
+
+#. oDppB
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:268
+msgctxt "sanedialog|extended_tip|rightSpinbutton"
+msgid "Set the right margin of the scan area."
+msgstr ""
+
+#. EdgNn
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:287
+msgctxt "sanedialog|extended_tip|bottomSpinbutton"
+msgid "Set the bottom margin of the scan area."
+msgstr ""
+
+#. L7tZS
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:306
+msgctxt "sanedialog|extended_tip|leftSpinbutton"
+msgid "Set the left margin of the scan area."
+msgstr ""
+
#. YfU4m
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:274
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:321
msgctxt "sanedialog|label1"
msgid "Scan Area"
msgstr ""
+#. wECiq
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:366
+msgctxt "sanedialog|extended_tip|preview"
+msgid "Displays a preview of the scanned image. The preview area contains eight handles. Drag the handles to adjust the scan area or enter a value in the corresponding margin spin box."
+msgstr ""
+
#. FZ7Vw
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:327
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:379
msgctxt "sanedialog|label2"
msgid "Preview"
msgstr "Entever"
#. EiiLN
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:361
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:413
msgctxt "sanedialog|label7"
msgid "Device _used"
msgstr ""
#. W6hNP
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:375
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:427
msgctxt "sanedialog|label8"
msgid "Resolution [_DPI]"
msgstr ""
+#. diRy3
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:444
+msgctxt "sanedialog|extended_tip|deviceCombobox"
+msgid "Displays a list of available scanners detected in your system."
+msgstr ""
+
+#. nBuc6
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:466
+msgctxt "sanedialog|extended_tip|reslCombobox"
+msgid "Select the resolution in dots per inch for the scan job."
+msgstr ""
+
#. t3Tuq
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:430
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:492
msgctxt "sanedialog|advancedCheckbutton"
msgid "Show advanced options"
msgstr ""
+#. yXnEA
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:500
+msgctxt "sanedialog|extended_tip|advancedcheckbutton"
+msgid "Mark this checkbox to display more configuration options for the scanner device."
+msgstr ""
+
#. gneMZ
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:460
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:527
#, fuzzy
msgctxt "sanedialog|label10"
msgid "Options:"
msgstr "Opciones"
+#. 4FHyM
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:569
+msgctxt "sanedialog\\extended_tip|optionSvTreeListBox"
+msgid "Displays the list of available scanner driver advanced options. Double click an option to display its contents just below."
+msgstr ""
+
#. VDQay
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:536
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:607
msgctxt "sanedialog|optionsButton"
msgid "Se_t"
msgstr ""
#. bNTfS
-#: extensions/uiconfig/scanner/ui/sanedialog.ui:609
+#: extensions/uiconfig/scanner/ui/sanedialog.ui:680
msgctxt "sanedialog|vectorLabel"
msgid "Vector element"
msgstr ""
diff --git a/source/ast/filter/source/config/fragments/filters.po b/source/ast/filter/source/config/fragments/filters.po
index 073f50cf66c..0eda8aec5c7 100644
--- a/source/ast/filter/source/config/fragments/filters.po
+++ b/source/ast/filter/source/config/fragments/filters.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-09-10 23:11+0200\n"
-"PO-Revision-Date: 2018-07-01 22:42+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"PO-Revision-Date: 2021-10-25 11:09+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/filtersourceconfigfragmentsfilters/ast/>\n"
"Language: ast\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.8.1\n"
"X-POOTLE-MTIME: 1530484929.000000\n"
#. FR4Ff
@@ -146,7 +146,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "ClarisResolve Document"
-msgstr ""
+msgstr "Documentu de ClarisResolve"
#. AHyWG
#: CorelDrawDocument.xcu
@@ -206,7 +206,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word for DOS"
-msgstr ""
+msgstr "Microsoft Word pa DOS"
#. qVSqa
#: EMF___MS_Windows_Metafile.xcu
diff --git a/source/ast/fpicker/messages.po b/source/ast/fpicker/messages.po
index c0b9c2291f9..0291a979ae5 100644
--- a/source/ast/fpicker/messages.po
+++ b/source/ast/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
"PO-Revision-Date: 2021-05-13 23:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/fpickermessages/ast/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1538496517.000000\n"
#. SJGCw
@@ -224,54 +224,54 @@ msgid "_Open"
msgstr ""
#. JnE2t
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:548
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:551
msgctxt "explorerfiledialog|play"
msgid "_Play"
msgstr ""
#. dWNqZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:586
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:589
#, fuzzy
msgctxt "explorerfiledialog|file_name_label"
msgid "File _name:"
msgstr "Nome del ficheru:"
#. 9cjFB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:612
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:615
#, fuzzy
msgctxt "explorerfiledialog|file_type_label"
msgid "File _type:"
msgstr "~Triba de ficheru:"
#. quCXH
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:676
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:679
msgctxt "explorerfiledialog|readonly"
msgid "_Read-only"
msgstr "Namái llectu_ra"
#. hm2xy
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:699
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:702
#, fuzzy
msgctxt "explorerfiledialog|password"
msgid "Save with password"
msgstr "Grabar con c~ontraseña"
#. 8EYcB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:712
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:715
#, fuzzy
msgctxt "explorerfiledialog|extension"
msgid "_Automatic file name extension"
msgstr "Estensión del nome de ficheru ~automática"
#. 2CgAZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:725
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:728
#, fuzzy
msgctxt "explorerfiledialog|options"
msgid "Edit _filter settings"
msgstr "~Editar la configuración de peñeres"
#. 6XqLj
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:752
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:755
msgctxt "explorerfiledialog|gpgencrypt"
msgid "Encrypt with GPG key"
msgstr ""
@@ -332,69 +332,63 @@ msgctxt "remotefilesdialog|open"
msgid "_Open"
msgstr ""
-#. kKETY
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:157
-msgctxt "remotefilesdialog|save"
-msgid "_Save"
-msgstr ""
-
#. uGwr4
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:186
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:175
msgctxt "remotefilesdialog|label1"
msgid "Service:"
msgstr "Serviciu:"
#. cwNkT
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:214
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:203
msgctxt "remotefilesdialog|add_service_btn"
msgid "_Manage services"
msgstr ""
#. Jnndg
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:264
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:253
msgctxt "remotefilesdialog|list_view|tooltip_text"
msgid "List view"
msgstr "Vista de llista"
#. xxBtB
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:279
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:268
msgctxt "remotefilesdialog|icon_view|tooltip_text"
msgid "Icon view"
msgstr "Vista n'iconos"
#. 6CiqC
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:295
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:284
#, fuzzy
msgctxt "remotefilesdialog|new_folder|tooltip_text"
msgid "Create New Folder"
msgstr "Crear carpeta nueva"
#. aXDaC
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:400
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:389
msgctxt "remotefilesdialog|name"
msgid "Name"
msgstr "Nome"
#. qRHnF
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:420
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:409
msgctxt "remotefilesdialog|size"
msgid "Size"
msgstr "Tamañu"
#. qeF3r
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:434
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:423
msgctxt "remotefilesdialog|date"
msgid "Date modified"
msgstr "Data de modificación"
#. cGNWD
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:508
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:499
msgctxt "remotefilesdialog|filterLabel"
msgid "Filter"
msgstr "Peñera"
#. rCVer
-#: fpicker/uiconfig/ui/remotefilesdialog.ui:522
+#: fpicker/uiconfig/ui/remotefilesdialog.ui:513
msgctxt "remotefilesdialog|nameLabel"
msgid "File name"
msgstr "Nome ficheru"
diff --git a/source/ast/helpcontent2/source/auxiliary.po b/source/ast/helpcontent2/source/auxiliary.po
index fe3b6ea64ab..6401db58a2a 100644
--- a/source/ast/helpcontent2/source/auxiliary.po
+++ b/source/ast/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-10 23:11+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
"PO-Revision-Date: 2021-04-10 15:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/auxiliary/ast/>\n"
@@ -304,6 +304,15 @@ msgctxt ""
msgid "Protection"
msgstr "Proteición"
+#. m2Dpj
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"0815\n"
+"node.text"
+msgid "Writing Calc Macros"
+msgstr ""
+
#. Q59GN
#: scalc.tree
msgctxt ""
diff --git a/source/ast/helpcontent2/source/text/sbasic/guide.po b/source/ast/helpcontent2/source/text/sbasic/guide.po
index cf8bc0f7a79..d95e9b8d5ec 100644
--- a/source/ast/helpcontent2/source/text/sbasic/guide.po
+++ b/source/ast/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-20 13:02+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
"PO-Revision-Date: 2021-09-12 07:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicguide/ast/>\n"
@@ -1249,6 +1249,348 @@ msgctxt ""
msgid "On the dialog, drag the button to the size you want."
msgstr "Arrastre'l botón hasta'l tamañu que desee nel diálogu."
+#. fRi68
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"tit\n"
+"help.text"
+msgid "Reading and Writing values to Ranges"
+msgstr ""
+
+#. 3hH3s
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"hd_id461623364876507\n"
+"help.text"
+msgid "<variable id=\"title\"><link href=\"text/sbasic/guide/read_write_values.xhp\" name=\"ReadWriteValues_h1\">Reading and Writing values to Ranges</link></variable>"
+msgstr ""
+
+#. ZKUBE
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id781633210592228\n"
+"help.text"
+msgid "Macros in %PRODUCTNAME Calc often need to read and write values from/to sheets. This help page describes the various approaches to accessing sheets and ranges to read or write their values."
+msgstr ""
+
+#. D4ZJu
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id191633214565965\n"
+"help.text"
+msgid "All examples presented in this page can be implemented both in Basic and Python."
+msgstr ""
+
+#. LfNCy
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"hd_id331633213558740\n"
+"help.text"
+msgid "Accessing a Single Cell"
+msgstr ""
+
+#. A5M3f
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id731633213581386\n"
+"help.text"
+msgid "The example below enters the numeric value 123 into cell \"A1\" of the current sheet."
+msgstr ""
+
+#. G6yWX
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id131633213887433\n"
+"help.text"
+msgid "The same can be accomplished with Python:"
+msgstr ""
+
+#. CDmg6
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id861633214219511\n"
+"help.text"
+msgid "Note that in the previous examples the cell is accessed using its range name \"A1\". It is also possible to access cells using indices as though the sheet were a matrix where columns and rows are indexed starting from zero."
+msgstr ""
+
+#. Jja4D
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id161633214461067\n"
+"help.text"
+msgid "This can be done using the <literal>getCellByPosition(colIndex, rowIndex)</literal> method, that takes in a column and a row index. The example below in Basic changes the text value in cell \"C1\" (column 2, row 0)."
+msgstr ""
+
+#. 5tsZR
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id221633214713436\n"
+"help.text"
+msgid "This example can also be implemented in Python as follows:"
+msgstr ""
+
+#. h6eq5
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id101633215142970\n"
+"help.text"
+msgid "The main difference between Python and Basic scripts lies on how to get access to the sheet object by using the <literal>XSCRIPTCONTEXT</literal> context variable. After that, all methods and properties are identical in Basic and Python."
+msgstr ""
+
+#. PmETF
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"hd_id411633215666257\n"
+"help.text"
+msgid "Values, Strings and Formulas"
+msgstr ""
+
+#. MBHDg
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id861633215682610\n"
+"help.text"
+msgid "Calc cells can have three types of values: numeric, strings and formulas. Each type has its own set and get methods:"
+msgstr ""
+
+#. RXE76
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id191633215791905\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. rYCuZ
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id181633215791905\n"
+"help.text"
+msgid "Numeric"
+msgstr ""
+
+#. ywHfC
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id961633215932180\n"
+"help.text"
+msgid "Text"
+msgstr ""
+
+#. KH9Ya
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id651633215984116\n"
+"help.text"
+msgid "Formula"
+msgstr ""
+
+#. nGhov
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id21633215845395\n"
+"help.text"
+msgid "Dates and currency values are considered as numeric values in Calc."
+msgstr ""
+
+#. t87Qx
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id221633216111353\n"
+"help.text"
+msgid "The following example enters numeric values into cells \"A1\" and \"A2\" and inserts a formula in cell \"A3\" that returns the multiplication of these values."
+msgstr ""
+
+#. r6BG6
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"hd_id321633216630043\n"
+"help.text"
+msgid "Accessing Ranges in Different Sheets"
+msgstr ""
+
+#. TFU8U
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id371633216672570\n"
+"help.text"
+msgid "The previous examples used only the active sheet to perform operations. It is possible to access cell ranges in different sheets by their indices or names."
+msgstr ""
+
+#. c3yhF
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id861633216843382\n"
+"help.text"
+msgid "The example below enters a numeric value into cell \"A1\" of the sheet named \"Sheet2\"."
+msgstr ""
+
+#. GpnNS
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id611633217090743\n"
+"help.text"
+msgid "This example can also be implemented in Python as follows:"
+msgstr ""
+
+#. xGQ3k
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id631633217279518\n"
+"help.text"
+msgid "Sheets can also be accessed using zero-based indices indicating which sheet considering the order they appear in the Calc file."
+msgstr ""
+
+#. tSo3e
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id291633264880172\n"
+"help.text"
+msgid "In Basic, instead of using the <literal>getByName</literal> method, use <literal>Sheets(sheetIndex)</literal> as shown next:"
+msgstr ""
+
+#. svDuj
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id891633265000047\n"
+"help.text"
+msgid "This can be done in a similar fashion in Python:"
+msgstr ""
+
+#. 6qHAn
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"hd_id451633265241066\n"
+"help.text"
+msgid "Using the ScriptForge Library"
+msgstr ""
+
+#. 8CkSe
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id731633265268585\n"
+"help.text"
+msgid "The Calc service of the ScriptForge library can be used to get and set cell values as follows:"
+msgstr ""
+
+#. DCJ2E
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id551633265526538\n"
+"help.text"
+msgid "' Loads the ScriptForge library"
+msgstr ""
+
+#. hgDyM
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id581633265527001\n"
+"help.text"
+msgid "' Gets access to the current Calc document"
+msgstr ""
+
+#. Gw4KG
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id751633265527427\n"
+"help.text"
+msgid "' Sets the value of cells A1 and A2"
+msgstr ""
+
+#. VUWVE
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id781633267324929\n"
+"help.text"
+msgid "The <literal>setValue</literal> method can be used to set both numeric and text values. To set a cell formula, use the <literal>setFormula</literal> method."
+msgstr ""
+
+#. jPRii
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id251633265634883\n"
+"help.text"
+msgid "With the Calc service, getting and setting cell values can be done with a single line of code. The example below gets the value from cell \"A1\" and shows it on a message box."
+msgstr ""
+
+#. NzUg4
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id521633608223310\n"
+"help.text"
+msgid "The ScriptForge library also makes it simpler to access ranges in different sheets, as demonstrated in the example below:"
+msgstr ""
+
+#. CCeEh
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"bas_id521633608366292\n"
+"help.text"
+msgid "' Gets cell \"A1\" from the sheet named \"Sheet1\""
+msgstr ""
+
+#. qUTqA
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"bas_id661633608366484\n"
+"help.text"
+msgid "' Gets cell \"B3\" from the sheet named \"Sheet2\""
+msgstr ""
+
+#. mCX5W
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"bas_id501633608516381\n"
+"help.text"
+msgid "' Places the result into cell \"A1\" of sheet \"Report\""
+msgstr ""
+
+#. ZdkEz
+#: read_write_values.xhp
+msgctxt ""
+"read_write_values.xhp\n"
+"par_id431633266057163\n"
+"help.text"
+msgid "The examples above can also be implemented in Python as follows:"
+msgstr ""
+
#. ayg6P
#: sample_code.xhp
msgctxt ""
diff --git a/source/ast/helpcontent2/source/text/sbasic/python.po b/source/ast/helpcontent2/source/text/sbasic/python.po
index 901cf8a0ee5..3cf32d1a9a6 100644
--- a/source/ast/helpcontent2/source/text/sbasic/python.po
+++ b/source/ast/helpcontent2/source/text/sbasic/python.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-27 19:09+0200\n"
+"POT-Creation-Date: 2021-10-25 12:48+0200\n"
"PO-Revision-Date: 2021-09-30 02:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicpython/ast/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
#. naSFZ
#: main0000.xhp
@@ -582,13 +582,13 @@ msgctxt ""
msgid "Monitoring Document Events"
msgstr ""
-#. SZGH4
+#. VwSwW
#: python_document_events.xhp
msgctxt ""
"python_document_events.xhp\n"
"N0530\n"
"help.text"
-msgid "Monitoring is illustrated herewith for Basic and Python languages using object-oriented programming. Assigning <literal>OnLoad</literal> script, to the <emph>Open Document</emph> event, suffices to initiate and terminate document event monitoring. <menuitem>Tools - Customize</menuitem> menu <menuitem>Events</menuitem> tab is used to assign either scripts."
+msgid "Monitoring is illustrated herewith for Basic and Python languages using object-oriented programming. Assigning <literal>OnLoad</literal> script, to the <menuitem>Open Document</menuitem> event, suffices to initiate and terminate document event monitoring. <menuitem>Tools - Customize</menuitem> menu <menuitem>Events</menuitem> tab is used to assign either scripts."
msgstr ""
#. KgWvt
@@ -627,13 +627,13 @@ msgctxt ""
msgid "Events monitoring starts from object instantiation and ultimately stops when Python releases the object. Raised events are reported using <literal>Access2Base</literal> console."
msgstr ""
-#. D2HXF
+#. mCDwK
#: python_document_events.xhp
msgctxt ""
"python_document_events.xhp\n"
"N0534\n"
"help.text"
-msgid "<literal>OnLoad</literal> and <literal>OnUnload</literal> events can be used to respectively set and unset Python programs path. They are described as <emph>Open document</emph> and <emph>Document closed</emph>."
+msgid "<literal>OnLoad</literal> and <literal>OnUnload</literal> events can be used to respectively set and unset Python programs path. They are described as <menuitem>Open document</menuitem> and <menuitem>Document closed</menuitem>."
msgstr ""
#. AdYNb
@@ -807,6 +807,15 @@ msgctxt ""
msgid "def OnLoad(*args): # 'Open Document' event"
msgstr ""
+#. PmjAB
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0602\n"
+"help.text"
+msgid "listener = UiDocument() # Initiates listening"
+msgstr ""
+
#. CkJg4
#: python_document_events.xhp
msgctxt ""
@@ -870,6 +879,15 @@ msgctxt ""
msgid "\"\"\" Display console content/dialog \"\"\""
msgstr ""
+#. mPJ3B
+#: python_document_events.xhp
+msgctxt ""
+"python_document_events.xhp\n"
+"N0638\n"
+"help.text"
+msgid "''' Grab application-based Basic script '''"
+msgstr ""
+
#. 2dfeg
#: python_document_events.xhp
msgctxt ""
@@ -879,13 +897,13 @@ msgctxt ""
msgid "Mind the misspelled <literal>documentEventOccured</literal> method that inherits a typo from %PRODUCTNAME Application Programming Interface (API)."
msgstr ""
-#. CuAga
+#. qNVD4
#: python_document_events.xhp
msgctxt ""
"python_document_events.xhp\n"
"N0648\n"
"help.text"
-msgid "<emph>Start application</emph> and <emph>Close application</emph> events can respectively be used to set and to unset Python path for user scripts or %PRODUCTNAME scripts. In a similar fashion, document based Python libraries or modules can be loaded and released using <emph>Open document</emph> and <emph>Document closed</emph> events. Refer to <link href=\"text/sbasic/python/python_import.xhp\" name=\"Importing Python Modules\">Importing Python Modules</link> for more information."
+msgid "<menuitem>Start application</menuitem> and <menuitem>Close application</menuitem> events can respectively be used to set and to unset Python path for user scripts or %PRODUCTNAME scripts. In a similar fashion, document based Python libraries or modules can be loaded and released using <menuitem>Open document</menuitem> and <menuitem>Document closed</menuitem> events. Refer to <link href=\"text/sbasic/python/python_import.xhp\" name=\"Importing Python Modules\">Importing Python Modules</link> for more information."
msgstr ""
#. 8pHCg
@@ -3507,38 +3525,110 @@ msgctxt ""
msgid "The Python interactive console, also known as Python interpreter or Python shell, provides programmers with a quick way to execute commands and try out and test code without creating a file. UNO objects introspection as well as %PRODUCTNAME Python modules documentation can be obtained from the terminal."
msgstr ""
-#. MZodx
+#. kFpxo
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"par_id851633601202270\n"
+"help.text"
+msgid "From a full-featured %PRODUCTNAME installed package, use either Basic or Python:"
+msgstr ""
+
+#. 5HhXz
#: python_shell.xhp
msgctxt ""
"python_shell.xhp\n"
"N0121\n"
"help.text"
-msgid "Using a Basic macro:"
+msgid "Using a Basic macro"
msgstr ""
-#. vXGF7
+#. KhWLk
#: python_shell.xhp
msgctxt ""
"python_shell.xhp\n"
"N0127\n"
"help.text"
-msgid "Using a Python macro:"
+msgid "Using a Python macro"
msgstr ""
-#. oBg3T
+#. 3FCJH
#: python_shell.xhp
msgctxt ""
"python_shell.xhp\n"
"N0141\n"
"help.text"
-msgid "Usage:"
-msgstr "Usu:"
+msgid "Example output"
+msgstr ""
-#. EzwwC
+#. MxDtE
#: python_shell.xhp
msgctxt ""
"python_shell.xhp\n"
"N0142\n"
"help.text"
-msgid "<image src=\"media/helpimg/python/python_shell.png\" id=\"N0143\"><alt id=\"N0144\">Python Interactive Console</alt></image>"
+msgid "<image src=\"media/helpimg/python/python_interactive_console.png\" id=\"N0143\"><alt id=\"N0143\">Python Interactive Console</alt></image>"
+msgstr ""
+
+#. fk6sx
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"hd_id381633446811095\n"
+"help.text"
+msgid "Using the Terminal"
+msgstr ""
+
+#. CNFdD
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"par_id801633601715910\n"
+"help.text"
+msgid "From a %PRODUCTNAME copy included in a GNU/Linux platform, use the terminal as shown:"
+msgstr ""
+
+#. vWPwe
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"par_id531633444780190\n"
+"help.text"
+msgid "<literal>whereis</literal> or <literal>type</literal> terminal commands help locate Python interactive console:"
+msgstr ""
+
+#. 8Ei5d
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"hd_id311633513620803\n"
+"help.text"
+msgid "Alternative console"
+msgstr ""
+
+#. d8DCA
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"par_id81632760673283\n"
+"help.text"
+msgid "Use <link href=\"https://extensions.libreoffice.org/extensions/apso-alternative-script-organizer-for-Python\" name=\"APSO extension\">APSO extension</link> console as an alternative:"
+msgstr ""
+
+#. 6h9CS
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"N0144\n"
+"help.text"
+msgid "<image src=\"media/helpimg/python/python_shell.png\" id=\"N0144\"><alt id=\"N0144\">APSO console</alt></image>"
+msgstr ""
+
+#. DNr5W
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"par_id351633599611244\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03/sf_exception.html?#PythonShell\" name=\"PythonShell method\"><literal>PythonShell</literal></link> function in <link href=\"text/sbasic/shared/03/sf_exception.html\" name=\"ScriptForge.Exception service\"><literal>ScriptForge.Exception</literal></link> service"
msgstr ""
diff --git a/source/ast/helpcontent2/source/text/sbasic/shared.po b/source/ast/helpcontent2/source/text/sbasic/shared.po
index a8031980f83..5ccb51e3789 100644
--- a/source/ast/helpcontent2/source/text/sbasic/shared.po
+++ b/source/ast/helpcontent2/source/text/sbasic/shared.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-04 19:51+0200\n"
-"PO-Revision-Date: 2021-10-03 18:36+0000\n"
+"POT-Creation-Date: 2021-10-25 12:48+0200\n"
+"PO-Revision-Date: 2021-10-05 19:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared/ast/>\n"
"Language: ast\n"
@@ -16621,13 +16621,13 @@ msgctxt ""
msgid "MsgBox Right(\"00\" & lHour , 2) & \":\"& Right(\"00\" & lMin , 2) & \":\" & Right(\"00\" & lSec , 2), 0, \"The time is\""
msgstr ""
-#. CWMJG
+#. oYudq
#: 03030303.xhp
msgctxt ""
"03030303.xhp\n"
"par_id491610993401822\n"
"help.text"
-msgid "The <literal>Timer</literal> function measures time in seconds. To measure time in milliseconds use the <embedvar href=\"text/sbasic/shared/03/sf_timer.xhp#TimerService\"/>."
+msgid "The <literal>Timer</literal> function measures time in seconds. To measure time in milliseconds use the <link href=\"text/sbasic/shared/03/sf_timer.xhp\" name=\"Timer_link\">Timer service</link> available in the <literal>ScriptForge</literal> library."
msgstr ""
#. ATnCy
@@ -24586,13 +24586,13 @@ msgctxt ""
msgid "<bookmark_value>Type statement</bookmark_value>"
msgstr ""
-#. aKHFj
+#. pipio
#: 03090413.xhp
msgctxt ""
"03090413.xhp\n"
"hd_id3153311\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link>"
+msgid "<variable id=\"Type_h1\"><link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link></variable>"
msgstr ""
#. TYvyD
@@ -27799,13 +27799,13 @@ msgctxt ""
msgid "<bookmark_value>IsObject function</bookmark_value>"
msgstr "<bookmark_value>IsObject;función</bookmark_value>"
-#. 9oZFD
+#. MF9nS
#: 03102800.xhp
msgctxt ""
"03102800.xhp\n"
-"hd_id3149346\n"
+"hd_id51633474369322\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03102800.xhp\" name=\"IsObject Function\">IsObject Function</link>"
+msgid "<variable id=\"IsObject_h1\"><link href=\"text/sbasic/shared/03102800.xhp\" name=\"IsObject Function\">IsObject Function</link></variable>"
msgstr ""
#. AyVCR
@@ -27817,67 +27817,13 @@ msgctxt ""
msgid "Tests if a variable is an object, as opposed to primitive data types such as dates, numbers, texts. The function returns <literal>True</literal> if the variable is an object, otherwise it returns <literal>False</literal>."
msgstr ""
-#. gBKMV
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"hd_id3149234\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. C8wfe
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"par_id3154285\n"
-"help.text"
-msgid "IsObject(var)"
-msgstr ""
-
-#. ni2zH
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"hd_id3148685\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de torna:"
-
-#. 4SsCT
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"par_id3156024\n"
-"help.text"
-msgid "Boolean"
-msgstr ""
-
-#. rEmQA
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"hd_id3148947\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
-#. JBB4B
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"par_id3148552\n"
-"help.text"
-msgid "<emph>var:</emph> Any variable that you want to test."
-msgstr ""
-
-#. SPGXx
+#. jCmJE
#: 03102800.xhp
msgctxt ""
"03102800.xhp\n"
"par_id891575896963115\n"
"help.text"
-msgid "The following objects return <literal>True</literal>:"
+msgid "This function returns <literal>True</literal> for the following object types:"
msgstr ""
#. CBoWs
@@ -27934,6 +27880,24 @@ msgctxt ""
msgid "Data structures return <literal>True</literal> even when empty. Object defined variables return <literal>True</literal> even if uninitialized."
msgstr ""
+#. 4SsCT
+#: 03102800.xhp
+msgctxt ""
+"03102800.xhp\n"
+"par_id3156024\n"
+"help.text"
+msgid "Boolean"
+msgstr ""
+
+#. rTuwL
+#: 03102800.xhp
+msgctxt ""
+"03102800.xhp\n"
+"par_id3148552\n"
+"help.text"
+msgid "<emph>var:</emph> The variable to be tested."
+msgstr ""
+
#. yHDkt
#: 03102800.xhp
msgctxt ""
@@ -28888,14 +28852,14 @@ msgctxt ""
msgid "Set Statement"
msgstr ""
-#. GzHJQ
+#. zHGh5
#: 03103700.xhp
msgctxt ""
"03103700.xhp\n"
"bm_id3154422\n"
"help.text"
-msgid "<bookmark_value>Set statement</bookmark_value> <bookmark_value>New keyword</bookmark_value> <bookmark_value>Nothing object</bookmark_value>"
-msgstr ""
+msgid "<bookmark_value>Set statement</bookmark_value> <bookmark_value>Nothing object</bookmark_value>"
+msgstr "<bookmark_value>Establecer instrucción</bookmark_value><bookmark_value>Oxetu Nothing </bookmark_value>"
#. MT9CF
#: 03103700.xhp
@@ -29761,23 +29725,32 @@ msgctxt ""
msgid "<bookmark_value>EqualUnoObjects function</bookmark_value>"
msgstr "<bookmark_value>EqualUnoObjects;función</bookmark_value>"
-#. rqXey
+#. DxBM3
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
-"hd_id3149205\n"
+"hd_id791633472607429\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03104600.xhp\" name=\"EqualUnoObjects Function\">EqualUnoObjects Function</link>"
+msgid "<variable id=\"EqualUnoObjects_h1\"><link href=\"text/sbasic/shared/03104600.xhp\" name=\"EqualUnoObjects Function\">EqualUnoObjects Function</link></variable>"
msgstr ""
-#. wrfhm
+#. Gc4cj
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
"par_id3145090\n"
"help.text"
-msgid "Returns True if the two specified Basic Uno objects represent the same Uno object instance."
-msgstr "Devuelve True si los dos oxetos Basic Unu especificaos representen el mesmu casu d'oxetu Unu."
+msgid "Returns <emph>True</emph> if the two specified Basic variables represent the same Uno object instance."
+msgstr ""
+
+#. 9Zx4W
+#: 03104600.xhp
+msgctxt ""
+"03104600.xhp\n"
+"par_id61633530293311\n"
+"help.text"
+msgid "<emph>oObj1, oObj2:</emph> the variables to be tested."
+msgstr ""
#. NqNdq
#: 03104600.xhp
@@ -29788,22 +29761,22 @@ msgctxt ""
msgid "Bool"
msgstr "Lóxicu"
-#. eQEDj
+#. NvGLb
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
-"par_id3156024\n"
+"par_id771633473462939\n"
"help.text"
-msgid "' Copy of objects -> same instance"
+msgid "The example below returns <emph>True</emph> because both <literal>oDoc</literal> and <literal>ThisComponent</literal> are references to the same object:"
msgstr ""
-#. kTNQT
+#. 5QGLx
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
-"par_id3153525\n"
+"par_id181633473874216\n"
"help.text"
-msgid "' Copy of structs as value -> new instance"
+msgid "The example below returns <emph>False</emph> because the assignment creates a copy of the original object. Hence <literal>Struct1</literal> and <literal>Struct2</literal> refer to different object instances."
msgstr ""
#. hQzux
@@ -30364,13 +30337,13 @@ msgctxt ""
msgid "Use the <emph>Chr$</emph> function to send special control sequences to a printer or to another output source. You can also use it to insert quotation marks in a string expression."
msgstr "Use la función <emph>Chr$</emph> pa unviar secuencies de control especiales a una imprentadora o a otra fonte de salida. Tamién pue usalo pa inxertar comines nuna espresión de cadena."
-#. Yy5Eh
+#. 36Hj5
#: 03120102.xhp
msgctxt ""
"03120102.xhp\n"
-"par_id111552916434071\n"
+"par_id81634652871848\n"
"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#err6\"/>, when VBA compatibility mode is enabled and expression is greater than 255."
+msgid "An overflow error will occur when VBA compatibility mode is enabled and the expression value is greater than 255."
msgstr ""
#. vHwsG
@@ -32650,14 +32623,14 @@ msgctxt ""
msgid "Split (Text As String, delimiter, number)"
msgstr "Split (Testu As String, allindiador, númberu)"
-#. BNdCD
+#. dBAZR
#: 03120314.xhp
msgctxt ""
"03120314.xhp\n"
"par_id3154285\n"
"help.text"
-msgid "String"
-msgstr "Cadena"
+msgid "With Option VBASupport 1: String, with Option VBASupport 0: Variant/String"
+msgstr ""
#. PRupM
#: 03120314.xhp
@@ -35404,13 +35377,13 @@ msgctxt ""
msgid "<bookmark_value>CreateObject function</bookmark_value>"
msgstr "<bookmark_value>Función CreateObject</bookmark_value>"
-#. GkTQC
+#. QpKCT
#: 03132400.xhp
msgctxt ""
"03132400.xhp\n"
"par_idN10580\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03132400.xhp\">CreateObject Function</link>"
+msgid "<variable id=\"CreateObject_h1\"><link href=\"text/sbasic/shared/03132400.xhp\">CreateObject Function</link></variable>"
msgstr ""
#. PAXDf
@@ -35431,14 +35404,14 @@ msgctxt ""
msgid "This method creates instances of the type that is passed as parameter."
msgstr "Esti métodu crea casos del tipu que se pasa como parámetru."
-#. mNxwL
+#. SHgqs
#: 03132400.xhp
msgctxt ""
"03132400.xhp\n"
-"par_idN105A6\n"
+"par_id191633632167310\n"
"help.text"
-msgid "oObj = CreateObject( type )"
-msgstr "oObj = CreateObject( type )"
+msgid "<emph>type:</emph> the type of the object to be created, as a string."
+msgstr ""
#. Gthw7
#: 03132500.xhp
@@ -37465,49 +37438,94 @@ msgctxt ""
msgid "Round Function [VBA]"
msgstr ""
-#. 66dvh
+#. zEB5S
#: 03170000.xhp
msgctxt ""
"03170000.xhp\n"
"bm_id3150499\n"
"help.text"
-msgid "<bookmark_value>Round function</bookmark_value>"
+msgid "<bookmark_value>Round function (VBA)</bookmark_value>"
msgstr ""
-#. FPUAv
+#. oVQUL
#: 03170000.xhp
msgctxt ""
"03170000.xhp\n"
"hd_id3150499\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03170000.xhp\" name=\"Round Function [VBA]\">Round Function [VBA]</link>"
+msgid "<variable id=\"Round_VBA_h1\"><link href=\"text/sbasic/shared/03170000.xhp\" name=\"Round Function [VBA]\">Round Function [VBA]</link></variable>"
msgstr ""
-#. PGShA
+#. B6tFP
#: 03170000.xhp
msgctxt ""
"03170000.xhp\n"
"par_id3151384\n"
"help.text"
-msgid "The Round function returns a number rounded to a specified number of digits."
+msgid "Rounds a numeric value to a specified number of decimal digits."
msgstr ""
-#. hbUFX
+#. yUTFN
+#: 03170000.xhp
+msgctxt ""
+"03170000.xhp\n"
+"par_id741634154499890\n"
+"help.text"
+msgid "This function implements the rounding rule known as \"round-to-even\". With this rule, whenever the difference between the number to be rounded and its nearest integer is equal to 0.5, the number is rounded to the nearest even number. See the examples <link href=\"text/sbasic/shared/03170000.xhp#round_example\" name=\"round_ex_link\">below</link> to learn more about this rule."
+msgstr ""
+
+#. DfnHz
+#: 03170000.xhp
+msgctxt ""
+"03170000.xhp\n"
+"par_id691634217736290\n"
+"help.text"
+msgid "Beware that VBA's <literal>Round</literal> function works differently than %PRODUCTNAME Calc's <literal>Round</literal> function. In Calc, if the difference between the number to be rounded and the nearest integer is exactly 0.5, then the number is rounded up. Hence, in Calc the number 2.5 is rounded to 3 whereas using VBA's <literal>Round</literal> function the value 2.5 is rounded to 2 due to the \"round-to-even\" rule."
+msgstr ""
+
+#. GSzGj
#: 03170000.xhp
msgctxt ""
"03170000.xhp\n"
"par_id240720170117391741\n"
"help.text"
-msgid "<emph>expression</emph>: Required. The numeric expression to be rounded."
+msgid "<emph>expression</emph>: The numeric expression to be rounded."
msgstr ""
-#. gAZc7
+#. 9E33v
#: 03170000.xhp
msgctxt ""
"03170000.xhp\n"
"par_id240720170117395610\n"
"help.text"
-msgid "<emph>numdecimalplaces</emph>: Optional. Specifies how many places to the right of the decimal are included in the rounding. Default is 0."
+msgid "<emph>numdecimalplaces</emph>: Optional argument that specifies the number of decimal digits in the resulting rounded value. The default value is 0."
+msgstr ""
+
+#. oSEiU
+#: 03170000.xhp
+msgctxt ""
+"03170000.xhp\n"
+"par_id541634154843718\n"
+"help.text"
+msgid "The following examples illustrate the \"round-to-even\" rule:"
+msgstr ""
+
+#. 4DLZC
+#: 03170000.xhp
+msgctxt ""
+"03170000.xhp\n"
+"bas_id651634154984931\n"
+"help.text"
+msgid "' Rounding to the nearest integer (decimalplaces = 0)"
+msgstr ""
+
+#. DQwkT
+#: 03170000.xhp
+msgctxt ""
+"03170000.xhp\n"
+"bas_id651634157812537\n"
+"help.text"
+msgid "' Rounding with 2 decimal digits (decimalplaces = 2)"
msgstr ""
#. g7CVV
@@ -38759,7 +38777,7 @@ msgctxt ""
"hd_id441586092960246\n"
"help.text"
msgid "Examples:"
-msgstr ""
+msgstr "Exemplos:"
#. 4dyMX
#: Resume.xhp
@@ -38993,7 +39011,7 @@ msgctxt ""
"par_id291632673370039\n"
"help.text"
msgid "All Calc functions must be expressed with their English names."
-msgstr ""
+msgstr "Toles funciones de Calc han espresase colos nomes n'inglés."
#. dfwfw
#: calc_functions.xhp
@@ -40165,6 +40183,375 @@ msgctxt ""
msgid "BasicCodeStubs"
msgstr ""
+#. vSapF
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"tit\n"
+"help.text"
+msgid "Collection Object"
+msgstr ""
+
+#. 5of5h
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"bm_id3149205\n"
+"help.text"
+msgid "<bookmark_value>Collection Object</bookmark_value> <bookmark_value>Collection;Count</bookmark_value>"
+msgstr ""
+
+#. 68sg6
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"hd_id791633472607429\n"
+"help.text"
+msgid "<variable id=\"Collection_h1\"><link href=\"text/sbasic/shared/collection.xhp\" name=\"New_Operator\">Collection Object</link></variable>"
+msgstr ""
+
+#. 7xSei
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id581633961735332\n"
+"help.text"
+msgid "Collections can be used to store items of different types. Each item can be accessed by its index or by an optional key associated with it."
+msgstr ""
+
+#. 9b4kg
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id131633961959816\n"
+"help.text"
+msgid "A <literal>Collection</literal> object has the following methods:"
+msgstr ""
+
+#. XoLQr
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id331633962000259\n"
+"help.text"
+msgid "<emph>Add:</emph> inserts a new item into the collection. Optionally a string value can be defined as the key to the item."
+msgstr ""
+
+#. ddAGy
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id181633962000767\n"
+"help.text"
+msgid "<emph>Count:</emph> returns the number of items in the collection."
+msgstr ""
+
+#. ad7qY
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id521633962001072\n"
+"help.text"
+msgid "<emph>Item:</emph> returns the item in the collection by passing its index or key."
+msgstr ""
+
+#. GX6nx
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id981633962001272\n"
+"help.text"
+msgid "<emph>Remove:</emph> removes the specified item from the collection by its index or key."
+msgstr ""
+
+#. yyWx7
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id221633976539661\n"
+"help.text"
+msgid "Items in a Collection can be accessed either by their indices (as in a 1-based single-dimensional Array) or by their associated keys."
+msgstr ""
+
+#. PheLX
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id811634214809970\n"
+"help.text"
+msgid "The <link href=\"text/sbasic/shared/03/sf_dictionary.xhp\" name=\"SFDic_link\"><literal>ScriptForge Dictionary</literal></link> service extends the <literal>Collection</literal> object by providing supplemental features as key retrieval and replacement, as well as import/export to Array objects and JSON strings."
+msgstr ""
+
+#. pJAht
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"hd_id51633962353863\n"
+"help.text"
+msgid "Creating a Collection"
+msgstr ""
+
+#. 28i8B
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id491633962366024\n"
+"help.text"
+msgid "To create a <literal>Collection</literal> use the <literal>New</literal> keyword. The following example creates a <literal>Collection</literal> object and populates it with three items:"
+msgstr ""
+
+#. 8hHmz
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"hd_id421633962742512\n"
+"help.text"
+msgid "Adding Items"
+msgstr ""
+
+#. G49p7
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"bm_id591633974561425\n"
+"help.text"
+msgid "<bookmark_value>Collection;Add</bookmark_value>"
+msgstr ""
+
+#. 3qnWY
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id261633962766238\n"
+"help.text"
+msgid "The <literal>Add</literal> method can be used to add new items into the <literal>Collection</literal> object."
+msgstr ""
+
+#. htAaY
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id501633974650241\n"
+"help.text"
+msgid "<emph>item:</emph> the item to be added to the <literal>Collection</literal>. May be of any type."
+msgstr ""
+
+#. DUGrx
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id181633974650705\n"
+"help.text"
+msgid "<emph>key:</emph> string value used as the unique key used to identify this value."
+msgstr ""
+
+#. yoEzK
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id391633974651050\n"
+"help.text"
+msgid "<emph>before, after:</emph> optional keyword argument that indicates where the new item will be placed in the <literal>Collection</literal>. Only one of the arguments <literal>before</literal> or <literal>after</literal> can be specified to determine the index or key before which (or after which) the new item is to be placed."
+msgstr ""
+
+#. xcdEF
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id211633962988398\n"
+"help.text"
+msgid "The example below adds two elements into a <literal>Collection</literal>. The first has a key associated with it, whereas the second does not."
+msgstr ""
+
+#. ZKBEQ
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id71633963110632\n"
+"help.text"
+msgid "The <literal>Add</literal> method also supports keyword arguments:"
+msgstr ""
+
+#. ZhTZb
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id941633963225913\n"
+"help.text"
+msgid "Keys must be unique in a <literal>Collection</literal> object. Comparison between keys is <emph>case-insensitive</emph>. Adding duplicated keys will result in a runtime error."
+msgstr ""
+
+#. NVgmj
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id891633975568372\n"
+"help.text"
+msgid "The example below illustrates how to use the <literal>Before</literal> and <literal>After</literal> keyword arguments to determine the position of the item that is being added."
+msgstr ""
+
+#. WxjE9
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id121633976325472\n"
+"help.text"
+msgid "Items in a <literal>Collection</literal> object are assigned an integer index value that starts at 1 and corresponds to the order in which they were added."
+msgstr ""
+
+#. 2Lrc6
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"hd_id141633977141797\n"
+"help.text"
+msgid "Accessing Items"
+msgstr ""
+
+#. DDdKC
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"bm_id481633977601834\n"
+"help.text"
+msgid "<bookmark_value>Collection;Item</bookmark_value>"
+msgstr ""
+
+#. MquEn
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id431633977156315\n"
+"help.text"
+msgid "Use the <literal>Item</literal> method to access a given item by its index or key."
+msgstr ""
+
+#. DCFTg
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id261633976447187\n"
+"help.text"
+msgid "<emph>index:</emph> an integer value specifying the index of the item to be returned."
+msgstr ""
+
+#. mqA85
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id51633976782487\n"
+"help.text"
+msgid "<emph>key:</emph> a string value specifying the key of the item to be returned."
+msgstr ""
+
+#. egnJW
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"hd_id651633976030220\n"
+"help.text"
+msgid "Removing Items"
+msgstr ""
+
+#. BdBa3
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"bm_id311633977567197\n"
+"help.text"
+msgid "<bookmark_value>Collection;Remove</bookmark_value>"
+msgstr ""
+
+#. Wteju
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id391633976125206\n"
+"help.text"
+msgid "Use the <literal>Remove</literal> method to delete items from a <literal>Collection</literal> object."
+msgstr ""
+
+#. sHVAN
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id121633976268027\n"
+"help.text"
+msgid "Items can be removed either by their indices or key values."
+msgstr ""
+
+#. o9Eyd
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id261633976447289\n"
+"help.text"
+msgid "<emph>index:</emph> an integer value specifying the index of the item to be removed."
+msgstr ""
+
+#. 8TMiC
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id51633976782455\n"
+"help.text"
+msgid "<emph>key:</emph> a string value specifying the key of the item to be removed."
+msgstr ""
+
+#. WpHmn
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"hd_id491633978085731\n"
+"help.text"
+msgid "Iterating Over all Items"
+msgstr ""
+
+#. FVzmC
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id91633978099143\n"
+"help.text"
+msgid "It is possible to use a <literal>For Each ... Next</literal> statement to iterate over all items in a <literal>Collection</literal>."
+msgstr ""
+
+#. EWDWE
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"hd_id191634215349347\n"
+"help.text"
+msgid "Clearing a Collection"
+msgstr ""
+
+#. V4EZw
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"par_id891634215363485\n"
+"help.text"
+msgid "To remove all items from a <literal>Collection</literal> object call the <literal>Remove</literal> method for each item, as illustrated in the example below:"
+msgstr ""
+
+#. tUMtQ
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"bas_id681634215646028\n"
+"help.text"
+msgid "' Create a sample Collection with two entries"
+msgstr ""
+
+#. Yy5nP
+#: collection.xhp
+msgctxt ""
+"collection.xhp\n"
+"bas_id391634215647196\n"
+"help.text"
+msgid "' Removes all items in the collection"
+msgstr ""
+
#. gvH3T
#: compatibilitymode.xhp
msgctxt ""
@@ -40345,13 +40732,13 @@ msgctxt ""
msgid "<variable id=\"compatiblestatement\"><link href=\"text/sbasic/shared/compatible.xhp\" name=\"compatible\">Option Compatible Statement</link></variable>"
msgstr ""
-#. qCdkp
+#. 6HFov
#: compatible.xhp
msgctxt ""
"compatible.xhp\n"
"N0106\n"
"help.text"
-msgid "<literal>Option Compatible</literal> turns on the VBA-compatible Basic compiler mode at the module level."
+msgid "<literal>Option Compatible</literal> extends %PRODUCTNAME Basic compiler and runtime, allowing supplemental language constructs to Basic."
msgstr ""
#. SNhhH
@@ -41038,6 +41425,78 @@ msgctxt ""
msgid "<image src=\"media/helpimg/sbasic/char_fragment.svg\" id=\"img_id4157296484514\"><alt id=\"alt_id15152796484516\">type declaration characters</alt></image>"
msgstr ""
+#. tYUK6
+#: is_keyword.xhp
+msgctxt ""
+"is_keyword.xhp\n"
+"tit\n"
+"help.text"
+msgid "Is Operator"
+msgstr ""
+
+#. xvBgn
+#: is_keyword.xhp
+msgctxt ""
+"is_keyword.xhp\n"
+"bm_id3149205\n"
+"help.text"
+msgid "<bookmark_value>Is Operator</bookmark_value>"
+msgstr ""
+
+#. 7otAB
+#: is_keyword.xhp
+msgctxt ""
+"is_keyword.xhp\n"
+"hd_id791633472607429\n"
+"help.text"
+msgid "<variable id=\"IsOperator_h1\"><link href=\"text/sbasic/shared/is_keyword.xhp\" name=\"Is_Operator\">Is Operator</link></variable>"
+msgstr ""
+
+#. mwGMA
+#: is_keyword.xhp
+msgctxt ""
+"is_keyword.xhp\n"
+"par_id3145090\n"
+"help.text"
+msgid "Tests if two Basic variables refer to the same object instance."
+msgstr ""
+
+#. HTVQA
+#: is_keyword.xhp
+msgctxt ""
+"is_keyword.xhp\n"
+"par_id441633531311929\n"
+"help.text"
+msgid "If <literal>oObj1</literal> and <literal>oObj2</literal> are references to the same object instance, the result will be <emph>True</emph>."
+msgstr ""
+
+#. akugg
+#: is_keyword.xhp
+msgctxt ""
+"is_keyword.xhp\n"
+"par_id771633473462939\n"
+"help.text"
+msgid "The example below first defines a new type <literal>Student</literal>. Calling <literal>TestObjects</literal> creates the object <literal>oStudent1</literal> as a new object of this type."
+msgstr ""
+
+#. mAAho
+#: is_keyword.xhp
+msgctxt ""
+"is_keyword.xhp\n"
+"par_id841633532400710\n"
+"help.text"
+msgid "The assignment <literal>oStudent2 = oStudent1</literal> actually copies the reference to the same object. Hence the result of applying the <literal>Is</literal> operator is <emph>True</emph>."
+msgstr ""
+
+#. mvVuR
+#: is_keyword.xhp
+msgctxt ""
+"is_keyword.xhp\n"
+"par_id181633473874216\n"
+"help.text"
+msgid "The example below returns <emph>False</emph> because <literal>oStudent1</literal> and <literal>oStudent2</literal> are references to two different object instances, each created with the <literal>New</literal> operator."
+msgstr ""
+
#. onSEk
#: keys.xhp
msgctxt ""
@@ -41344,6 +41803,87 @@ msgctxt ""
msgid "%PRODUCTNAME installs a set of Basic macro libraries that can be accessed from your Basic macros."
msgstr ""
+#. 44MBv
+#: new_keyword.xhp
+msgctxt ""
+"new_keyword.xhp\n"
+"tit\n"
+"help.text"
+msgid "New Operator"
+msgstr ""
+
+#. 8iBmc
+#: new_keyword.xhp
+msgctxt ""
+"new_keyword.xhp\n"
+"bm_id3149205\n"
+"help.text"
+msgid "<bookmark_value>New Operator</bookmark_value>"
+msgstr ""
+
+#. T3AA8
+#: new_keyword.xhp
+msgctxt ""
+"new_keyword.xhp\n"
+"hd_id791633472607429\n"
+"help.text"
+msgid "<variable id=\"NewOperator_h1\"><link href=\"text/sbasic/shared/new_keyword.xhp\" name=\"New_Operator\">New Operator</link></variable>"
+msgstr ""
+
+#. BWufp
+#: new_keyword.xhp
+msgctxt ""
+"new_keyword.xhp\n"
+"par_id3145090\n"
+"help.text"
+msgid "Use the <literal>New</literal> operator to instantiate objects of user-defined types, as well as Uno services, structs and enumerations."
+msgstr ""
+
+#. uDGEZ
+#: new_keyword.xhp
+msgctxt ""
+"new_keyword.xhp\n"
+"par_id831633630704012\n"
+"help.text"
+msgid "The <literal>New</literal> operator can be used either during variable declaration or in an assignment operation."
+msgstr ""
+
+#. r6osC
+#: new_keyword.xhp
+msgctxt ""
+"new_keyword.xhp\n"
+"par_id621633630563936\n"
+"help.text"
+msgid "The following example uses the <literal>New</literal> operator to create an instance of the <literal>PropertyValue</literal> Uno struct."
+msgstr ""
+
+#. nPNvc
+#: new_keyword.xhp
+msgctxt ""
+"new_keyword.xhp\n"
+"bas_id631633630856218\n"
+"help.text"
+msgid "' Instantiating the object during variable declaration"
+msgstr ""
+
+#. Ts8iC
+#: new_keyword.xhp
+msgctxt ""
+"new_keyword.xhp\n"
+"bas_id11633631135918\n"
+"help.text"
+msgid "' The same can be accomplished with an assignment"
+msgstr ""
+
+#. 6RJcJ
+#: new_keyword.xhp
+msgctxt ""
+"new_keyword.xhp\n"
+"par_id971633631328827\n"
+"help.text"
+msgid "The example below creates a new type <literal>Student</literal> and instantiates an object of this type:"
+msgstr ""
+
#. r4nQn
#: partition.xhp
msgctxt ""
@@ -42413,7 +42953,7 @@ msgctxt ""
"hd_id121622648046670\n"
"help.text"
msgid "%PRODUCTNAME Global Objects"
-msgstr ""
+msgstr "Oxetos globales de %PRODUCTNAME"
#. xd3nC
#: uno_objects.xhp
diff --git a/source/ast/helpcontent2/source/text/sbasic/shared/03.po b/source/ast/helpcontent2/source/text/sbasic/shared/03.po
index 24973ddcf30..faa0546116a 100644
--- a/source/ast/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/ast/helpcontent2/source/text/sbasic/shared/03.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-04 19:51+0200\n"
-"PO-Revision-Date: 2021-10-04 18:05+0000\n"
+"POT-Creation-Date: 2021-10-25 12:48+0200\n"
+"PO-Revision-Date: 2021-10-23 00:38+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared03/ast/>\n"
"Language: ast\n"
@@ -160,13 +160,13 @@ msgctxt ""
msgid "<variable id=\"ScriptForge_lib\"><link href=\"text/sbasic/shared/03/lib_ScriptForge.xhp\" name=\"ScriptForge library\">The <literal>ScriptForge</literal> Library</link></variable>"
msgstr ""
-#. yE8bw
+#. Poeai
#: lib_ScriptForge.xhp
msgctxt ""
"lib_ScriptForge.xhp\n"
"bm_id491529070339774\n"
"help.text"
-msgid "<bookmark_value>BASIC ScriptForge library</bookmark_value> <bookmark_value>Python scriptforge module</bookmark_value>"
+msgid "<bookmark_value>BASIC ScriptForge library</bookmark_value> <bookmark_value>Python scriptforge module</bookmark_value>"
msgstr ""
#. BtMUU
@@ -178,13 +178,13 @@ msgctxt ""
msgid "ScriptForge libraries build up an extensible collection of macro scripting resources for %PRODUCTNAME to be invoked from Basic macros or Python scripts."
msgstr ""
-#. YwSXj
+#. eotwE
#: lib_ScriptForge.xhp
msgctxt ""
"lib_ScriptForge.xhp\n"
"par_id1001623412767893\n"
"help.text"
-msgid "To learn more about how to create and execute Python scripts using the <literal>ScriptForge</literal> library, read the <embedvar href=\"text/sbasic/shared/03/sf_intro.xhp#title\"/> help page."
+msgid "To learn more about how to create and execute Python scripts using the <literal>ScriptForge</literal> library, read the help page <link href=\"text/sbasic/shared/03/sf_intro.xhp\" name=\"sfintro_link\">Creating Python Scripts with ScriptForge</link>."
msgstr ""
#. wKZM6
@@ -9106,13 +9106,13 @@ msgctxt ""
msgid "Keys and items can be retrieved, counted, updated, and much more."
msgstr ""
-#. HnBYG
+#. LtaTT
#: sf_dictionary.xhp
msgctxt ""
"sf_dictionary.xhp\n"
"par_id971582884636922\n"
"help.text"
-msgid "%PRODUCTNAME Basic <literal>Collection</literal> object does not support the retrieval of the keys. <br/>Additionally its items contain only primitive Basic data types such as dates, text, numbers, and the like."
+msgid "The Dictionary service is similar to the built-in %PRODUCTNAME Basic <literal>Collection</literal> object, however with more features. For example, <literal>Collection</literal> objects do not support the retrieval of keys. Moreover, Dictionaries provide additional capabilities as replacing keys, testing if a specific key already exists and converting the Dictionary into an Array object or JSON string."
msgstr ""
#. RkMHR
@@ -14360,7 +14360,7 @@ msgctxt ""
"par_id411616942306677\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Sí"
#. 8H6BR
#: sf_formcontrol.xhp
@@ -14504,7 +14504,7 @@ msgctxt ""
"par_id501583774433513\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Sí"
#. E4aHX
#: sf_formcontrol.xhp
@@ -15775,13 +15775,13 @@ msgctxt ""
msgid "<emph>Debugging:</emph> Whenever an error occurs in Python scripts that use <literal>ScriptForge</literal>, the error message provided by the Python execution stack displays the line of code that triggered the error. In Basic error messages do not display this information."
msgstr ""
-#. ZzngK
+#. cPtYB
#: sf_intro.xhp
msgctxt ""
"sf_intro.xhp\n"
"par_id31623411828158\n"
"help.text"
-msgid "Visit <embedvar href=\"text/sbasic/python/main0000.xhp#pythonscriptshelp\"/> for more information on Python scripting using %PRODUCTNAME."
+msgid "Visit <link href=\"text/sbasic/python/main0000.xhp#\" name=\"pyscripts_link\">%PRODUCTNAME Python Scripts Help</link> for more information on Python scripting using %PRODUCTNAME."
msgstr ""
#. CZiTF
@@ -17141,7 +17141,7 @@ msgctxt ""
"par_id711600788076534\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Sí"
#. v3N6U
#: sf_platform.xhp
@@ -17177,7 +17177,7 @@ msgctxt ""
"par_id561633021747903\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Sí"
#. yuuvA
#: sf_platform.xhp
@@ -17267,7 +17267,7 @@ msgctxt ""
"par_id261600788076841\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Sí"
#. nepQ6
#: sf_platform.xhp
@@ -17312,7 +17312,7 @@ msgctxt ""
"par_id541600789286532\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Sí"
#. iukPq
#: sf_platform.xhp
@@ -17620,13 +17620,13 @@ msgctxt ""
msgid "ScriptForge.Session service"
msgstr ""
-#. c4YAM
+#. DxnDG
#: sf_session.xhp
msgctxt ""
"sf_session.xhp\n"
"hd_id901582814720985\n"
"help.text"
-msgid "<variable id=\"SessionService\"><link href=\"text/sbasic/shared/03/sf_session.xhp\" name=\"Session service\"><literal>ScriptForge</literal>.<literal>Session</literal> service</link></variable>"
+msgid "<variable id=\"SessionService\"><link href=\"text/sbasic/shared/03/sf_session.xhp\" name=\"Session service\"><literal>ScriptForge.Session</literal> service</link></variable>"
msgstr ""
#. yTgFK
@@ -18025,13 +18025,13 @@ msgctxt ""
msgid "Consider the Python function <literal>odd_integers</literal> defined below that creates a list with odd integer values between <literal>v1</literal> and <literal>v2</literal>. Suppose this function is stored in a file named <emph>my_macros.py</emph> in your user scripts folder."
msgstr ""
-#. CHr5n
+#. o6DUm
#: sf_session.xhp
msgctxt ""
"sf_session.xhp\n"
"par_id751626817335715\n"
"help.text"
-msgid "Read the help page <embedvar href=\"text/sbasic/python/python_locations.xhp#pythonlocations1\"/> to learn more about where Python scripts can be stored."
+msgid "Read the help page <link href=\"text/sbasic/python/python_locations.xhp\" name=\"pylocation_link\">Python Scripts Organization and Location</link> to learn more about where Python scripts can be stored."
msgstr ""
#. vqBm9
diff --git a/source/ast/helpcontent2/source/text/scalc.po b/source/ast/helpcontent2/source/text/scalc.po
index 7a6ea7b2fed..756d94a11a8 100644
--- a/source/ast/helpcontent2/source/text/scalc.po
+++ b/source/ast/helpcontent2/source/text/scalc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-04 19:51+0200\n"
+"POT-Creation-Date: 2021-10-25 12:48+0200\n"
"PO-Revision-Date: 2020-02-25 12:15+0000\n"
"Last-Translator: Xuacu Saturio <xuacusk8@gmail.com>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc/ast/>\n"
@@ -745,14 +745,14 @@ msgctxt ""
msgid "<variable id=\"main0200\"><link href=\"text/scalc/main0200.xhp\" name=\"Toolbars\">Toolbars</link></variable>"
msgstr "<variable id=\"main0200\"><link href=\"text/scalc/main0200.xhp\" name=\"Toolbars\">Barres de ferramientes</link></variable>"
-#. tdJRk
+#. yvzAm
#: main0200.xhp
msgctxt ""
"main0200.xhp\n"
"par_id3148798\n"
"help.text"
-msgid "This submenu lists the toolbars that are available in spreadsheets.<embedvar href=\"text/shared/00/00000007.xhp#symbolleistenneu\"/>"
-msgstr "Nesti submenú numbérense les barres de ferramientes disponibles nes fueyes de cálculu.<embedvar href=\"text/shared/00/00000007.xhp#symbolleistenneu\"/>"
+msgid "This submenu lists the toolbars that are available in spreadsheets. This overview describes the default toolbar configuration for %PRODUCTNAME."
+msgstr ""
#. XUCUB
#: main0202.xhp
diff --git a/source/ast/helpcontent2/source/text/scalc/01.po b/source/ast/helpcontent2/source/text/scalc/01.po
index 0a8c0450813..cf0407eab56 100644
--- a/source/ast/helpcontent2/source/text/scalc/01.po
+++ b/source/ast/helpcontent2/source/text/scalc/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-04 19:51+0200\n"
-"PO-Revision-Date: 2021-10-01 06:36+0000\n"
+"POT-Creation-Date: 2021-10-25 12:48+0200\n"
+"PO-Revision-Date: 2021-10-05 19:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/ast/>\n"
"Language: ast\n"
@@ -15668,13 +15668,13 @@ msgctxt ""
msgid "Array Functions"
msgstr "Funciones de matriz"
-#. U7gUU
+#. BB9Ze
#: 04060107.xhp
msgctxt ""
"04060107.xhp\n"
"bm_id3147273\n"
"help.text"
-msgid "<bookmark_value>matrices; functions</bookmark_value><bookmark_value>Function Wizard; arrays</bookmark_value><bookmark_value>array formulas</bookmark_value><bookmark_value>inline array constants</bookmark_value><bookmark_value>formulas; arrays</bookmark_value><bookmark_value>functions; array functions</bookmark_value><bookmark_value>editing; array formulas</bookmark_value><bookmark_value>copying; array formulas</bookmark_value><bookmark_value>adjusting array ranges</bookmark_value><bookmark_value>calculating; conditional calculations</bookmark_value><bookmark_value>matrices; calculations</bookmark_value><bookmark_value>conditional calculations with arrays</bookmark_value><bookmark_value>implicit array handling</bookmark_value><bookmark_value>forced array handling</bookmark_value>"
+msgid "<bookmark_value>matrices; functions</bookmark_value><bookmark_value>Function Wizard; arrays</bookmark_value><bookmark_value>array formulas</bookmark_value><bookmark_value>inline array constants</bookmark_value><bookmark_value>formulas; arrays</bookmark_value><bookmark_value>functions; array functions</bookmark_value><bookmark_value>editing; array formulas</bookmark_value><bookmark_value>copying; array formulas</bookmark_value><bookmark_value>deleting; array formulas</bookmark_value><bookmark_value>adjusting array ranges</bookmark_value><bookmark_value>calculating; conditional calculations</bookmark_value><bookmark_value>matrices; calculations</bookmark_value><bookmark_value>conditional calculations with arrays</bookmark_value><bookmark_value>implicit array handling</bookmark_value><bookmark_value>forced array handling</bookmark_value>"
msgstr ""
#. ALUph
@@ -15857,14 +15857,14 @@ msgctxt ""
msgid "Array formulas appear in braces in $[officename] Calc. You cannot create array formulas by manually entering the braces."
msgstr "Les fórmules de matriz amosar en $[officename] Calc ente llaves. Nun ye posible crear fórmules de matriz escribiendo les llaves manualmente."
-#. 6GZXu
+#. 6zGAy
#: 04060107.xhp
msgctxt ""
"04060107.xhp\n"
"par_id3154342\n"
"help.text"
-msgid "The cells in a results array are automatically protected against changes. However, you can edit or copy the array formula by selecting the entire array cell range."
-msgstr "Les caxelles d'una matriz de resultancies tán automáticamente protexíes contra cambeos. Sicasí, pue editar o copiar la fórmula de matriz si escueye tola área de caxelles de la matriz."
+msgid "The cells in a results array are automatically protected against changes. However, you can edit, delete or copy the array formula by selecting the entire array cell range."
+msgstr ""
#. 2tDZj
#: 04060107.xhp
@@ -16010,13 +16010,13 @@ msgctxt ""
msgid "Editing Array Formulas"
msgstr "Editar fórmules de matriz"
-#. cT3G3
+#. Qi4kV
#: 04060107.xhp
msgctxt ""
"04060107.xhp\n"
"par_id3149241\n"
"help.text"
-msgid "Select the cell range or array containing the array formula. To select the whole array, position the cell cursor inside the array range, then press <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline><emph> + /</emph>, where <emph>/</emph> is the <emph>Division</emph> key on the numeric keypad."
+msgid "Select the cell range or array containing the array formula. To select the whole array, position the cell cursor inside the array range, then press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> + <keycode>/</keycode>, where <keycode>/</keycode> is the division key on the numeric keypad."
msgstr ""
#. BzLzG
@@ -16046,6 +16046,33 @@ msgctxt ""
msgid "You can format the separate parts of an array. For example, you can change the font color. Select a cell range and then change the attribute you want."
msgstr "Puédense formatear les distintes partes d'una matriz. Puédese, por exemplu, camudar el color del tipu de lletra. Escueya una área de caxelles y camude l'atributu que deseye."
+#. Tes4E
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"hd_id541633516074226\n"
+"help.text"
+msgid "Deleting Array Formulae"
+msgstr ""
+
+#. adAax
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id681633516103267\n"
+"help.text"
+msgid "Select the cell range or array containing the array formula. To select the whole array, position the cell cursor inside the array range, then press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> + <keycode>/</keycode>, where <keycode>/</keycode> is the division key on the numeric keypad."
+msgstr ""
+
+#. 5xB8E
+#: 04060107.xhp
+msgctxt ""
+"04060107.xhp\n"
+"par_id61633516164519\n"
+"help.text"
+msgid "Press <keycode>Delete</keycode> to delete the array contents, including the array formula, or press <keycode>Backspace</keycode> and this brings up the <link href=\"text/scalc/01/02150000.xhp\" name=\"delete contents\">Delete Contents</link> dialog box. Select <emph>Formula</emph> or <emph>Delete All</emph> and click <emph>OK</emph>."
+msgstr ""
+
#. dEcVJ
#: 04060107.xhp
msgctxt ""
@@ -20267,69 +20294,6 @@ msgctxt ""
msgid "Beware that Calc's AutoCorrect function may modify double quotation marks. AutoCorrect should not change the double quotation marks within formula cells but may change those used in non-formula cells containing text. For example, if you copy a string that is surrounded by some other form of typographical double quotation marks, such as the left double quotation mark (U+201C) and the right double quotation mark (U+201D), and then paste into a formula cell, an error may result. Open the <emph>Double Quotes</emph> area of the <menuitem>Tools - AutoCorrect Options - Localized Options</menuitem> dialog to set the characters used to automatically correct the start and end typographical double quotation marks. Uncheck the <menuitem>Replace</menuitem> toggle button to disable the feature."
msgstr ""
-#. Gmvo8
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"bm_id3149384\n"
-"help.text"
-msgid "<bookmark_value>ARABIC function</bookmark_value>"
-msgstr "<bookmark_value>Función ÁRABE</bookmark_value>"
-
-#. SyuhN
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3149384\n"
-"help.text"
-msgid "ARABIC"
-msgstr "ÁRABE"
-
-#. 6Kjyp
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3153558\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ARABISCH\">Calculates the value of a Roman number. The value range must be between 0 and 3999.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ARABISCH\">Calcula'l valor d'un númberu romanu. El rangu de valores tien de tar entendíu ente 0 y 3999.</ahelp>"
-
-#. cwSkH
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3155523\n"
-"help.text"
-msgid "ARABIC(\"Text\")"
-msgstr "ÁRABE(\"Testu\")"
-
-#. AQA5o
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3151193\n"
-"help.text"
-msgid "<emph>Text</emph> is the text that represents a Roman number."
-msgstr "<emph>Testu</emph> ye'l testu que representa un númberu romanu."
-
-#. dVD9Z
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3154621\n"
-"help.text"
-msgid "<item type=\"input\">=ARABIC(\"MXIV\")</item> returns 1014"
-msgstr "<item type=\"input\">=ÁRABE(\"MXIV\")</item> devuelve 1014."
-
-#. g4sEa
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3147553\n"
-"help.text"
-msgid "<item type=\"input\">=ARABIC(\"MMII\")</item> returns 2002"
-msgstr "<item type=\"input\">=ÁRABE(\"MMII\")</item> devuelve 2002."
-
#. teACB
#: 04060110.xhp
msgctxt ""
@@ -22265,114 +22229,6 @@ msgctxt ""
msgid "<item type=\"input\">RIGHTB(\"office\";3)</item> returns \"ice\" (3 non-DBCS characters each consisting of 1 byte)."
msgstr ""
-#. 84zEq
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"bm_id3153534\n"
-"help.text"
-msgid "<bookmark_value>ROMAN function</bookmark_value>"
-msgstr "<bookmark_value>Función ROMANU</bookmark_value>"
-
-#. 25vky
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"hd_id3153534\n"
-"help.text"
-msgid "ROMAN"
-msgstr "ROMANU"
-
-#. r5V5K
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3151256\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ROEMISCH\">Converts a number into a Roman numeral. The value range must be between 0 and 3999, the modes can be integers from 0 to 4.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ROEMISCH\">Convierte un númberu en númberos romanos. El valor tien de tar ente 0 y 3999, les maneres puen ser númberos enteros de 0 a 4.</ahelp>"
-
-#. RdCBS
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3150593\n"
-"help.text"
-msgid "ROMAN(Number [; Mode])"
-msgstr ""
-
-#. 4rcTC
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3156139\n"
-"help.text"
-msgid "<emph>Number</emph> is the number that is to be converted into a Roman numeral."
-msgstr "<emph>Númberu</emph> ye'l númberu que se va a convertir a númberos romanos."
-
-#. HEZFy
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3153318\n"
-"help.text"
-msgid "<emph>Mode</emph> (optional) indicates the degree of simplification. The higher the value, the greater is the simplification of the Roman number."
-msgstr "<emph>Mou</emph> (opcional) indica'l grau de simplificación. Cuanto mayor seya'l valor, mayor ye la simplificación del númberu romanu."
-
-#. Huw7f
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3151371\n"
-"help.text"
-msgid "<item type=\"input\">=ROMAN(999)</item> returns CMXCIX"
-msgstr "<item type=\"input\">=ROMANU(999)</item> devuelvi CMXCIX."
-
-#. ACRz3
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3153938\n"
-"help.text"
-msgid "<item type=\"input\">=ROMAN(999;0)</item> returns CMXCIX"
-msgstr "<item type=\"input\">=ROMANU(999;0)</item> devuelvi CMXCIX."
-
-#. mtbzC
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3148412\n"
-"help.text"
-msgid "<item type=\"input\">=ROMAN (999;1)</item> returns LMVLIV"
-msgstr "<item type=\"input\">=ROMANU(999;1)</item> devuelvi LMVLIV."
-
-#. 8GQP5
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3155421\n"
-"help.text"
-msgid "<item type=\"input\">=ROMAN(999;2)</item> returns XMIX"
-msgstr "<item type=\"input\">=ROMANU(999;2)</item> devuelvi XMIX."
-
-#. d8sji
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3149235\n"
-"help.text"
-msgid "<item type=\"input\">=ROMAN(999;3)</item> returns VMIV"
-msgstr "<item type=\"input\">=ROMANU(999;3)</item> devuelvi VMIV."
-
-#. yDGse
-#: 04060110.xhp
-msgctxt ""
-"04060110.xhp\n"
-"par_id3150624\n"
-"help.text"
-msgid "<item type=\"input\">=ROMAN(999;4)</item> returns IM"
-msgstr "<item type=\"input\">=ROMANU(999;4)</item> devuelvi IM."
-
#. q3uLN
#: 04060110.xhp
msgctxt ""
@@ -44261,13 +44117,13 @@ msgctxt ""
msgid "In the <emph>Formatting</emph> toolbar, click:"
msgstr ""
-#. sq4wv
+#. BCsAA
#: 05060000.xhp
msgctxt ""
"05060000.xhp\n"
"par_id521632804983642\n"
"help.text"
-msgid "<image id=\"img_id811632804983642\" src=\"cmd/sc_togglemergecells.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id921632804983642\">Icon</alt> </image>"
+msgid "<image id=\"img_id811632804983642\" src=\"cmd/sc_togglemergecells.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id921632804983642\">Icon Merge and Center Cells</alt></image>"
msgstr ""
#. 86yef
@@ -48714,7 +48570,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "More Filters"
-msgstr ""
+msgstr "Más peñeres"
#. EtYTd
#: 12040000.xhp
@@ -48723,7 +48579,7 @@ msgctxt ""
"hd_id3150767\n"
"help.text"
msgid "<link href=\"text/scalc/01/12040000.xhp\" name=\"Filter\">More Filters</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/12040000.xhp\" name=\"Filter\">Más peñeres</link>"
#. PgpNB
#: 12040000.xhp
@@ -55907,6 +55763,96 @@ msgctxt ""
msgid "<link href=\"text/shared/optionen/01060500.xhp#hd_id3156199\">Automatically find column and row labels</link>"
msgstr ""
+#. czFkz
+#: func_arabic.xhp
+msgctxt ""
+"func_arabic.xhp\n"
+"tit\n"
+"help.text"
+msgid "ARABIC Function"
+msgstr ""
+
+#. ze8wK
+#: func_arabic.xhp
+msgctxt ""
+"func_arabic.xhp\n"
+"bm_id831542233029549\n"
+"help.text"
+msgid "<bookmark_value>ARABIC function</bookmark_value> <bookmark_value>text functions;convert roman numbers</bookmark_value>"
+msgstr ""
+
+#. BNUYi
+#: func_arabic.xhp
+msgctxt ""
+"func_arabic.xhp\n"
+"hd_id881628776094597\n"
+"help.text"
+msgid "<variable id=\"Arabic_h1\"><link href=\"text/scalc/01/func_arabic.xhp\" name=\"function ARABIC\">ARABIC</link></variable>"
+msgstr ""
+
+#. xPXrU
+#: func_arabic.xhp
+msgctxt ""
+"func_arabic.xhp\n"
+"par_id541542230672101\n"
+"help.text"
+msgid "<variable id=\"func_arabic_desc\"><ahelp hid=\".\">Returns the numeric value corresponding to a Roman number expressed as text.</ahelp></variable>"
+msgstr ""
+
+#. 2UE9g
+#: func_arabic.xhp
+msgctxt ""
+"func_arabic.xhp\n"
+"par_id151634221012221\n"
+"help.text"
+msgid "The largest Roman number that can be converted is MMMCMXCIX (or one of its simplified versions), which is equivalent to 3999."
+msgstr ""
+
+#. AueXr
+#: func_arabic.xhp
+msgctxt ""
+"func_arabic.xhp\n"
+"par_id701542231253817\n"
+"help.text"
+msgid "<input>ARABIC(Text)</input>"
+msgstr ""
+
+#. sWMEb
+#: func_arabic.xhp
+msgctxt ""
+"func_arabic.xhp\n"
+"par_id621542232197446\n"
+"help.text"
+msgid "<emph>Text</emph>: text representing a Roman number."
+msgstr ""
+
+#. WcE8r
+#: func_arabic.xhp
+msgctxt ""
+"func_arabic.xhp\n"
+"par_id451628776707264\n"
+"help.text"
+msgid "<input>=ARABIC(\"MXIV\")</input> returns the numeric value 1014."
+msgstr ""
+
+#. hDmDF
+#: func_arabic.xhp
+msgctxt ""
+"func_arabic.xhp\n"
+"par_id101628778036375\n"
+"help.text"
+msgid "<input>=ARABIC(\"MMII\")</input> returns the numeric value 2002."
+msgstr ""
+
+#. XAwC8
+#: func_arabic.xhp
+msgctxt ""
+"func_arabic.xhp\n"
+"par_id101628778036134\n"
+"help.text"
+msgid "<input>=ARABIC(\"\")</input> returns 0."
+msgstr ""
+
#. y9q7t
#: func_averageif.xhp
msgctxt ""
@@ -63539,13 +63485,13 @@ msgctxt ""
msgid "The output number is formatted as a valid floating point value and shown using the current cell's number format."
msgstr ""
-#. 2Ditv
+#. CdgXz
#: func_numbervalue.xhp
msgctxt ""
"func_numbervalue.xhp\n"
"par_id351625601754290\n"
"help.text"
-msgid "Refer to the <embedvar href=\"text/shared/01/05020300.xhp#NumbersLink\"/> help page to learn how to change the format of numbers in a cell."
+msgid "Refer to the <link href=\"text/shared/01/05020300.xhp\" name=\"num_format_link\">Numbers / Format</link> help page to learn how to change the format of numbers in a cell."
msgstr ""
#. vEdwF
@@ -64565,6 +64511,132 @@ msgctxt ""
msgid "Refer to the <link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/REPLACEB\" name=\"REPLACEB_Wiki\">REPLACEB</link> wiki page for more details about this function."
msgstr ""
+#. FuCCt
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"tit\n"
+"help.text"
+msgid "ROMAN Function"
+msgstr ""
+
+#. JqcvP
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"bm_id831542233029549\n"
+"help.text"
+msgid "<bookmark_value>ROMAN function</bookmark_value> <bookmark_value>text functions;convert to roman numbers</bookmark_value>"
+msgstr ""
+
+#. uXEPr
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"hd_id881628776094597\n"
+"help.text"
+msgid "<variable id=\"Roman_h1\"><link href=\"text/scalc/01/func_roman.xhp\" name=\"function ROMAN\">ROMAN</link></variable>"
+msgstr ""
+
+#. pdMgk
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"par_id541542230672101\n"
+"help.text"
+msgid "<variable id=\"func_roman_desc\"><ahelp hid=\".\">Converts a number into a Roman numeral. The value range must be between 0 and 3999. A simplification mode can be specified in the range from 0 to 4.</ahelp></variable>"
+msgstr ""
+
+#. tRsoC
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"par_id701542231253817\n"
+"help.text"
+msgid "<input>ROMAN(Number [; Mode])</input>"
+msgstr ""
+
+#. rz4bH
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"par_id621542232197446\n"
+"help.text"
+msgid "<emph>Number</emph>: the number that is to be converted into a Roman numeral."
+msgstr ""
+
+#. bfvWL
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"par_id621542232197337\n"
+"help.text"
+msgid "<emph>Mode</emph>: optional value ranging between 0 to 4 that indicates the degree of simplification to be used in the conversion. The higher the value, the greater is the simplification of the Roman number."
+msgstr ""
+
+#. BBUCq
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"par_id451628776707264\n"
+"help.text"
+msgid "<input>=ROMAN(999)</input> returns \"CMXCIX\" (uses simplification mode equal to zero, which is the default)."
+msgstr ""
+
+#. mBktA
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"par_id101628778036375\n"
+"help.text"
+msgid "<input>=ROMAN(999;0)</input> returns \"CMXCIX\"."
+msgstr ""
+
+#. fGqPj
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"par_id101628778036134\n"
+"help.text"
+msgid "<input>=ROMAN(999;1)</input> returns \"LMVLIV\"."
+msgstr ""
+
+#. qBbFo
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"par_id101628778036278\n"
+"help.text"
+msgid "<input>=ROMAN(999;2)</input> returns \"XMIX\"."
+msgstr ""
+
+#. AY5jP
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"par_id101628778036364\n"
+"help.text"
+msgid "<input>=ROMAN(999;3)</input> returns \"VMIV\"."
+msgstr ""
+
+#. B2aqT
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"par_id101628778036008\n"
+"help.text"
+msgid "<input>=ROMAN(999;4)</input> returns \"IM\"."
+msgstr ""
+
+#. CBuwx
+#: func_roman.xhp
+msgctxt ""
+"func_roman.xhp\n"
+"par_id101628778036019\n"
+"help.text"
+msgid "<input>=ROMAN(0)</input> returns \"\" (empty text)."
+msgstr ""
+
#. E7heY
#: func_roundsig.xhp
msgctxt ""
diff --git a/source/ast/helpcontent2/source/text/scalc/guide.po b/source/ast/helpcontent2/source/text/scalc/guide.po
index 724a9d73581..b7b720e8f63 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: 2021-10-04 19:51+0200\n"
+"POT-Creation-Date: 2021-10-25 12:48+0200\n"
"PO-Revision-Date: 2021-09-27 07:36+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"
@@ -9080,14 +9080,14 @@ msgctxt ""
msgid "Converting Text to Numbers"
msgstr "Convertir testu a númberos"
-#. AzAoQ
+#. dP2GC
#: numbers_text.xhp
msgctxt ""
"numbers_text.xhp\n"
"bm_id3145068\n"
"help.text"
-msgid "<bookmark_value>formats; text as numbers</bookmark_value> <bookmark_value>time format conversion</bookmark_value> <bookmark_value>date formats;conversion</bookmark_value> <bookmark_value>converting;text, into numbers</bookmark_value>"
-msgstr "<bookmark_value>formatos; testu como númberos</bookmark_value> <bookmark_value>conversión al formatu d'hora</bookmark_value> <bookmark_value>formatos de fecha;conversión</bookmark_value> <bookmark_value>convertir;testu, en númberos</bookmark_value>"
+msgid "<bookmark_value>formats; text as numbers</bookmark_value> <bookmark_value>time format conversion</bookmark_value> <bookmark_value>date formats;conversion</bookmark_value> <bookmark_value>converting;text, into numbers</bookmark_value>"
+msgstr ""
#. pqhdm
#: numbers_text.xhp
@@ -9314,13 +9314,13 @@ msgctxt ""
msgid "Changing the default text to number conversion settings"
msgstr ""
-#. FrQEr
+#. p9t4t
#: numbers_text.xhp
msgctxt ""
"numbers_text.xhp\n"
"par_id111567772433803\n"
"help.text"
-msgid "The text to number conversion can be customized in the <embedvar href=\"text/shared/optionen/detailedcalculation.xhp#detailed_heading\" markup=\"ignore\"/> option."
+msgid "The text to number conversion can be customized in the <link href=\"text/shared/optionen/detailedcalculation.xhp\" name=\"detailed_link\">Detailed Calculation Settings</link> option."
msgstr ""
#. WE8wt
@@ -10727,13 +10727,13 @@ msgctxt ""
msgid "Select the range of values from which duplicate values are to be removed. The values have to be arranged in a single column."
msgstr ""
-#. XvTTj
+#. 7fDQ9
#: remove_duplicates.xhp
msgctxt ""
"remove_duplicates.xhp\n"
"par_id31630021517873\n"
"help.text"
-msgid "Go to <menuitem>Data - More Filters - Standard Filter</menuitem>. This opens the <embedvar href=\"text/shared/02/12090100.xhp#StandardFilter_h1\"/> dialog."
+msgid "Go to <menuitem>Data - More Filters - Standard Filter</menuitem>. This opens the <link href=\"text/shared/02/12090100.xhp\" name=\"std_dialog_link\"> Standard Filter</link> dialog."
msgstr ""
#. EVEzq
@@ -12068,13 +12068,13 @@ msgctxt ""
msgid "Merge and Unmerge Cells"
msgstr ""
-#. AEABz
+#. FFV5z
#: table_cellmerge.xhp
msgctxt ""
"table_cellmerge.xhp\n"
"bm_id501632012952361\n"
"help.text"
-msgid "<bookmark_value>merge/merging cells</bookmark_value> <bookmark_value>unmerge/unmerging cells</bookmark_value> <bookmark_value>split/splitting cells</bookmark_value>"
+msgid "<bookmark_value>merge/merging cells</bookmark_value> <bookmark_value>unmerge/unmerging cells</bookmark_value> <bookmark_value>split/splitting cells</bookmark_value>"
msgstr ""
#. BAqR3
@@ -12149,22 +12149,22 @@ msgctxt ""
msgid "Or, in the <emph>Properties</emph> sidebar mark the <emph>Merge Cells</emph> checkbox."
msgstr ""
-#. dzAEu
+#. fAjCD
#: table_cellmerge.xhp
msgctxt ""
"table_cellmerge.xhp\n"
"par_id3154020\n"
"help.text"
-msgid "Or, choose <embedvar href=\"text/scalc/01/05060000.xhp#format_mergecells_menu\"/><menuitem>Merge Cells</menuitem>"
+msgid "Or, choose <menuitem>Format - Merge and Unmerge Cells - Merge Cells</menuitem>"
msgstr ""
-#. DbZBM
+#. 6VxQA
#: table_cellmerge.xhp
msgctxt ""
"table_cellmerge.xhp\n"
"par_id6424146\n"
"help.text"
-msgid "Or, choose <embedvar href=\"text/scalc/01/05060000.xhp#format_mergecells_menu\"/><menuitem>Merge and Center Cells</menuitem>"
+msgid "Or, choose <menuitem>Format - Merge and Unmerge Cells - Merge and Center Cells</menuitem>"
msgstr ""
#. sHLpi
@@ -12221,22 +12221,22 @@ msgctxt ""
msgid "Or, in the <emph>Properties</emph> sidebar clear the <emph>Merge Cells</emph> checkbox."
msgstr ""
-#. zBdRG
+#. uiNiD
#: table_cellmerge.xhp
msgctxt ""
"table_cellmerge.xhp\n"
"par_id9493087\n"
"help.text"
-msgid "Or, choose <embedvar href=\"text/scalc/01/05060000.xhp#format_mergecells_menu\"/><menuitem>Unmerge Cells</menuitem>."
+msgid "Or, choose <menuitem>Format - Merge and Unmerge Cells - Unmerge Cells</menuitem>."
msgstr ""
-#. YC7sa
+#. HJEzN
#: table_cellmerge.xhp
msgctxt ""
"table_cellmerge.xhp\n"
"par_id561632820960500\n"
"help.text"
-msgid "Or, toggle <embedvar href=\"text/scalc/01/05060000.xhp#format_mergecells_menu\"/><menuitem>Merge and Center Cells</menuitem>"
+msgid "Or, toggle <menuitem>Format - Merge and Unmerge Cells - Merge and Center Cells</menuitem>"
msgstr ""
#. u5xXE
diff --git a/source/ast/helpcontent2/source/text/sdatabase.po b/source/ast/helpcontent2/source/text/sdatabase.po
index 9aad0993da7..fc474786de9 100644
--- a/source/ast/helpcontent2/source/text/sdatabase.po
+++ b/source/ast/helpcontent2/source/text/sdatabase.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-04 19:51+0200\n"
-"PO-Revision-Date: 2021-09-30 02:36+0000\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
+"PO-Revision-Date: 2021-10-25 02:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsdatabase/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.8.1\n"
#. ugSgG
#: 02000000.xhp
@@ -868,7 +868,7 @@ msgctxt ""
"hd_id3146916\n"
"help.text"
msgid "Field"
-msgstr ""
+msgstr "Campu"
#. 4KDzZ
#: 02010100.xhp
@@ -994,7 +994,7 @@ msgctxt ""
"hd_id3154714\n"
"help.text"
msgid "Criteria"
-msgstr ""
+msgstr "Criterios"
#. f3DvJ
#: 02010100.xhp
@@ -1039,7 +1039,7 @@ msgctxt ""
"hd_id3148419\n"
"help.text"
msgid "Functions"
-msgstr ""
+msgstr "Funciones"
#. Cxhjn
#: 02010100.xhp
@@ -1066,7 +1066,7 @@ msgctxt ""
"par_id3150307\n"
"help.text"
msgid "Option"
-msgstr ""
+msgstr "Opción"
#. kBvXF
#: 02010100.xhp
@@ -1075,7 +1075,7 @@ msgctxt ""
"par_id3152993\n"
"help.text"
msgid "Effect"
-msgstr ""
+msgstr "Efeutu"
#. zCunm
#: 02010100.xhp
@@ -1489,7 +1489,7 @@ msgctxt ""
"hd_id3154172\n"
"help.text"
msgid "Functions"
-msgstr ""
+msgstr "Funciones"
#. BchuJ
#: 02010100.xhp
@@ -1642,7 +1642,7 @@ msgctxt ""
"par_id3152471\n"
"help.text"
msgid "Meaning"
-msgstr ""
+msgstr "Significáu"
#. mBZgC
#: 02010100.xhp
@@ -2686,7 +2686,7 @@ msgctxt ""
"hd_id3159267\n"
"help.text"
msgid "Options"
-msgstr ""
+msgstr "Opciones"
#. MRJCp
#: 02010101.xhp
@@ -4378,7 +4378,7 @@ msgctxt ""
"hd_id3154228\n"
"help.text"
msgid "Options"
-msgstr ""
+msgstr "Opciones"
#. JvNbF
#: 05030100.xhp
@@ -4387,7 +4387,7 @@ msgctxt ""
"hd_id3157898\n"
"help.text"
msgid "Definition and data"
-msgstr ""
+msgstr "Definición y datos"
#. TqTmF
#: 05030100.xhp
@@ -7060,7 +7060,7 @@ msgctxt ""
"par_idN105CD\n"
"help.text"
msgid "File extension"
-msgstr ""
+msgstr "Estensión del ficheru"
#. 4UxAN
#: dabapropadd.xhp
@@ -7240,7 +7240,7 @@ msgctxt ""
"par_idN105AA\n"
"help.text"
msgid "Test Connection"
-msgstr ""
+msgstr "Probar conexón"
#. pvebP
#: dabapropgen.xhp
@@ -7566,76 +7566,76 @@ msgctxt ""
msgid "If you open the Database Wizard to create a database file for an existing database connection, there may be more steps to specify paths, authentication information, and more."
msgstr ""
-#. wFFQE
+#. A9JMA
#: dabawiz00.xhp
msgctxt ""
"dabawiz00.xhp\n"
"par_idN105F2\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02text.xhp\">Set up text file connection</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02text.xhp\">Set up text file connection</link>"
msgstr ""
-#. 73X5w
+#. FWLbE
#: dabawiz00.xhp
msgctxt ""
"dabawiz00.xhp\n"
"par_idN10601\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02access.xhp\">Set up Microsoft Access connection</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02access.xhp\">Set up Microsoft Access connection</link>"
msgstr ""
-#. ckemB
+#. LE9Go
#: dabawiz00.xhp
msgctxt ""
"dabawiz00.xhp\n"
"par_idN1062E\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02ado.xhp\">Set up ADO connection</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02ado.xhp\">Set up ADO connection</link>"
msgstr ""
-#. bbTEe
+#. BU6uL
#: dabawiz00.xhp
msgctxt ""
"dabawiz00.xhp\n"
"par_idN1070F\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02dbase.xhp\">Set up dBASE connection</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02dbase.xhp\">Set up dBASE connection</link>"
msgstr ""
-#. mM3XM
+#. TBaXt
#: dabawiz00.xhp
msgctxt ""
"dabawiz00.xhp\n"
"par_idN1063D\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02jdbc.xhp\">Set up JDBC connection</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02jdbc.xhp\">Set up JDBC connection</link>"
msgstr ""
-#. EB2yp
+#. F3Gju
#: dabawiz00.xhp
msgctxt ""
"dabawiz00.xhp\n"
"par_idN1064C\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02oracle.xhp\">Set up Oracle database connection</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02oracle.xhp\">Set up Oracle database connection</link>"
msgstr ""
-#. sSrMX
+#. atGau
#: dabawiz00.xhp
msgctxt ""
"dabawiz00.xhp\n"
"par_idN1066A\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02odbc.xhp\">ODBC settings</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02odbc.xhp\">ODBC settings</link>"
msgstr ""
-#. Jht8w
+#. wGT7W
#: dabawiz00.xhp
msgctxt ""
"dabawiz00.xhp\n"
"par_idN10679\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02spreadsheet.xhp\">Set up Spreadsheet connection</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02spreadsheet.xhp\">Set up Spreadsheet connection</link>"
msgstr ""
#. menWz
@@ -7809,22 +7809,22 @@ msgctxt ""
msgid "The next wizard page is one of the following pages:"
msgstr ""
-#. vaBGS
+#. 9fLay
#: dabawiz01.xhp
msgctxt ""
"dabawiz01.xhp\n"
"par_idN1061C\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02text.xhp\">Set up text file connection</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02text.xhp\">Set up text file connection</link>"
msgstr ""
-#. NEWQn
+#. DeFrC
#: dabawiz01.xhp
msgctxt ""
"dabawiz01.xhp\n"
"par_idN1062B\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02access.xhp\">Set up Microsoft Access or Microsoft Access 2007 connection</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02access.xhp\">Set up Microsoft Access or Microsoft Access 2007 connection</link>"
msgstr ""
#. NCWx8
@@ -7836,49 +7836,1516 @@ msgctxt ""
msgid "<link href=\"text/shared/explorer/database/dabawiz02ldap.xhp\">Set up LDAP connection</link>"
msgstr ""
-#. 29mSc
+#. 6qgTE
#: dabawiz01.xhp
msgctxt ""
"dabawiz01.xhp\n"
"par_idN10658\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02ado.xhp\">Set up ADO connection</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02ado.xhp\">Set up ADO connection</link>"
msgstr ""
-#. sUX3D
+#. oiGwh
#: dabawiz01.xhp
msgctxt ""
"dabawiz01.xhp\n"
"par_idN10667\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02jdbc.xhp\">Set up JDBC connection</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02jdbc.xhp\">Set up JDBC connection</link>"
msgstr ""
-#. BRUYG
+#. N55Na
#: dabawiz01.xhp
msgctxt ""
"dabawiz01.xhp\n"
"par_idN10676\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02oracle.xhp\">Set up Oracle database connection</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02oracle.xhp\">Set up Oracle database connection</link>"
msgstr ""
-#. JtGv6
+#. c4YLM
#: dabawiz01.xhp
msgctxt ""
"dabawiz01.xhp\n"
"par_idN10694\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02odbc.xhp\">ODBC settings</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02odbc.xhp\">ODBC settings</link>"
msgstr ""
-#. A69nZ
+#. zpfrv
#: dabawiz01.xhp
msgctxt ""
"dabawiz01.xhp\n"
"par_idN106A3\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02spreadsheet.xhp\">Set up Spreadsheet connection</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02spreadsheet.xhp\">Set up Spreadsheet connection</link>"
+msgstr ""
+
+#. SJaiE
+#: dabawiz02.xhp
+msgctxt ""
+"dabawiz02.xhp\n"
+"tit\n"
+"help.text"
+msgid "Save and proceed"
+msgstr ""
+
+#. Hjhen
+#: dabawiz02.xhp
+msgctxt ""
+"dabawiz02.xhp\n"
+"par_idN10544\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/dabawiz02.xhp\">Save and proceed</link>"
+msgstr ""
+
+#. CECqo
+#: dabawiz02.xhp
+msgctxt ""
+"dabawiz02.xhp\n"
+"par_idN10554\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies whether you want to register the database, open the database for editing, or insert a new table.</ahelp>"
+msgstr ""
+
+#. v3hCS
+#: dabawiz02.xhp
+msgctxt ""
+"dabawiz02.xhp\n"
+"par_idN10557\n"
+"help.text"
+msgid "Yes, register the Database for me"
+msgstr ""
+
+#. 6iEY2
+#: dabawiz02.xhp
+msgctxt ""
+"dabawiz02.xhp\n"
+"par_idN105B4\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select to register the database within your user copy of %PRODUCTNAME. After registering, the database is displayed in the <emph>View - Data Sources</emph> window. You must register a database to be able to insert the database fields in a document (Insert - Field - More Fields) or in a mail merge.</ahelp>"
+msgstr ""
+
+#. BDPbo
+#: dabawiz02.xhp
+msgctxt ""
+"dabawiz02.xhp\n"
+"par_idN105B7\n"
+"help.text"
+msgid "No, do not register the database"
+msgstr ""
+
+#. PHFCG
+#: dabawiz02.xhp
+msgctxt ""
+"dabawiz02.xhp\n"
+"par_idN105BB\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select to keep the database information only within the created database file.</ahelp>"
+msgstr ""
+
+#. xJFV8
+#: dabawiz02.xhp
+msgctxt ""
+"dabawiz02.xhp\n"
+"par_idN1055B\n"
+"help.text"
+msgid "Open the database for editing"
+msgstr ""
+
+#. 2oDVV
+#: dabawiz02.xhp
+msgctxt ""
+"dabawiz02.xhp\n"
+"par_idN105C6\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select to display the database file, where you can edit the database structure.</ahelp>"
+msgstr ""
+
+#. uUaJe
+#: dabawiz02.xhp
+msgctxt ""
+"dabawiz02.xhp\n"
+"par_idN1055F\n"
+"help.text"
+msgid "Create tables using the table wizard"
+msgstr ""
+
+#. F4TTD
+#: dabawiz02.xhp
+msgctxt ""
+"dabawiz02.xhp\n"
+"par_idN105D1\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select to call the <link href=\"text/shared/explorer/database/tablewizard00.xhp\">Table Wizard</link> after the Database Wizard is finished.</ahelp>"
+msgstr ""
+
+#. YnZ24
+#: dabawiz02access.xhp
+msgctxt ""
+"dabawiz02access.xhp\n"
+"tit\n"
+"help.text"
+msgid "Microsoft Access Connection"
+msgstr ""
+
+#. uUAxL
+#: dabawiz02access.xhp
+msgctxt ""
+"dabawiz02access.xhp\n"
+"bm_id2755516\n"
+"help.text"
+msgid "<bookmark_value>Access databases (base)</bookmark_value><bookmark_value>Microsoft Office;Access databases (base)</bookmark_value>"
+msgstr ""
+
+#. iPpLv
+#: dabawiz02access.xhp
+msgctxt ""
+"dabawiz02access.xhp\n"
+"par_idN1053D\n"
+"help.text"
+msgid "<variable id=\"access\"><link href=\"text/sdatabase/dabawiz02access.xhp\">Microsoft Access Connection</link></variable>"
+msgstr ""
+
+#. eMbAE
+#: dabawiz02access.xhp
+msgctxt ""
+"dabawiz02access.xhp\n"
+"par_idN10541\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies the settings for importing a database file in Microsoft Access or Access 2007 format.</ahelp>"
+msgstr ""
+
+#. FJFQi
+#: dabawiz02access.xhp
+msgctxt ""
+"dabawiz02access.xhp\n"
+"par_id1142772\n"
+"help.text"
+msgid "See also the English Wiki page <link href=\"https://wiki.documentfoundation.org/MSA-Base_Faq\" name=\"wiki.documentfoundation.org MS Access Base FAQ\">https://wiki.documentfoundation.org/MSA-Base_Faq</link>."
+msgstr ""
+
+#. 7vvBT
+#: dabawiz02access.xhp
+msgctxt ""
+"dabawiz02access.xhp\n"
+"par_idN10544\n"
+"help.text"
+msgid "Microsoft Access database file"
+msgstr ""
+
+#. 5nSHE
+#: dabawiz02access.xhp
+msgctxt ""
+"dabawiz02access.xhp\n"
+"par_idN10548\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies the path to the database file.</ahelp>"
+msgstr ""
+
+#. cKU7v
+#: dabawiz02access.xhp
+msgctxt ""
+"dabawiz02access.xhp\n"
+"par_idN1054B\n"
+"help.text"
+msgid "Browse"
+msgstr ""
+
+#. k4EM5
+#: dabawiz02access.xhp
+msgctxt ""
+"dabawiz02access.xhp\n"
+"par_idN1054F\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click to open a file selection dialog.</ahelp>"
+msgstr ""
+
+#. gjtnv
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"tit\n"
+"help.text"
+msgid "ADO Connection"
+msgstr ""
+
+#. jJtjy
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"bm_id7565233\n"
+"help.text"
+msgid "<bookmark_value>ADO databases (Base)</bookmark_value><bookmark_value>MS ADO interface (Base)</bookmark_value><bookmark_value>databases;ADO (Base)</bookmark_value>"
+msgstr ""
+
+#. 9Yxn5
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN1054C\n"
+"help.text"
+msgid "<variable id=\"ado\"><link href=\"text/sdatabase/dabawiz02ado.xhp\">ADO Connection</link></variable>"
+msgstr ""
+
+#. Gi6xc
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN10550\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies the options for adding an ADO (Microsoft ActiveX Data Objects) database.</ahelp>"
+msgstr ""
+
+#. pGwdA
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN10565\n"
+"help.text"
+msgid "The ADO interface is a Microsoft Windows proprietary container for connecting to databases."
+msgstr ""
+
+#. mVEj7
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN10568\n"
+"help.text"
+msgid "$[officename] requires the Microsoft Data Access Components (MDAC) to use the ADO interface. Microsoft Windows 2000 and XP include these components by default."
+msgstr ""
+
+#. CWQxx
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN1056B\n"
+"help.text"
+msgid "Data source URL"
+msgstr ""
+
+#. dEHxg
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN1056F\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the data source URL.</ahelp>"
+msgstr ""
+
+#. AS8Ye
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN10572\n"
+"help.text"
+msgid "Example URLs"
+msgstr ""
+
+#. DGA9a
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN10576\n"
+"help.text"
+msgid "To connect to an Access 2000 file, use the format:"
+msgstr ""
+
+#. EYrtv
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN10579\n"
+"help.text"
+msgid "PROVIDER=Microsoft.Jet.OLEDB.4.0;DATA SOURCE=c:\\Access\\nwind2000.mdb"
+msgstr ""
+
+#. JrQva
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN1057C\n"
+"help.text"
+msgid "To connect with a name to a catalog on a Microsoft SQL server that has a name turner, enter:"
+msgstr ""
+
+#. HeHcf
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN1057F\n"
+"help.text"
+msgid "PROVIDER=sqloledb;DATA SOURCE=turner;INITIAL CATALOG=First"
+msgstr ""
+
+#. eqFwU
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN10582\n"
+"help.text"
+msgid "To access an ODBC driver as a provider:"
+msgstr ""
+
+#. cibKq
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN10585\n"
+"help.text"
+msgid "DSN=SQLSERVER"
+msgstr ""
+
+#. FFdf5
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN10588\n"
+"help.text"
+msgid "Browse"
+msgstr ""
+
+#. xmZQB
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN1058C\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click to open a database selection dialog.</ahelp>"
+msgstr ""
+
+#. Bi3az
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN10596\n"
+"help.text"
+msgid "A user name can have a maximum of 18 characters."
+msgstr ""
+
+#. iifVJ
+#: dabawiz02ado.xhp
+msgctxt ""
+"dabawiz02ado.xhp\n"
+"par_idN10599\n"
+"help.text"
+msgid "A password must contain 3 to 18 characters."
+msgstr ""
+
+#. mxSCU
+#: dabawiz02dbase.xhp
+msgctxt ""
+"dabawiz02dbase.xhp\n"
+"tit\n"
+"help.text"
+msgid "dBASE Connection"
+msgstr ""
+
+#. vDDMj
+#: dabawiz02dbase.xhp
+msgctxt ""
+"dabawiz02dbase.xhp\n"
+"par_idN1054A\n"
+"help.text"
+msgid "<variable id=\"dbase\"><link href=\"text/sdatabase/dabawiz02dbase.xhp\">dBASE Connection</link></variable>"
+msgstr ""
+
+#. 3rzAr
+#: dabawiz02dbase.xhp
+msgctxt ""
+"dabawiz02dbase.xhp\n"
+"par_idN10556\n"
+"help.text"
+msgid "Path to the dBASE files"
+msgstr ""
+
+#. 9qfqi
+#: dabawiz02dbase.xhp
+msgctxt ""
+"dabawiz02dbase.xhp\n"
+"par_idN1055A\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the path to the dBASE *.dbf files.</ahelp>"
+msgstr ""
+
+#. JtErQ
+#: dabawiz02dbase.xhp
+msgctxt ""
+"dabawiz02dbase.xhp\n"
+"par_idN10571\n"
+"help.text"
+msgid "Browse"
+msgstr ""
+
+#. VHbhH
+#: dabawiz02dbase.xhp
+msgctxt ""
+"dabawiz02dbase.xhp\n"
+"par_idN10575\n"
+"help.text"
+msgid "<ahelp hid=\".\">Open a path selection dialog.</ahelp>"
+msgstr ""
+
+#. n9AxK
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"tit\n"
+"help.text"
+msgid "JDBC Connection"
+msgstr ""
+
+#. BSPeu
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"bm_id3726920\n"
+"help.text"
+msgid "<bookmark_value>JDBC; databases (Base)</bookmark_value><bookmark_value>databases; JDBC (Base)</bookmark_value>"
+msgstr ""
+
+#. nSDvF
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN105FC\n"
+"help.text"
+msgid "<variable id=\"jdbc\"><link href=\"text/sdatabase/dabawiz02jdbc.xhp\">JDBC Connection</link></variable>"
+msgstr ""
+
+#. 4vvDv
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN10600\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies the options to access a <link href=\"text/shared/00/00000005.xhp#jdbc\" name=\"JDBC\">JDBC</link> database.</ahelp>"
+msgstr ""
+
+#. MAM5R
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN10623\n"
+"help.text"
+msgid "JDBC Examples"
+msgstr ""
+
+#. FAkVF
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN10627\n"
+"help.text"
+msgid "<item type=\"productname\">You can use a JDBC driver class to connect to a JDBC database from %PRODUCTNAME</item>. The driver class is provided by the database manufacturer. Two examples of JDBC databases are Oracle and MySQL."
+msgstr ""
+
+#. ehUZi
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN1062D\n"
+"help.text"
+msgid "The driver classes must be added to %PRODUCTNAME in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME - Advanced</menuitem>."
+msgstr ""
+
+#. KTrhC
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN10634\n"
+"help.text"
+msgid "Oracle database"
+msgstr ""
+
+#. Br2JC
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN10638\n"
+"help.text"
+msgid "You can use a JDBC driver to access an Oracle database from Solaris or Linux. To access the database from Windows, you need an ODBC driver."
+msgstr ""
+
+#. pei94
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN1064B\n"
+"help.text"
+msgid "On UNIX, ensure that the Oracle database client is installed with JDBC support. The JDBC driver class for the Solaris Oracle client version 8.x is located in the <Oracle client>/product/jdbc/lib/classes111.zip directory. You can also download the latest version from the Oracle web site."
+msgstr ""
+
+#. DifQh
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN10661\n"
+"help.text"
+msgid "In the <emph>Data source URL</emph> box, enter the location of the Oracle database server. The syntax of the URL depends on the database type. See the documentation that came with the JDBC driver for more information."
+msgstr ""
+
+#. BBFrJ
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN10668\n"
+"help.text"
+msgid "For an Oracle database, the syntax of the URL is:"
+msgstr ""
+
+#. 7tbob
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN1066B\n"
+"help.text"
+msgid "oracle:thin:@hostname:port:database_name"
+msgstr ""
+
+#. RiDDR
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN10674\n"
+"help.text"
+msgid "hostname is the name of the machine that runs the Oracle database. You can also replace hostname with the IP address of the server."
+msgstr ""
+
+#. sFfhQ
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN10678\n"
+"help.text"
+msgid "port is the port where the Oracle database listens. Ask your database administrator for the correct port address."
+msgstr ""
+
+#. GDkVv
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN1067C\n"
+"help.text"
+msgid "database_name is the name of the Oracle database. Ask your database administrator for the correct name."
+msgstr ""
+
+#. aQiqR
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN1067F\n"
+"help.text"
+msgid "MySQL database"
+msgstr ""
+
+#. FEV5u
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN10683\n"
+"help.text"
+msgid "The driver for the MySQL database is available on the MySQL web site."
+msgstr ""
+
+#. p2v67
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN10689\n"
+"help.text"
+msgid "The syntax for a MySQL database is:"
+msgstr ""
+
+#. wEDsL
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN1068C\n"
+"help.text"
+msgid "mysql://hostname:port/database_name"
+msgstr ""
+
+#. m5Kcx
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN10695\n"
+"help.text"
+msgid "<ahelp hid=\".\">hostname is the name of the machine that runs the MySQL database.</ahelp> You can also replace hostname with the IP address of the server."
+msgstr ""
+
+#. LCpew
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN10699\n"
+"help.text"
+msgid "port is the default port for MySQL databases, namely 3306."
+msgstr ""
+
+#. q2DuM
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN1069D\n"
+"help.text"
+msgid "database_name is the name of the database."
+msgstr ""
+
+#. YYgSg
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN106A0\n"
+"help.text"
+msgid "Data source URL"
+msgstr ""
+
+#. EcdaK
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN106A4\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the URL for the database. For example, for the MySQL JDBC driver, enter \"mysql://<Servername>/<name of the database>\". For more information on the JDBC driver, consult the documentation that came with the driver.</ahelp>"
+msgstr ""
+
+#. eVBSr
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN106BB\n"
+"help.text"
+msgid "JDBC Driver Class"
+msgstr ""
+
+#. vFsoP
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN106BF\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the name of the JDBC driver.</ahelp>"
+msgstr ""
+
+#. VHjhA
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_id7953733\n"
+"help.text"
+msgid "Before you can use a JDBC driver, you need to add its class path. Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME - Advanced</menuitem>, and click the <widget>Class Path</widget> button. After you add the path information, restart %PRODUCTNAME."
+msgstr ""
+
+#. f8fUr
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN106CE\n"
+"help.text"
+msgid "Test Class"
+msgstr ""
+
+#. 8VBbq
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN106E4\n"
+"help.text"
+msgid "<ahelp hid=\".\">Tests the connection with the current settings.</ahelp>"
+msgstr ""
+
+#. FGezr
+#: dabawiz02jdbc.xhp
+msgctxt ""
+"dabawiz02jdbc.xhp\n"
+"par_idN106E7\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/dabawiz03auth.xhp\">Authentication</link>"
+msgstr ""
+
+#. Y4EFA
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"tit\n"
+"help.text"
+msgid "MariaDB and MySQL Connection"
+msgstr ""
+
+#. bVNAZ
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"bm_id861587404584956\n"
+"help.text"
+msgid "<bookmark_value>MariaDB settings (Base)</bookmark_value><bookmark_value>MySQL settings (Base)</bookmark_value>"
+msgstr ""
+
+#. MseiS
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"par_idN10549\n"
+"help.text"
+msgid "<variable id=\"mysql\"><link href=\"text/sdatabase/dabawiz02mysql.xhp\">MariaDB and MySQL Connection</link></variable>"
+msgstr ""
+
+#. 5FPU6
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"par_idN1054D\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies the options for MariaDB and MySQL databases.</ahelp>"
+msgstr ""
+
+#. Bmcwo
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"hd_id661587405298284\n"
+"help.text"
+msgid "Direct Connection for MariaDB and MySQL databases"
+msgstr "Conexón direuta pa bases de datos MariaDB y MySQL"
+
+#. vd9VD
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"hd_id321587405303769\n"
+"help.text"
+msgid "Database name"
+msgstr "Nome de la base de datos"
+
+#. 6LAsi
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"par_id371587405314376\n"
+"help.text"
+msgid "Enter the name of the MariaDB or MySQL database. Ask your database administrator for the correct name."
+msgstr ""
+
+#. jbdZp
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"hd_id561587405334695\n"
+"help.text"
+msgid "Server URL"
+msgstr ""
+
+#. SshYk
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"par_id521587405341138\n"
+"help.text"
+msgid "Enter the URL for the database server. This is the name of the machine that runs the MariaDB or MySQL database. You can also replace hostname with the IP address of the server."
+msgstr ""
+
+#. MZQiq
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"hd_id171587405349438\n"
+"help.text"
+msgid "Port number"
+msgstr ""
+
+#. J2SR3
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"par_id1001587405358390\n"
+"help.text"
+msgid "Enter the port number for the database server. Ask your database administrator for the correct port address. The default port number for MySQL or MariaDB databases is 3306."
+msgstr ""
+
+#. ovKhU
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"hd_id121587407845730\n"
+"help.text"
+msgid "Named Pipe"
+msgstr ""
+
+#. Rq89B
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"par_id941587407987180\n"
+"help.text"
+msgid "If the MariaDB or MySQL database is to be accessed by a named pipe, enter its name."
+msgstr ""
+
+#. wF6bj
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"hd_id161587405553671\n"
+"help.text"
+msgid "Socket"
+msgstr ""
+
+#. e8DB2
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"par_id161587405561472\n"
+"help.text"
+msgid "If the MariaDB or MySQL database is to be accessed by a socket, enter the socket ID."
+msgstr ""
+
+#. fpBNu
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"par_idN10562\n"
+"help.text"
+msgid "Connect using ODBC (Open Database Connectivity)"
+msgstr ""
+
+#. E7sE2
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"par_idN10566\n"
+"help.text"
+msgid "<ahelp hid=\".\">Connects to an existing ODBC data source that was set on a system level.</ahelp>"
+msgstr ""
+
+#. AXrwJ
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"par_idN10569\n"
+"help.text"
+msgid "Connect using JDBC (Java Database Connectivity)"
+msgstr ""
+
+#. i9TrE
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"par_idN1056D\n"
+"help.text"
+msgid "<ahelp hid=\".\">Connects to an existing JDBC data source that was set on a system level.</ahelp>"
+msgstr ""
+
+#. FUG3D
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"par_idN10570\n"
+"help.text"
+msgid "The next wizard page depends on your choice of ODBC or JDBC:"
+msgstr ""
+
+#. VYcYK
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"par_idN10573\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/dabawiz02odbc.xhp\">ODBC Connection</link>"
+msgstr ""
+
+#. DABkC
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"par_idN10582\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/dabawiz02jdbc.xhp\">JDBC Connection</link>"
+msgstr ""
+
+#. ujaGF
+#: dabawiz02mysql.xhp
+msgctxt ""
+"dabawiz02mysql.xhp\n"
+"par_idN10591\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/dabawiz03auth.xhp\">Authentication</link>"
+msgstr ""
+
+#. HF588
+#: dabawiz02odbc.xhp
+msgctxt ""
+"dabawiz02odbc.xhp\n"
+"tit\n"
+"help.text"
+msgid "ODBC Connection"
+msgstr ""
+
+#. sGNau
+#: dabawiz02odbc.xhp
+msgctxt ""
+"dabawiz02odbc.xhp\n"
+"bm_id3149031\n"
+"help.text"
+msgid "<bookmark_value>ODBC;database (Base)</bookmark_value><bookmark_value>databases;ODBC (Base)</bookmark_value>"
+msgstr ""
+
+#. SNzJc
+#: dabawiz02odbc.xhp
+msgctxt ""
+"dabawiz02odbc.xhp\n"
+"par_idN1053D\n"
+"help.text"
+msgid "<variable id=\"odbc\"><link href=\"text/sdatabase/dabawiz02odbc.xhp\">ODBC Connection</link></variable>"
+msgstr ""
+
+#. nb3Qq
+#: dabawiz02odbc.xhp
+msgctxt ""
+"dabawiz02odbc.xhp\n"
+"par_idN10541\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies the settings for <link href=\"text/shared/00/00000005.xhp#odbc\" name=\"ODBC\">ODBC</link> databases.</ahelp>"
+msgstr ""
+
+#. WhLBW
+#: dabawiz02odbc.xhp
+msgctxt ""
+"dabawiz02odbc.xhp\n"
+"par_id8856776\n"
+"help.text"
+msgid "To edit or add records to a database table in $[officename], the table must have a unique index field."
+msgstr ""
+
+#. xs2Yc
+#: dabawiz02odbc.xhp
+msgctxt ""
+"dabawiz02odbc.xhp\n"
+"par_id8034302\n"
+"help.text"
+msgid "On Solaris and Linux platforms, try to use a JDBC driver instead of an ODBC driver. See http://www.unixodbc.org for an ODBC implementation on Solaris or Linux."
+msgstr ""
+
+#. PxZ9T
+#: dabawiz02odbc.xhp
+msgctxt ""
+"dabawiz02odbc.xhp\n"
+"par_id8560136\n"
+"help.text"
+msgid "To connect to a Microsoft Access database on Windows, use the ADO or Access database interface, rather than ODBC."
+msgstr ""
+
+#. vme6U
+#: dabawiz02odbc.xhp
+msgctxt ""
+"dabawiz02odbc.xhp\n"
+"par_id2082583\n"
+"help.text"
+msgid "Drivers for ODBC are supplied and supported by the manufacturer of the database. $[officename] only supports the ODBC 3 standard."
+msgstr ""
+
+#. wCexE
+#: dabawiz02odbc.xhp
+msgctxt ""
+"dabawiz02odbc.xhp\n"
+"par_idN10552\n"
+"help.text"
+msgid "Name of the ODBC database"
+msgstr ""
+
+#. eubaF
+#: dabawiz02odbc.xhp
+msgctxt ""
+"dabawiz02odbc.xhp\n"
+"par_idN10556\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the path to the database file.</ahelp>"
+msgstr ""
+
+#. 7KKFy
+#: dabawiz02odbc.xhp
+msgctxt ""
+"dabawiz02odbc.xhp\n"
+"par_idN10559\n"
+"help.text"
+msgid "Browse"
+msgstr ""
+
+#. CSCAZ
+#: dabawiz02odbc.xhp
+msgctxt ""
+"dabawiz02odbc.xhp\n"
+"par_idN1055D\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click to open an ODBC data source selection dialog:</ahelp>"
+msgstr ""
+
+#. 48ubg
+#: dabawiz02odbc.xhp
+msgctxt ""
+"dabawiz02odbc.xhp\n"
+"par_idN10560\n"
+"help.text"
+msgid "Choose a data source"
+msgstr ""
+
+#. FhAAU
+#: dabawiz02odbc.xhp
+msgctxt ""
+"dabawiz02odbc.xhp\n"
+"par_idN10564\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select a data source to which you want to connect using ODBC. Then click <emph>OK</emph>.</ahelp>"
+msgstr ""
+
+#. WaAZB
+#: dabawiz02odbc.xhp
+msgctxt ""
+"dabawiz02odbc.xhp\n"
+"par_idN10567\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/dabawiz03auth.xhp\">Authentication</link>"
+msgstr ""
+
+#. RL7sk
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"tit\n"
+"help.text"
+msgid "Oracle Database Connection"
+msgstr ""
+
+#. 8H3zh
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"bm_id5900753\n"
+"help.text"
+msgid "<bookmark_value>Oracle databases (base)</bookmark_value>"
+msgstr ""
+
+#. W6aaT
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN105A4\n"
+"help.text"
+msgid "Oracle Database Connection"
+msgstr ""
+
+#. DbqoE
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN105A8\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies the options to access an Oracle database.</ahelp>"
+msgstr ""
+
+#. FMq7o
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN105BD\n"
+"help.text"
+msgid "Oracle database"
+msgstr ""
+
+#. 8qHyA
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN105C1\n"
+"help.text"
+msgid "You can use a JDBC driver to access an Oracle database from Solaris or Linux. To access the database from Windows, you need an ODBC driver."
+msgstr ""
+
+#. sSDYq
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN105D4\n"
+"help.text"
+msgid "On UNIX, ensure that the Oracle database client is installed with JDBC support. The JDBC driver class for the Solaris Oracle client version 8.x is located in the <Oracle client>/product/jdbc/lib/classes111.zip directory. You can also download the latest version of the driver from the Oracle web site."
+msgstr ""
+
+#. 5rxmX
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN10608\n"
+"help.text"
+msgid "Name of the Oracle database"
+msgstr ""
+
+#. DxYWQ
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN1060C\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the name of the Oracle database. Ask your database administrator for the correct name.</ahelp>"
+msgstr ""
+
+#. WKBSR
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN1060F\n"
+"help.text"
+msgid "Server URL"
+msgstr ""
+
+#. vXDGs
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN10613\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the URL for the database server. This is the name of the machine that runs the Oracle database. You can also replace hostname with the IP address of the server.</ahelp>"
+msgstr ""
+
+#. EEESV
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN10616\n"
+"help.text"
+msgid "Port number"
+msgstr ""
+
+#. PBuEW
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN1061A\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the port number for the database server. Ask your database administrator for the correct port address.</ahelp>"
+msgstr ""
+
+#. rYRxW
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN1061D\n"
+"help.text"
+msgid "Oracle JDBC Driver Class"
+msgstr ""
+
+#. ouDxa
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN10621\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the name of the JDBC driver.</ahelp>"
+msgstr ""
+
+#. JumUz
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN10630\n"
+"help.text"
+msgid "Test Class"
+msgstr ""
+
+#. NdF7k
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN10634\n"
+"help.text"
+msgid "<ahelp hid=\".\">Tests the connection with the current settings.</ahelp>"
+msgstr ""
+
+#. UwteE
+#: dabawiz02oracle.xhp
+msgctxt ""
+"dabawiz02oracle.xhp\n"
+"par_idN10637\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/dabawiz03auth.xhp\">Authentication</link>"
+msgstr ""
+
+#. XoiBM
+#: dabawiz02spreadsheet.xhp
+msgctxt ""
+"dabawiz02spreadsheet.xhp\n"
+"tit\n"
+"help.text"
+msgid "Spreadsheet Database Connection"
+msgstr ""
+
+#. cwGbM
+#: dabawiz02spreadsheet.xhp
+msgctxt ""
+"dabawiz02spreadsheet.xhp\n"
+"par_idN1053A\n"
+"help.text"
+msgid "Set up Spreadsheet connection"
+msgstr ""
+
+#. fZnvG
+#: dabawiz02spreadsheet.xhp
+msgctxt ""
+"dabawiz02spreadsheet.xhp\n"
+"par_idN1053E\n"
+"help.text"
+msgid "Location and file name"
+msgstr ""
+
+#. 6TKT4
+#: dabawiz02spreadsheet.xhp
+msgctxt ""
+"dabawiz02spreadsheet.xhp\n"
+"par_idN10542\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the path and file name to the spreadsheet file.</ahelp>"
+msgstr ""
+
+#. XtNjY
+#: dabawiz02spreadsheet.xhp
+msgctxt ""
+"dabawiz02spreadsheet.xhp\n"
+"par_idN10545\n"
+"help.text"
+msgid "Browse"
+msgstr ""
+
+#. JfUMC
+#: dabawiz02spreadsheet.xhp
+msgctxt ""
+"dabawiz02spreadsheet.xhp\n"
+"par_idN10549\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click to open a file selection dialog.</ahelp>"
+msgstr ""
+
+#. JAmAi
+#: dabawiz02spreadsheet.xhp
+msgctxt ""
+"dabawiz02spreadsheet.xhp\n"
+"par_idN1054C\n"
+"help.text"
+msgid "Password required"
+msgstr ""
+
+#. 3HzmH
+#: dabawiz02spreadsheet.xhp
+msgctxt ""
+"dabawiz02spreadsheet.xhp\n"
+"par_idN10550\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select to request a password from the user of the database document.</ahelp>"
+msgstr ""
+
+#. xngE4
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"tit\n"
+"help.text"
+msgid "Text File Connection"
+msgstr ""
+
+#. dfWU7
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"bm_id2517166\n"
+"help.text"
+msgid "<bookmark_value>tables in databases;importing text formats (Base)</bookmark_value><bookmark_value>text databases (Base)</bookmark_value>"
+msgstr ""
+
+#. htUUB
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN1054F\n"
+"help.text"
+msgid "Set up a connection to text files"
+msgstr ""
+
+#. MD2eT
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN10553\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies the settings for importing a database in text format.</ahelp>"
+msgstr ""
+
+#. 6yKNw
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN10568\n"
+"help.text"
+msgid "In a text format database, data is stored in an unformatted ASCII file, where each record comprises a row. The data fields are divided by separators. Text in the data fields is divided by quotation marks."
+msgstr ""
+
+#. puYrF
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN1056B\n"
+"help.text"
+msgid "Path to text files"
+msgstr ""
+
+#. LkFcD
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN1056F\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the path to the text file or files. If you just want one text file, you can use any extension of the file name. If you enter a folder name, the text files in that folder must have the extension *.csv to be recognized as files of the text database.</ahelp>"
+msgstr ""
+
+#. DwHAY
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN10572\n"
+"help.text"
+msgid "Browse"
+msgstr ""
+
+#. tU8mG
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN10576\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click to open a file selection dialog.</ahelp>"
+msgstr ""
+
+#. MmGr4
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN10616\n"
+"help.text"
+msgid "Plain text files (*.txt)"
+msgstr ""
+
+#. ztjWn
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN1061A\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click to access txt files.</ahelp>"
+msgstr ""
+
+#. E5S76
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN10643\n"
+"help.text"
+msgid "'Comma separated value' files (*.csv)"
+msgstr ""
+
+#. 2fDr2
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN10647\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click to access csv files.</ahelp>"
+msgstr ""
+
+#. EVBCK
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN10666\n"
+"help.text"
+msgid "Custom"
+msgstr ""
+
+#. 3Z5fx
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN1066A\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click to access custom files. Enter the extension in the text box.</ahelp>"
+msgstr ""
+
+#. rts2F
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN10581\n"
+"help.text"
+msgid "Field separator"
+msgstr ""
+
+#. 3G6QU
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN10585\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter or select the character that separates data fields in the text file.</ahelp>"
+msgstr ""
+
+#. 8rxWL
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN1059C\n"
+"help.text"
+msgid "Text separator"
+msgstr ""
+
+#. ejFpV
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN105A0\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter or select the character that identifies a text field in the text file.</ahelp> You cannot use the same character as the field separator."
+msgstr ""
+
+#. rSTcV
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN105B8\n"
+"help.text"
+msgid "Decimal separator"
+msgstr ""
+
+#. apBAu
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN105BC\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter or select the character that is used as a decimal separator in the text file, for example, a period (0.5) or a comma (0,5).</ahelp>"
+msgstr ""
+
+#. CyhGN
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN105D3\n"
+"help.text"
+msgid "Thousands separator"
+msgstr ""
+
+#. 6TTiq
+#: dabawiz02text.xhp
+msgctxt ""
+"dabawiz02text.xhp\n"
+"par_idN105D7\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter or select the character that is used as a thousands separator in the text file, for example a comma (1,000), or a period (1.000).</ahelp>"
msgstr ""
#. YSNPt
@@ -7915,7 +9382,7 @@ msgctxt ""
"par_idN10541\n"
"help.text"
msgid "User name"
-msgstr ""
+msgstr "Nome d'usuariu"
#. q5JV4
#: dabawiz03auth.xhp
@@ -7951,7 +9418,7 @@ msgctxt ""
"par_idN10549\n"
"help.text"
msgid "Test Connection"
-msgstr ""
+msgstr "Probar conexón"
#. jkqUK
#: dabawiz03auth.xhp
@@ -7962,13 +9429,13 @@ msgctxt ""
msgid "<ahelp hid=\".\">Check if the configured connection can be used to access the database.</ahelp>"
msgstr ""
-#. 9d4Bh
+#. dF4Mp
#: dabawiz03auth.xhp
msgctxt ""
"dabawiz03auth.xhp\n"
"par_idN1054F\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02.xhp\">Save and proceed</link>"
+msgid "<link href=\"text/sdatabase/dabawiz02.xhp\">Save and proceed</link>"
msgstr ""
#. cLmBi
diff --git a/source/ast/helpcontent2/source/text/sdraw.po b/source/ast/helpcontent2/source/text/sdraw.po
index 83799796fbd..c615bc66001 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: 2021-09-20 13:03+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
"PO-Revision-Date: 2021-09-30 02:36+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"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1507111981.000000\n"
#. dHbww
@@ -1168,15 +1168,6 @@ msgctxt ""
msgid "<link href=\"text/sdraw/01/page_properties.xhp\" name=\"Properties\">Properties</link>"
msgstr ""
-#. ESkBn
-#: main_page.xhp
-msgctxt ""
-"main_page.xhp\n"
-"hd_id371566154570590\n"
-"help.text"
-msgid "Master Page"
-msgstr ""
-
#. 2pA94
#: main_page.xhp
msgctxt ""
diff --git a/source/ast/helpcontent2/source/text/sdraw/00.po b/source/ast/helpcontent2/source/text/sdraw/00.po
index d8e3426d02a..ea56ad6135c 100644
--- a/source/ast/helpcontent2/source/text/sdraw/00.po
+++ b/source/ast/helpcontent2/source/text/sdraw/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-03 12:42+0100\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
"PO-Revision-Date: 2017-05-09 16:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
@@ -79,6 +79,15 @@ msgctxt ""
msgid "<variable id=\"seitenvorlage\">Choose <menuitem>Page - Master Page</menuitem> </variable>"
msgstr ""
+#. DjtXM
+#: page_menu.xhp
+msgctxt ""
+"page_menu.xhp\n"
+"par_id911634055593609\n"
+"help.text"
+msgid "<variable id=\"loadpagedesign\">Choose <menuitem>Page - Master Page - Load</menuitem></variable>"
+msgstr ""
+
#. paRMk
#: page_menu.xhp
msgctxt ""
@@ -97,13 +106,13 @@ msgctxt ""
msgid "On the <emph>Insert</emph> bar, click"
msgstr ""
-#. Ldrnc
+#. kCGEr
#: page_menu.xhp
msgctxt ""
"page_menu.xhp\n"
"par_id351556823072396\n"
"help.text"
-msgid "<image id=\"img_id381556823072396\" src=\"cmd/sc_insertpage.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id381556823072396\">Icon</alt></image>"
+msgid "<image id=\"img_id381556823072396\" src=\"cmd/sc_insertpage.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id381556823072396\">Icon New Page</alt></image>"
msgstr ""
#. xbkHm
diff --git a/source/ast/helpcontent2/source/text/sdraw/01.po b/source/ast/helpcontent2/source/text/sdraw/01.po
index 7803190f874..f129c5319e6 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: 2021-06-24 12:51+0200\n"
+"POT-Creation-Date: 2021-10-25 12:48+0200\n"
"PO-Revision-Date: 2020-11-06 12:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw01/ast/>\n"
@@ -601,13 +601,13 @@ msgctxt ""
msgid "The previous text box objects are deleted after consolidation."
msgstr ""
-#. 6AkKv
+#. bGEES
#: consolidatetext.xhp
msgctxt ""
"consolidatetext.xhp\n"
"par_id531623515498932\n"
"help.text"
-msgid "Consolidation of lists requires attention to restore the list layout that has been affected by the position of the punctuation. This includes the case of numbering of style \"1.\", where he resulting list items are split after the dot."
+msgid "Consolidation of lists requires attention to restore the list layout that has been affected by the position of the punctuation. This includes the case of numbering of style \"1.\", where the resulting list items are split after the dot."
msgstr ""
#. VwP6B
diff --git a/source/ast/helpcontent2/source/text/sdraw/guide.po b/source/ast/helpcontent2/source/text/sdraw/guide.po
index 776d9dc625f..dcd85f94726 100644
--- a/source/ast/helpcontent2/source/text/sdraw/guide.po
+++ b/source/ast/helpcontent2/source/text/sdraw/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-09-10 23:11+0200\n"
-"PO-Revision-Date: 2021-04-14 19:37+0000\n"
+"PO-Revision-Date: 2021-10-24 01:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsdrawguide/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.8.1\n"
"X-POOTLE-MTIME: 1523977270.000000\n"
#. cZbDh
@@ -23,7 +23,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Arranging, Aligning and Distributing Objects"
-msgstr "Entamar, alliniar y distribuyir oxetos"
+msgstr "Allugar, alliniar y distribuyir oxetos"
#. cXApJ
#: align_arrange.xhp
@@ -32,7 +32,7 @@ msgctxt ""
"hd_id3149656\n"
"help.text"
msgid "<variable id=\"align_arrange\"><link href=\"text/sdraw/guide/align_arrange.xhp\" name=\"Arranging and Aligning Objects\">Arranging, Aligning and Distributing Objects</link></variable>"
-msgstr "<variable id=\"align_arrange\"><link href=\"text/sdraw/guide/align_arrange.xhp\" name=\"Arranging and Aligning Objects\">Entamar, Alliniar y Distribuyir Oxetos</link></variable>"
+msgstr "<variable id=\"align_arrange\"><link href=\"text/sdraw/guide/align_arrange.xhp\" name=\"Arranging and Aligning Objects\">Allugar, alliniar y distribuyir oxetos</link></variable>"
#. cXAFa
#: align_arrange.xhp
@@ -50,7 +50,7 @@ msgctxt ""
"hd_id3125863\n"
"help.text"
msgid "Arranging Objects"
-msgstr "Entamar oxetos"
+msgstr "Allugar oxetos"
#. RawJc
#: align_arrange.xhp
@@ -131,7 +131,7 @@ msgctxt ""
"hd_id3155766\n"
"help.text"
msgid "Arranging an Object Behind Another Object"
-msgstr "Asitiar un Oxetu Detrás d'otru"
+msgstr "Asitiar un oxetu detrás d'otru"
#. CvgeS
#: align_arrange.xhp
@@ -194,7 +194,7 @@ msgctxt ""
"hd_id3166425\n"
"help.text"
msgid "Aligning Objects"
-msgstr "Alliniar Oxetos"
+msgstr "Alliniar oxetos"
#. fuvKT
#: align_arrange.xhp
@@ -230,7 +230,7 @@ msgctxt ""
"par_idN108AE\n"
"help.text"
msgid "Distributing Objects"
-msgstr "Distribuyir Oxetos"
+msgstr "Distribuyir oxetos"
#. DWjg2
#: align_arrange.xhp
diff --git a/source/ast/helpcontent2/source/text/shared/00.po b/source/ast/helpcontent2/source/text/shared/00.po
index adc55e177bb..07dcf370025 100644
--- a/source/ast/helpcontent2/source/text/shared/00.po
+++ b/source/ast/helpcontent2/source/text/shared/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-20 13:03+0200\n"
-"PO-Revision-Date: 2021-09-12 07:36+0000\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
+"PO-Revision-Date: 2021-10-24 01:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textshared00/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.8.1\n"
"X-POOTLE-MTIME: 1542196267.000000\n"
#. 3B8ZN
@@ -6118,6 +6118,24 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/charset\">Specifies the character set of the file for export or import.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/charset\">Especifica'l tipu de lletra del ficheru que se va a importar o esportar.</ahelp>"
+#. G7B9v
+#: 00000215.xhp
+msgctxt ""
+"00000215.xhp\n"
+"hd_id911633520416200\n"
+"help.text"
+msgid "Include byte-order mark"
+msgstr ""
+
+#. 5G2v5
+#: 00000215.xhp
+msgctxt ""
+"00000215.xhp\n"
+"par_id211633520423767\n"
+"help.text"
+msgid "For Unicode character set only, a byte order mark (BOM) is a sequence of bytes used to indicate Unicode encoding of a text file. The presence of the UTF-8 BOM is optional and may cause problems with some software, especially legacy software not designed to handle UTF-8."
+msgstr ""
+
#. PSvbB
#: 00000215.xhp
msgctxt ""
@@ -6125,7 +6143,7 @@ msgctxt ""
"hd_id3154926\n"
"help.text"
msgid "Default fonts"
-msgstr "Fonte predeterminada"
+msgstr "Fontes predeterminaes"
#. MTpGD
#: 00000215.xhp
@@ -11588,7 +11606,7 @@ msgctxt ""
"par_id3152496\n"
"help.text"
msgid "Arrange"
-msgstr "Posición"
+msgstr "Allugar"
#. qziC8
#: 00040501.xhp
diff --git a/source/ast/helpcontent2/source/text/shared/01.po b/source/ast/helpcontent2/source/text/shared/01.po
index c56c91cb149..f3f1252eec8 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: 2021-10-04 19:51+0200\n"
-"PO-Revision-Date: 2021-10-03 18:36+0000\n"
+"POT-Creation-Date: 2021-10-25 12:48+0200\n"
+"PO-Revision-Date: 2021-10-25 02:36+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"
@@ -14929,6 +14929,204 @@ msgctxt ""
msgid "<variable id=\"quellaus\"><ahelp hid=\".uno:TwainSelect\" visibility=\"visible\">Selects the scanner that you want to use.</ahelp></variable>"
msgstr ""
+#. AJ5Lv
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"par_id661633376449596\n"
+"help.text"
+msgid "The dialog displays settings for the selected scanner and the scan job."
+msgstr ""
+
+#. t6BMj
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"hd_id721633369239013\n"
+"help.text"
+msgid "Sources"
+msgstr ""
+
+#. GvcAB
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"par_id361633369288384\n"
+"help.text"
+msgid "Displays a list of available scanners detected in your system. Click on a scanner in the list and press <emph>Select</emph> to open the scanner configuration dialog. The configuration dialog depends on the scanner driver installed."
+msgstr ""
+
+#. Caooc
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"hd_id511633368095174\n"
+"help.text"
+msgid "Scan Area"
+msgstr ""
+
+#. vYcZn
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"hd_id991633368100151\n"
+"help.text"
+msgid "Left, right, top, bottom"
+msgstr ""
+
+#. mncAH
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"par_id561633368111347\n"
+"help.text"
+msgid "Set the margins of the scan area."
+msgstr ""
+
+#. wmUp5
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"hd_id81633368116162\n"
+"help.text"
+msgid "Preview"
+msgstr ""
+
+#. GFTiz
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"par_id811633368127119\n"
+"help.text"
+msgid "Displays a preview of the scanned image. The preview area contains eight handles. Drag the handles to adjust the scan area or enter a value in the corresponding margin spin box."
+msgstr ""
+
+#. SQG8n
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"hd_id181633369359784\n"
+"help.text"
+msgid "Device used"
+msgstr ""
+
+#. vtMfF
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"par_id311633371297646\n"
+"help.text"
+msgid "Select the scanner device in the list of devices detected by your system."
+msgstr ""
+
+#. PAHaK
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"hd_id161633369549370\n"
+"help.text"
+msgid "Resolution [DPI]"
+msgstr ""
+
+#. jTyuD
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"par_id401633369701424\n"
+"help.text"
+msgid "Select the resolution in dots per inch for the scan job. The available resolutions depends on the scanner driver."
+msgstr ""
+
+#. F5SoB
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"hd_id351633369697474\n"
+"help.text"
+msgid "Show advanced options"
+msgstr ""
+
+#. Hj5EW
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"par_id771633369733491\n"
+"help.text"
+msgid "Mark this checkbox to display more configuration options for the scanner device. The set of options is displayed in the <emph>Options</emph> box and depends on the scanner driver."
+msgstr ""
+
+#. 6qqQP
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"hd_id461633370147200\n"
+"help.text"
+msgid "Options"
+msgstr "Opciones"
+
+#. JtCux
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"par_id761633371067498\n"
+"help.text"
+msgid "Displays the list of available scanner driver advanced options. Double click an option to display its contents just below. The option and its values depends on the scanner driver."
+msgstr ""
+
+#. DFbzA
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"hd_id461633371554790\n"
+"help.text"
+msgid "About Device"
+msgstr ""
+
+#. 2DSpo
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"par_id821633371816925\n"
+"help.text"
+msgid "Displays a popup window with information obtained from the scanner driver: device address, vendor, scanner model and type of scanner."
+msgstr ""
+
+#. HCSD9
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"hd_id971633371559920\n"
+"help.text"
+msgid "Create preview"
+msgstr ""
+
+#. T4Tgs
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"par_id431633375721518\n"
+"help.text"
+msgid "Scans and displays the document in the preview area. Use the <emph>Create Preview</emph> command to view a sample of the scanned document and set the scan job properties."
+msgstr ""
+
+#. YL3KE
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"hd_id151633371565195\n"
+"help.text"
+msgid "Scan"
+msgstr ""
+
+#. zWLcX
+#: 04060100.xhp
+msgctxt ""
+"04060100.xhp\n"
+"par_id851633375846639\n"
+"help.text"
+msgid "Scans an image, and then inserts the result into the document and closes the dialog."
+msgstr ""
+
#. qDEzX
#: 04060200.xhp
msgctxt ""
@@ -21416,7 +21614,7 @@ msgctxt ""
"par_id3147275\n"
"help.text"
msgid "Apply spacing between Asian and non-Asian text"
-msgstr ""
+msgstr "Aplicar espaciáu ente'l testu asiáticu y el non asiáticu"
#. yEFMG
#: 05020700.xhp
@@ -21425,7 +21623,7 @@ msgctxt ""
"par_id3148539\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/asiantypography/checkApplySpacing\">Inserts a space between ideographic and alphabetic text.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/asiantypography/checkApplySpacing\">Inxerta un espaciu ente'l testu ideográficu y l'alfabéticu.</ahelp>"
#. HGAr6
#: 05020700.xhp
@@ -22327,13 +22525,13 @@ msgctxt ""
msgid "The <emph>Remove border</emph> option in the <emph>Adjacent Cells</emph> section determines if borders in the edges of the selected range are to be removed. Leave this option unchecked if edge borders should be left unchanged."
msgstr ""
-#. VPwsL
+#. PjDF8
#: 05030500.xhp
msgctxt ""
"05030500.xhp\n"
"par_id181630450040456\n"
"help.text"
-msgid "Read the help page <embedvar href=\"text/scalc/guide/borders.xhp#borders\"/> to learn more on how to define custom line arrangements."
+msgid "Read the help page <link href=\"text/scalc/guide/borders.xhp\">User Defined Borders in Cells</link> to learn more on how to define custom line arrangements."
msgstr ""
#. 2SFo2
@@ -24910,13 +25108,31 @@ msgctxt ""
msgid "<ahelp hid=\".\">Horizontally centers the selected objects. If only one object is selected in Draw or Impress, the center of the object is aligned to the horizontal center of the page.</ahelp>"
msgstr ""
-#. cdt69
+#. KZbGT
#: 05070200.xhp
msgctxt ""
"05070200.xhp\n"
"par_id3144336\n"
"help.text"
-msgid "The vertical position of the selected objects is not affected by this command.<embedvar href=\"text/shared/01/05070100.xhp#mehrfachselektion\"/>"
+msgid "The vertical position of the selected objects is not affected by this command."
+msgstr ""
+
+#. yXXeh
+#: 05070200.xhp
+msgctxt ""
+"05070200.xhp\n"
+"par_id891634662083611\n"
+"help.text"
+msgid "To align the individual objects in a group, choose <menuitem>Format - Group - Enter Group</menuitem> to enter the group, select the objects, right-click, and then choose an alignment option."
+msgstr ""
+
+#. FyxcB
+#: 05070200.xhp
+msgctxt ""
+"05070200.xhp\n"
+"par_id81634662074262\n"
+"help.text"
+msgid "To align the individual objects in a group, double-click to enter the group, select the objects, right-click, and then choose an alignment option."
msgstr ""
#. xtqWj
@@ -25306,13 +25522,13 @@ msgctxt ""
msgid "<variable id=\"verbindentext\"><ahelp hid=\".\">Combines the contents of the selected cells into a single cell, retaining the formatting of the first cell in the selection.</ahelp></variable>"
msgstr ""
-#. ip2CD
+#. Cb2xp
#: 05100100.xhp
msgctxt ""
"05100100.xhp\n"
"par_id461632808376973\n"
"help.text"
-msgid "Click and drag to select the cells to be merged then do one of the following:"
+msgid "Select the cells to be merged then do one of the following:"
msgstr ""
#. bJGUQ
@@ -25324,13 +25540,13 @@ msgctxt ""
msgid "In the <emph>Formatting</emph> toolbar, click:"
msgstr ""
-#. R8GWz
+#. kBxWW
#: 05100100.xhp
msgctxt ""
"05100100.xhp\n"
"par_id3154351\n"
"help.text"
-msgid "Or, right click the selection to open the context menu and choose <menuitem>Merge Cells</menuitem>.<br/>If <menuitem>Unmerge Cells</menuitem> is present instead then the cell selection contains merged cells and cannot be merged further."
+msgid "Or, right click the selection to open the context menu and choose <menuitem>Merge Cells</menuitem>. If <menuitem>Unmerge Cells</menuitem> is present instead then the cell selection contains merged cells and cannot be merged further."
msgstr ""
#. Fz6u9
@@ -25342,13 +25558,13 @@ msgctxt ""
msgid "Or, in the <emph>Properties</emph> sidebar mark the <emph>Merge Cells</emph> checkbox."
msgstr ""
-#. fsBRE
+#. CmQFq
#: 05100100.xhp
msgctxt ""
"05100100.xhp\n"
"par_id3154020\n"
"help.text"
-msgid "Or, choose <embedvar href=\"text/scalc/01/05060000.xhp#format_mergecells_menu\"/><menuitem>Merge Cells</menuitem>."
+msgid "Or, choose <menuitem>Format - Merge and Unmerge Cells - Merge Cells</menuitem>."
msgstr ""
#. tHAGa
@@ -25378,13 +25594,13 @@ msgctxt ""
msgid "Split Cells"
msgstr ""
-#. njuVE
+#. i8VUj
#: 05100200.xhp
msgctxt ""
"05100200.xhp\n"
"bm_id501632012952361\n"
"help.text"
-msgid "<bookmark_value>unmerge/unmerging cells</bookmark_value> <bookmark_value>split/splitting cells</bookmark_value>"
+msgid "<bookmark_value>unmerge/unmerging cells</bookmark_value><bookmark_value>split/splitting cells</bookmark_value>"
msgstr ""
#. zDkKt
@@ -25396,13 +25612,13 @@ msgctxt ""
msgid "<variable id=\"unmergecells\"><link href=\"text/shared/01/05100200.xhp\" name=\"Unmerging Cells\">Unmerge Cells</link></variable>"
msgstr ""
-#. 3oTxu
+#. vXyfX
#: 05100200.xhp
msgctxt ""
"05100200.xhp\n"
"par_id871632385128307\n"
"help.text"
-msgid "<ahelp hid=\".\">Divides previously merged cells back to the original cells. If the original cells had content that was kept when merged that content is restored.</ahelp>"
+msgid "<ahelp hid=\".\">Divides previously merged cells back to the original cells. If the original cells had content that was kept when merged that content is restored.</ahelp>"
msgstr ""
#. qBugU
@@ -25423,13 +25639,13 @@ msgctxt ""
msgid "In the <emph>Formatting</emph> toolbar click:"
msgstr ""
-#. VvKDu
+#. SMhxF
#: 05100200.xhp
msgctxt ""
"05100200.xhp\n"
"par_id161632275254217\n"
"help.text"
-msgid "Or, right click the selection to open the context menu and choose <menuitem>Unmerge Cells</menuitem>.<br/>If <menuitem>Merge Cells</menuitem> is present instead then the cell selection does not contain any merged cells."
+msgid "Or, right click the selection to open the context menu and choose <menuitem>Unmerge Cells</menuitem>. If <menuitem>Merge Cells</menuitem> is present instead then the cell selection does not contain any merged cells."
msgstr ""
#. WLbsk
@@ -25441,13 +25657,13 @@ msgctxt ""
msgid "Or, in the <emph>Properties</emph> sidebar clear the <emph>Merge Cells</emph> checkbox."
msgstr ""
-#. BNuGm
+#. nnwCo
#: 05100200.xhp
msgctxt ""
"05100200.xhp\n"
"par_id381632805680565\n"
"help.text"
-msgid "Or, choose <embedvar href=\"text/scalc/01/05060000.xhp#format_mergecells_menu\"/><menuitem>Unmerge Cells</menuitem>"
+msgid "Or, choose <menuitem>Format - Merge and Unmerge Cells - Unmerge Cells</menuitem>"
msgstr ""
#. Tvbae
@@ -25468,22 +25684,22 @@ msgctxt ""
msgid "<variable id=\"teilentext\"><ahelp hid=\".\">Displays the Split Cells Dialog where the split can be defined as either horizontally or vertically and the number the each cell will be split into.</ahelp></variable>"
msgstr ""
-#. yAYPv
+#. aAHnr
#: 05100200.xhp
msgctxt ""
"05100200.xhp\n"
"par_id321632807186976\n"
"help.text"
-msgid "Do one of the following:<br/>"
+msgid "Do one of the following:"
msgstr ""
-#. KBJNC
+#. yzi5c
#: 05100200.xhp
msgctxt ""
"05100200.xhp\n"
"par_id3154024\n"
"help.text"
-msgid "Choose <emph>Table - Split Cells</emph>.<br/>"
+msgid "Choose <emph>Table - Split Cells</emph>."
msgstr ""
#. pNAsT
@@ -29401,13 +29617,13 @@ msgctxt ""
msgid "Position and Size (Text Box and Shape)"
msgstr ""
-#. rrFri
+#. tnQ2D
#: 05230100.xhp
msgctxt ""
"05230100.xhp\n"
"bm_id3154350\n"
"help.text"
-msgid "<bookmark_value>positioning;draw objects and controls</bookmark_value><bookmark_value>draw objects;positioning and resizing</bookmark_value><bookmark_value>controls; positions and sizes</bookmark_value><bookmark_value>sizes;draw objects</bookmark_value><bookmark_value>anchors;types/positions for draw objects</bookmark_value><bookmark_value>draw objects; anchoring</bookmark_value>"
+msgid "<bookmark_value>positioning;draw objects and controls</bookmark_value> <bookmark_value>draw objects;positioning and resizing</bookmark_value> <bookmark_value>controls; positions and sizes</bookmark_value> <bookmark_value>sizes;draw objects</bookmark_value> <bookmark_value>anchors;types/positions for draw objects</bookmark_value> <bookmark_value>draw objects; anchoring</bookmark_value>"
msgstr ""
#. p36co
@@ -29779,13 +29995,13 @@ msgctxt ""
msgid "<variable id=\"AdaptNote\">Adapt is only available for Text Boxes. To adapt Shapes to text, use</variable> <menuitem>Format - Object - Text</menuitem>."
msgstr ""
-#. fqg3X
+#. EARC7
#: 05230100.xhp
msgctxt ""
"05230100.xhp\n"
"par_id591602522244128\n"
"help.text"
-msgid "<embedvar href=\"text/shared/01/05230100.xhp#AdaptNote\"/> <menuitem>Format - Text</menuitem>."
+msgid "Adapt is only available for Text Boxes. To adapt Shapes to text, use <menuitem>Format - Text</menuitem>."
msgstr ""
#. F5Va7
@@ -30362,7 +30578,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Arrange"
-msgstr ""
+msgstr "Allugar"
#. BPtqw
#: 05250000.xhp
@@ -36934,13 +37150,13 @@ msgctxt ""
msgid "To apply an AutoCorrect rule, enter the predefined text in the document and press the <widget>Spacebar</widget>."
msgstr "P'aplicar una regla de correición automática, escribi'l testu predefiníu nel documentu y calca la <widget>barra espaciadora</widget>."
-#. 3vHeN
+#. rBtji
#: 06040000.xhp
msgctxt ""
"06040000.xhp\n"
"par_id791632159942582\n"
"help.text"
-msgid "To turn off AutoCorrect in %PRODUCTNAME Writer choose <menuitem>Tools - AutoCorrect - While Typing</menuitem>. Refer to the help page <embedvar href=\"text/swriter/guide/auto_off.xhp#auto_off\"/> to learn more about deactivating AutoCorrect in %PRODUCTNAME Writer."
+msgid "To turn off AutoCorrect in %PRODUCTNAME Writer choose <menuitem>Tools - AutoCorrect - While Typing</menuitem>. Refer to the help page <link href=\"text/swriter/guide/auto_off.xhp\" name=\"auto_off_link1\">Turning Off AutoCorrect</link> to learn more about deactivating AutoCorrect in %PRODUCTNAME Writer."
msgstr ""
#. rqivx
@@ -36952,13 +37168,13 @@ msgctxt ""
msgid "To apply AutoCorrect to an entire text document, choose <menuitem>Tools - AutoCorrect - Apply</menuitem>."
msgstr ""
-#. cqbQV
+#. 9cDF3
#: 06040000.xhp
msgctxt ""
"06040000.xhp\n"
"par_id911632159367467\n"
"help.text"
-msgid "To turn off AutoCorrect in %PRODUCTNAME Calc, go to <menuitem>Tools - AutoCorrect Options</menuitem> and uncheck all items in the <emph>Options</emph> and <emph>Localized Options</emph> tabs. Refer to the help page <embedvar href=\"text/scalc/guide/auto_off.xhp#auto_off\"/> to learn more about deactivating AutoCorrect in %PRODUCTNAME Calc."
+msgid "To turn off AutoCorrect in %PRODUCTNAME Calc, go to <menuitem>Tools - AutoCorrect Options</menuitem> and uncheck all items in the <emph>Options</emph> and <emph>Localized Options</emph> tabs. Refer to the help page <link href=\"text/swriter/guide/auto_off.xhp\" name=\"auto_off_link2\">Turning Off AutoCorrect</link> to learn more about deactivating AutoCorrect in %PRODUCTNAME Calc."
msgstr ""
#. EmB5a
diff --git a/source/ast/helpcontent2/source/text/shared/explorer/database.po b/source/ast/helpcontent2/source/text/shared/explorer/database.po
index 2ee17c6e631..97fa3c69c2a 100644
--- a/source/ast/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/ast/helpcontent2/source/text/shared/explorer/database.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-04 19:51+0200\n"
-"PO-Revision-Date: 2021-10-01 06:36+0000\n"
+"POT-Creation-Date: 2021-10-25 12:49+0200\n"
+"PO-Revision-Date: 2021-10-05 19:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsharedexplorerdatabase/ast/>\n"
"Language: ast\n"
@@ -16,1473 +16,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542028595.000000\n"
-#. SJaiE
-#: dabawiz02.xhp
-msgctxt ""
-"dabawiz02.xhp\n"
-"tit\n"
-"help.text"
-msgid "Save and proceed"
-msgstr "Guardar y siguir"
-
-#. azKWk
-#: dabawiz02.xhp
-msgctxt ""
-"dabawiz02.xhp\n"
-"par_idN10544\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02.xhp\">Save and proceed</link>"
-msgstr "<link href=\"text/shared/explorer/database/dabawiz02.xhp\">Guardar y siguir</link>"
-
-#. CECqo
-#: dabawiz02.xhp
-msgctxt ""
-"dabawiz02.xhp\n"
-"par_idN10554\n"
-"help.text"
-msgid "<ahelp hid=\".\">Specifies whether you want to register the database, open the database for editing, or insert a new table.</ahelp>"
-msgstr "<ahelp hid=\".\">Especifica si deseya rexistrar la base de datos, abrir pa editala o inxertar una tabla nueva.</ahelp>"
-
-#. v3hCS
-#: dabawiz02.xhp
-msgctxt ""
-"dabawiz02.xhp\n"
-"par_idN10557\n"
-"help.text"
-msgid "Yes, register the Database for me"
-msgstr "Sí, rexistrar la base de datos"
-
-#. 6iEY2
-#: dabawiz02.xhp
-msgctxt ""
-"dabawiz02.xhp\n"
-"par_idN105B4\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select to register the database within your user copy of %PRODUCTNAME. After registering, the database is displayed in the <emph>View - Data Sources</emph> window. You must register a database to be able to insert the database fields in a document (Insert - Field - More Fields) or in a mail merge.</ahelp>"
-msgstr "<ahelp hid=\".\">Escoyer pa rexistrar la base de datos dientro de la so copia de %PRODUCTNAME. Dempués de rexistrar, la base de datos esta amosáu na ventana de <emph>Vista - Fontes de Datos</emph>. Tien que rexistrar una base de datos pa poder inxertar los campos de la base de datos nun documentu (Inxertar - Campos - Otru) o nuna combinación de correspondencia.</ahelp>"
-
-#. BDPbo
-#: dabawiz02.xhp
-msgctxt ""
-"dabawiz02.xhp\n"
-"par_idN105B7\n"
-"help.text"
-msgid "No, do not register the database"
-msgstr "Non, nun rexistrar la base de datos"
-
-#. PHFCG
-#: dabawiz02.xhp
-msgctxt ""
-"dabawiz02.xhp\n"
-"par_idN105BB\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select to keep the database information only within the created database file.</ahelp>"
-msgstr "<ahelp hid=\".\">Escueya pa caltener la información de base de datos namái dientro del ficheru de base de datos creáu.</ahelp>"
-
-#. xJFV8
-#: dabawiz02.xhp
-msgctxt ""
-"dabawiz02.xhp\n"
-"par_idN1055B\n"
-"help.text"
-msgid "Open the database for editing"
-msgstr "Abrir la base de datos pa editar"
-
-#. 2oDVV
-#: dabawiz02.xhp
-msgctxt ""
-"dabawiz02.xhp\n"
-"par_idN105C6\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select to display the database file, where you can edit the database structure.</ahelp>"
-msgstr "<ahelp hid=\".\">Escueya p'amosar el ficheru de base de datos, que dexa editar la estructura de la base de datos.</ahelp>"
-
-#. uUaJe
-#: dabawiz02.xhp
-msgctxt ""
-"dabawiz02.xhp\n"
-"par_idN1055F\n"
-"help.text"
-msgid "Create tables using the table wizard"
-msgstr "Crear tables usando l'Asistente pa tables"
-
-#. F4TTD
-#: dabawiz02.xhp
-msgctxt ""
-"dabawiz02.xhp\n"
-"par_idN105D1\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select to call the <link href=\"text/shared/explorer/database/tablewizard00.xhp\">Table Wizard</link> after the Database Wizard is finished.</ahelp>"
-msgstr "<ahelp hid=\".\">Escueya pa llamar al <link href=\"text/shared/explorer/database/tablewizard00.xhp\">Asistente pa tables</link> una vegada rematáu l'Asistente pa bases de datos.</ahelp>"
-
-#. YnZ24
-#: dabawiz02access.xhp
-msgctxt ""
-"dabawiz02access.xhp\n"
-"tit\n"
-"help.text"
-msgid "Microsoft Access Connection"
-msgstr "Conexón de Microsoft Access"
-
-#. uUAxL
-#: dabawiz02access.xhp
-msgctxt ""
-"dabawiz02access.xhp\n"
-"bm_id2755516\n"
-"help.text"
-msgid "<bookmark_value>Access databases (base)</bookmark_value><bookmark_value>Microsoft Office;Access databases (base)</bookmark_value>"
-msgstr "<bookmark_value>Base de datos Access (base)</bookmark_value><bookmark_value>Microsoft Office;bases de datos Access (base)</bookmark_value>"
-
-#. unEfj
-#: dabawiz02access.xhp
-msgctxt ""
-"dabawiz02access.xhp\n"
-"par_idN1053D\n"
-"help.text"
-msgid "<variable id=\"access\"><link href=\"text/shared/explorer/database/dabawiz02access.xhp\">Microsoft Access Connection</link></variable>"
-msgstr "<variable id=\"access\"><link href=\"text/shared/explorer/database/dabawiz02access.xhp\">Conexón de Microsoft Access</link></variable>"
-
-#. eMbAE
-#: dabawiz02access.xhp
-msgctxt ""
-"dabawiz02access.xhp\n"
-"par_idN10541\n"
-"help.text"
-msgid "<ahelp hid=\".\">Specifies the settings for importing a database file in Microsoft Access or Access 2007 format.</ahelp>"
-msgstr "<ahelp hid=\".\">Especifica la configuración pa importar un ficheru de base de datos con formatu de Microsoft Access o Microsoft Access 2007.</ahelp>"
-
-#. FJFQi
-#: dabawiz02access.xhp
-msgctxt ""
-"dabawiz02access.xhp\n"
-"par_id1142772\n"
-"help.text"
-msgid "See also the English Wiki page <link href=\"https://wiki.documentfoundation.org/MSA-Base_Faq\" name=\"wiki.documentfoundation.org MS Access Base FAQ\">https://wiki.documentfoundation.org/MSA-Base_Faq</link>."
-msgstr ""
-
-#. 7vvBT
-#: dabawiz02access.xhp
-msgctxt ""
-"dabawiz02access.xhp\n"
-"par_idN10544\n"
-"help.text"
-msgid "Microsoft Access database file"
-msgstr "Ficheru de base de datos de Microsoft Access"
-
-#. 5nSHE
-#: dabawiz02access.xhp
-msgctxt ""
-"dabawiz02access.xhp\n"
-"par_idN10548\n"
-"help.text"
-msgid "<ahelp hid=\".\">Specifies the path to the database file.</ahelp>"
-msgstr "<ahelp hid=\".\">Especifica la ruta al ficheru de base de datos.</ahelp>"
-
-#. cKU7v
-#: dabawiz02access.xhp
-msgctxt ""
-"dabawiz02access.xhp\n"
-"par_idN1054B\n"
-"help.text"
-msgid "Browse"
-msgstr "Esaminar"
-
-#. k4EM5
-#: dabawiz02access.xhp
-msgctxt ""
-"dabawiz02access.xhp\n"
-"par_idN1054F\n"
-"help.text"
-msgid "<ahelp hid=\".\">Click to open a file selection dialog.</ahelp>"
-msgstr "<ahelp hid=\".\">Faiga clic p'abrir un diálogu de seleición de ficheros.</ahelp>"
-
-#. gjtnv
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"tit\n"
-"help.text"
-msgid "ADO Connection"
-msgstr "Conexón de ADO"
-
-#. jJtjy
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"bm_id7565233\n"
-"help.text"
-msgid "<bookmark_value>ADO databases (Base)</bookmark_value><bookmark_value>MS ADO interface (Base)</bookmark_value><bookmark_value>databases;ADO (Base)</bookmark_value>"
-msgstr "<bookmark_value>bases de datos ADO (Base)</bookmark_value><bookmark_value>interfaz MS ADO (Base)</bookmark_value><bookmark_value>bases de datos;ADO (Base)</bookmark_value>"
-
-#. yRyA5
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN1054C\n"
-"help.text"
-msgid "<variable id=\"ado\"><link href=\"text/shared/explorer/database/dabawiz02ado.xhp\">ADO Connection</link></variable>"
-msgstr "<variable id=\"ado\"><link href=\"text/shared/explorer/database/dabawiz02ado.xhp\">Conexón ADO</link></variable>"
-
-#. Gi6xc
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN10550\n"
-"help.text"
-msgid "<ahelp hid=\".\">Specifies the options for adding an ADO (Microsoft ActiveX Data Objects) database.</ahelp>"
-msgstr "<ahelp hid=\".\">Especifica les opciones p'amestar una base de datos ADO (Microsoft ActiveX Data Objects).</ahelp>"
-
-#. pGwdA
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN10565\n"
-"help.text"
-msgid "The ADO interface is a Microsoft Windows proprietary container for connecting to databases."
-msgstr "La interfaz ADO ye un contenedor propietariu de Microsoft Windows pa coneutar con bases de datos."
-
-#. mVEj7
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "$[officename] requires the Microsoft Data Access Components (MDAC) to use the ADO interface. Microsoft Windows 2000 and XP include these components by default."
-msgstr ""
-
-#. CWQxx
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN1056B\n"
-"help.text"
-msgid "Data source URL"
-msgstr "URL d'orixe de datos"
-
-#. dEHxg
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN1056F\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the data source URL.</ahelp>"
-msgstr "<ahelp hid=\".\">Especifique la URL del orixe de datos.</ahelp>"
-
-#. AS8Ye
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN10572\n"
-"help.text"
-msgid "Example URLs"
-msgstr "URL d'exemplu"
-
-#. DGA9a
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN10576\n"
-"help.text"
-msgid "To connect to an Access 2000 file, use the format:"
-msgstr "Pa coneutar con un ficheru de Access 2000, utilice'l formatu:"
-
-#. EYrtv
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN10579\n"
-"help.text"
-msgid "PROVIDER=Microsoft.Jet.OLEDB.4.0;DATA SOURCE=c:\\Access\\nwind2000.mdb"
-msgstr "PROVIDER=Microsoft.Jet.OLEDB.4.0;DATA SOURCE=c:\\Access\\nwind2000.mdb"
-
-#. JrQva
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN1057C\n"
-"help.text"
-msgid "To connect with a name to a catalog on a Microsoft SQL server that has a name turner, enter:"
-msgstr "Pa coneutar con un nome d'un catálogu d'un sirvidor Microsoft SQL Server col nome martinez, escriba:"
-
-#. HeHcf
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN1057F\n"
-"help.text"
-msgid "PROVIDER=sqloledb;DATA SOURCE=turner;INITIAL CATALOG=First"
-msgstr "PROVIDER=sqloledb;DATA SOURCE=martinez;INITIAL CATALOG=Primeru"
-
-#. eqFwU
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN10582\n"
-"help.text"
-msgid "To access an ODBC driver as a provider:"
-msgstr "P'aportar a un controlador ODBC como provisor:"
-
-#. cibKq
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN10585\n"
-"help.text"
-msgid "DSN=SQLSERVER"
-msgstr "DSN=SQLSERVER"
-
-#. FFdf5
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN10588\n"
-"help.text"
-msgid "Browse"
-msgstr "Esaminar"
-
-#. xmZQB
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN1058C\n"
-"help.text"
-msgid "<ahelp hid=\".\">Click to open a database selection dialog.</ahelp>"
-msgstr "<ahelp hid=\".\">Faiga clic p'abrir un diálogu de seleición de base de datos.</ahelp>"
-
-#. Bi3az
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN10596\n"
-"help.text"
-msgid "A user name can have a maximum of 18 characters."
-msgstr ""
-
-#. iifVJ
-#: dabawiz02ado.xhp
-msgctxt ""
-"dabawiz02ado.xhp\n"
-"par_idN10599\n"
-"help.text"
-msgid "A password must contain 3 to 18 characters."
-msgstr ""
-
-#. mxSCU
-#: dabawiz02dbase.xhp
-msgctxt ""
-"dabawiz02dbase.xhp\n"
-"tit\n"
-"help.text"
-msgid "dBASE Connection"
-msgstr "Conexón dBASE"
-
-#. tp8Cf
-#: dabawiz02dbase.xhp
-msgctxt ""
-"dabawiz02dbase.xhp\n"
-"par_idN1054A\n"
-"help.text"
-msgid "<variable id=\"dbase\"><link href=\"text/shared/explorer/database/dabawiz02dbase.xhp\">dBASE Connection</link></variable>"
-msgstr "<variable id=\"dbase\"><link href=\"text/shared/explorer/database/dabawiz02dbase.xhp\">Conexón dBASE </link></variable>"
-
-#. 3rzAr
-#: dabawiz02dbase.xhp
-msgctxt ""
-"dabawiz02dbase.xhp\n"
-"par_idN10556\n"
-"help.text"
-msgid "Path to the dBASE files"
-msgstr "Ruta a los ficheros dBASE"
-
-#. 9qfqi
-#: dabawiz02dbase.xhp
-msgctxt ""
-"dabawiz02dbase.xhp\n"
-"par_idN1055A\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the path to the dBASE *.dbf files.</ahelp>"
-msgstr "<ahelp hid=\".\">Especifique la ruta al ficheru de dBASE *.dbf.</ahelp>"
-
-#. JtErQ
-#: dabawiz02dbase.xhp
-msgctxt ""
-"dabawiz02dbase.xhp\n"
-"par_idN10571\n"
-"help.text"
-msgid "Browse"
-msgstr "Esaminar"
-
-#. VHbhH
-#: dabawiz02dbase.xhp
-msgctxt ""
-"dabawiz02dbase.xhp\n"
-"par_idN10575\n"
-"help.text"
-msgid "<ahelp hid=\".\">Open a path selection dialog.</ahelp>"
-msgstr "<ahelp hid=\".\">Abra un diálogu de seleición de rutes.</ahelp>"
-
-#. n9AxK
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"tit\n"
-"help.text"
-msgid "JDBC Connection"
-msgstr "Conexón JDBC"
-
-#. BSPeu
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"bm_id3726920\n"
-"help.text"
-msgid "<bookmark_value>JDBC; databases (Base)</bookmark_value><bookmark_value>databases; JDBC (Base)</bookmark_value>"
-msgstr "<bookmark_value>JDBC;bases de datos (Base)</bookmark_value><bookmark_value>bases de datos;JDBC (Base)</bookmark_value>"
-
-#. DE8Po
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN105FC\n"
-"help.text"
-msgid "<variable id=\"jdbc\"><link href=\"text/shared/explorer/database/dabawiz02jdbc.xhp\">JDBC Connection</link></variable>"
-msgstr "<variable id=\"jdbc\"><link href=\"text/shared/explorer/database/dabawiz02jdbc.xhp\">Conexón JDBC</link></variable>"
-
-#. 4vvDv
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN10600\n"
-"help.text"
-msgid "<ahelp hid=\".\">Specifies the options to access a <link href=\"text/shared/00/00000005.xhp#jdbc\" name=\"JDBC\">JDBC</link> database.</ahelp>"
-msgstr "<ahelp hid=\".\">Especifica les opciones p'aportar a la base de datos <link href=\"text/shared/00/00000005.xhp#jdbc\" name=\"JDBC\">JDBC</link>.</ahelp>"
-
-#. MAM5R
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN10623\n"
-"help.text"
-msgid "JDBC Examples"
-msgstr "Exemplos de JDBC"
-
-#. FAkVF
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN10627\n"
-"help.text"
-msgid "<item type=\"productname\">You can use a JDBC driver class to connect to a JDBC database from %PRODUCTNAME</item>. The driver class is provided by the database manufacturer. Two examples of JDBC databases are Oracle and MySQL."
-msgstr "<item type=\"productname\">Pue utilizar una clase de controlador JDBC pa coneutase a una base de datos JDBC dende %PRODUCTNAME</item>. La clase de controlador apurrir el fabricante de la base de datos. Dos exemplos de bases de datos JDBC son Oracle y MySQL."
-
-#. ehUZi
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN1062D\n"
-"help.text"
-msgid "The driver classes must be added to %PRODUCTNAME in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME - Advanced</menuitem>."
-msgstr ""
-
-#. KTrhC
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN10634\n"
-"help.text"
-msgid "Oracle database"
-msgstr "Base de datos Oracle"
-
-#. Br2JC
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN10638\n"
-"help.text"
-msgid "You can use a JDBC driver to access an Oracle database from Solaris or Linux. To access the database from Windows, you need an ODBC driver."
-msgstr "Pue utilizar un controlador JDBC p'aportar a una base de datos Oracle dende Solaris o Linux. P'aportar a la base de datos dende Windows, precisa un controlador ODBC."
-
-#. pei94
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN1064B\n"
-"help.text"
-msgid "On UNIX, ensure that the Oracle database client is installed with JDBC support. The JDBC driver class for the Solaris Oracle client version 8.x is located in the <Oracle client>/product/jdbc/lib/classes111.zip directory. You can also download the latest version from the Oracle web site."
-msgstr ""
-
-#. DifQh
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN10661\n"
-"help.text"
-msgid "In the <emph>Data source URL</emph> box, enter the location of the Oracle database server. The syntax of the URL depends on the database type. See the documentation that came with the JDBC driver for more information."
-msgstr "Nel cuadru <emph>URL del orixe de datos</emph>, especifique l'allugamientu del sirvidor de base de datos Oracle. La sintaxis de la URL dependi del tipu de base de datos. Consulte la documentación que s'axunta col controlador JDBC pa más información."
-
-#. BBFrJ
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN10668\n"
-"help.text"
-msgid "For an Oracle database, the syntax of the URL is:"
-msgstr "Pa una base de datos Oracle, la sintaxis de la URL ye:"
-
-#. 7tbob
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN1066B\n"
-"help.text"
-msgid "oracle:thin:@hostname:port:database_name"
-msgstr "oracle:thin:@nome_host:puertu:nome_basedatos"
-
-#. RiDDR
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN10674\n"
-"help.text"
-msgid "hostname is the name of the machine that runs the Oracle database. You can also replace hostname with the IP address of the server."
-msgstr "nome_host ye'l nome de la máquina na que s'executa la base de datos Oracle. El nome del host pue sustituyise pola direición IP del sirvidor."
-
-#. sFfhQ
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN10678\n"
-"help.text"
-msgid "port is the port where the Oracle database listens. Ask your database administrator for the correct port address."
-msgstr "puertu ye'l puertu al qu'atiende la base de datos Oracle. Pregunte al so alministrador de bases de datos la direición de puertu correcta."
-
-#. GDkVv
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN1067C\n"
-"help.text"
-msgid "database_name is the name of the Oracle database. Ask your database administrator for the correct name."
-msgstr "nome_basedatos ye'l nome de la base de datos Oracle. Pregunte al so alministrador de bases de datos el nome correctu."
-
-#. aQiqR
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN1067F\n"
-"help.text"
-msgid "MySQL database"
-msgstr "Base de datos MySQL"
-
-#. FEV5u
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN10683\n"
-"help.text"
-msgid "The driver for the MySQL database is available on the MySQL web site."
-msgstr "El controlador pa la base de datos MySQL ta disponible nel sitiu web de MySQL."
-
-#. p2v67
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN10689\n"
-"help.text"
-msgid "The syntax for a MySQL database is:"
-msgstr "La sintaxis d'una base de datos MySQL ye:"
-
-#. wEDsL
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN1068C\n"
-"help.text"
-msgid "mysql://hostname:port/database_name"
-msgstr "mysql://nome_host:puertu/nome_basedatos"
-
-#. m5Kcx
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN10695\n"
-"help.text"
-msgid "<ahelp hid=\".\">hostname is the name of the machine that runs the MySQL database.</ahelp> You can also replace hostname with the IP address of the server."
-msgstr "<ahelp hid=\".\">nome_host ye'l nome de la máquina na que s'executa la base de datos MySQL.</ahelp> El nome del host pue sustituyise pola direición IP del sirvidor."
-
-#. LCpew
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN10699\n"
-"help.text"
-msgid "port is the default port for MySQL databases, namely 3306."
-msgstr "puertu ye'l puertu predetermináu pa les bases de datos MySQL, a saber 3306."
-
-#. q2DuM
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN1069D\n"
-"help.text"
-msgid "database_name is the name of the database."
-msgstr "nome_basedatos ye'l nome de la base de datos."
-
-#. YYgSg
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN106A0\n"
-"help.text"
-msgid "Data source URL"
-msgstr "URL d'orixe de datos"
-
-#. EcdaK
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN106A4\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the URL for the database. For example, for the MySQL JDBC driver, enter \"mysql://<Servername>/<name of the database>\". For more information on the JDBC driver, consult the documentation that came with the driver.</ahelp>"
-msgstr ""
-
-#. eVBSr
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN106BB\n"
-"help.text"
-msgid "JDBC Driver Class"
-msgstr "Clase de controlador JDBC"
-
-#. vFsoP
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN106BF\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the name of the JDBC driver.</ahelp>"
-msgstr ""
-
-#. VHjhA
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_id7953733\n"
-"help.text"
-msgid "Before you can use a JDBC driver, you need to add its class path. Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME - Advanced</menuitem>, and click the <widget>Class Path</widget> button. After you add the path information, restart %PRODUCTNAME."
-msgstr ""
-
-#. f8fUr
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN106CE\n"
-"help.text"
-msgid "Test Class"
-msgstr "Probar la clase"
-
-#. 8VBbq
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN106E4\n"
-"help.text"
-msgid "<ahelp hid=\".\">Tests the connection with the current settings.</ahelp>"
-msgstr "<ahelp hid=\".\">Prueba la conexón cola configuración actual.</ahelp>"
-
-#. FGezr
-#: dabawiz02jdbc.xhp
-msgctxt ""
-"dabawiz02jdbc.xhp\n"
-"par_idN106E7\n"
-"help.text"
-msgid "<link href=\"text/sdatabase/dabawiz03auth.xhp\">Authentication</link>"
-msgstr ""
-
-#. Y4EFA
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"tit\n"
-"help.text"
-msgid "MariaDB and MySQL Connection"
-msgstr ""
-
-#. bVNAZ
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"bm_id861587404584956\n"
-"help.text"
-msgid "<bookmark_value>MariaDB settings (Base)</bookmark_value><bookmark_value>MySQL settings (Base)</bookmark_value>"
-msgstr ""
-
-#. f4CzF
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"par_idN10549\n"
-"help.text"
-msgid "<variable id=\"mysql\"><link href=\"text/shared/explorer/database/dabawiz02mysql.xhp\">MariaDB and MySQL Connection</link></variable>"
-msgstr ""
-
-#. 5FPU6
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"par_idN1054D\n"
-"help.text"
-msgid "<ahelp hid=\".\">Specifies the options for MariaDB and MySQL databases.</ahelp>"
-msgstr ""
-
-#. Bmcwo
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"hd_id661587405298284\n"
-"help.text"
-msgid "Direct Connection for MariaDB and MySQL databases"
-msgstr ""
-
-#. vd9VD
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"hd_id321587405303769\n"
-"help.text"
-msgid "Database name"
-msgstr ""
-
-#. 6LAsi
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"par_id371587405314376\n"
-"help.text"
-msgid "Enter the name of the MariaDB or MySQL database. Ask your database administrator for the correct name."
-msgstr ""
-
-#. jbdZp
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"hd_id561587405334695\n"
-"help.text"
-msgid "Server URL"
-msgstr "URL del sirvidor"
-
-#. SshYk
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"par_id521587405341138\n"
-"help.text"
-msgid "Enter the URL for the database server. This is the name of the machine that runs the MariaDB or MySQL database. You can also replace hostname with the IP address of the server."
-msgstr ""
-
-#. MZQiq
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"hd_id171587405349438\n"
-"help.text"
-msgid "Port number"
-msgstr ""
-
-#. J2SR3
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"par_id1001587405358390\n"
-"help.text"
-msgid "Enter the port number for the database server. Ask your database administrator for the correct port address. The default port number for MySQL or MariaDB databases is 3306."
-msgstr ""
-
-#. ovKhU
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"hd_id121587407845730\n"
-"help.text"
-msgid "Named Pipe"
-msgstr ""
-
-#. Rq89B
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"par_id941587407987180\n"
-"help.text"
-msgid "If the MariaDB or MySQL database is to be accessed by a named pipe, enter its name."
-msgstr ""
-
-#. wF6bj
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"hd_id161587405553671\n"
-"help.text"
-msgid "Socket"
-msgstr ""
-
-#. e8DB2
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"par_id161587405561472\n"
-"help.text"
-msgid "If the MariaDB or MySQL database is to be accessed by a socket, enter the socket ID."
-msgstr ""
-
-#. fpBNu
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"par_idN10562\n"
-"help.text"
-msgid "Connect using ODBC (Open Database Connectivity)"
-msgstr "Coneutar utilizando ODBC (Open Database Connectivity)"
-
-#. E7sE2
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"par_idN10566\n"
-"help.text"
-msgid "<ahelp hid=\".\">Connects to an existing ODBC data source that was set on a system level.</ahelp>"
-msgstr "<ahelp hid=\".\">Coneuta con un orixe de datos ODBC esistente configuráu nun nivel de sistema.</ahelp>"
-
-#. AXrwJ
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"par_idN10569\n"
-"help.text"
-msgid "Connect using JDBC (Java Database Connectivity)"
-msgstr "Coneutar utilizando JDBC (Java Database Connectivity)"
-
-#. i9TrE
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"par_idN1056D\n"
-"help.text"
-msgid "<ahelp hid=\".\">Connects to an existing JDBC data source that was set on a system level.</ahelp>"
-msgstr "<ahelp hid=\".\">Coneuta con un orixe de datos JDBC esistente configuráu nun nivel de sistema.</ahelp>"
-
-#. FUG3D
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"par_idN10570\n"
-"help.text"
-msgid "The next wizard page depends on your choice of ODBC or JDBC:"
-msgstr "La siguiente páxina del asistente depende de la elección de ODBC o JDBC:"
-
-#. aCA6C
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"par_idN10573\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02odbc.xhp\">ODBC Connection</link>"
-msgstr "<link href=\"text/shared/explorer/database/dabawiz02odbc.xhp\">Conexón de ODBC</link>"
-
-#. BkeDx
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"par_idN10582\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02jdbc.xhp\">JDBC Connection</link>"
-msgstr "<link href=\"text/shared/explorer/database/dabawiz02jdbc.xhp\">Conexón JDBC</link>"
-
-#. ujaGF
-#: dabawiz02mysql.xhp
-msgctxt ""
-"dabawiz02mysql.xhp\n"
-"par_idN10591\n"
-"help.text"
-msgid "<link href=\"text/sdatabase/dabawiz03auth.xhp\">Authentication</link>"
-msgstr ""
-
-#. HF588
-#: dabawiz02odbc.xhp
-msgctxt ""
-"dabawiz02odbc.xhp\n"
-"tit\n"
-"help.text"
-msgid "ODBC Connection"
-msgstr "Conexón de ODBC"
-
-#. sGNau
-#: dabawiz02odbc.xhp
-msgctxt ""
-"dabawiz02odbc.xhp\n"
-"bm_id3149031\n"
-"help.text"
-msgid "<bookmark_value>ODBC;database (Base)</bookmark_value><bookmark_value>databases;ODBC (Base)</bookmark_value>"
-msgstr "<bookmark_value>ODBC;base de datos (Base)</bookmark_value><bookmark_value>bases de datos;ODBC (Base)</bookmark_value>"
-
-#. iFxfY
-#: dabawiz02odbc.xhp
-msgctxt ""
-"dabawiz02odbc.xhp\n"
-"par_idN1053D\n"
-"help.text"
-msgid "<variable id=\"odbc\"><link href=\"text/shared/explorer/database/dabawiz02odbc.xhp\">ODBC Connection</link></variable>"
-msgstr "<variable id=\"odbc\"><link href=\"text/shared/explorer/database/dabawiz02odbc.xhp\">Conexón ODBC</link></variable>"
-
-#. nb3Qq
-#: dabawiz02odbc.xhp
-msgctxt ""
-"dabawiz02odbc.xhp\n"
-"par_idN10541\n"
-"help.text"
-msgid "<ahelp hid=\".\">Specifies the settings for <link href=\"text/shared/00/00000005.xhp#odbc\" name=\"ODBC\">ODBC</link> databases.</ahelp>"
-msgstr "<ahelp hid=\".\">Especifica la configuración pa les bases de datos <link href=\"text/shared/00/00000005.xhp#odbc\" name=\"ODBC\">ODBC</link>.</ahelp>"
-
-#. WhLBW
-#: dabawiz02odbc.xhp
-msgctxt ""
-"dabawiz02odbc.xhp\n"
-"par_id8856776\n"
-"help.text"
-msgid "To edit or add records to a database table in $[officename], the table must have a unique index field."
-msgstr "Pa editar o amestar rexistros a una tabla de base de datos en $[officename], la tabla tien de tener un campu d'índiz únicu."
-
-#. xs2Yc
-#: dabawiz02odbc.xhp
-msgctxt ""
-"dabawiz02odbc.xhp\n"
-"par_id8034302\n"
-"help.text"
-msgid "On Solaris and Linux platforms, try to use a JDBC driver instead of an ODBC driver. See http://www.unixodbc.org for an ODBC implementation on Solaris or Linux."
-msgstr "En plataformes Solaris y Linux, intente usar un controlador JDBC en llugar de ODBC. Visite http://www.unixodbc.org si precisa una implementación de ODBC en Solaris o Linux."
-
-#. PxZ9T
-#: dabawiz02odbc.xhp
-msgctxt ""
-"dabawiz02odbc.xhp\n"
-"par_id8560136\n"
-"help.text"
-msgid "To connect to a Microsoft Access database on Windows, use the ADO or Access database interface, rather than ODBC."
-msgstr "Pa coneutar con una base de datos Microsoft Access en Windows, utilice la interfaz de base de datos ADO o Access, en llugar de ODBC."
-
-#. vme6U
-#: dabawiz02odbc.xhp
-msgctxt ""
-"dabawiz02odbc.xhp\n"
-"par_id2082583\n"
-"help.text"
-msgid "Drivers for ODBC are supplied and supported by the manufacturer of the database. $[officename] only supports the ODBC 3 standard."
-msgstr "El controladores pa ODBC suministrar el fabricante de la base de datos. $[officename] namái almite l'estándar ODBC 3."
-
-#. wCexE
-#: dabawiz02odbc.xhp
-msgctxt ""
-"dabawiz02odbc.xhp\n"
-"par_idN10552\n"
-"help.text"
-msgid "Name of the ODBC database"
-msgstr "Nome de la base de datos ODBC"
-
-#. eubaF
-#: dabawiz02odbc.xhp
-msgctxt ""
-"dabawiz02odbc.xhp\n"
-"par_idN10556\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the path to the database file.</ahelp>"
-msgstr "<ahelp hid=\".\">Especifique la ruta al ficheru de base de datos.</ahelp>"
-
-#. 7KKFy
-#: dabawiz02odbc.xhp
-msgctxt ""
-"dabawiz02odbc.xhp\n"
-"par_idN10559\n"
-"help.text"
-msgid "Browse"
-msgstr "Esaminar"
-
-#. CSCAZ
-#: dabawiz02odbc.xhp
-msgctxt ""
-"dabawiz02odbc.xhp\n"
-"par_idN1055D\n"
-"help.text"
-msgid "<ahelp hid=\".\">Click to open an ODBC data source selection dialog:</ahelp>"
-msgstr "<ahelp hid=\".\">Faiga clic p'abrir un diálogu de seleición d'orixe de datos ODBC:</ahelp>"
-
-#. 48ubg
-#: dabawiz02odbc.xhp
-msgctxt ""
-"dabawiz02odbc.xhp\n"
-"par_idN10560\n"
-"help.text"
-msgid "Choose a data source"
-msgstr "Escoyer un orixe de datos"
-
-#. FhAAU
-#: dabawiz02odbc.xhp
-msgctxt ""
-"dabawiz02odbc.xhp\n"
-"par_idN10564\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select a data source to which you want to connect using ODBC. Then click <emph>OK</emph>.</ahelp>"
-msgstr "<ahelp hid=\".\">Escueya un orixe de datos al que se deseye coneutar por aciu ODBC. De siguío, faiga clic en <emph>Aceutar</emph>.</ahelp>"
-
-#. WaAZB
-#: dabawiz02odbc.xhp
-msgctxt ""
-"dabawiz02odbc.xhp\n"
-"par_idN10567\n"
-"help.text"
-msgid "<link href=\"text/sdatabase/dabawiz03auth.xhp\">Authentication</link>"
-msgstr ""
-
-#. RL7sk
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"tit\n"
-"help.text"
-msgid "Oracle Database Connection"
-msgstr "Conexón con bases de datos Oracle"
-
-#. 8H3zh
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"bm_id5900753\n"
-"help.text"
-msgid "<bookmark_value>Oracle databases (base)</bookmark_value>"
-msgstr "<bookmark_value>Base de datos Oracle (base)</bookmark_value>"
-
-#. W6aaT
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN105A4\n"
-"help.text"
-msgid "Oracle Database Connection"
-msgstr "Conexón con bases de datos Oracle"
-
-#. DbqoE
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN105A8\n"
-"help.text"
-msgid "<ahelp hid=\".\">Specifies the options to access an Oracle database.</ahelp>"
-msgstr "<ahelp hid=\".\">Especifica les opciones d'accesu a una base de datos Oracle.</ahelp>"
-
-#. FMq7o
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN105BD\n"
-"help.text"
-msgid "Oracle database"
-msgstr "Base de datos Oracle"
-
-#. 8qHyA
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN105C1\n"
-"help.text"
-msgid "You can use a JDBC driver to access an Oracle database from Solaris or Linux. To access the database from Windows, you need an ODBC driver."
-msgstr "Pue utilizar un controlador JDBC p'aportar a una base de datos Oracle dende Solaris o Linux. P'aportar a la base de datos dende Windows, precisa un controlador ODBC."
-
-#. sSDYq
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN105D4\n"
-"help.text"
-msgid "On UNIX, ensure that the Oracle database client is installed with JDBC support. The JDBC driver class for the Solaris Oracle client version 8.x is located in the <Oracle client>/product/jdbc/lib/classes111.zip directory. You can also download the latest version of the driver from the Oracle web site."
-msgstr "En UNIX, compruebe que'l veceru de base de datos Oracle instalárase con compatibilidá con JDBC. La clase de controlador JDBC del veceru Oracle de Solaris versión 8.x atopar nel directoriu <cliente oracle>/product/jdbc/lib/classes111.zip. Tamién pue descargar la última versión del controlador de la páxina web de Oracle:"
-
-#. 5rxmX
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN10608\n"
-"help.text"
-msgid "Name of the Oracle database"
-msgstr "Nome de la base de datos Oracle"
-
-#. DxYWQ
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN1060C\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the name of the Oracle database. Ask your database administrator for the correct name.</ahelp>"
-msgstr ""
-
-#. WKBSR
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN1060F\n"
-"help.text"
-msgid "Server URL"
-msgstr "URL del sirvidor"
-
-#. vXDGs
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN10613\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the URL for the database server. This is the name of the machine that runs the Oracle database. You can also replace hostname with the IP address of the server.</ahelp>"
-msgstr ""
-
-#. EEESV
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN10616\n"
-"help.text"
-msgid "Port number"
-msgstr "Númberu de puertu"
-
-#. PBuEW
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN1061A\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the port number for the database server. Ask your database administrator for the correct port address.</ahelp>"
-msgstr ""
-
-#. rYRxW
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN1061D\n"
-"help.text"
-msgid "Oracle JDBC Driver Class"
-msgstr "Clase de controlador Oracle JDBC"
-
-#. ouDxa
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN10621\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the name of the JDBC driver.</ahelp>"
-msgstr ""
-
-#. JumUz
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN10630\n"
-"help.text"
-msgid "Test Class"
-msgstr "Probar la clase"
-
-#. NdF7k
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN10634\n"
-"help.text"
-msgid "<ahelp hid=\".\">Tests the connection with the current settings.</ahelp>"
-msgstr "<ahelp hid=\".\">Prueba la conexón cola configuración actual.</ahelp>"
-
-#. UwteE
-#: dabawiz02oracle.xhp
-msgctxt ""
-"dabawiz02oracle.xhp\n"
-"par_idN10637\n"
-"help.text"
-msgid "<link href=\"text/sdatabase/dabawiz03auth.xhp\">Authentication</link>"
-msgstr ""
-
-#. XoiBM
-#: dabawiz02spreadsheet.xhp
-msgctxt ""
-"dabawiz02spreadsheet.xhp\n"
-"tit\n"
-"help.text"
-msgid "Spreadsheet Database Connection"
-msgstr "Conexón con bases de datos de fueya de cálculu"
-
-#. cwGbM
-#: dabawiz02spreadsheet.xhp
-msgctxt ""
-"dabawiz02spreadsheet.xhp\n"
-"par_idN1053A\n"
-"help.text"
-msgid "Set up Spreadsheet connection"
-msgstr ""
-
-#. fZnvG
-#: dabawiz02spreadsheet.xhp
-msgctxt ""
-"dabawiz02spreadsheet.xhp\n"
-"par_idN1053E\n"
-"help.text"
-msgid "Location and file name"
-msgstr "Allugamientu y nome del ficheru"
-
-#. 6TKT4
-#: dabawiz02spreadsheet.xhp
-msgctxt ""
-"dabawiz02spreadsheet.xhp\n"
-"par_idN10542\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the path and file name to the spreadsheet file.</ahelp>"
-msgstr "<ahelp hid=\".\">Escriba la ruta y el nome del ficheru de fueya de cálculu.</ahelp>"
-
-#. XtNjY
-#: dabawiz02spreadsheet.xhp
-msgctxt ""
-"dabawiz02spreadsheet.xhp\n"
-"par_idN10545\n"
-"help.text"
-msgid "Browse"
-msgstr "Esaminar"
-
-#. JfUMC
-#: dabawiz02spreadsheet.xhp
-msgctxt ""
-"dabawiz02spreadsheet.xhp\n"
-"par_idN10549\n"
-"help.text"
-msgid "<ahelp hid=\".\">Click to open a file selection dialog.</ahelp>"
-msgstr "<ahelp hid=\".\">Faiga clic p'abrir un diálogu de seleición de ficheros.</ahelp>"
-
-#. JAmAi
-#: dabawiz02spreadsheet.xhp
-msgctxt ""
-"dabawiz02spreadsheet.xhp\n"
-"par_idN1054C\n"
-"help.text"
-msgid "Password required"
-msgstr "Ríquese una contraseña"
-
-#. 3HzmH
-#: dabawiz02spreadsheet.xhp
-msgctxt ""
-"dabawiz02spreadsheet.xhp\n"
-"par_idN10550\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select to request a password from the user of the database document.</ahelp>"
-msgstr "<ahelp hid=\".\">Escueya pa solicitar una contraseña al usuariu del documentu de base de datos.</ahelp>"
-
-#. xngE4
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"tit\n"
-"help.text"
-msgid "Text File Connection"
-msgstr "Conexón de ficheros de testu"
-
-#. dfWU7
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"bm_id2517166\n"
-"help.text"
-msgid "<bookmark_value>tables in databases;importing text formats (Base)</bookmark_value><bookmark_value>text databases (Base)</bookmark_value>"
-msgstr "<bookmark_value>tables de base de datos con formatu de testu (Base)</bookmark_value><bookmark_value>tables de base de datos;importar formatos de testu (Base)</bookmark_value><bookmark_value>bases de datos de testu (Base)</bookmark_value>"
-
-#. htUUB
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN1054F\n"
-"help.text"
-msgid "Set up a connection to text files"
-msgstr ""
-
-#. MD2eT
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN10553\n"
-"help.text"
-msgid "<ahelp hid=\".\">Specifies the settings for importing a database in text format.</ahelp>"
-msgstr "<ahelp hid=\".\">Especifica los parámetros de configuración pa importar una base de datos en formatu de testu.</ahelp>"
-
-#. 6yKNw
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "In a text format database, data is stored in an unformatted ASCII file, where each record comprises a row. The data fields are divided by separators. Text in the data fields is divided by quotation marks."
-msgstr "Nuna base de datos en formatu de testu, los datos guárdense nun ficheru ASCII ensin formatu, con un rexistru en cada filera. Los campos de datos estrémense por aciu separadores. El testu de los campos de datos ta delimitáu por comines."
-
-#. puYrF
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN1056B\n"
-"help.text"
-msgid "Path to text files"
-msgstr "Ruta de los ficheros de testu"
-
-#. LkFcD
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN1056F\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the path to the text file or files. If you just want one text file, you can use any extension of the file name. If you enter a folder name, the text files in that folder must have the extension *.csv to be recognized as files of the text database.</ahelp>"
-msgstr "<ahelp hid=\".\">Especifique la ruta del ficheru o los ficheros de testu. Si namái quier un ficheru de testu, pue utilizar cualquier estensión del nome de ficheru. Si especifica un nome de carpeta, los ficheros de testu de dicha carpeta tienen de tener la estensión *.csv por que puedan reconocese como ficheros de la base de datos de testu.</ahelp>"
-
-#. DwHAY
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN10572\n"
-"help.text"
-msgid "Browse"
-msgstr "Esaminar"
-
-#. tU8mG
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN10576\n"
-"help.text"
-msgid "<ahelp hid=\".\">Click to open a file selection dialog.</ahelp>"
-msgstr "<ahelp hid=\".\">Faiga clic p'abrir un diálogu de seleición de ficheros.</ahelp>"
-
-#. MmGr4
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN10616\n"
-"help.text"
-msgid "Plain text files (*.txt)"
-msgstr "Ficheros con testu ensin formatu (*.txt)"
-
-#. ztjWn
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN1061A\n"
-"help.text"
-msgid "<ahelp hid=\".\">Click to access txt files.</ahelp>"
-msgstr "<ahelp hid=\".\">Faiga clic p'aportar a ficheros txt.</ahelp>"
-
-#. E5S76
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN10643\n"
-"help.text"
-msgid "'Comma separated value' files (*.csv)"
-msgstr "Ficheros de valores separaos por comes' (*.csv)"
-
-#. 2fDr2
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN10647\n"
-"help.text"
-msgid "<ahelp hid=\".\">Click to access csv files.</ahelp>"
-msgstr "<ahelp hid=\".\">Faiga clic p'aportar a ficheros csv.</ahelp>"
-
-#. EVBCK
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN10666\n"
-"help.text"
-msgid "Custom"
-msgstr "Personalizáu"
-
-#. 3Z5fx
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN1066A\n"
-"help.text"
-msgid "<ahelp hid=\".\">Click to access custom files. Enter the extension in the text box.</ahelp>"
-msgstr "<ahelp hid=\".\">Faiga clic p'aportar a ficheros personalizaos. Indique la estensión nel cuadru de testu.</ahelp>"
-
-#. rts2F
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN10581\n"
-"help.text"
-msgid "Field separator"
-msgstr "Separador de campu"
-
-#. 3G6QU
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN10585\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter or select the character that separates data fields in the text file.</ahelp>"
-msgstr ""
-
-#. 8rxWL
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN1059C\n"
-"help.text"
-msgid "Text separator"
-msgstr "Separador de testu"
-
-#. ejFpV
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN105A0\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter or select the character that identifies a text field in the text file.</ahelp> You cannot use the same character as the field separator."
-msgstr ""
-
-#. rSTcV
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN105B8\n"
-"help.text"
-msgid "Decimal separator"
-msgstr "Separador decimal"
-
-#. apBAu
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN105BC\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter or select the character that is used as a decimal separator in the text file, for example, a period (0.5) or a comma (0,5).</ahelp>"
-msgstr ""
-
-#. CyhGN
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN105D3\n"
-"help.text"
-msgid "Thousands separator"
-msgstr "Separador de miles"
-
-#. 6TTiq
-#: dabawiz02text.xhp
-msgctxt ""
-"dabawiz02text.xhp\n"
-"par_idN105D7\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter or select the character that is used as a thousands separator in the text file, for example a comma (1,000), or a period (1.000).</ahelp>"
-msgstr ""
-
#. rw2xT
#: menubar.xhp
msgctxt ""
@@ -3913,14 +2446,14 @@ msgctxt ""
msgid "Report Builder"
msgstr "Xenerador d'Informes"
-#. 2cgJb
+#. Yyb28
#: rep_main.xhp
msgctxt ""
"rep_main.xhp\n"
"bm_id1614429\n"
"help.text"
-msgid "<bookmark_value>Report Builder</bookmark_value><bookmark_value>Oracle Report Builder</bookmark_value>"
-msgstr "<bookmark_value>Report Builder</bookmark_value><bookmark_value>Oracle Report Builder</bookmark_value>"
+msgid "<bookmark_value>Report Builder</bookmark_value> <bookmark_value>Oracle Report Builder</bookmark_value>"
+msgstr ""
#. 8XCCL
#: rep_main.xhp
@@ -4192,13 +2725,13 @@ msgctxt ""
msgid "After selecting the table, press the Tab key to leave the Content box."
msgstr "Dempués d'escoyer la tabla, calque la tecla Tab pa salir del cuadru Conteníu."
-#. 6vbRr
+#. TFFLy
#: rep_main.xhp
msgctxt ""
"rep_main.xhp\n"
"par_id2531815\n"
"help.text"
-msgid "The <embedvar href=\"text/shared/explorer/database/rep_insertfield.xhp#addfields\" markup=\"ignore\"/> window opens automatically and shows all fields of the selected table."
+msgid "The <link href=\"text/shared/explorer/database/rep_insertfield.xhp\" name=\"add_fields_link\">Add fields to report</link> window opens automatically and shows all fields of the selected table."
msgstr ""
#. vsFKB
@@ -4939,13 +3472,13 @@ msgctxt ""
msgid "Properties"
msgstr "Propiedaes"
-#. e5chy
+#. wAcV9
#: rep_prop.xhp
msgctxt ""
"rep_prop.xhp\n"
"hd_id8836939\n"
"help.text"
-msgid "<variable id=\"rep_prop\"><link href=\"text/shared/explorer/database/rep_prop.xhp\">Properties</link> </variable>"
+msgid "<variable id=\"rep_prop\"><link href=\"text/shared/explorer/database/rep_prop.xhp\">Properties</link></variable>"
msgstr ""
#. ro5Tm
@@ -4984,13 +3517,13 @@ msgctxt ""
msgid "Select a table from the Contents list, then press Tab or click outside the input box to leave the input box."
msgstr "Escueya una tabla dientro de la llista de conteníu, depués prima Tabulador o faiga clic fuera de la caxa d'entrada pa lliberar."
-#. 9hPaG
+#. DZ342
#: rep_prop.xhp
msgctxt ""
"rep_prop.xhp\n"
"par_id3587145\n"
"help.text"
-msgid "<ahelp hid=\".\">The <embedvar href=\"text/shared/explorer/database/rep_insertfield.xhp#addfields\" markup=\"ignore\"/> window is shown automatically when you have selected a table in the Contents box and leave that box. You can also click the Add Field icon on the toolbar, or choose <item type=\"menuitem\">View - Add Field</item>.</ahelp>"
+msgid "<ahelp hid=\".\">The <link href=\"text/shared/explorer/database/rep_insertfield.xhp\" name=\"add_fields_link\">Add fields to report</link> window is shown automatically when you have selected a table in the Contents box and leave that box. You can also click the Add Field icon on the toolbar, or choose <item type=\"menuitem\">View - Add Field</item>.</ahelp>"
msgstr ""
#. 5BJS6
diff --git a/source/ast/helpcontent2/source/text/shared/guide.po b/source/ast/helpcontent2/source/text/shared/guide.po
index 4d7b81d1087..98138cb74e4 100644
--- a/source/ast/helpcontent2/source/text/shared/guide.po
+++ b/source/ast/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-04 19:51+0200\n"
+"POT-Creation-Date: 2021-10-25 12:49+0200\n"
"PO-Revision-Date: 2021-09-26 06:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsharedguide/ast/>\n"
@@ -4048,13 +4048,31 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/convertfilters.xhp\" name=\"conversion filter names\">File Conversion Filter Names</link>"
msgstr ""
-#. G5KB2
+#. EoDwz
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
"par_id581554399002498\n"
"help.text"
-msgid "<variable id=\"variable name\"> <ahelp hid=\".\">Tables with filter names for command line document conversion.</ahelp> </variable>"
+msgid "<variable id=\"commandline_intro\"> <ahelp hid=\".\">Tables with filter names for <link href=\"text/shared/guide/start_parameters.xhp\" name=\"commandline\">command line</link> document conversion.</ahelp> </variable>"
+msgstr ""
+
+#. Whybs
+#: convertfilters.xhp
+msgctxt ""
+"convertfilters.xhp\n"
+"hd_id531633524464103\n"
+"help.text"
+msgid "Usage"
+msgstr ""
+
+#. vcWaC
+#: convertfilters.xhp
+msgctxt ""
+"convertfilters.xhp\n"
+"par_id801633524474460\n"
+"help.text"
+msgid "Filter names are used when importing and exporting files in alien formats and converting files formats through the <link href=\"text/shared/guide/start_parameters.xhp\" name=\"commandline\">command line</link>."
msgstr ""
#. QAzjK
@@ -4408,6 +4426,15 @@ msgctxt ""
msgid "Writer Layout XML"
msgstr ""
+#. nxmVA
+#: convertfilters.xhp
+msgctxt ""
+"convertfilters.xhp\n"
+"FilterName_writer_indexing_export\n"
+"help.text"
+msgid "Writer Indexing Export XML"
+msgstr ""
+
#. Va5zD
#: convertfilters.xhp
msgctxt ""
@@ -20464,13 +20491,13 @@ msgctxt ""
msgid "Open the document, entering the correct password. Choose <emph>File - Save As</emph> and clear the <emph>Save with password</emph> check box."
msgstr "Abra'l documentu ya introduza la contraseña. Active'l comandu <emph>Ficheru - Guardar como</emph> y quite la marca del caxellu <emph>Guardar con contraseña</emph>."
-#. FepzD
+#. mqKud
#: protection.xhp
msgctxt ""
"protection.xhp\n"
"par_id761632164002322\n"
"help.text"
-msgid "It is possible to use OpenPGP to define private and public keys to be used to encrypt %PRODUCTNAME documents. Read <embedvar href=\"text/shared/guide/openpgp.xhp#openpgph1\"/> to learn more on how to set up OpenPGP encryption keys."
+msgid "It is possible to use OpenPGP to define private and public keys to be used to encrypt %PRODUCTNAME documents. Read <link href=\"text/shared/guide/openpgp.xhp\" name=\"openpgp_link\">Encrypting Documents with OpenPGP</link> to learn more on how to set up OpenPGP encryption keys."
msgstr ""
#. HfUCF
@@ -21112,14 +21139,14 @@ msgctxt ""
msgid "Accepting or Rejecting Changes"
msgstr "Aceutar o refugar cambeos"
-#. pqiWr
+#. yyZeG
#: redlining_accept.xhp
msgctxt ""
"redlining_accept.xhp\n"
"bm_id3150247\n"
"help.text"
-msgid "<bookmark_value>changes; accepting or rejecting</bookmark_value><bookmark_value>review function;accepting or rejecting changes</bookmark_value>"
-msgstr "<bookmark_value>cambeos;aceutar o refugar</bookmark_value><bookmark_value>revisar;aceutar refugar cambeos</bookmark_value>"
+msgid "<bookmark_value>changes; accepting or rejecting</bookmark_value> <bookmark_value>review function;accepting or rejecting changes</bookmark_value>"
+msgstr ""
#. FTaFc
#: redlining_accept.xhp
@@ -21157,14 +21184,14 @@ msgctxt ""
msgid "When you edit a document in which others have made changes, you can accept or reject the changes individually or all together."
msgstr "Al editar un documentu qu'otros modificaron, pue aceutar los cambeos de forma individual o nel so conxuntu."
-#. XCt7P
+#. 5zm2G
#: redlining_accept.xhp
msgctxt ""
"redlining_accept.xhp\n"
"par_id3147008\n"
"help.text"
-msgid "If you have put multiple copies of the document in circulation, first merge these into one document (see <embedvar href=\"text/shared/guide/redlining_docmerge.xhp#redlining_docmerge\"/>)."
-msgstr "Si tien circulando delles copies del documentu, en primer llugar una toles copies nun únicu documentu (consulte <embedvar href=\"text/shared/guide/redlining_docmerge.xhp#redlining_docmerge\"/>)."
+msgid "If you have put multiple copies of the document in circulation, first merge these into one document (see <link href=\"text/shared/guide/redlining_docmerge.xhp\" name=\"redlining_docmerge_link\">Merging Versions</link>)."
+msgstr ""
#. Rk8jv
#: redlining_accept.xhp
@@ -22966,49 +22993,76 @@ msgctxt ""
msgid "Starting $[officename] Software From the Command Line"
msgstr ""
-#. gqJUq
+#. 7E3QP
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3156152\n"
"help.text"
-msgid "Under Windows, select <emph>Run</emph> from the Windows Start menu, or open a shell under Linux, *BSD, or macOS platforms."
+msgid "Select <emph>Run</emph> from the Windows Start menu."
msgstr ""
-#. bvyAG
+#. xf2BF
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3152472\n"
"help.text"
-msgid "Under Windows, type the following text in the <emph>Open </emph>text field and click <emph>OK</emph>."
+msgid "Type the following text in the <emph>Open</emph> text field and click <emph>OK</emph>."
msgstr ""
-#. hm8EE
+#. nMQWE
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149669\n"
+"par_id3147561\n"
"help.text"
-msgid "Under UNIX-like systems, type the following line of text, then press <emph>Return</emph>:"
+msgid "{install}\\program\\soffice.exe {parameter}"
msgstr ""
-#. Q5DoA
+#. mmyAy
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147561\n"
+"par_id3153360\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter}</caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter}</caseinline></switchinline>"
+msgid "Replace <emph>{install}</emph> with the path to your installation of %PRODUCTNAME software (for example, <emph>C:\\Program Files\\%PRODUCTNAME</emph>"
msgstr ""
-#. n4TUN
+#. x5jE9
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153360\n"
+"par_id3157152\n"
"help.text"
-msgid "Replace <emph>{install}</emph> with the path to your installation of $[officename] software (for example, <emph>C:\\Program Files\\Office</emph> in Windows, or <emph>~/office</emph> in UNIX)"
+msgid "Open a shell under Linux, *BSD, or macOS platforms."
+msgstr ""
+
+#. LEs72
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3147669\n"
+"help.text"
+msgid "Type the following line of text, then press <emph>Return</emph>:"
+msgstr ""
+
+#. smkWS
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3143561\n"
+"help.text"
+msgid "{install}/program/soffice {parameter}"
+msgstr ""
+
+#. BEAF7
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3157360\n"
+"help.text"
+msgid "Replace <emph>{install}</emph> with the path to your installation of %PRODUCTNAME software (for example, <emph>/opt/%PRODUCTNAME</emph> in UNIX)"
msgstr ""
#. 4EMfS
@@ -23236,13 +23290,13 @@ msgctxt ""
msgid "Store soffice.bin pid to <emph>{file}</emph>."
msgstr ""
-#. KsDn3
+#. 8kbVi
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3146786\n"
"help.text"
-msgid "Sets the <emph>DISPLAY </emph>environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for $[officename] software on UNIX-like platforms."
+msgid "Sets the <emph>DISPLAY</emph> environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for $[officename] software on UNIX-like platforms."
msgstr ""
#. 67rps
@@ -23695,22 +23749,13 @@ msgctxt ""
msgid "Opens and starts the following presentation documents of each immediately. Files are closed after the showing. Files other than Impress documents are opened in default mode , regardless of previous mode."
msgstr ""
-#. 7TVQD
-#: start_parameters.xhp
-msgctxt ""
-"start_parameters.xhp\n"
-"par_id315053p\n"
-"help.text"
-msgid "Batch convert files (implies --headless). If --outdir isn't specified, then current working directory is used as output_dir."
-msgstr ""
-
-#. bcvZm
+#. N3vAB
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id2016120401222926\n"
"help.text"
-msgid "If --convert-to is used more than once, last value of OutputFileExtension[:OutputFilterName] is effective. If --outdir is used more than once, only its last value is effective. For example:"
+msgid "If --convert-to is used more than once, last value of OutputFileExtension[:OutputFilterName[:OutputFilterParams]] is effective. If --outdir is used more than once, only its last value is effective. For example:"
msgstr ""
#. RYx7a
diff --git a/source/ast/helpcontent2/source/text/shared/optionen.po b/source/ast/helpcontent2/source/text/shared/optionen.po
index 72a16073d85..0f62ed9667a 100644
--- a/source/ast/helpcontent2/source/text/shared/optionen.po
+++ b/source/ast/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-20 13:03+0200\n"
+"POT-Creation-Date: 2021-10-25 12:49+0200\n"
"PO-Revision-Date: 2021-09-30 02:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsharedoptionen/ast/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542196273.000000\n"
#. PzSYs
@@ -12256,14 +12256,14 @@ msgctxt ""
msgid "Print"
msgstr "Imprentar"
-#. dpEFJ
+#. KfecA
#: 01070400.xhp
msgctxt ""
"01070400.xhp\n"
"bm_id3155450\n"
"help.text"
-msgid "<bookmark_value>printing; drawings defaults</bookmark_value><bookmark_value>drawings; printing defaults</bookmark_value><bookmark_value>pages;printing page names in presentations</bookmark_value><bookmark_value>printing; dates in presentations</bookmark_value><bookmark_value>dates; printing in presentations</bookmark_value><bookmark_value>times; inserting when printing presentations</bookmark_value><bookmark_value>printing; hidden pages of presentations</bookmark_value><bookmark_value>hidden pages; printing in presentations</bookmark_value><bookmark_value>printing; without scaling in presentations</bookmark_value><bookmark_value>scaling; when printing presentations</bookmark_value><bookmark_value>printing; fitting to pages in presentations</bookmark_value><bookmark_value>fitting to pages; print settings in presentations</bookmark_value><bookmark_value>printing; tiling pages in presentations</bookmark_value>"
-msgstr "<bookmark_value>imprentar;configuración predeterminada pa dibuxos</bookmark_value><bookmark_value>dibuxos;imprentar configuración predeterminada</bookmark_value><bookmark_value>impresión de nomes de páxina en presentaciones</bookmark_value><bookmark_value>imprentar;feches en presentaciones</bookmark_value><bookmark_value>fecha;imprentar en presentaciones</bookmark_value><bookmark_value>hora;inxertar al imprentar presentaciones</bookmark_value><bookmark_value>imprentar;páxines ocultes de presentaciones</bookmark_value><bookmark_value>páxines ocultes;imprentar en presentaciones</bookmark_value><bookmark_value>imprentar;ensin escalar en presentaciones</bookmark_value><bookmark_value>escalar;al imprentar presentaciones</bookmark_value><bookmark_value>imprentar;axustar a páxines en presentaciones</bookmark_value><bookmark_value>axustar a páxines;imprentar configuración en presentaciones</bookmark_value><bookmark_value>imprentar;páxines como mosaicos en presentaciones</bookmark_value>"
+msgid "<bookmark_value>printing; drawings defaults</bookmark_value> <bookmark_value>drawings; printing defaults</bookmark_value> <bookmark_value>pages;printing page names in presentations</bookmark_value> <bookmark_value>printing; dates in presentations</bookmark_value> <bookmark_value>dates; printing in presentations</bookmark_value> <bookmark_value>times; inserting when printing presentations</bookmark_value> <bookmark_value>printing; hidden pages of presentations</bookmark_value> <bookmark_value>hidden pages; printing in presentations</bookmark_value> <bookmark_value>printing; without scaling in presentations</bookmark_value> <bookmark_value>scaling; when printing presentations</bookmark_value> <bookmark_value>printing; fitting to pages in presentations</bookmark_value> <bookmark_value>fitting to pages; print settings in presentations</bookmark_value> <bookmark_value>printing; tiling pages in presentations</bookmark_value>"
+msgstr ""
#. iFJBG
#: 01070400.xhp
@@ -12382,14 +12382,14 @@ msgctxt ""
msgid "Quality"
msgstr "Calidá d'impresión"
-#. vYV69
+#. 8fAoE
#: 01070400.xhp
msgctxt ""
"01070400.xhp\n"
"par_id3147229\n"
"help.text"
-msgid "See also <embedvar href=\"text/shared/guide/print_blackwhite.xhp#print_blackwhite\"/>."
-msgstr "Consulte tamién <embedvar href=\"text/shared/guide/print_blackwhite.xhp#print_blackwhite\"/>."
+msgid "See also <link href=\"text/shared/guide/print_blackwhite.xhp\" name=\"print_blackwhite_link\">Printing in Black and White</link>."
+msgstr ""
#. KK8qW
#: 01070400.xhp
@@ -15460,13 +15460,13 @@ msgctxt ""
msgid "Detailed Calculation"
msgstr ""
-#. n3FEk
+#. ELsuG
#: detailedcalculation.xhp
msgctxt ""
"detailedcalculation.xhp\n"
"bm_id3146799\n"
"help.text"
-msgid "<bookmark_value>string;conversion to number settings</bookmark_value><bookmark_value>string conversion to number options</bookmark_value><bookmark_value>string;conversion to date settings</bookmark_value><bookmark_value>string conversion to date options</bookmark_value><bookmark_value>string;conversion to reference settings</bookmark_value><bookmark_value>string conversion to reference options</bookmark_value><bookmark_value>string;setting in spreadsheet formulas</bookmark_value><bookmark_value>cell reference syntax in strings;Excel R1C1</bookmark_value><bookmark_value>cell reference syntax in strings;Excel A1</bookmark_value><bookmark_value>cell reference syntax in strings;Calc A1</bookmark_value><bookmark_value>Excel R1C1;cell reference syntax in strings</bookmark_value><bookmark_value>Excel A1;cell reference syntax in strings</bookmark_value><bookmark_value>Calc A1;cell reference syntax in strings</bookmark_value>"
+msgid "<bookmark_value>string;conversion to number settings</bookmark_value> <bookmark_value>string conversion to number options</bookmark_value> <bookmark_value>string;conversion to date settings</bookmark_value> <bookmark_value>string conversion to date options</bookmark_value> <bookmark_value>string;conversion to reference settings</bookmark_value> <bookmark_value>string conversion to reference options</bookmark_value> <bookmark_value>string;setting in spreadsheet formulas</bookmark_value> <bookmark_value>cell reference syntax in strings;Excel R1C1</bookmark_value> <bookmark_value>cell reference syntax in strings;Excel A1</bookmark_value> <bookmark_value>cell reference syntax in strings;Calc A1</bookmark_value> <bookmark_value>Excel R1C1;cell reference syntax in strings</bookmark_value> <bookmark_value>Excel A1;cell reference syntax in strings</bookmark_value> <bookmark_value>Calc A1;cell reference syntax in strings</bookmark_value>"
msgstr ""
#. jZZNb
@@ -15541,13 +15541,13 @@ msgctxt ""
msgid "<emph>Treat as zero:</emph> Any text found where numeric data is expected will be considered as a number of value zero. Example: <item type=\"input\">\"123.45\"</item> will map to zero, while <item type=\"input\">123.45</item> not."
msgstr ""
-#. XLNWu
+#. 8VbMZ
#: detailedcalculation.xhp
msgctxt ""
"detailedcalculation.xhp\n"
"par_id3067110\n"
"help.text"
-msgid "<emph>Convert only if unambiguous:</emph> If the text represents a valid and unambiguous numeric value, convert it. Example: <item type=\"input\">\"123.456\"</item> will generate a #VALUE! error because the text contains a separator, while <item type=\"input\">\"123456\"</item> will not.<br/>See <embedvar href=\"text/scalc/guide/numbers_text.xhp#numbers_text\" markup=\"ignore\"/> for details."
+msgid "<emph>Convert only if unambiguous:</emph> If the text represents a valid and unambiguous numeric value, convert it. Example: <item type=\"input\">\"123.456\"</item> will generate a #VALUE! error because the text contains a separator, while <item type=\"input\">\"123456\"</item> will not.<br/>See <link href=\"text/scalc/guide/numbers_text.xhp\" name=\"numbers_text_link\">Converting Text to Numbers</link> for details."
msgstr ""
#. Eo47W
diff --git a/source/ast/helpcontent2/source/text/simpress/00.po b/source/ast/helpcontent2/source/text/simpress/00.po
index 6d82954fac3..e2a358999bd 100644
--- a/source/ast/helpcontent2/source/text/simpress/00.po
+++ b/source/ast/helpcontent2/source/text/simpress/00.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-20 13:03+0200\n"
-"PO-Revision-Date: 2020-08-15 14:35+0000\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
+"PO-Revision-Date: 2021-10-24 01:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
-"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpress00/ast/>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsimpress00/ast/>\n"
"Language: ast\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.8.1\n"
"X-POOTLE-MTIME: 1523977283.000000\n"
#. sqmGT
@@ -140,7 +140,7 @@ msgctxt ""
"par_id3153013\n"
"help.text"
msgid "Arrange"
-msgstr "Disposición"
+msgstr "Allugar"
#. X5cDM
#: 00000401.xhp
@@ -1438,6 +1438,15 @@ msgctxt ""
msgid "<variable id=\"seitenvorlage\">Choose <menuitem>Slide - Change Slide Master</menuitem> </variable>"
msgstr ""
+#. E75uy
+#: slide_menu.xhp
+msgctxt ""
+"slide_menu.xhp\n"
+"par_id911634055593609\n"
+"help.text"
+msgid "<variable id=\"loadslidedesign\">Choose <menuitem>Slide - Change Slide Master - Load</menuitem></variable>"
+msgstr ""
+
#. Whnor
#: slide_menu.xhp
msgctxt ""
@@ -1456,13 +1465,13 @@ msgctxt ""
msgid "On the <emph>Presentation</emph> bar, click"
msgstr "Na barra <emph>Presentación</emph>, faiga clic en"
-#. FMkRy
+#. gBMvH
#: slide_menu.xhp
msgctxt ""
"slide_menu.xhp\n"
"par_id3685251\n"
"help.text"
-msgid "<image id=\"img_id3183073\" src=\"cmd/sc_insertpage.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3183073\">Icon</alt></image>"
+msgid "<image id=\"img_id3183073\" src=\"cmd/sc_insertpage.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3183073\">Icon New slide</alt></image>"
msgstr ""
#. brVDD
diff --git a/source/ast/helpcontent2/source/text/simpress/01.po b/source/ast/helpcontent2/source/text/simpress/01.po
index 5246981bc51..ff2a664bb47 100644
--- a/source/ast/helpcontent2/source/text/simpress/01.po
+++ b/source/ast/helpcontent2/source/text/simpress/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-10 23:11+0200\n"
-"PO-Revision-Date: 2021-04-28 12:22+0000\n"
+"POT-Creation-Date: 2021-10-25 12:49+0200\n"
+"PO-Revision-Date: 2021-10-24 01:36+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"
"Language: ast\n"
@@ -3895,6 +3895,24 @@ msgctxt ""
msgid "Change Slide Master"
msgstr ""
+#. bBY5z
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"hd_id3164253\n"
+"help.text"
+msgid "<link href=\"text/simpress/01/05120000.xhp\" name=\"Change Slide Master\">Master Page</link>"
+msgstr ""
+
+#. Pz8J7
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"par_id3108485\n"
+"help.text"
+msgid "<variable id=\"masterpagetext\"><ahelp hid=\".uno:PresentationLayout\">Displays the <emph>Available Master Slides</emph> dialog, where you can select a layout scheme for the current page. Any objects in the page design are inserted behind objects in the current page.</ahelp></variable>"
+msgstr ""
+
#. Jg7LJ
#: 05120000.xhp
msgctxt ""
@@ -3976,114 +3994,24 @@ msgctxt ""
msgid "Load"
msgstr "Cargar"
-#. PJUGm
+#. wvNGM
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
-"par_id3156020\n"
-"help.text"
-msgid "<ahelp hid=\"modules/simpress/ui/slidedesigndialog/load\">Displays the <link href=\"text/simpress/01/05120100.xhp\" name=\"Load Master Slide\"><emph>Load Master Slide</emph></link> dialog, where you can select additional slide designs.</ahelp>"
-msgstr ""
-
-#. sQnAB
-#: 05120100.xhp
-msgctxt ""
-"05120100.xhp\n"
-"tit\n"
+"par_id3956020\n"
"help.text"
-msgid "Load Master Slide"
+msgid "<ahelp hid=\"modules/simpress/ui/slidedesigndialog/load\">Displays the <link href=\"text/swriter/01/05170000.xhp\" name=\"Load Master Slide\"><emph>Load Master Page</emph></link> dialog, where you can select additional page designs.</ahelp>"
msgstr ""
-#. cVSPz
-#: 05120100.xhp
-msgctxt ""
-"05120100.xhp\n"
-"hd_id3153728\n"
-"help.text"
-msgid "Load Master Slide"
-msgstr ""
-
-#. DB49E
-#: 05120100.xhp
-msgctxt ""
-"05120100.xhp\n"
-"par_id3150717\n"
-"help.text"
-msgid "Load additional slide designs for your presentation."
-msgstr "Cargue estilos de diapositiva adicionales pa la presentación."
-
-#. fs4kq
-#: 05120100.xhp
-msgctxt ""
-"05120100.xhp\n"
-"par_id3154016\n"
-"help.text"
-msgid "Select a design category, and then a template you want to apply."
-msgstr "Escueya una categoría d'estilu y la plantía que deseya aplicar."
-
-#. Mfa22
-#: 05120100.xhp
-msgctxt ""
-"05120100.xhp\n"
-"hd_id3150327\n"
-"help.text"
-msgid "Categories"
-msgstr "Categoríes"
-
-#. Qjzs5
-#: 05120100.xhp
-msgctxt ""
-"05120100.xhp\n"
-"par_id3147338\n"
-"help.text"
-msgid "<ahelp hid=\"sfx/ui/loadtemplatedialog/categories\">Displays the available slide design categories.</ahelp>"
-msgstr "<ahelp hid=\"sfx/ui/loadtemplatedialog/categories\">Amuesa les categoríes d'estilu de diapositiva disponibles.</ahelp>"
-
-#. SFJp7
-#: 05120100.xhp
-msgctxt ""
-"05120100.xhp\n"
-"hd_id3155962\n"
-"help.text"
-msgid "Templates"
-msgstr "Plantíes"
-
-#. AgvvA
-#: 05120100.xhp
-msgctxt ""
-"05120100.xhp\n"
-"par_id3155337\n"
-"help.text"
-msgid "<ahelp hid=\"sfx/ui/loadtemplatedialog/templates\">Displays the templates for the selected design category.</ahelp>"
-msgstr "<ahelp hid=\"sfx/ui/loadtemplatedialog/templates\">Amuesa les plantíes de la categoría d'estilos escoyida.</ahelp>"
-
-#. SL4AQ
-#: 05120100.xhp
-msgctxt ""
-"05120100.xhp\n"
-"hd_id3145791\n"
-"help.text"
-msgid "More>>"
-msgstr "Más >>"
-
-#. 3B6Mz
-#: 05120100.xhp
+#. LZr7A
+#: 05120000.xhp
msgctxt ""
-"05120100.xhp\n"
-"par_id3150344\n"
+"05120000.xhp\n"
+"par_id3156020\n"
"help.text"
-msgid "<ahelp hid=\"sfx/ui/loadtemplatedialog/expander\">Shows or hides a preview of a selected template.</ahelp>"
+msgid "<ahelp hid=\"modules/simpress/ui/slidedesigndialog/load\">Displays the <link href=\"text/swriter/01/05170000.xhp\" name=\"Load Master Slide\"><emph>Load Master Slide</emph></link> dialog, where you can select additional slide designs.</ahelp>"
msgstr ""
-#. PEjDN
-#: 05120100.xhp
-msgctxt ""
-"05120100.xhp\n"
-"par_id3159206\n"
-"help.text"
-msgid "Some templates may not contain visible text objects or drawing objects."
-msgstr "Ye posible que delles plantíes nun contengan oxetos de testu o gráficos visibles."
-
#. BLSEy
#: 05120500m.xhp
msgctxt ""
@@ -4541,7 +4469,7 @@ msgctxt ""
"par_id3149209\n"
"help.text"
msgid "<variable id=\"verbindertext\"><ahelp hid=\".\">Sets the properties of a connector.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"verbindertext\"><ahelp hid=\".\">Define les propiedaes d'un coneutor.</ahelp></variable>"
#. G9rWD
#: 05170000.xhp
@@ -4633,14 +4561,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/connectortabpage/MTR_FLD_LINE_3\">Enter a skew value for Line 3.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/connectortabpage/MTR_FLD_LINE_3\" visibility=\"visible\">Introduza un valor de desplazamientu pa la llinia 3.</ahelp>"
-#. 4z7yG
+#. 4DA83
#: 05170000.xhp
msgctxt ""
"05170000.xhp\n"
-"hd_id3145581\n"
+"hd_id291634825392062\n"
"help.text"
msgid "Line spacing"
-msgstr "Distancia ente llinies"
+msgstr ""
#. t5Pe9
#: 05170000.xhp
@@ -4732,14 +4660,14 @@ msgctxt ""
msgid "Reset line skew"
msgstr "Restablecer percorríu de llinia"
-#. WE2nx
+#. Y3yHa
#: 05170000.xhp
msgctxt ""
"05170000.xhp\n"
"par_id3159205\n"
"help.text"
-msgid "<ahelp hid=\".uno:NewRouting\">Resets the line skew values to the default.</ahelp><embedvar href=\"text/shared/00/00000001.xhp#kontext\"/>"
-msgstr "<ahelp hid=\".uno:NewRouting\" visibility=\"visible\">Restablez el desplazamientu de les llinies al valor predetermináu.</ahelp><embedvar href=\"text/shared/00/00000001.xhp#kontext\"/>"
+msgid "<ahelp hid=\".uno:NewRouting\">Resets the line skew values to the default.</ahelp> (This command is only accessible through the <link href=\"text/shared/00/00000005.xhp#contextmenu\" name=\"context menu\">context menu</link>)."
+msgstr ""
#. JLBKm
#: 05250000.xhp
@@ -4748,7 +4676,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Arrange"
-msgstr "Entamar"
+msgstr "Allugar"
#. twk4k
#: 05250000.xhp
@@ -4757,7 +4685,7 @@ msgctxt ""
"hd_id3155444\n"
"help.text"
msgid "<link href=\"text/simpress/01/05250000.xhp\" name=\"Arrange\">Arrange</link>"
-msgstr "<link href=\"text/simpress/01/05250000.xhp\" name=\"Disposición\">Disposición</link>"
+msgstr "<link href=\"text/simpress/01/05250000.xhp\" name=\"Arrange\">Allugar</link>"
#. 9PKiZ
#: 05250000.xhp
@@ -7036,41 +6964,50 @@ msgctxt ""
msgid "Custom Slide Shows"
msgstr "Presentaciones personalizaes"
-#. fdjRS
+#. 9BTtN
#: 06100000.xhp
msgctxt ""
"06100000.xhp\n"
"hd_id3154659\n"
"help.text"
-msgid "Custom Slide Shows"
-msgstr "Presentaciones personalizaes"
+msgid "<variable id=\"CustomShow_h1\"><link href=\"text/simpress/01/06100000.xhp\" name=\"CustomShow_link\">Custom Slide Shows</link></variable>"
+msgstr ""
-#. CipVc
+#. EB558
#: 06100000.xhp
msgctxt ""
"06100000.xhp\n"
"par_id3149207\n"
"help.text"
-msgid "<variable id=\"indipraesent\"><ahelp hid=\".uno:CustomShowDialog\">Defines a custom slide show using slides within the current presentation. You can then pick slides to meet the needs of your audience. You can create as many custom slide shows as you want.</ahelp></variable>"
-msgstr "<variable id=\"indipraesent\"><ahelp hid=\".uno:CustomShowDialog\">Define una presentación personalizada usando diapositives dientro de la presentación actual. Pue escoyer diapositives que satisfaigan les necesidaes de l'audiencia. Pue crear tantes presentaciones personalizaes como deseye.</ahelp></variable>"
+msgid "<variable id=\"indipraesent\"><ahelp hid=\".uno:CustomShowDialog\">Defines a custom slide show using slides within the current presentation. You can then pick slides to meet the needs of your audience. You can create as many custom slide shows as you want.</ahelp> </variable>"
+msgstr ""
+
+#. YgWfS
+#: 06100000.xhp
+msgctxt ""
+"06100000.xhp\n"
+"par_id641634164174393\n"
+"help.text"
+msgid "Read the help page <link href=\"text/simpress/guide/individual.xhp#individual\">Creating a Custom Slide Show</link> to learn more about how to set up your own custom slide shows."
+msgstr ""
-#. j9xFw
+#. JyjJt
#: 06100000.xhp
msgctxt ""
"06100000.xhp\n"
"hd_id3155530\n"
"help.text"
-msgid "Name of the presentation(s)"
-msgstr "Nome de la(s) presentación(ye)"
+msgid "List of custom slide shows"
+msgstr ""
-#. TEnog
+#. 9WeMN
#: 06100000.xhp
msgctxt ""
"06100000.xhp\n"
"par_id3156449\n"
"help.text"
-msgid "<ahelp hid=\"modules/simpress/ui/customslideshows/customshowlist\">Lists the custom slide shows that are available.</ahelp>"
-msgstr "<ahelp hid=\"modules/simpress/ui/customslideshows/customshowlist\" >Llista les presentaciones personalizaes que tán disponibles .</ahelp>"
+msgid "<ahelp hid=\"modules/simpress/ui/customslideshows/customshowlist\">Lists the custom slide shows that are available in the document.</ahelp>"
+msgstr ""
#. T3UBF
#: 06100000.xhp
@@ -7081,24 +7018,6 @@ msgctxt ""
msgid "To create a custom slide show, click <emph>New</emph>."
msgstr "Si deseya crear una presentación personalizada, faiga clic en <emph>Nueva</emph>."
-#. BbVpd
-#: 06100000.xhp
-msgctxt ""
-"06100000.xhp\n"
-"hd_id3152899\n"
-"help.text"
-msgid "Use Custom Slide Show"
-msgstr "Utilizar presentación personalizada"
-
-#. aajoE
-#: 06100000.xhp
-msgctxt ""
-"06100000.xhp\n"
-"par_id3149947\n"
-"help.text"
-msgid "<ahelp hid=\"modules/simpress/ui/customslideshows/usecustomshows\">Runs the custom slide show you selected when you click <emph>Start</emph>. Otherwise, the entire presentation is shown.</ahelp>"
-msgstr "<ahelp hid=\"modules/simpress/ui/customslideshows/usecustomshows\">Executa la presentación personalizada qu'escoyó al calcar en <emph>Entamu</emph>. De lo contrario, amuésase la presentación completa.</ahelp>"
-
#. tmqBb
#: 06100000.xhp
msgctxt ""
@@ -7108,14 +7027,14 @@ msgctxt ""
msgid "To run a custom slide show:"
msgstr "Si creó siquier una presentación personalizada, escuéyala col mur nel llistáu y dea na so execución."
-#. 5B6tC
+#. KDQG6
#: 06100000.xhp
msgctxt ""
"06100000.xhp\n"
"par_id3153250\n"
"help.text"
-msgid "Click the show in the list and then select <emph>Use Custom Slide Show</emph>."
-msgstr "Faiga clic na presentación y escueya <emph>Utilizar presentación personalizada</emph>."
+msgid "Select a custom slide show from the list."
+msgstr ""
#. yFmBx
#: 06100000.xhp
@@ -7180,14 +7099,14 @@ msgctxt ""
msgid "Start"
msgstr "Entamu"
-#. VEuA7
+#. EKdWF
#: 06100000.xhp
msgctxt ""
"06100000.xhp\n"
"par_id3157907\n"
"help.text"
-msgid "<ahelp hid=\"modules/simpress/ui/customslideshows/startshow\">Runs the slide show. Ensure that <emph>Use Custom Slide Show</emph> is selected if you want to run a custom presentation.</ahelp>"
-msgstr "<ahelp hid=\"modules/simpress/ui/customslideshows/startshow\">Correr la presentación. Escueya <emph>Utilizar presentación personalizada</emph> si deseya executar una presentación personalizada.</ahelp>"
+msgid "<ahelp hid=\"modules/simpress/ui/customslideshows/startshow\">Runs the selected custom slide show.</ahelp>"
+msgstr ""
#. u5kLV
#: 06100100.xhp
diff --git a/source/ast/helpcontent2/source/text/simpress/guide.po b/source/ast/helpcontent2/source/text/simpress/guide.po
index 67f038a52d4..95b84e1adfd 100644
--- a/source/ast/helpcontent2/source/text/simpress/guide.po
+++ b/source/ast/helpcontent2/source/text/simpress/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-04 19:51+0200\n"
+"POT-Creation-Date: 2021-10-25 12:49+0200\n"
"PO-Revision-Date: 2020-10-14 20:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpressguide/ast/>\n"
@@ -5578,14 +5578,14 @@ msgctxt ""
msgid "Showing a Slide Show"
msgstr "Amosando una presentación"
-#. uZqFT
+#. TxTxS
#: show.xhp
msgctxt ""
"show.xhp\n"
"bm_id5592516\n"
"help.text"
-msgid "<bookmark_value>running slide shows</bookmark_value><bookmark_value>showing;slide shows</bookmark_value><bookmark_value>slide shows; starting</bookmark_value><bookmark_value>presentations; starting</bookmark_value><bookmark_value>starting; slide shows</bookmark_value><bookmark_value>automatic slide shows</bookmark_value><bookmark_value>slide transitions;automatic</bookmark_value><bookmark_value>automatic slide transition</bookmark_value>"
-msgstr "<bookmark_value>executar presentaciones</bookmark_value><bookmark_value>amosar;presentaciones</bookmark_value><bookmark_value>presentaciones de diapositives;empecipiar</bookmark_value><bookmark_value>presentaciones;empecipiar</bookmark_value><bookmark_value>empecipiar;presentaciones</bookmark_value><bookmark_value>presentaciones automátiques</bookmark_value><bookmark_value>transiciones de diapositiva;automátiques</bookmark_value><bookmark_value>transiciones de diapositiva;automátiques</bookmark_value>"
+msgid "<bookmark_value>running slide shows</bookmark_value> <bookmark_value>showing;slide shows</bookmark_value> <bookmark_value>slide shows; starting</bookmark_value> <bookmark_value>presentations; starting</bookmark_value> <bookmark_value>starting; slide shows</bookmark_value> <bookmark_value>automatic slide shows</bookmark_value> <bookmark_value>slide transitions;automatic</bookmark_value> <bookmark_value>automatic slide transition</bookmark_value>"
+msgstr ""
#. ZwZRH
#: show.xhp
@@ -5632,15 +5632,6 @@ msgctxt ""
msgid "Choose <emph>Slide Show - Slide Show</emph> to run the show."
msgstr "Prima <emph>Presentación - Presentación</emph> pa empecipiar la presentación."
-#. B2HtF
-#: show.xhp
-msgctxt ""
-"show.xhp\n"
-"par_id4199957\n"
-"help.text"
-msgid "If you want all shows to start from the current slide instead of the first slide, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress - General</emph> and click <emph>Always with current page</emph>."
-msgstr "Si deseya que toles presentaciones empiecen a partir de la diapositiva actual en llugar de la primera, escueya <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencies</caseinline><defaultinline>Ferramientes - Opciones</defaultinline></switchinline> - %PRODUCTNAME Impress - Xeneral</emph> y faiga clic en <emph>Siempres cola páxina actual</emph>."
-
#. RzXBe
#: show.xhp
msgctxt ""
@@ -5650,14 +5641,14 @@ msgctxt ""
msgid "Click to advance to the next effect or to the next slide."
msgstr "Faiga clic p'avanzar al siguiente efeutu o a la siguiente diapositiva."
-#. BDk6i
+#. dP9Vm
#: show.xhp
msgctxt ""
"show.xhp\n"
-"par_id8702658\n"
+"par_id391634159318692\n"
"help.text"
-msgid "Press <item type=\"keycode\">Esc</item> to abort the show before the end."
-msgstr "Calque <item type=\"keycode\">Esc</item> pa detener la presentación primero que remate."
+msgid "Press <keycode>Esc</keycode> to abort the slide show before its end."
+msgstr ""
#. yF4a5
#: show.xhp
@@ -5695,23 +5686,23 @@ msgctxt ""
msgid "Open the <emph>Slide Transition</emph> sidebar deck."
msgstr ""
-#. vsNmF
+#. 9CjNM
#: show.xhp
msgctxt ""
"show.xhp\n"
"par_id9168980\n"
"help.text"
-msgid "In the <emph>Advance slide</emph> area, click <emph>Automatically after</emph>, and select a time duration."
-msgstr "Nel área de <emph>diapositives Avanzaes</emph>, faiga clic en <emph>automáticamente dempués</emph>, y escueya la duración del tiempu."
+msgid "In the <emph>Advance Slide</emph> area, click <emph>After</emph> and enter a time duration."
+msgstr ""
-#. u3a9a
+#. HfVRx
#: show.xhp
msgctxt ""
"show.xhp\n"
"par_id9766533\n"
"help.text"
-msgid "Click <emph>Apply to All Slides</emph>."
-msgstr "Calque <emph>Aplicar a toles diapositives</emph>."
+msgid "Click <emph>Apply Transition to All Slides</emph>."
+msgstr ""
#. yfpGu
#: show.xhp
@@ -5740,14 +5731,14 @@ msgctxt ""
msgid "Choose <emph>Slide Show - Slide Show Settings</emph>."
msgstr "Escueya <emph>Presentación - Configuración de la presentación</emph>."
-#. 5CqC5
+#. Nyapm
#: show.xhp
msgctxt ""
"show.xhp\n"
"par_id1336405\n"
"help.text"
-msgid "In the Type area, click <emph>Auto</emph> and select a pause time between shows."
-msgstr "Nel área d'escritura, faiga clic en <emph>Autu</emph> y escueya una posa determinada ente les presentaciones."
+msgid "In the <emph>Presentation Mode</emph> area, choose <emph>Loop and repeat after</emph> and set the duration of the pause between shows."
+msgstr ""
#. A4BCr
#: show.xhp
@@ -5767,15 +5758,6 @@ msgctxt ""
msgid "You can start %PRODUCTNAME from a command prompt, followed by the parameter <item type=\"literal\">-show</item> and an Impress filename. For example, to start the file <item type=\"literal\">filename.odp</item> from the command prompt, enter the following command:"
msgstr "Pue empecipiar %PRODUCTNAME dende la llinia de comandu, siguíu de los parámetros <item type=\"literal\">-show</item> y un nombe de ficheru de Impress. Por exemplu, pa empecipiar un ficheru <item type=\"literal\">filename.odp</item> dende la llinia de comandu, escriba'l siguiente comandu:"
-#. bfcES
-#: show.xhp
-msgctxt ""
-"show.xhp\n"
-"par_id1502121\n"
-"help.text"
-msgid "<item type=\"literal\">soffice -show filename.odp</item>"
-msgstr "<item type=\"literal\">soffice -show filename.odp</item>"
-
#. 7FZNV
#: show.xhp
msgctxt ""
diff --git a/source/ast/helpcontent2/source/text/swriter.po b/source/ast/helpcontent2/source/text/swriter.po
index 7744dbf4abc..339d184661b 100644
--- a/source/ast/helpcontent2/source/text/swriter.po
+++ b/source/ast/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-10 23:11+0200\n"
+"POT-Creation-Date: 2021-10-25 12:49+0200\n"
"PO-Revision-Date: 2021-09-22 18:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textswriter/ast/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1540152129.000000\n"
#. x2qZ6
@@ -2455,14 +2455,14 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/05060200.xhp\" name=\"Wrap Off\">Wrap Off</link>"
msgstr "<link href=\"text/swriter/01/05060200.xhp\" name=\"Desactivar Axuste\">Desactivar Axuste</link>"
-#. Vus62
+#. PJcEB
#: main0215.xhp
msgctxt ""
"main0215.xhp\n"
"par_id3147419\n"
"help.text"
-msgid "<embedvar href=\"text/swriter/01/05060200.xhp#keinumlauftext\"/>You can also choose this setting on the <emph>Wrap</emph> tab page."
-msgstr "<embedvar href=\"text/swriter/01/05060200.xhp#keinumlauftext\"/>Tamién pue definir esta configuración na ficha <emph>Axuste</emph>."
+msgid "You can also choose this setting on the <emph>Wrap</emph> tab page."
+msgstr ""
#. n8sCd
#: main0215.xhp
@@ -2473,14 +2473,14 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/05060200.xhp\" name=\"Wrap On\">Wrap On</link>"
msgstr "<link href=\"text/swriter/01/05060200.xhp\" name=\"Activar Axuste\">Activar Axuste</link>"
-#. cqLEM
+#. oCsKA
#: main0215.xhp
msgctxt ""
"main0215.xhp\n"
"par_id3153405\n"
"help.text"
-msgid "<embedvar href=\"text/swriter/01/05060200.xhp#seitenumlauftext\"/>This icon represents the <emph>Page Wrap</emph> option on the <emph>Wrap</emph> tab page."
-msgstr "<embedvar href=\"text/swriter/01/05060200.xhp#seitenumlauftext\"/>La función d'esti símbolu correspuende a la opción <emph>Axuste de páxina</emph> de la ficha <emph>Axuste</emph>."
+msgid "This icon represents the <emph>Page Wrap</emph> option on the <emph>Wrap</emph> tab page."
+msgstr ""
#. euDxv
#: main0215.xhp
@@ -2491,14 +2491,14 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/05060200.xhp\" name=\"Wrap Through\">Wrap Through</link>"
msgstr "<link href=\"text/swriter/01/05060200.xhp\" name=\"Axuste Continuu\">Axuste Continuu</link>"
-#. FMaCU
+#. 3UyQZ
#: main0215.xhp
msgctxt ""
"main0215.xhp\n"
"par_id3147799\n"
"help.text"
-msgid "<embedvar href=\"text/swriter/01/05060200.xhp#durchlauftext\"/>You can also define this setting on the <emph>Wrap</emph> tab page."
-msgstr "<embedvar href=\"text/swriter/01/05060200.xhp#durchlauftext\"/>Esta configuración tamién pue realizase al traviés de la ficha <emph>Axuste</emph>."
+msgid "You can also define this setting on the <emph>Wrap</emph> tab page."
+msgstr ""
#. UcRFJ
#: main0215.xhp
diff --git a/source/ast/helpcontent2/source/text/swriter/00.po b/source/ast/helpcontent2/source/text/swriter/00.po
index eff5e6241bf..6cdb73a7689 100644
--- a/source/ast/helpcontent2/source/text/swriter/00.po
+++ b/source/ast/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-04 19:51+0200\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
"PO-Revision-Date: 2020-08-04 11:16+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter00/ast/>\n"
@@ -2167,14 +2167,14 @@ msgctxt ""
msgid "On the <emph>Table</emph> bar, click"
msgstr ""
-#. JGqGG
+#. zy5vV
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3153996\n"
"help.text"
-msgid "<image id=\"img_id3154002\" src=\"cmd/sc_mergecells.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154002\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154002\" src=\"cmd/sc_mergecells.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154002\">Iconu</alt></image>"
+msgid "<image id=\"img_id3154002\" src=\"cmd/sc_mergecells.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154002\">Icon Merge Cells</alt></image>"
+msgstr ""
#. dpXBa
#: 00000405.xhp
@@ -2203,14 +2203,14 @@ msgctxt ""
msgid "On the <emph>Table</emph> bar, click"
msgstr ""
-#. 5TCpD
+#. 7E7fT
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3147270\n"
"help.text"
-msgid "<image id=\"img_id3147275\" src=\"cmd/sc_splitcell.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3147275\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147275\" src=\"cmd/sc_splitcell.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3147275\">Iconu</alt></image>"
+msgid "<image id=\"img_id3147275\" src=\"cmd/sc_splitcell.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147275\">Icon Unmerge Cells</alt></image>"
+msgstr ""
#. 7XaPo
#: 00000405.xhp
@@ -2284,14 +2284,14 @@ msgctxt ""
msgid "Open <emph>Optimize Size</emph> toolbar from <emph>Table</emph> bar, click"
msgstr ""
-#. 3UF7h
+#. cH2we
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3145222\n"
"help.text"
-msgid "<image id=\"img_id3145228\" src=\"cmd/sc_setoptimalrowheight.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145228\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145228\" src=\"cmd/sc_setoptimalrowheight.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145228\">Iconu</alt></image>"
+msgid "<image id=\"img_id3145228\" src=\"cmd/sc_setoptimalrowheight.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145228\">Icon Optimal Row Height</alt></image>"
+msgstr ""
#. fRVE5
#: 00000405.xhp
@@ -2320,14 +2320,14 @@ msgctxt ""
msgid "Open <emph>Optimize Size</emph> toolbar from <emph>Table</emph> bar, click"
msgstr ""
-#. PVPb8
+#. S6W6h
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3145297\n"
"help.text"
-msgid "<image id=\"img_id3155994\" src=\"cmd/sc_distributerows.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155994\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155994\" src=\"cmd/sc_distributerows.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155994\">Iconu</alt></image>"
+msgid "<image id=\"img_id3155994\" src=\"cmd/sc_distributerows.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155994\">Icon Distribute Rows Equally</alt></image>"
+msgstr ""
#. KuUhp
#: 00000405.xhp
@@ -2365,14 +2365,14 @@ msgctxt ""
msgid "On <emph>Table</emph> bar, click"
msgstr ""
-#. Na4rx
+#. UrDQE
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3147555\n"
"help.text"
-msgid "<image id=\"img_id3150361\" src=\"cmd/sc_deleterows.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150361\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150361\" src=\"cmd/sc_deleterows.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150361\">Iconu</alt></image>"
+msgid "<image id=\"img_id3150361\" src=\"cmd/sc_deleterows.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150361\">Icon Delete Row</alt></image>"
+msgstr ""
#. EfTgN
#: 00000405.xhp
@@ -2419,14 +2419,14 @@ msgctxt ""
msgid "Open <emph>Optimize Size</emph> toolbar from <emph>Table</emph> bar, click"
msgstr ""
-#. i89K7
+#. WzXMG
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3157881\n"
"help.text"
-msgid "<image id=\"img_id3157888\" src=\"cmd/sc_setoptimalcolumnwidthdirect.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3157888\">Icon</alt></image>"
-msgstr "<image id=\"img_id3157888\" src=\"cmd/sc_setoptimalcolumnwidthdirect.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3157888\">Iconu</alt></image>"
+msgid "<image id=\"img_id3157888\" src=\"cmd/sc_setoptimalcolumnwidthdirect.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3157888\">Icon Optimal Column Width</alt></image>"
+msgstr ""
#. iRYb5
#: 00000405.xhp
@@ -2455,14 +2455,14 @@ msgctxt ""
msgid "Open <emph>Optimize Size</emph> toolbar from <emph>Table</emph> bar, click"
msgstr ""
-#. V4Cqu
+#. EPNPB
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3145179\n"
"help.text"
-msgid "<image id=\"img_id3145186\" src=\"cmd/sc_distributecolumns.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145186\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145186\" src=\"cmd/sc_distributecolumns.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145186\">Iconu</alt></image>"
+msgid "<image id=\"img_id3145186\" src=\"cmd/sc_distributecolumns.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145186\">Icon Space Column Equally</alt></image>"
+msgstr ""
#. njBSt
#: 00000405.xhp
@@ -2509,14 +2509,14 @@ msgctxt ""
msgid "On <emph>Table</emph> bar, click"
msgstr ""
-#. e5L4N
+#. tY9nN
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3150279\n"
"help.text"
-msgid "<image id=\"img_id3150286\" src=\"cmd/sc_insertcolumns.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150286\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150286\" src=\"cmd/sc_insertcolumns.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150286\">Iconu</alt></image>"
+msgid "<image id=\"img_id3150286\" src=\"cmd/sc_insertcolumns.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150286\">Icon Insert Column</alt></image>"
+msgstr ""
#. jeDiz
#: 00000405.xhp
@@ -2527,14 +2527,14 @@ msgctxt ""
msgid "Insert Column"
msgstr "Inxertar columna"
-#. yvgkg
+#. oB4az
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3150895\n"
"help.text"
-msgid "<image id=\"img_id3150902\" src=\"cmd/sc_insertrows.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150902\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150902\" src=\"cmd/sc_insertrows.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150902\">Iconu</alt></image>"
+msgid "<image id=\"img_id3150902\" src=\"cmd/sc_insertrows.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150902\">Icon Insert Row</alt></image>"
+msgstr ""
#. MFvHr
#: 00000405.xhp
@@ -2563,14 +2563,14 @@ msgctxt ""
msgid "On <emph>Table</emph> bar, click"
msgstr ""
-#. XqFzq
+#. dedvZ
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3153600\n"
"help.text"
-msgid "<image id=\"img_id3153607\" src=\"cmd/sc_deletecolumns.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153607\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153607\" src=\"cmd/sc_deletecolumns.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153607\">Iconu</alt></image>"
+msgid "<image id=\"img_id3153607\" src=\"cmd/sc_deletecolumns.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153607\">Icon Delete Column</alt></image>"
+msgstr ""
#. ro8Mr
#: 00000405.xhp
@@ -2590,13 +2590,13 @@ msgctxt ""
msgid "Choose <emph>Format - Frame and Object - Properties</emph>."
msgstr ""
-#. nsMFC
+#. TR376
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3151276\n"
"help.text"
-msgid "<image id=\"img_id3151283\" src=\"cmd/sc_framedialog.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151283\"> Icon Object Properties</alt></image>"
+msgid "<image id=\"img_id3151283\" src=\"cmd/sc_framedialog.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151283\">Icon Object Properties</alt></image>"
msgstr ""
#. vpeBB
@@ -2608,14 +2608,14 @@ msgctxt ""
msgid "Object Properties"
msgstr "Propiedaes del oxetu"
-#. LVQCy
+#. x5EDg
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3152973\n"
"help.text"
-msgid "<image id=\"img_id3152980\" src=\"cmd/sc_framedialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152980\">Icon</alt></image>"
-msgstr "<image id=\"img_id3152980\" src=\"cmd/sc_framedialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152980\">Iconu</alt></image>"
+msgid "<image id=\"img_id3152980\" src=\"cmd/sc_framedialog.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152980\">Icon Frame Properties</alt></image>"
+msgstr ""
#. CZwgM
#: 00000405.xhp
diff --git a/source/ast/helpcontent2/source/text/swriter/01.po b/source/ast/helpcontent2/source/text/swriter/01.po
index aaae477f6b0..7500e24f349 100644
--- a/source/ast/helpcontent2/source/text/swriter/01.po
+++ b/source/ast/helpcontent2/source/text/swriter/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-27 19:09+0200\n"
-"PO-Revision-Date: 2021-09-15 15:36+0000\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
+"PO-Revision-Date: 2021-10-24 01:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.8.1\n"
"X-POOTLE-MTIME: 1540152130.000000\n"
#. sZfWF
@@ -338,7 +338,7 @@ msgctxt ""
"hd_id3150108\n"
"help.text"
msgid "Field"
-msgstr ""
+msgstr "Campu"
#. FYNbp
#: 01150000.xhp
@@ -4462,14 +4462,14 @@ msgctxt ""
msgid "Insert Manual Break"
msgstr "Inxertar un saltu manual"
-#. DADdL
+#. FuBqy
#: 04010000.xhp
msgctxt ""
"04010000.xhp\n"
"hd_id3145827\n"
"help.text"
-msgid "Insert Manual Break"
-msgstr "Inxertar un saltu manual"
+msgid "<variable id=\"ManualBreak_h1\"><link href=\"text/swriter/01/04010000.xhp\" name=\"04010000_link\">Insert Manual Break</link></variable>"
+msgstr ""
#. BMEC5
#: 04010000.xhp
@@ -4597,6 +4597,15 @@ msgctxt ""
msgid "Select the page style for the page that follows the manual page break."
msgstr ""
+#. VGFcT
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id71633464502255\n"
+"help.text"
+msgid "To switch between landscape and portrait orientation, choose the <emph>Default Page Style</emph> to apply portrait orientation or the <emph>Landscape</emph> style to apply landscape orientation."
+msgstr ""
+
#. iEpne
#: 04010000.xhp
msgctxt ""
@@ -13991,7 +14000,7 @@ msgctxt ""
"par_id3153668\n"
"help.text"
msgid "Click the <emph>File</emph> button, and then choose <emph>New</emph> or <emph>Edit</emph>."
-msgstr "Calque'l botón <emph>Ficheru</emph> y, de siguío, escueya <emph>Nuevu</emph> o <emph>Editar</emph>."
+msgstr "Calca'l botón <emph>Ficheru</emph> y, de siguío, escueyi <emph>Nuevu</emph> o <emph>Editar</emph>."
#. g9voW
#: 04120250.xhp
@@ -14018,7 +14027,7 @@ msgctxt ""
"par_id461599005949276\n"
"help.text"
msgid "Meaning"
-msgstr ""
+msgstr "Significáu"
#. e7Npc
#: 04120250.xhp
@@ -24055,13 +24064,31 @@ msgctxt ""
msgid "Load Styles"
msgstr "Cargar estilos"
-#. BFL9X
+#. NvMrU
#: 05170000.xhp
msgctxt ""
"05170000.xhp\n"
"hd_id3151242\n"
"help.text"
-msgid "<variable id=\"load_styles_header\"><link href=\"text/swriter/01/05170000.xhp\" name=\"Load Styles\">Load Styles</link></variable>"
+msgid "<switchinline select=\"appl\"> <caseinline select=\"IMPRESS\">Load Master Slide</caseinline> <caseinline select=\"DRAW\">Load Master Page</caseinline> <defaultinline><variable id=\"load_styles_header\"><link href=\"text/swriter/01/05170000.xhp\" name=\"Load Styles\">Load Styles</link></variable></defaultinline> </switchinline>"
+msgstr ""
+
+#. 27Nd8
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"par_id3150717\n"
+"help.text"
+msgid "Load additional slide designs for your presentation."
+msgstr ""
+
+#. 7mftZ
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"par_id2150717\n"
+"help.text"
+msgid "Load additional page designs for your drawing."
msgstr ""
#. FBAJG
@@ -24073,6 +24100,132 @@ msgctxt ""
msgid "<variable id=\"styles_text\"><ahelp hid=\".\">Imports formatting styles from another document or template into the current document.</ahelp></variable>"
msgstr ""
+#. UR6NA
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"hd_id3150327\n"
+"help.text"
+msgid "Categories"
+msgstr ""
+
+#. hfCSA
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"par_id3147338\n"
+"help.text"
+msgid "<ahelp hid=\"sfx/ui/loadtemplatedialog/categories\">Displays the available slide design categories.</ahelp>"
+msgstr ""
+
+#. WGb32
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"hd_id3155962\n"
+"help.text"
+msgid "Templates"
+msgstr ""
+
+#. MVgRk
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"par_id3155337\n"
+"help.text"
+msgid "<ahelp hid=\"sfx/ui/loadtemplatedialog/templates\">Displays the templates for the selected design category.</ahelp>"
+msgstr ""
+
+#. zu7wC
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"hd_id241634052550343\n"
+"help.text"
+msgid "Preview"
+msgstr ""
+
+#. VD5pq
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"par_id3150344\n"
+"help.text"
+msgid "<ahelp hid=\"sfx/ui/loadtemplatedialog/expander\">Shows or hides a preview of a selected master slide.</ahelp>"
+msgstr ""
+
+#. M5edi
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"par_id9159206\n"
+"help.text"
+msgid "Some master slides may not contain visible text objects or drawing objects."
+msgstr ""
+
+#. bFUri
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"hd_id3150427\n"
+"help.text"
+msgid "Categories"
+msgstr ""
+
+#. BhDDL
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"par_id3157338\n"
+"help.text"
+msgid "<ahelp hid=\"sfx/ui/loadtemplatedialog/categories\">Displays the available page design categories.</ahelp>"
+msgstr ""
+
+#. wYRwi
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"hd_id3155952\n"
+"help.text"
+msgid "Templates"
+msgstr ""
+
+#. hjKgq
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"par_id3155837\n"
+"help.text"
+msgid "<ahelp hid=\"sfx/ui/loadtemplatedialog/templates\">Displays the pages designs for the selected design category.</ahelp>"
+msgstr ""
+
+#. FLsVG
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"hd_id241634052520343\n"
+"help.text"
+msgid "Preview"
+msgstr ""
+
+#. APNcz
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"par_id315054\n"
+"help.text"
+msgid "<ahelp hid=\"sfx/ui/loadtemplatedialog/expander\">Shows or hides a preview of a selected page design.</ahelp>"
+msgstr ""
+
+#. fYaPW
+#: 05170000.xhp
+msgctxt ""
+"05170000.xhp\n"
+"par_id3159206\n"
+"help.text"
+msgid "Some page designs may not contain visible text objects or drawing objects."
+msgstr ""
+
#. uooXD
#: 05170000.xhp
msgctxt ""
@@ -25331,7 +25484,7 @@ msgctxt ""
"par_id3149096\n"
"help.text"
msgid "Option"
-msgstr "<emph>Opción</emph>"
+msgstr "Opción"
#. im9AB
#: 06080100.xhp
diff --git a/source/ast/helpcontent2/source/text/swriter/02.po b/source/ast/helpcontent2/source/text/swriter/02.po
index 2ea974267d9..625c254fe9e 100644
--- a/source/ast/helpcontent2/source/text/swriter/02.po
+++ b/source/ast/helpcontent2/source/text/swriter/02.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
-"PO-Revision-Date: 2021-03-23 11:02+0000\n"
+"POT-Creation-Date: 2021-10-25 12:49+0200\n"
+"PO-Revision-Date: 2021-10-24 01:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textswriter02/ast/>\n"
"Language: ast\n"
@@ -862,13 +862,13 @@ msgctxt ""
msgid "To remove the numbering restart, apply the command again in the paragraph where the numbering was restarted."
msgstr ""
-#. 7h49d
+#. 4Y7KE
#: 06140000.xhp
msgctxt ""
"06140000.xhp\n"
"par_id261616371203225\n"
"help.text"
-msgid "To restart numbering with a number greater than 1, right-click in the paragraph where you want to restart numbering, choose <menuitem>Paragraph - Paragraph - </menuitem><embedvar href=\"text/swriter/01/05030800.xhp#outlinelisth1\"/> tab, select <menuitem>Restart numbering at this paragraph</menuitem> and enter the start number in <menuitem>Start with</menuitem>."
+msgid "To restart numbering with a number greater than 1, right-click in the paragraph where you want to restart numbering, choose <menuitem>Paragraph - Paragraph - </menuitem><link href=\"text/swriter/01/05030800.xhp\" name=\"Numbering_link\">Outline & List</link> tab, select <menuitem>Restart numbering at this paragraph</menuitem> and enter the start number in <menuitem>Start with</menuitem>."
msgstr ""
#. qCdhk
@@ -2336,7 +2336,7 @@ msgctxt ""
"hd_id3153200\n"
"help.text"
msgid "Functions"
-msgstr ""
+msgstr "Funciones"
#. gRWF7
#: 14020000.xhp
diff --git a/source/ast/helpcontent2/source/text/swriter/guide.po b/source/ast/helpcontent2/source/text/swriter/guide.po
index 0d0b631e133..228e44e5177 100644
--- a/source/ast/helpcontent2/source/text/swriter/guide.po
+++ b/source/ast/helpcontent2/source/text/swriter/guide.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-27 19:09+0200\n"
-"PO-Revision-Date: 2021-10-03 18:36+0000\n"
+"POT-Creation-Date: 2021-10-25 12:49+0200\n"
+"PO-Revision-Date: 2021-10-24 01:36+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: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542028604.000000\n"
#. XAt2Y
@@ -43,14 +43,41 @@ msgctxt ""
msgid "<variable id=\"anchor_object\"><link href=\"text/swriter/guide/anchor_object.xhp\" name=\"Positioning Objects\">Positioning Objects</link></variable>"
msgstr "<variable id=\"anchor_object\"><link href=\"text/swriter/guide/anchor_object.xhp\" name=\"Posicionar oxetos\">Asitiar oxetos</link></variable>"
-#. PYtpk
+#. ZQbRG
+#: anchor_object.xhp
+msgctxt ""
+"anchor_object.xhp\n"
+"par_id181634295881266\n"
+"help.text"
+msgid "An object, such as an image, is positioned within a document using anchors attached to other elements."
+msgstr ""
+
+#. rrmfz
+#: anchor_object.xhp
+msgctxt ""
+"anchor_object.xhp\n"
+"par_id41634291500513\n"
+"help.text"
+msgid "An anchor determines the reference point for an object. The reference point could be the page or frame where the object is, a paragraph, or even a character. An image always has an anchor and therefore a reference point."
+msgstr ""
+
+#. 2Bkvg
#: anchor_object.xhp
msgctxt ""
"anchor_object.xhp\n"
"par_id3147251\n"
"help.text"
-msgid "You can use anchors to position an object, graphic, or frame in a document. An anchored item remains in place, or moves when you modify the document. The following anchoring options are available:"
-msgstr "Pue usar ancles p'asitiar un oxetu, una imaxe o un marcu nun documentu. Un elementu fondiáu permanez nel so sitiu o se mueve cuando se modificar el documentu. Les opciones de fondiáu siguientes tán disponibles:"
+msgid "An anchor moves with the element it is attached to as the document is edited. An object retains it's position relative to the reference point determined by it's anchor, such that, whenever the reference point moves or changes, the object moves relative to it."
+msgstr ""
+
+#. ELWph
+#: anchor_object.xhp
+msgctxt ""
+"anchor_object.xhp\n"
+"par_id441634291545244\n"
+"help.text"
+msgid "The following anchoring options are available:"
+msgstr ""
#. mWome
#: anchor_object.xhp
@@ -79,14 +106,14 @@ msgctxt ""
msgid "As character"
msgstr "Como caráuter"
-#. AbQya
+#. CjGAr
#: anchor_object.xhp
msgctxt ""
"anchor_object.xhp\n"
"par_id3151181\n"
"help.text"
-msgid "Anchors the selected item as a character in the current text. If the height of the selected item is greater than the current font size, the height of the line containing the item is increased."
-msgstr "Fondia l'elementu escoyíu como caráuter nel testu actual. Si l'altor del elementu escoyíu ye mayor que'l tipu de lletra usáu, l'altor de la llinia que contenga l'elementu va amontase."
+msgid "Anchors the selected object as a character in the current text. If the height of the selected object is greater than the current font size, the height of the line containing the object is increased."
+msgstr ""
#. SNGPX
#: anchor_object.xhp
@@ -106,14 +133,23 @@ msgctxt ""
msgid "To character"
msgstr "Al caráuter"
-#. qoghU
+#. 7UsDq
#: anchor_object.xhp
msgctxt ""
"anchor_object.xhp\n"
"par_id3151235\n"
"help.text"
-msgid "Anchors the selected item to a character."
-msgstr "Fondia l'elementu escoyíu a un caráuter."
+msgid "Anchors the selected object to the paragraph that contains the character to which the anchor is attached. The reference point for the object is the start of the paragraph that contains the character."
+msgstr ""
+
+#. Awa37
+#: anchor_object.xhp
+msgctxt ""
+"anchor_object.xhp\n"
+"par_id261634292505179\n"
+"help.text"
+msgid "For example, if you split the paragraph at a point before the anchor, the reference point moves to the start of the new paragraph and the object moves relative to that point. If you join the paragraph to the one before it, the reference point moves to the start of the combined paragraph and the object moves to a position relative to that."
+msgstr ""
#. ekiBZ
#: anchor_object.xhp
@@ -124,14 +160,14 @@ msgctxt ""
msgid "To paragraph"
msgstr "Al párrafu"
-#. EYzAE
+#. F7oaB
#: anchor_object.xhp
msgctxt ""
"anchor_object.xhp\n"
"par_id3155094\n"
"help.text"
-msgid "Anchors the selected item to the current paragraph."
-msgstr "Fondia l'elementu escoyíu nel párrafu actual."
+msgid "Anchors the selected object to the current paragraph."
+msgstr ""
#. MWaB5
#: anchor_object.xhp
@@ -142,14 +178,14 @@ msgctxt ""
msgid "To page"
msgstr "A la páxina"
-#. i5YBs
+#. HnFeA
#: anchor_object.xhp
msgctxt ""
"anchor_object.xhp\n"
"par_id3155144\n"
"help.text"
-msgid "Anchors the selected item to the current page."
-msgstr "Fondia l'elementu escoyíu na páxina actual."
+msgid "Anchors the selected object to the current page."
+msgstr ""
#. ZEdjj
#: anchor_object.xhp
@@ -169,14 +205,14 @@ msgctxt ""
msgid "Anchors the selected item to the surrounding frame."
msgstr "Fondia l'elementu escoyíu nel marcu circundante."
-#. C2FTe
+#. qbj2P
#: anchor_object.xhp
msgctxt ""
"anchor_object.xhp\n"
"par_id3145715\n"
"help.text"
-msgid "When you insert an object, graphic, or frame, an anchor icon appears where the item is anchored. You can position an anchored item by dragging the item to another location. To change the anchoring options of an item, right-click the item, and then choose an option from the <item type=\"menuitem\">Anchor</item> submenu."
-msgstr "Si inxerta un oxetu, imaxe o marcu, va apaecer el símbolu d'una ancla onde s'afite l'elementu. Pue asitiar un elementu fondiáu abasnar a otru allugamientu. Si desea camudar les opciones d'ancláu d'un elementu, calque col botón drechu del mur sobre l'elementu y de siguío escueya una opción del submenú <item type=\"menuitem\">Ancla</item>."
+msgid "When you insert an object, graphic, or frame, an anchor icon appears where the object is anchored. You can move an anchor or, keeping other object constraints in mind, position an object relative to the anchor's reference point by dragging the object. To change the anchoring options of an item, right-click the item, and then choose an option from the <item type=\"menuitem\">Anchor</item> submenu."
+msgstr ""
#. EkgCv
#: arrange_chapters.xhp
@@ -3470,7 +3506,7 @@ msgctxt ""
"par_id3147759\n"
"help.text"
msgid "Click \"Set variable\" in the <item type=\"menuitem\">Type</item> list."
-msgstr "Faiga clic en \"Establecer variable\" na llista <item type=\"menuitem\">Tipu</item>."
+msgstr "Calca «Afitar variable» na llista <item type=\"menuitem\">Triba</item>."
#. AADgr
#: conditional_text.xhp
@@ -3497,7 +3533,7 @@ msgctxt ""
"par_id7748344\n"
"help.text"
msgid "Enter <item type=\"literal\">1</item> in the <item type=\"menuitem\">Value</item> box, and then click <item type=\"menuitem\">Insert</item>.<br/>The Format list now displays a \"General\" format."
-msgstr "Escriba <item type=\"literal\">1</item> nel cuadru <item type=\"menuitem\">Valor</item> y, de siguío, faiga clic en <item type=\"menuitem\">Inxertar</item>.<br/>La llista Formatu amuesa agora un formatu \"Xeneral\"."
+msgstr "Escribi <item type=\"literal\">1</item> nel cuadru <item type=\"menuitem\">Valor</item> y, de siguío, calca <item type=\"menuitem\">Inxertar</item>.<br/>La llista Formatu amuesa agora un formatu «Xeneral»."
#. 8RugG
#: conditional_text.xhp
@@ -9898,14 +9934,14 @@ msgctxt ""
msgid "Using Styles From Another Document or Template"
msgstr "Usar estilos d'otru documentu o plantía"
-#. PT73U
+#. Fudzg
#: load_styles.xhp
msgctxt ""
"load_styles.xhp\n"
"bm_id3145086\n"
"help.text"
-msgid "<bookmark_value>formatting styles; importing</bookmark_value> <bookmark_value>styles; importing from other files</bookmark_value> <bookmark_value>importing;styles from other files</bookmark_value> <bookmark_value>loading;styles from other files</bookmark_value>"
-msgstr "<bookmark_value>estilos de formatu;importar</bookmark_value> <bookmark_value>estilos;importar d'otros ficheros</bookmark_value> <bookmark_value>importar;estilos d'otros ficheros</bookmark_value> <bookmark_value>cargar;estilos d'otros ficheros</bookmark_value>"
+msgid "<bookmark_value>formatting styles; importing</bookmark_value> <bookmark_value>styles; importing from other files</bookmark_value> <bookmark_value>importing;styles from other files</bookmark_value> <bookmark_value>loading;styles from other files</bookmark_value>"
+msgstr ""
#. poRMw
#: load_styles.xhp
@@ -9952,13 +9988,13 @@ msgctxt ""
msgid "Choose <emph>View - Styles</emph> or"
msgstr ""
-#. 2YWVV
+#. ECJr5
#: load_styles.xhp
msgctxt ""
"load_styles.xhp\n"
"par_id441529889103330\n"
"help.text"
-msgid "<embedvar href=\"text/swriter/00/stylesmenu.xhp#sms\" markup=\"keep\"/> to open the <emph>Styles</emph> sidebar deck."
+msgid "Choose <emph>Styles - Manage Styles</emph> or <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <emph>Styles</emph> sidebar deck."
msgstr ""
#. mHDNg
@@ -10510,14 +10546,14 @@ msgctxt ""
msgid "Adding Line Numbers"
msgstr "Amestar númberos de llinies"
-#. BbESK
+#. DviqV
#: numbering_lines.xhp
msgctxt ""
"numbering_lines.xhp\n"
"bm_id3150101\n"
"help.text"
-msgid "<bookmark_value>line numbers</bookmark_value> <bookmark_value>text; line numbers</bookmark_value> <bookmark_value>paragraphs;line numbers</bookmark_value> <bookmark_value>lines of text; numbering</bookmark_value> <bookmark_value>numbering; lines</bookmark_value> <bookmark_value>numbers; line numbering</bookmark_value> <bookmark_value>marginal numbers on text pages</bookmark_value>"
-msgstr "<bookmark_value>númberos de llinies</bookmark_value> <bookmark_value>testu; númberos de llinies</bookmark_value> <bookmark_value>párrafos;númberos de llinies</bookmark_value> <bookmark_value>llinies de testu; numberación</bookmark_value> <bookmark_value>numberación; llinies</bookmark_value> <bookmark_value>númberos; numberación de llinies</bookmark_value> <bookmark_value>númberos nos marxes de páxines de testu</bookmark_value>"
+msgid "<bookmark_value>line numbers</bookmark_value> <bookmark_value>text; line numbers</bookmark_value> <bookmark_value>paragraphs;line numbers</bookmark_value> <bookmark_value>lines of text; numbering</bookmark_value> <bookmark_value>numbering; lines</bookmark_value> <bookmark_value>numbers; line numbering</bookmark_value> <bookmark_value>marginal numbers on text pages</bookmark_value>"
+msgstr ""
#. qVEcP
#: numbering_lines.xhp
@@ -10609,13 +10645,13 @@ msgctxt ""
msgid "Select <emph>Show numbering</emph>."
msgstr "Escueya <emph>Amosar numberación</emph>."
-#. tbCSy
+#. rCniA
#: numbering_lines.xhp
msgctxt ""
"numbering_lines.xhp\n"
"par_id3154248\n"
"help.text"
-msgid "Press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command+T</caseinline><defaultinline>F11</defaultinline></switchinline> to open the <emph>Styles</emph> window, and then click the <emph>Paragraph Styles</emph> icon."
+msgid "Press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command+T </caseinline><defaultinline>F11</defaultinline></switchinline> to open the <emph>Styles</emph> window, and then click the <emph>Paragraph Styles</emph> icon."
msgstr ""
#. Fwn8P
@@ -10780,13 +10816,13 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/06180000.xhp\" name=\"Tools - Line Numbering\">Tools - Line Numbering</link>"
msgstr "<link href=\"text/swriter/01/06180000.xhp\" name=\"Ferramientes - Numberación de llinies\">Ferramientes - Numberación de llinies</link>"
-#. PG4ys
+#. RZff6
#: numbering_lines.xhp
msgctxt ""
"numbering_lines.xhp\n"
"par_id3153960\n"
"help.text"
-msgid "Format - Paragraph - <embedvar href=\"text/swriter/01/05030800.xhp#outlinelisth1\"/>"
+msgid "Format - Paragraph - <link href=\"text/swriter/01/05030800.xhp\" name=\"Numbering_link\">Outline & List</link>"
msgstr ""
#. foq8S
@@ -10942,14 +10978,14 @@ msgctxt ""
msgid "Inserting and Deleting Page Breaks"
msgstr "Inxertar y desaniciar saltos de páxina"
-#. jCD3e
+#. 2xdB8
#: page_break.xhp
msgctxt ""
"page_break.xhp\n"
"bm_id3155183\n"
"help.text"
-msgid "<bookmark_value>page breaks; inserting and deleting</bookmark_value> <bookmark_value>inserting; page breaks</bookmark_value> <bookmark_value>deleting;page breaks</bookmark_value> <bookmark_value>pages; inserting/deleting page breaks</bookmark_value> <bookmark_value>manual page breaks</bookmark_value> <bookmark_value>tables;deleting page breaks before</bookmark_value>"
-msgstr "<bookmark_value>saltos de páxina;inxertar y desaniciar</bookmark_value> <bookmark_value>inxertar;saltos de páxina</bookmark_value> <bookmark_value>desaniciar;saltos de páxina</bookmark_value> <bookmark_value>páxines;inxertar/desaniciar saltos de páxina</bookmark_value> <bookmark_value>saltos de páxina manuales</bookmark_value> <bookmark_value>tables;desaniciar saltos de páxina enantes de</bookmark_value>"
+msgid "<bookmark_value>inserting; page breaks</bookmark_value> <bookmark_value>deleting;page breaks</bookmark_value> <bookmark_value>pages; inserting/deleting page breaks</bookmark_value> <bookmark_value>manual page breaks</bookmark_value> <bookmark_value>tables;deleting page breaks before</bookmark_value>"
+msgstr ""
#. eCabG
#: page_break.xhp
@@ -11050,14 +11086,23 @@ msgctxt ""
msgid "Clear the <emph>Break</emph> check box."
msgstr "Dexe en blancu'l caxellu de verificación <emph>Saltu</emph>."
-#. xYtzm
+#. TS5bX
#: page_break.xhp
msgctxt ""
"page_break.xhp\n"
-"par_id3154249\n"
+"hd_id151633462071702\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04010000.xhp\" name=\"Insert Break dialog\">Insert Break dialog</link>"
-msgstr "<link href=\"text/swriter/01/04010000.xhp\" name=\"Diálogu Inxertar salto\">Diálogu Inxertar saltu</link>"
+msgid "To Quickly Switch Between Portrait and Landscape Page Layout"
+msgstr ""
+
+#. xLfpN
+#: page_break.xhp
+msgctxt ""
+"page_break.xhp\n"
+"par_id121633463140208\n"
+"help.text"
+msgid "Read the help page <link href=\"text/swriter/guide/pageorientation.xhp\" name=\"pageorientation_link\">Changing Page Orientation</link> to learn more about advanced configurations that can be defined concerning page orientation."
+msgstr ""
#. 5GEmu
#: pagebackground.xhp
@@ -11707,14 +11752,14 @@ msgctxt ""
msgid "Changing Page Orientation (Landscape or Portrait)"
msgstr "Camudar la orientación de la páxina (horizontal o vertical)"
-#. 3mWPy
+#. uj4MU
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"bm_id9683828\n"
"help.text"
-msgid "<bookmark_value>page styles;orientation/scope</bookmark_value> <bookmark_value>page formats; changing individual pages</bookmark_value> <bookmark_value>formatting; changing individual pages</bookmark_value> <bookmark_value>portrait and landscape</bookmark_value> <bookmark_value>landscape and portrait</bookmark_value> <bookmark_value>printing;portrait/landscape format</bookmark_value> <bookmark_value>orientation of pages</bookmark_value> <bookmark_value>paper orientation</bookmark_value> <bookmark_value>pages;orientation</bookmark_value> <bookmark_value>sideways orientation of pages</bookmark_value> <bookmark_value>scope of page styles</bookmark_value>"
-msgstr "<bookmark_value>estilos de páxina;orientación/algame</bookmark_value> <bookmark_value>formatos de páxina; camudar páxines una a una</bookmark_value> <bookmark_value>formatu; camudar páxines una a una</bookmark_value> <bookmark_value>vertical y horizontal</bookmark_value> <bookmark_value>horizontal y vertical</bookmark_value> <bookmark_value>imprentar;formatu vertical/horizontal</bookmark_value> <bookmark_value>orientación de páxines</bookmark_value> <bookmark_value>orientación del papel</bookmark_value> <bookmark_value>páxines;orientación</bookmark_value> <bookmark_value>orientación llateral de páxines</bookmark_value> <bookmark_value>algame d'estilos de páxina</bookmark_value>"
+msgid "<bookmark_value>page styles;orientation/scope</bookmark_value> <bookmark_value>page formats; changing individual pages</bookmark_value> <bookmark_value>formatting; changing individual pages</bookmark_value> <bookmark_value>portrait and landscape</bookmark_value> <bookmark_value>landscape and portrait</bookmark_value> <bookmark_value>printing;portrait/landscape format</bookmark_value> <bookmark_value>orientation of pages</bookmark_value> <bookmark_value>paper orientation</bookmark_value> <bookmark_value>pages;orientation</bookmark_value> <bookmark_value>sideways orientation of pages</bookmark_value> <bookmark_value>scope of page styles</bookmark_value>"
+msgstr ""
#. ETQJ7
#: pageorientation.xhp
@@ -11923,6 +11968,69 @@ msgctxt ""
msgid "Now you have defined a proper page style with the name \"My Landscape\". To apply the new style, double-click the \"My Landscape\" page style in the <emph>Styles</emph> window. All pages in the current scope of page styles will be changed. If you defined the \"next style\" to be a different style, only the first page of the current scope of page styles will be changed."
msgstr ""
+#. bfdGy
+#: pageorientation.xhp
+msgctxt ""
+"pageorientation.xhp\n"
+"hd_id151633462071702\n"
+"help.text"
+msgid "To Quickly Switch Between Portrait and Landscape Page Layout"
+msgstr ""
+
+#. EEW2C
+#: pageorientation.xhp
+msgctxt ""
+"pageorientation.xhp\n"
+"par_id51633462108943\n"
+"help.text"
+msgid "The default template provided by %PRODUCTNAME Writer offers several page layout styles, among which the <emph>Default Page Style</emph> has Portrait orientation and the <emph>Landscape</emph> style has landscape orientation."
+msgstr ""
+
+#. aMkMn
+#: pageorientation.xhp
+msgctxt ""
+"pageorientation.xhp\n"
+"par_id321633462254730\n"
+"help.text"
+msgid "These styles can be used to quickly switch between portrait and landscape orientation by inserting manual breaks and choosing the appropriate page styles as described below:"
+msgstr ""
+
+#. dQpYD
+#: pageorientation.xhp
+msgctxt ""
+"pageorientation.xhp\n"
+"par_id21633462303911\n"
+"help.text"
+msgid "Place the cursor where the page break is to be inserted."
+msgstr ""
+
+#. sTgyV
+#: pageorientation.xhp
+msgctxt ""
+"pageorientation.xhp\n"
+"par_id841633462305362\n"
+"help.text"
+msgid "Go to <menuitem>Insert - More Breaks - Manual Break</menuitem>. The <emph>Insert Break</emph> dialog will open."
+msgstr ""
+
+#. fpcnD
+#: pageorientation.xhp
+msgctxt ""
+"pageorientation.xhp\n"
+"par_id31633462305839\n"
+"help.text"
+msgid "Choose the option <emph>Page break</emph> and in the <emph>Page Style</emph> drop-down list choose the page style to be applied to the page after the break (Default Page Style, Landscape, etc)."
+msgstr ""
+
+#. z3nCn
+#: pageorientation.xhp
+msgctxt ""
+"pageorientation.xhp\n"
+"par_id51633462306574\n"
+"help.text"
+msgid "If the applied has to be changed again at a certain point in the document (for instance, to switch back from landscape to portrait orientation), place the cursor at this point and repeat the steps previously described."
+msgstr ""
+
#. JyqRA
#: pageorientation.xhp
msgctxt ""
@@ -18646,13 +18754,13 @@ msgctxt ""
msgid "Numbering and Paragraph Styles"
msgstr ""
-#. FfEcT
+#. 4rqSe
#: using_numbering.xhp
msgctxt ""
"using_numbering.xhp\n"
"bm_id3155174\n"
"help.text"
-msgid "<bookmark_value>numbering;manually/by styles</bookmark_value><bookmark_value>list styles</bookmark_value><bookmark_value>manual numbering in text</bookmark_value><bookmark_value>paragraph styles;numbering</bookmark_value>"
+msgid "<bookmark_value>numbering;manually/by styles</bookmark_value> <bookmark_value>list styles</bookmark_value> <bookmark_value>manual numbering in text</bookmark_value> <bookmark_value>paragraph styles;numbering</bookmark_value>"
msgstr ""
#. FizBP
@@ -18673,13 +18781,13 @@ msgctxt ""
msgid "You can apply numbering to a paragraph manually or with a paragraph style."
msgstr "Pue aplicar la numberación a un párrafu manualmente o con un estilu de párrafu."
-#. QEp87
+#. iJRcw
#: using_numbering.xhp
msgctxt ""
"using_numbering.xhp\n"
"par_id31616154131555\n"
"help.text"
-msgid "If you want numbered headings, use <menuitem>Tools - </menuitem><embedvar href=\"text/swriter/01/06060000.xhp#ChapNumh1\"/>, instead of numbering manually."
+msgid "If you want numbered headings, use <menuitem>Tools - </menuitem><link href=\"text/swriter/01/06060000.xhp\" name=\"chap_num_link\">Chapter Numbering</link>, instead of numbering manually."
msgstr ""
#. Dh8sW
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 0a4596b9aa8..ff9ea608c6f 100644
--- a/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-04 19:52+0200\n"
-"PO-Revision-Date: 2021-10-04 11:36+0000\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
+"PO-Revision-Date: 2021-10-23 04:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.8.1\n"
"X-POOTLE-MTIME: 1542022492.000000\n"
#. W5ukN
@@ -1159,6 +1159,16 @@ msgctxt ""
msgid "~Insert or Edit..."
msgstr ""
+#. dHdzP
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Commands..uno:InsertPivotTableNBLabel\n"
+"Label\n"
+"value.text"
+msgid "~Insert or Edit Pivot Table..."
+msgstr ""
+
#. vqC2u
#: CalcCommands.xcu
msgctxt ""
@@ -3196,15 +3206,15 @@ msgctxt ""
msgid "Merge Cells"
msgstr "Xunir caxelles"
-#. GGRNG
+#. APBqu
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:SplitCell\n"
"Label\n"
"value.text"
-msgid "Split Cells"
-msgstr "Dixebrar caxelles"
+msgid "Unmerge Cells"
+msgstr ""
#. qJGdH
#: CalcCommands.xcu
@@ -3216,6 +3226,16 @@ msgctxt ""
msgid "M~erge and Center Cells"
msgstr "Am~estar y centrar caxelles"
+#. ET4vB
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Commands..uno:ToggleMergeCells\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Merge and center or unmerge cells depending on the current toggle state"
+msgstr ""
+
#. VZsps
#: CalcCommands.xcu
msgctxt ""
@@ -4410,15 +4430,15 @@ msgctxt ""
msgid "Cell ~Comments"
msgstr "Tolos comentarios"
-#. 3xhAF
+#. yqd4v
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:MergeCellsMenu\n"
"Label\n"
"value.text"
-msgid "M~erge Cells"
-msgstr "Com~binar caxelles"
+msgid "M~erge and Unmerge Cells"
+msgstr ""
#. G3E3Q
#: CalcCommands.xcu
@@ -10429,7 +10449,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Arrange"
-msgstr "~Posición"
+msgstr "~Allugar"
#. UFyrk
#: DrawImpressCommands.xcu
@@ -15061,7 +15081,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Venetian"
-msgstr ""
+msgstr "Venecianes"
#. 3CeRi
#: Effects.xcu
@@ -15071,7 +15091,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "3D Venetian"
-msgstr ""
+msgstr "Venecianes 3D"
#. ug9XD
#: Effects.xcu
@@ -18762,6 +18782,16 @@ msgctxt ""
msgid "Line Spacing: 1"
msgstr "Interlliñáu: 1"
+#. jmAwA
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:SpacePara115\n"
+"Label\n"
+"value.text"
+msgid "Line Spacing: 1.15"
+msgstr ""
+
#. q8wJt
#: GenericCommands.xcu
#, fuzzy
@@ -32979,7 +33009,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert or Edit Formula"
-msgstr ""
+msgstr "Inxertar o editar fórmula"
#. DGAud
#: WriterCommands.xcu
diff --git a/source/ast/sc/messages.po b/source/ast/sc/messages.po
index 3f1292fcce5..68d29104dcc 100644
--- a/source/ast/sc/messages.po
+++ b/source/ast/sc/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-27 19:09+0200\n"
-"PO-Revision-Date: 2021-10-04 18:00+0000\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
+"PO-Revision-Date: 2021-10-07 00:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542022495.000000\n"
#. kBovX
@@ -6620,10 +6620,9 @@ msgstr "El rangu que va evaluase colos criterios daos."
#. miDfc
#: sc/inc/scfuncs.hrc:984
-#, fuzzy
msgctxt "SC_OPCODE_SUM_IF"
msgid "Criteria"
-msgstr "criterios"
+msgstr "Criterios"
#. GBGyP
#: sc/inc/scfuncs.hrc:985
@@ -6664,10 +6663,9 @@ msgstr "El rangu que va evaluase colos criterios daos."
#. aV2bj
#: sc/inc/scfuncs.hrc:996
-#, fuzzy
msgctxt "SC_OPCODE_AVERAGE_IF"
msgid "Criteria"
-msgstr "criterios"
+msgstr "Criterios"
#. mHjDY
#: sc/inc/scfuncs.hrc:997
@@ -6830,10 +6828,9 @@ msgstr "El rangu de caxelles a evaluar colos criterios daos."
#. pGUfg
#: sc/inc/scfuncs.hrc:1041
-#, fuzzy
msgctxt "SC_OPCODE_COUNT_IF"
msgid "Criteria"
-msgstr "criterios"
+msgstr "Criterios"
#. Dv9PK
#: sc/inc/scfuncs.hrc:1042
@@ -27593,318 +27590,348 @@ msgctxt "pastespecial|paste_values_only|tooltip_text"
msgid "Values Only"
msgstr ""
+#. tDknw
+#: sc/uiconfig/scalc/ui/pastespecial.ui:141
+msgctxt "pastespecial|extended_tip|paste_values_only"
+msgid "Pastes numbers, text, dates and the results of formulas."
+msgstr ""
+
#. CTEKF
-#: sc/uiconfig/scalc/ui/pastespecial.ui:148
+#: sc/uiconfig/scalc/ui/pastespecial.ui:153
msgctxt "pastespecial|paste_values_formats|label"
msgid "Values & _Formats"
msgstr ""
#. 7GuDi
-#: sc/uiconfig/scalc/ui/pastespecial.ui:152
+#: sc/uiconfig/scalc/ui/pastespecial.ui:157
msgctxt "pastespecial|paste_values_formats|tooltip_text"
msgid "Values & Formats"
msgstr ""
+#. FjJPU
+#: sc/uiconfig/scalc/ui/pastespecial.ui:164
+msgctxt "pastespecial|extended_tip|paste_values_formats"
+msgid "Pastes cell values, formula results and formats applied to cells."
+msgstr ""
+
#. Rb8KR
-#: sc/uiconfig/scalc/ui/pastespecial.ui:166
+#: sc/uiconfig/scalc/ui/pastespecial.ui:176
msgctxt "pastespecial|paste_format|label"
msgid "Formats Onl_y"
msgstr ""
#. Cvyjn
-#: sc/uiconfig/scalc/ui/pastespecial.ui:170
+#: sc/uiconfig/scalc/ui/pastespecial.ui:180
msgctxt "pastespecial|paste_format|tooltip_text"
msgid "Formats Only"
msgstr ""
+#. Jhc4o
+#: sc/uiconfig/scalc/ui/pastespecial.ui:187
+msgctxt "pastespecial|extended_tip|paste_formats"
+msgid "Pastes only the formats from the source range without changing the values in the destination range."
+msgstr ""
+
#. YGdhH
-#: sc/uiconfig/scalc/ui/pastespecial.ui:184
+#: sc/uiconfig/scalc/ui/pastespecial.ui:199
msgctxt "pastespecial|paste_transpose|label"
msgid "_Transpose All"
msgstr ""
#. sbLGi
-#: sc/uiconfig/scalc/ui/pastespecial.ui:188
+#: sc/uiconfig/scalc/ui/pastespecial.ui:203
msgctxt "pastespecial|paste_transpose|tooltip_text"
msgid "Transpose All"
msgstr ""
+#. 3BC6U
+#: sc/uiconfig/scalc/ui/pastespecial.ui:210
+msgctxt "pastespecial|extended_tip|paste_transpose"
+msgid "Pastes cell contents transposed, hence columns are converted to rows."
+msgstr ""
+
#. 4ETCT
-#: sc/uiconfig/scalc/ui/pastespecial.ui:209
+#: sc/uiconfig/scalc/ui/pastespecial.ui:229
msgctxt "pastespecial|cbImmediately"
msgid "_Run immediately"
msgstr ""
+#. 7a9JE
+#: sc/uiconfig/scalc/ui/pastespecial.ui:238
+msgctxt "pastespecial|extended_tip|cbImmediately"
+msgid "Check this option to run the preset immediately. Uncheck it to manipulate the options before clicking OK."
+msgstr ""
+
#. YD43i
-#: sc/uiconfig/scalc/ui/pastespecial.ui:229
+#: sc/uiconfig/scalc/ui/pastespecial.ui:254
msgctxt "pastespecial|frPresets"
msgid "Presets"
msgstr ""
#. g6DfA
-#: sc/uiconfig/scalc/ui/pastespecial.ui:265
+#: sc/uiconfig/scalc/ui/pastespecial.ui:290
msgctxt "pastespecial|paste_all"
msgid "_All"
msgstr ""
#. Labin
-#: sc/uiconfig/scalc/ui/pastespecial.ui:273
+#: sc/uiconfig/scalc/ui/pastespecial.ui:298
msgctxt "pastespecial|extended_tip|paste_all"
msgid "Pastes all cell contents, comments, formats, and objects into the current document."
msgstr ""
#. qzFbg
-#: sc/uiconfig/scalc/ui/pastespecial.ui:284
+#: sc/uiconfig/scalc/ui/pastespecial.ui:309
msgctxt "pastespecial|numbers"
msgid "_Numbers"
msgstr "_Númberos"
#. SCVEu
-#: sc/uiconfig/scalc/ui/pastespecial.ui:292
+#: sc/uiconfig/scalc/ui/pastespecial.ui:317
msgctxt "pastespecial|extended_tip|numbers"
msgid "Inserts cells containing numbers."
msgstr ""
#. BSEWE
-#: sc/uiconfig/scalc/ui/pastespecial.ui:303
+#: sc/uiconfig/scalc/ui/pastespecial.ui:328
#, fuzzy
msgctxt "pastespecial|text"
msgid "Te_xt"
msgstr "Testu"
#. JWDk5
-#: sc/uiconfig/scalc/ui/pastespecial.ui:311
+#: sc/uiconfig/scalc/ui/pastespecial.ui:336
msgctxt "pastespecial|extended_tip|text"
msgid "Inserts cells containing text."
msgstr ""
#. DBaJD
-#: sc/uiconfig/scalc/ui/pastespecial.ui:322
+#: sc/uiconfig/scalc/ui/pastespecial.ui:347
msgctxt "pastespecial|datetime"
msgid "_Date & time"
msgstr "_Data y tiempu"
#. jq6Md
-#: sc/uiconfig/scalc/ui/pastespecial.ui:330
+#: sc/uiconfig/scalc/ui/pastespecial.ui:355
msgctxt "pastespecial|extended_tip|datetime"
msgid "Inserts cells containing date and time values."
msgstr ""
#. aHXF8
-#: sc/uiconfig/scalc/ui/pastespecial.ui:341
+#: sc/uiconfig/scalc/ui/pastespecial.ui:366
msgctxt "pastespecial|formats"
msgid "For_mats"
msgstr "_Formatos"
#. ehyEf
-#: sc/uiconfig/scalc/ui/pastespecial.ui:349
+#: sc/uiconfig/scalc/ui/pastespecial.ui:374
msgctxt "pastespecial|extended_tip|formats"
msgid "Inserts cell format attributes."
msgstr ""
#. NT4Am
-#: sc/uiconfig/scalc/ui/pastespecial.ui:360
+#: sc/uiconfig/scalc/ui/pastespecial.ui:385
msgctxt "pastespecial|comments"
msgid "_Comments"
msgstr "_Comentarios"
#. 3uP7i
-#: sc/uiconfig/scalc/ui/pastespecial.ui:368
+#: sc/uiconfig/scalc/ui/pastespecial.ui:393
msgctxt "pastespecial|extended_tip|comments"
msgid "Inserts comments that are attached to cells. If you want to add the comments to the existing cell content, select the \"Add\" operation."
msgstr ""
#. YZQBh
-#: sc/uiconfig/scalc/ui/pastespecial.ui:379
+#: sc/uiconfig/scalc/ui/pastespecial.ui:404
msgctxt "pastespecial|objects"
msgid "Ob_jects"
msgstr ""
#. DZsnr
-#: sc/uiconfig/scalc/ui/pastespecial.ui:387
+#: sc/uiconfig/scalc/ui/pastespecial.ui:412
msgctxt "pastespecial|extended_tip|objects"
msgid "Inserts objects contained within the selected cell range. These can be OLE objects, chart objects, or drawing objects."
msgstr ""
#. jrjYA
-#: sc/uiconfig/scalc/ui/pastespecial.ui:398
+#: sc/uiconfig/scalc/ui/pastespecial.ui:423
msgctxt "pastespecial|formulas"
msgid "F_ormulas"
msgstr ""
#. Na5Ba
-#: sc/uiconfig/scalc/ui/pastespecial.ui:406
+#: sc/uiconfig/scalc/ui/pastespecial.ui:431
msgctxt "pastespecial|extended_tip|formulas"
msgid "Inserts cells containing formulae."
msgstr ""
#. UtpWA
-#: sc/uiconfig/scalc/ui/pastespecial.ui:421
+#: sc/uiconfig/scalc/ui/pastespecial.ui:446
msgctxt "pastespecial|label1"
msgid "Paste"
msgstr ""
#. fonBJ
-#: sc/uiconfig/scalc/ui/pastespecial.ui:452
+#: sc/uiconfig/scalc/ui/pastespecial.ui:477
msgctxt "pastespecial|no_shift"
msgid "Don't sh_ift"
msgstr ""
#. q3Xv3
-#: sc/uiconfig/scalc/ui/pastespecial.ui:461
+#: sc/uiconfig/scalc/ui/pastespecial.ui:486
msgctxt "pastespecial|extended_tip|no_shift"
msgid "Inserted cells replace the target cells."
msgstr ""
#. RuiU6
-#: sc/uiconfig/scalc/ui/pastespecial.ui:473
+#: sc/uiconfig/scalc/ui/pastespecial.ui:498
msgctxt "pastespecial|move_down"
msgid "_Down"
msgstr ""
#. BNALN
-#: sc/uiconfig/scalc/ui/pastespecial.ui:482
+#: sc/uiconfig/scalc/ui/pastespecial.ui:507
msgctxt "pastespecial|extended_tip|move_down"
msgid "Target cells are shifted downward when you insert cells from the clipboard."
msgstr ""
#. obSAt
-#: sc/uiconfig/scalc/ui/pastespecial.ui:494
+#: sc/uiconfig/scalc/ui/pastespecial.ui:519
msgctxt "pastespecial|move_right"
msgid "_Right"
msgstr "D_recha"
#. GEFe7
-#: sc/uiconfig/scalc/ui/pastespecial.ui:503
+#: sc/uiconfig/scalc/ui/pastespecial.ui:528
msgctxt "pastespecial|extended_tip|move_right"
msgid "Target cells are shifted to the right when you insert cells from the clipboard."
msgstr ""
#. fzYTm
-#: sc/uiconfig/scalc/ui/pastespecial.ui:519
+#: sc/uiconfig/scalc/ui/pastespecial.ui:544
msgctxt "pastespecial|label4"
msgid "Shift Cells"
msgstr ""
#. nuJd9
-#: sc/uiconfig/scalc/ui/pastespecial.ui:563
+#: sc/uiconfig/scalc/ui/pastespecial.ui:588
msgctxt "pastespecial|link"
msgid "As _Link"
msgstr ""
#. Bg9dc
-#: sc/uiconfig/scalc/ui/pastespecial.ui:571
+#: sc/uiconfig/scalc/ui/pastespecial.ui:596
msgctxt "pastespecial|extended_tip|link"
msgid "Inserts the cell range as a link, so that changes made to the cells in the source file are updated in the target file. To ensure that changes made to empty cells in the source file are updated in the target file, ensure that the \"Paste All\" option is also selected."
msgstr ""
#. qt6LA
-#: sc/uiconfig/scalc/ui/pastespecial.ui:582
+#: sc/uiconfig/scalc/ui/pastespecial.ui:607
msgctxt "pastespecial|transpose"
msgid "Trans_pose"
msgstr ""
#. P3eE4
-#: sc/uiconfig/scalc/ui/pastespecial.ui:590
+#: sc/uiconfig/scalc/ui/pastespecial.ui:615
msgctxt "pastespecial|extended_tip|transpose"
msgid "The rows of the range in the clipboard are pasted to become columns of the output range. The columns of the range in the clipboard are pasted to become rows."
msgstr ""
#. eG52z
-#: sc/uiconfig/scalc/ui/pastespecial.ui:601
+#: sc/uiconfig/scalc/ui/pastespecial.ui:626
msgctxt "pastespecial|skip_empty"
msgid "_Skip empty cells"
msgstr ""
#. BodqB
-#: sc/uiconfig/scalc/ui/pastespecial.ui:605
+#: sc/uiconfig/scalc/ui/pastespecial.ui:630
msgctxt "pastespecial|skip_empty"
msgid "If enabled, blank cells in source will not override the target."
msgstr ""
#. u2Cms
-#: sc/uiconfig/scalc/ui/pastespecial.ui:610
+#: sc/uiconfig/scalc/ui/pastespecial.ui:635
msgctxt "pastespecial|extended_tip|skip_empty"
msgid "Empty cells from the clipboard do not replace target cells. If you use this option in conjunction with the \"Multiply\" or the \"Divide\" operation, the operation is not applied to the target cell of an empty cell in the clipboard."
msgstr ""
#. jTFAJ
-#: sc/uiconfig/scalc/ui/pastespecial.ui:625
+#: sc/uiconfig/scalc/ui/pastespecial.ui:650
msgctxt "pastespecial|OptionsFrame"
msgid "Options"
msgstr "Opciones"
#. nJiy4
-#: sc/uiconfig/scalc/ui/pastespecial.ui:656
+#: sc/uiconfig/scalc/ui/pastespecial.ui:681
#, fuzzy
msgctxt "pastespecial|none"
msgid "Non_e"
msgstr "Nota"
#. 7GKDG
-#: sc/uiconfig/scalc/ui/pastespecial.ui:665
+#: sc/uiconfig/scalc/ui/pastespecial.ui:690
msgctxt "pastespecial|extended_tip|none"
msgid "Does not apply an operation when you insert the cell range from the clipboard. The contents of the clipboard will replace existing cell contents."
msgstr ""
#. CEsbt
-#: sc/uiconfig/scalc/ui/pastespecial.ui:677
+#: sc/uiconfig/scalc/ui/pastespecial.ui:702
msgctxt "pastespecial|add"
msgid "_Add"
msgstr "_Amestar"
#. bNyh2
-#: sc/uiconfig/scalc/ui/pastespecial.ui:686
+#: sc/uiconfig/scalc/ui/pastespecial.ui:711
msgctxt "pastespecial|extended_tip|add"
msgid "Adds the values in the clipboard cells to the values in the target cells. Also, if the clipboard only contains comments, adds the comments to the target cells."
msgstr ""
#. iFTvh
-#: sc/uiconfig/scalc/ui/pastespecial.ui:698
+#: sc/uiconfig/scalc/ui/pastespecial.ui:723
#, fuzzy
msgctxt "pastespecial|subtract"
msgid "_Subtract"
msgstr "~Sustrayer"
#. 2SKbT
-#: sc/uiconfig/scalc/ui/pastespecial.ui:707
+#: sc/uiconfig/scalc/ui/pastespecial.ui:732
msgctxt "pastespecial|extended_tip|subtract"
msgid "Subtracts the values in the clipboard cells from the values in the target cells."
msgstr ""
#. zdDUB
-#: sc/uiconfig/scalc/ui/pastespecial.ui:719
+#: sc/uiconfig/scalc/ui/pastespecial.ui:744
msgctxt "pastespecial|multiply"
msgid "_Multiply"
msgstr ""
#. jkRDm
-#: sc/uiconfig/scalc/ui/pastespecial.ui:728
+#: sc/uiconfig/scalc/ui/pastespecial.ui:753
msgctxt "pastespecial|extended_tip|multiply"
msgid "Multiplies the values in the clipboard cells with the values in the target cells."
msgstr ""
#. 7Nd8u
-#: sc/uiconfig/scalc/ui/pastespecial.ui:740
+#: sc/uiconfig/scalc/ui/pastespecial.ui:765
msgctxt "pastespecial|divide"
msgid "_Divide"
msgstr ""
#. 9VKdS
-#: sc/uiconfig/scalc/ui/pastespecial.ui:749
+#: sc/uiconfig/scalc/ui/pastespecial.ui:774
msgctxt "pastespecial|extended_tip|divide"
msgid "Divides the values in the target cells by the values in the clipboard cells."
msgstr ""
#. 9otLM
-#: sc/uiconfig/scalc/ui/pastespecial.ui:765
+#: sc/uiconfig/scalc/ui/pastespecial.ui:790
#, fuzzy
msgctxt "pastespecial|label2"
msgid "Operations"
msgstr "Operaciones:"
#. ypkML
-#: sc/uiconfig/scalc/ui/pastespecial.ui:800
+#: sc/uiconfig/scalc/ui/pastespecial.ui:825
msgctxt "pastespecial|extended_tip|PasteSpecial"
msgid "Inserts the contents of the clipboard into the current file in a format that you can specify."
msgstr ""
@@ -33413,10 +33440,9 @@ msgstr "Válidu hasta"
#. u59K3
#: sc/uiconfig/scalc/ui/validationdialog.ui:144
-#, fuzzy
msgctxt "validationdialog|criteria"
msgid "Criteria"
-msgstr "criterios"
+msgstr "Criterios"
#. Jrrv4
#: sc/uiconfig/scalc/ui/validationdialog.ui:191
diff --git a/source/ast/scp2/source/ooo.po b/source/ast/scp2/source/ooo.po
index 9489396ae8f..4d82b64450c 100644
--- a/source/ast/scp2/source/ooo.po
+++ b/source/ast/scp2/source/ooo.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-09-10 23:12+0200\n"
-"PO-Revision-Date: 2020-08-19 14:35+0000\n"
+"PO-Revision-Date: 2021-10-23 04:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
-"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_ui-master/scp2sourceooo/ast/>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/scp2sourceooo/ast/>\n"
"Language: ast\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.8.1\n"
"X-POOTLE-MTIME: 1542022495.000000\n"
#. CYBGJ
@@ -744,7 +744,7 @@ msgctxt ""
"STR_NAME_MODULE_HELPPACK_BN\n"
"LngText.text"
msgid "Bengali (Bangladesh)"
-msgstr "Bengalín (Bangladesh)"
+msgstr "Bengalín (Bangladex)"
#. sAKYL
#: module_helppack.ulf
@@ -762,7 +762,7 @@ msgctxt ""
"STR_NAME_MODULE_HELPPACK_BN_IN\n"
"LngText.text"
msgid "Bengali (India)"
-msgstr "Bengalí (India)"
+msgstr "Bengalín (India)"
#. GxDPB
#: module_helppack.ulf
@@ -871,7 +871,7 @@ msgctxt ""
"STR_NAME_MODULE_HELPPACK_CA_VALENCIA\n"
"LngText.text"
msgid "Catalan (Valencian)"
-msgstr "Catalán (Valencianu)"
+msgstr "Catalán (Valencia)"
#. jJ56U
#: module_helppack.ulf
@@ -880,7 +880,7 @@ msgctxt ""
"STR_DESC_MODULE_HELPPACK_CA_VALENCIA\n"
"LngText.text"
msgid "Installs Catalan (Valencian) help in %PRODUCTNAME %PRODUCTVERSION"
-msgstr "Instala l'ayuda en Catalán (Valencianu) en %PRODUCTNAME %PRODUCTVERSION"
+msgstr "Instala l'ayuda en catalán (Valencia) en %PRODUCTNAME %PRODUCTVERSION"
#. vFJBH
#: module_helppack.ulf
@@ -2872,7 +2872,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_BN\n"
"LngText.text"
msgid "Bengali (Bangladesh)"
-msgstr "Bengalín (Bangladesh)"
+msgstr "Bengalín (Bangladex)"
#. Gtpvo
#: module_langpack.ulf
@@ -2881,7 +2881,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_BN\n"
"LngText.text"
msgid "Installs the Bengali (Bangladesh) user interface"
-msgstr "Instala la interface d'usuariu en Bengalín (Bangladex)"
+msgstr "Instala la interface d'usuariu en bengalín (Bangladex)"
#. VFLAY
#: module_langpack.ulf
@@ -2890,7 +2890,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_BN_IN\n"
"LngText.text"
msgid "Bengali (India)"
-msgstr "Bengalí (India)"
+msgstr "Bengalín (India)"
#. CG9LC
#: module_langpack.ulf
@@ -2899,7 +2899,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_BN_IN\n"
"LngText.text"
msgid "Installs the Bengali (India) user interface"
-msgstr "Instala la interface d'usuariu en Bengalín (India)"
+msgstr "Instala la interface d'usuariu en bengalín (India)"
#. ZHDdr
#: module_langpack.ulf
@@ -2999,7 +2999,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_CA_VALENCIA\n"
"LngText.text"
msgid "Catalan (Valencian)"
-msgstr "Catalán (Valencianu)"
+msgstr "Catalán (Valencia)"
#. BZKTa
#: module_langpack.ulf
@@ -3062,7 +3062,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_HE\n"
"LngText.text"
msgid "Installs the Hebrew user interface"
-msgstr "Instala la interfaz d'usuariu en hebréu"
+msgstr "Instala la interfaz d'usuariu n'hebréu"
#. C2wG7
#: module_langpack.ulf
@@ -3422,7 +3422,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_AST\n"
"LngText.text"
msgid "Installs the Asturian user interface"
-msgstr "Instala la interface d'usuariu n'Asturianu"
+msgstr "Instala la interfaz d'usuariu n'asturianu"
#. dq9eu
#: module_langpack.ulf
@@ -3575,17 +3575,16 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_VEC\n"
"LngText.text"
msgid "Venetian"
-msgstr ""
+msgstr "Vénetu"
#. daNwF
#: module_langpack.ulf
-#, fuzzy
msgctxt ""
"module_langpack.ulf\n"
"STR_DESC_MODULE_LANGPACK_VEC\n"
"LngText.text"
msgid "Installs the Venetian user interface"
-msgstr "Instala la interface en Venda"
+msgstr "Instala la interfaz en vénetu"
#. A8VRT
#: module_langpack.ulf
diff --git a/source/ast/sd/messages.po b/source/ast/sd/messages.po
index b973b912d46..59702d9b7bb 100644
--- a/source/ast/sd/messages.po
+++ b/source/ast/sd/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-14 12:01+0200\n"
-"PO-Revision-Date: 2021-10-03 06:36+0000\n"
+"POT-Creation-Date: 2021-10-20 13:09+0200\n"
+"PO-Revision-Date: 2021-10-21 11:33+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"
"Language: ast\n"
@@ -767,13 +767,13 @@ msgstr "Capa"
#: sd/inc/strings.hrc:84
msgctxt "STR_UNDO_DELETEPAGES"
msgid "Delete slides"
-msgstr "Escoyer páxines"
+msgstr "Desaniciar diapositives"
#. F7ZZF
#: sd/inc/strings.hrc:85
msgctxt "STR_UNDO_DELETEPAGES_DRAW"
msgid "Delete pages"
-msgstr ""
+msgstr "Desaniciar páxines"
#. EQUBZ
#: sd/inc/strings.hrc:86
@@ -788,12 +788,14 @@ msgid ""
"Are you sure you want to delete the layer \"$\"?\n"
"Note: All objects on this layer will be deleted!"
msgstr ""
+"¿Daveres quies desaniciar la capa «$»?\n"
+"Nota: desaniciaránse tolos oxetos d'esta capa."
#. EcYBg
#: sd/inc/strings.hrc:88
msgctxt "STR_ASK_DELETE_ALL_PICTURES"
msgid "Do you really want to delete all images?"
-msgstr "¿Seguro que quier desaniciar toles imaxes?"
+msgstr "¿Daveres quies desaniciar toles imaxes?"
#. 43diA
#: sd/inc/strings.hrc:89
@@ -805,7 +807,7 @@ msgstr "Camudar títulu y esquema"
#: sd/inc/strings.hrc:90
msgctxt "STR_WAV_FILE"
msgid "Audio"
-msgstr ""
+msgstr "Audiu"
#. EtkBb
#: sd/inc/strings.hrc:91
@@ -847,13 +849,13 @@ msgstr "Diapositiva"
#: sd/inc/strings.hrc:97
msgctxt "STR_SD_PAGE_COUNT"
msgid "Slide %1 of %2"
-msgstr ""
+msgstr "Diapositiva %1 de %2"
#. NakLD
#: sd/inc/strings.hrc:98
msgctxt "STR_SD_PAGE_COUNT_CUSTOM"
msgid "Slide %1 of %2 (%3)"
-msgstr ""
+msgstr "Diapositiva %1 de %2 (%3)"
#. WsRvh
#: sd/inc/strings.hrc:99
@@ -903,6 +905,9 @@ msgid ""
"\n"
"Do you want to scale the copied objects to fit the new page size?"
msgstr ""
+"El tamañu de páxina del documentu de destín ye diferente del documentu d'orixe.\n"
+"\n"
+"¿Quies escalar los oxetos copiaos pa qu'encaxen nel tamañu nuevu de les páxines?"
#. YC4AD
#: sd/inc/strings.hrc:106
@@ -5036,248 +5041,260 @@ msgid "Text Animation"
msgstr "Animación del testu"
#. FcztB
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:132
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:140
#, fuzzy
msgctxt "customanimationspanel|extended_tip|custom_animation_list"
msgid "The animation list displays all animations for the current slide."
msgstr "La llista d'animaciones amuesa toles animaciones de la diapositiva actual. "
-#. KFRTW
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:163
+#. VBxbo
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:171
msgctxt "customanimationspanel|STR_CUSTOMANIMATION_LIST_HELPTEXT"
-msgid "First select the slide element and then click 'Add...' to add an animation effect."
-msgstr "Primero seleiciona un elementu na diapositiva y dempués calca «Amestar» p'amestar una animación."
+msgid "First select the slide element and then click 'Add' to add an animation effect."
+msgstr ""
+
+#. wWeBD
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:215
+msgctxt "customanimationspanel|lbEffect"
+msgid "Effects"
+msgstr "Efeutos"
+
+#. WGWNA
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:236
+msgctxt "customanimationspanel|add"
+msgid "_Add"
+msgstr "_Amestar"
#. nRqGR
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:195
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:240
msgctxt "customanimationspanel|add_effect|tooltip_text"
msgid "Add Effect"
msgstr "Amestar efeutu"
#. CskWF
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:199
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:245
msgctxt "customanimationspanel|extended_tip|add_effect"
msgid "Adds another animation effect for the selected object on the slide."
msgstr ""
#. vitMM
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:214
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:260
msgctxt "customanimationspanel|remove_effect|tooltip_text"
msgid "Remove Effect"
msgstr "Desaniciar efeutu"
#. pvCFG
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:218
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:264
msgctxt "customanimationspanel|extended_tip|remove_effect"
msgid "Removes the selected animation effects from the animation list."
msgstr "Quita los efeutos d'animación escoyíos de la llista d'animaciones."
#. 3wHRp
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:233
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:279
msgctxt "customanimationspanel|move_up|tooltip_text"
msgid "Move Up"
-msgstr "Mover arriba"
+msgstr "Mover p'arriba"
#. buR2G
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:237
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:283
msgctxt "customanimationspanel|extended_tip|move_up"
msgid "Click one of the buttons to move the selected animation effect up or down in the list."
msgstr "Faiga clic n'unu de los botones pa mover l'efeutu d'animación escoyíu escontra riba o embaxo na llista."
#. jEksa
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:252
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:298
msgctxt "customanimationspanel|move_down|tooltip_text"
msgid "Move Down"
-msgstr "Mover abaxo"
+msgstr "Mover p'abaxo"
#. x82hp
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:256
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:302
msgctxt "customanimationspanel|extended_tip|move_down"
msgid "Click one of the buttons to move the selected animation effect up or down in the list."
msgstr "Faiga clic n'unu de los botones pa mover l'efeutu d'animación escoyíu escontra riba o embaxo na llista."
#. wCc89
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:285
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:324
msgctxt "customanimationspanel|categorylabel"
msgid "Category:"
msgstr "Categoría:"
-#. EHRAp
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:299
-msgctxt "customanimationspanel|effectlabel"
-msgid "Effect:"
-msgstr "Efeutu:"
-
#. jQcZZ
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:314
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:338
#, fuzzy
msgctxt "customanimationspanel|categorylb"
msgid "Entrance"
msgstr "Entrada"
#. 2qTvP
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:315
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:339
msgctxt "customanimationspanel|categorylb"
msgid "Emphasis"
msgstr "Énfasis"
#. TZeh8
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:316
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:340
#, fuzzy
msgctxt "customanimationspanel|categorylb"
msgid "Exit"
msgstr "Salida"
#. N8Xvu
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:317
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:341
#, fuzzy
msgctxt "customanimationspanel|categorylb"
msgid "Motion Paths"
msgstr "Caminos de movimientu"
#. qDYCQ
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:318
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:342
#, fuzzy
msgctxt "customanimationspanel|categorylb"
msgid "Misc Effects"
msgstr "Efeutos variaos"
#. ozsMp
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:322
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:346
msgctxt "customanimationspanel|extended_tip|categorylb"
msgid "Select an animation effect category."
msgstr ""
+#. EHRAp
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:363
+msgctxt "customanimationspanel|effectlabel"
+msgid "Effect:"
+msgstr "Efeutu:"
+
#. MEJrn
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:366
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:412
msgctxt "customanimationspanel|extended_tip|effect_list"
msgid "Select an animation effect."
msgstr ""
+#. LGuGy
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:428
+msgctxt "customanimationspanel|effect_label"
+msgid "Options"
+msgstr "Opciones"
+
#. GDYfC
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:403
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:445
msgctxt "customanimationspanel|start_effect"
msgid "_Start:"
msgstr "_Aniciu:"
-#. 8AUq9
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:417
-msgctxt "customanimationspanel|effect_property"
-msgid "_Direction:"
-msgstr "_Direición:"
-
-#. QWndb
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:431
-#, fuzzy
-msgctxt "customanimationspanel|effect_duration"
-msgid "D_uration:"
-msgstr "Duración"
-
#. DhPiJ
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:446
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:459
msgctxt "customanimationspanel|start_effect_list"
msgid "On click"
msgstr "Al facer clic"
#. FNFGr
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:447
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:460
msgctxt "customanimationspanel|start_effect_list"
msgid "With previous"
msgstr "Col anterior"
#. dCfj4
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:448
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:461
msgctxt "customanimationspanel|start_effect_list"
msgid "After previous"
msgstr "Tres l'anterior"
#. iboET
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:452
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:465
msgctxt "customanimationspanel|extended_tip|start_effect_list"
msgid "Displays when the selected animation effect should be started."
msgstr ""
+#. 8AUq9
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:479
+msgctxt "customanimationspanel|effect_property"
+msgid "_Direction:"
+msgstr "_Direición:"
+
#. mMYic
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:481
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:492
msgctxt "customanimationspanel|more_properties|tooltip_text"
msgid "Options"
msgstr "Opciones"
#. PE6vL
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:486
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:497
msgctxt "customanimationspanel|extended_tip|more_properties"
msgid "Specifies additional properties for the selected element in the Custom Animations pane."
msgstr "Especifica les propiedaes adicionales del elementu escoyíu nel panel Animaciones personalizaes."
+#. QWndb
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:511
+#, fuzzy
+msgctxt "customanimationspanel|effect_duration"
+msgid "D_uration:"
+msgstr "Duración"
+
#. Ewipq
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:505
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:529
msgctxt "customanimationspanel|extended_tip|anim_duration"
msgid "Specifies the duration of the selected animation effect."
msgstr ""
#. 2cGAb
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:519
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:543
msgctxt "customanimationspanel|delay_label"
msgid "_Delay:"
msgstr "Retra_su:"
#. g6bR3
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:538
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:561
msgctxt "customanimationspanel|extended_tip|delay_value"
msgid "The animation starts delayed by this amount of time."
msgstr ""
-#. FgkKZ
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:562
-msgctxt "customanimationspanel|effect_label"
-msgid "Effect"
-msgstr "Efeutu"
-
#. J2bC5
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:600
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:583
#, fuzzy
msgctxt "customanimationspanel|auto_preview"
msgid "Automatic Preview"
msgstr "Vista previa automática"
#. GufhE
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:608
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:591
msgctxt "customanimationspanel|extended_tip|auto_preview"
msgid "Select to preview new or edited effects on the slide while you assign them."
msgstr "Escueya pa llograr una vista previa de los efeutos nuevos o editaos na diapositiva mientres los asigna."
#. KP8UC
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:620
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:603
msgctxt "customanimationspanel|play"
msgid "Play"
msgstr "Reproducir"
#. Bn67v
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:624
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:607
msgctxt "customanimationspanel|play|tooltip_text"
msgid "Preview Effect"
msgstr "Vista previa del efeutu"
#. sUTTG
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:631
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:614
msgctxt "customanimationspanel|extended_tip|play"
msgid "Plays the selected animation effect in the preview."
msgstr "Reproduz l'efeutu d'animación escoyíu na vista previa."
#. LBEzG
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:658
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:626
msgctxt "customanimationspanel|box1_label"
msgid "Animation Deck"
msgstr ""
#. bUvjt
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:671
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:638
msgctxt "customanimationspanel|custom_animation_list_label"
msgid "Animation List"
msgstr ""
#. F7AZL
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:690
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:694
msgctxt "customanimationspanel|extended_tip|CustomAnimationsPanel"
msgid "Assigns effects to selected objects."
msgstr ""
diff --git a/source/ast/sfx2/messages.po b/source/ast/sfx2/messages.po
index 405e941f229..ee7265427dc 100644
--- a/source/ast/sfx2/messages.po
+++ b/source/ast/sfx2/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-27 19:09+0200\n"
-"PO-Revision-Date: 2021-09-28 20:36+0000\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
+"PO-Revision-Date: 2021-10-11 06:43+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1540149375.000000\n"
#. bHbFE
@@ -1117,7 +1117,7 @@ msgstr ""
#: include/sfx2/strings.hrc:207
msgctxt "STR_REDACTION_NO_DRAW_WARNING"
msgid "Draw module is needed for redaction. Please make sure you have %PRODUCTNAME Draw installed and working correctly."
-msgstr ""
+msgstr "Precísase %PRODUCTNAME Draw pa la censura. Cerciórate de que Draw tea instaláu y funcione afechiscamente."
#. FQ9kN
#: include/sfx2/strings.hrc:209
@@ -2553,7 +2553,7 @@ msgstr ""
#: sfx2/source/devtools/DevToolsStrings.hrc:56
msgctxt "STR_PROPERTY_ATTRIBUTE_IS_ATTRIBUTE"
msgid "attribute"
-msgstr ""
+msgstr "atributu"
#. BwCGg
#: sfx2/source/devtools/DevToolsStrings.hrc:57
@@ -2571,19 +2571,19 @@ msgstr ""
#: sfx2/source/devtools/DevToolsStrings.hrc:59
msgctxt "STR_PROPERTY_ATTRIBUTE_MAYBEVOID"
msgid "may be void"
-msgstr ""
+msgstr "pue ser «void»"
#. zECkD
#: sfx2/source/devtools/DevToolsStrings.hrc:60
msgctxt "STR_PROPERTY_ATTRIBUTE_READONLY"
msgid "read-only"
-msgstr ""
+msgstr "namái de llectura"
#. BtQDx
#: sfx2/source/devtools/DevToolsStrings.hrc:61
msgctxt "STR_PROPERTY_ATTRIBUTE_WRITEONLY"
msgid "write-only"
-msgstr ""
+msgstr "namái d'escritura"
#. dBQEu
#: sfx2/source/devtools/DevToolsStrings.hrc:62
@@ -2625,7 +2625,7 @@ msgstr ""
#: sfx2/source/devtools/DevToolsStrings.hrc:69
msgctxt "STR_PROPERTY_VALUE_SEQUENCE"
msgid "<Sequence [%1]>"
-msgstr ""
+msgstr "<Secuencia [%1]>"
#. KZ5M4
#: sfx2/source/devtools/DevToolsStrings.hrc:70
@@ -3062,147 +3062,147 @@ msgid "Contains descriptive information about the document."
msgstr ""
#. tC2rt
-#: sfx2/uiconfig/ui/developmenttool.ui:96
+#: sfx2/uiconfig/ui/developmenttool.ui:117
msgctxt "developmenttool|dom_current_selection_toggle-tooltip"
msgid "Current Selection In Document"
msgstr "Esbilla actual nel documentu"
#. Po2S3
-#: sfx2/uiconfig/ui/developmenttool.ui:97
+#: sfx2/uiconfig/ui/developmenttool.ui:118
msgctxt "developmenttool|dom_current_selection_toggle"
msgid "Current Selection"
msgstr "Esbilla actual"
#. eB6NR
-#: sfx2/uiconfig/ui/developmenttool.ui:109
+#: sfx2/uiconfig/ui/developmenttool.ui:130
msgctxt "developmenttool|dom_refresh_button-tooltip"
msgid "Refresh Document Model Tree View"
msgstr ""
#. FD2yt
-#: sfx2/uiconfig/ui/developmenttool.ui:110
+#: sfx2/uiconfig/ui/developmenttool.ui:131
msgctxt "developmenttool|dom_refresh_button"
msgid "Refresh"
msgstr ""
#. qVgcX
-#: sfx2/uiconfig/ui/developmenttool.ui:155
+#: sfx2/uiconfig/ui/developmenttool.ui:177
msgctxt "developmenttool|object"
msgid "Object"
msgstr "Oxetu"
#. x6GLB
-#: sfx2/uiconfig/ui/developmenttool.ui:203
+#: sfx2/uiconfig/ui/developmenttool.ui:226
msgctxt "developmenttool|tooltip-back"
msgid "Back"
msgstr ""
#. SinPk
-#: sfx2/uiconfig/ui/developmenttool.ui:204
+#: sfx2/uiconfig/ui/developmenttool.ui:227
msgctxt "developmenttool|back"
msgid "Back"
msgstr ""
#. 4CBb3
-#: sfx2/uiconfig/ui/developmenttool.ui:217
+#: sfx2/uiconfig/ui/developmenttool.ui:240
msgctxt "developmenttool|tooltip-inspect"
msgid "Inspect"
msgstr "Inspeicionar"
#. vCciB
-#: sfx2/uiconfig/ui/developmenttool.ui:218
+#: sfx2/uiconfig/ui/developmenttool.ui:241
msgctxt "developmenttool|inspect"
msgid "Inspect"
msgstr "Inspeicionar"
#. nFMXe
-#: sfx2/uiconfig/ui/developmenttool.ui:231
+#: sfx2/uiconfig/ui/developmenttool.ui:254
msgctxt "developmenttool|tooltip-refresh"
msgid "Refresh"
msgstr ""
#. CFuvW
-#: sfx2/uiconfig/ui/developmenttool.ui:232
+#: sfx2/uiconfig/ui/developmenttool.ui:255
msgctxt "developmenttool|refresh"
msgid "Refresh"
msgstr ""
#. 6gFmn
-#: sfx2/uiconfig/ui/developmenttool.ui:256
+#: sfx2/uiconfig/ui/developmenttool.ui:278
msgctxt "developmenttool|classname"
msgid "Class name:"
msgstr "Nome de la clase:"
#. a9j7f
-#: sfx2/uiconfig/ui/developmenttool.ui:319
-#: sfx2/uiconfig/ui/developmenttool.ui:364
-#: sfx2/uiconfig/ui/developmenttool.ui:418
+#: sfx2/uiconfig/ui/developmenttool.ui:343
+#: sfx2/uiconfig/ui/developmenttool.ui:392
+#: sfx2/uiconfig/ui/developmenttool.ui:450
msgctxt "developmenttool|name"
msgid "Name"
msgstr "Nome"
#. VFqAa
-#: sfx2/uiconfig/ui/developmenttool.ui:338
+#: sfx2/uiconfig/ui/developmenttool.ui:363
msgctxt "developmenttool|interfaces"
msgid "Interfaces"
msgstr ""
#. iCdWe
-#: sfx2/uiconfig/ui/developmenttool.ui:386
+#: sfx2/uiconfig/ui/developmenttool.ui:415
msgctxt "developmenttool|services"
msgid "Services"
msgstr "Servicios"
#. H7pYE
-#: sfx2/uiconfig/ui/developmenttool.ui:432
+#: sfx2/uiconfig/ui/developmenttool.ui:465
msgctxt "developmenttool|value"
msgid "Value"
msgstr "Valor"
#. Jjkqh
-#: sfx2/uiconfig/ui/developmenttool.ui:446
+#: sfx2/uiconfig/ui/developmenttool.ui:479
msgctxt "developmenttool|type"
msgid "Type"
msgstr "Triba"
#. zpXuY
-#: sfx2/uiconfig/ui/developmenttool.ui:460
+#: sfx2/uiconfig/ui/developmenttool.ui:493
msgctxt "developmenttool|info"
msgid "Info"
msgstr "Información"
#. AUktw
-#: sfx2/uiconfig/ui/developmenttool.ui:511
+#: sfx2/uiconfig/ui/developmenttool.ui:544
msgctxt "developmenttool|properties"
msgid "Properties"
msgstr "Propiedaes"
#. wGJtn
-#: sfx2/uiconfig/ui/developmenttool.ui:538
+#: sfx2/uiconfig/ui/developmenttool.ui:574
msgctxt "developmenttool|method"
msgid "Method"
msgstr "Métodu"
#. EnGfg
-#: sfx2/uiconfig/ui/developmenttool.ui:552
+#: sfx2/uiconfig/ui/developmenttool.ui:589
msgctxt "developmenttool|returntype"
msgid "Return Type"
msgstr ""
#. AKnSa
-#: sfx2/uiconfig/ui/developmenttool.ui:566
+#: sfx2/uiconfig/ui/developmenttool.ui:603
msgctxt "developmenttool|parameters"
msgid "Parameters"
msgstr ""
#. tmttq
-#: sfx2/uiconfig/ui/developmenttool.ui:580
+#: sfx2/uiconfig/ui/developmenttool.ui:617
msgctxt "developmenttool|implementation_class"
msgid "Implementation Class"
msgstr ""
#. Q2CBK
-#: sfx2/uiconfig/ui/developmenttool.ui:602
+#: sfx2/uiconfig/ui/developmenttool.ui:639
msgctxt "developmenttool|methods"
msgid "Methods"
msgstr "Métodos"
@@ -4500,7 +4500,7 @@ msgid "Do_n’t Save"
msgstr ""
#. dzVqL
-#: sfx2/uiconfig/ui/querysavedialog.ui:53
+#: sfx2/uiconfig/ui/querysavedialog.ui:56
msgctxt "querysavedialog|save"
msgid "_Save"
msgstr ""
diff --git a/source/ast/svtools/messages.po b/source/ast/svtools/messages.po
index 03d7dd29169..516f3d2dfa5 100644
--- a/source/ast/svtools/messages.po
+++ b/source/ast/svtools/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-20 13:03+0200\n"
-"PO-Revision-Date: 2021-09-29 21:36+0000\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
+"PO-Revision-Date: 2021-10-23 04:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/ast/>\n"
"Language: ast\n"
@@ -843,7 +843,7 @@ msgstr "Regla vertical"
#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
-msgstr "umbral de 1bit"
+msgstr "umbral de 1 bit"
#. dByxQ
#: include/svtools/strings.hrc:188
@@ -1011,7 +1011,7 @@ msgstr "Alimentación manual"
#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
-msgstr "Problema de papel"
+msgstr "Problema col papel"
#. RU3Li
#: include/svtools/strings.hrc:216
@@ -2812,7 +2812,7 @@ msgstr "Catalán"
#: svtools/inc/langtab.hrc:70
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Catalan (Valencian)"
-msgstr "Catalán (valencianu)"
+msgstr "Catalán (Valencia)"
#. ErGw2
#: svtools/inc/langtab.hrc:71
@@ -3652,7 +3652,7 @@ msgstr "Bosniu"
#: svtools/inc/langtab.hrc:210
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bengali (Bangladesh)"
-msgstr "Bengalí (Bangladesh)"
+msgstr "Bengalín (Bangladex)"
#. 9CTyH
#: svtools/inc/langtab.hrc:211
@@ -3742,7 +3742,7 @@ msgstr "Tibetanu (RP China)"
#: svtools/inc/langtab.hrc:225
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Georgian"
-msgstr "Xorxanu"
+msgstr "Xeorxanu"
#. vXTTC
#: svtools/inc/langtab.hrc:226
@@ -4096,7 +4096,7 @@ msgstr "Sami, Kildin (Rusia)"
#: svtools/inc/langtab.hrc:284
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Guarani (Paraguay)"
-msgstr ""
+msgstr "Guaraní (Paraguái)"
#. ESc5d
#: svtools/inc/langtab.hrc:285
@@ -4144,7 +4144,7 @@ msgstr "Maltés"
#: svtools/inc/langtab.hrc:292
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tok Pisin"
-msgstr "Tok Pisin"
+msgstr "Tok pisin"
#. kAWUo
#: svtools/inc/langtab.hrc:293
@@ -4402,7 +4402,7 @@ msgstr "Pali Latin"
#: svtools/inc/langtab.hrc:335
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kyrgyz (China)"
-msgstr "Kyrgyz (China)"
+msgstr "Kirguistanín (China)"
#. RCmma
#: svtools/inc/langtab.hrc:336
@@ -4750,7 +4750,7 @@ msgstr ""
#: svtools/inc/langtab.hrc:393
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Venetian"
-msgstr ""
+msgstr "Vénetu"
#. 8EbCs
#: svtools/inc/langtab.hrc:394
@@ -5010,6 +5010,12 @@ msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Klingon"
msgstr "Klingon"
+#. xFYhC
+#: svtools/inc/langtab.hrc:437
+msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
+msgid "English (Israel)"
+msgstr ""
+
#. fXSja
#: svtools/uiconfig/ui/addresstemplatedialog.ui:8
msgctxt "addresstemplatedialog|AddressTemplateDialog"
@@ -5113,355 +5119,355 @@ msgid "Modify dimensions"
msgstr ""
#. pyd6J
-#: svtools/uiconfig/ui/graphicexport.ui:146
+#: svtools/uiconfig/ui/graphicexport.ui:145
msgctxt "graphicexport|label5"
msgid "Width:"
msgstr "Anchor:"
#. drQDY
-#: svtools/uiconfig/ui/graphicexport.ui:160
+#: svtools/uiconfig/ui/graphicexport.ui:159
msgctxt "graphicexport|label6"
msgid "Height:"
msgstr "Altor:"
#. exCyd
-#: svtools/uiconfig/ui/graphicexport.ui:171
+#: svtools/uiconfig/ui/graphicexport.ui:170
msgctxt "graphicexport|modifyresolutioncb"
msgid "Modify resolution"
msgstr ""
#. ZWxGB
-#: svtools/uiconfig/ui/graphicexport.ui:189
+#: svtools/uiconfig/ui/graphicexport.ui:188
msgctxt "graphicexport|resolutionft"
msgid "Resolution:"
msgstr "Resolución:"
#. 2rwEJ
-#: svtools/uiconfig/ui/graphicexport.ui:209
+#: svtools/uiconfig/ui/graphicexport.ui:208
msgctxt "graphicexport|extended_tip|widthmf"
msgid "Specifies the measurement units."
msgstr "Especifica les unidaes de midida."
#. BPaB3
-#: svtools/uiconfig/ui/graphicexport.ui:229
+#: svtools/uiconfig/ui/graphicexport.ui:228
msgctxt "graphicexport|extended_tip|heightmf"
msgid "Specifies the height."
msgstr "Especifica l'altor."
#. Da3fv
-#: svtools/uiconfig/ui/graphicexport.ui:249
+#: svtools/uiconfig/ui/graphicexport.ui:248
msgctxt "graphicexport|extended_tip|resolutionmf"
msgid "Enter the image resolution. Select the measurement units from the list box."
msgstr "Inclúi la resolución de la imaxe. Seleicione les unidaes de midida dende la caxa de llista."
#. S9aHs
-#: svtools/uiconfig/ui/graphicexport.ui:263
+#: svtools/uiconfig/ui/graphicexport.ui:262
msgctxt "graphicexport|liststore2"
msgid "inches"
msgstr "pulgaes"
#. dCstP
-#: svtools/uiconfig/ui/graphicexport.ui:264
+#: svtools/uiconfig/ui/graphicexport.ui:263
msgctxt "graphicexport|liststore2"
msgid "cm"
msgstr "cm"
#. X5dLV
-#: svtools/uiconfig/ui/graphicexport.ui:265
+#: svtools/uiconfig/ui/graphicexport.ui:264
msgctxt "graphicexport|liststore2"
msgid "mm"
msgstr "mm"
#. 6vWVJ
-#: svtools/uiconfig/ui/graphicexport.ui:266
+#: svtools/uiconfig/ui/graphicexport.ui:265
msgctxt "graphicexport|liststore2"
msgid "points"
msgstr "puntos"
#. ZqyAj
-#: svtools/uiconfig/ui/graphicexport.ui:267
+#: svtools/uiconfig/ui/graphicexport.ui:266
msgctxt "graphicexport|liststore2"
msgid "pixels"
msgstr "píxeles"
#. QL8mE
-#: svtools/uiconfig/ui/graphicexport.ui:271
+#: svtools/uiconfig/ui/graphicexport.ui:270
msgctxt "graphicexport|extended_tip|widthlb"
msgid "Specifies the width."
msgstr "Especifica l'anchor."
#. kYLvv
-#: svtools/uiconfig/ui/graphicexport.ui:285
+#: svtools/uiconfig/ui/graphicexport.ui:284
msgctxt "graphicexport|liststore1"
msgid "pixels/cm"
msgstr "píxeles/cm"
#. zjmFd
-#: svtools/uiconfig/ui/graphicexport.ui:286
+#: svtools/uiconfig/ui/graphicexport.ui:285
msgctxt "graphicexport|liststore1"
msgid "pixels/inch"
msgstr "píxeles/pulgada"
#. iMZW3
-#: svtools/uiconfig/ui/graphicexport.ui:287
+#: svtools/uiconfig/ui/graphicexport.ui:286
msgctxt "graphicexport|liststore1"
msgid "pixels/meter"
msgstr "píxeles/metru"
#. ND5ki
-#: svtools/uiconfig/ui/graphicexport.ui:291
+#: svtools/uiconfig/ui/graphicexport.ui:290
msgctxt "graphicexport|extended_tip|resolutionlb"
msgid "Enter the image resolution. Select the measurement units from the list box."
msgstr "Inclúi la resolución de la imaxe. Seleicione les unidaes de midida dende la caxa de llista."
#. ENaqm
-#: svtools/uiconfig/ui/graphicexport.ui:309
+#: svtools/uiconfig/ui/graphicexport.ui:308
msgctxt "graphicexport|label1"
msgid "Size"
msgstr "Tamañu"
#. Dc5fy
-#: svtools/uiconfig/ui/graphicexport.ui:335
+#: svtools/uiconfig/ui/graphicexport.ui:334
msgctxt "graphicexport|extended_tip|colordepthlb"
msgid "Select the color depth from 8 bit grayscale or 24 bit true color."
msgstr "Escueya la fondura de color de 8 bits n'escala de grises o de 24 bits de color verdaderu."
#. hFaPC
-#: svtools/uiconfig/ui/graphicexport.ui:344
+#: svtools/uiconfig/ui/graphicexport.ui:343
msgctxt "graphicexport|label2"
msgid "Color Depth"
msgstr "Profundidá de color"
#. 5v8Jn
-#: svtools/uiconfig/ui/graphicexport.ui:380
+#: svtools/uiconfig/ui/graphicexport.ui:379
msgctxt "graphicexport|extended_tip|compressionjpgnf"
msgid "Sets the quality for the export. Choose from a low quality with minimal file size, up to a high quality and big file size."
msgstr ""
#. Tk5y2
-#: svtools/uiconfig/ui/graphicexport.ui:409
+#: svtools/uiconfig/ui/graphicexport.ui:408
msgctxt "graphicexport|label9"
msgid "Quality"
msgstr "Calidá"
#. AHkNV
-#: svtools/uiconfig/ui/graphicexport.ui:445
+#: svtools/uiconfig/ui/graphicexport.ui:444
msgctxt "graphicexport|extended_tip|compressionpngnf"
msgid "Sets the compression for the export. A high compression means a smaller, but slower to load image."
msgstr "Define la compresión de la esportación. Una compresión alta equival a una imaxe mas pequeña, pero más lenta pa cargase."
#. f4LYz
-#: svtools/uiconfig/ui/graphicexport.ui:474
+#: svtools/uiconfig/ui/graphicexport.ui:473
msgctxt "graphicexport|label"
msgid "Compression"
msgstr "Compresión"
#. hQadL
-#: svtools/uiconfig/ui/graphicexport.ui:494
+#: svtools/uiconfig/ui/graphicexport.ui:493
msgctxt "graphicexport|rlecb"
msgid "RLE encoding"
msgstr "Codificación RLE"
#. DqpKW
-#: svtools/uiconfig/ui/graphicexport.ui:505
+#: svtools/uiconfig/ui/graphicexport.ui:504
msgctxt "graphicexport|extended_tip|rlecb"
msgid "Applies RLE (Run Length Encoding) to the BMP graphics."
msgstr "Aplica RLE (Run Length Encoding) a los gráficos BMP."
#. EA7BF
-#: svtools/uiconfig/ui/graphicexport.ui:514
+#: svtools/uiconfig/ui/graphicexport.ui:513
msgctxt "graphicexport|label3"
msgid "Compression"
msgstr "Compresión"
#. qiLZK
-#: svtools/uiconfig/ui/graphicexport.ui:534
+#: svtools/uiconfig/ui/graphicexport.ui:533
msgctxt "graphicexport|interlacedcb"
msgid "Interlaced"
msgstr "Entrellazáu"
#. cLvu6
-#: svtools/uiconfig/ui/graphicexport.ui:545
+#: svtools/uiconfig/ui/graphicexport.ui:544
msgctxt "graphicexport|extended_tip|interlacedcb"
msgid "Specifies whether the graphic is to be saved in interlaced mode."
msgstr "Indica si'l gráficu tien de guardase'n mou entrellazáu."
#. BkbD3
-#: svtools/uiconfig/ui/graphicexport.ui:554
+#: svtools/uiconfig/ui/graphicexport.ui:553
msgctxt "graphicexport|label12"
msgid "Mode"
msgstr "Mou"
#. Nhj88
-#: svtools/uiconfig/ui/graphicexport.ui:574
+#: svtools/uiconfig/ui/graphicexport.ui:573
msgctxt "graphicexport|savetransparencycb"
msgid "Save transparency"
msgstr "Guardar tresparencia"
#. kZ3uW
-#: svtools/uiconfig/ui/graphicexport.ui:585
+#: svtools/uiconfig/ui/graphicexport.ui:584
msgctxt "graphicexport|extended_tip|savetransparencycb"
msgid "Specifies whether to save the background of the picture as transparent. Only objects will be visible in the GIF image. Use the Color Replacer to set the transparent color in the picture."
msgstr "Especifica si tien de guardase'l fondu de la imaxe como tresparencia. Sólo oxetos seran visibles na imaxe de GIF. Usa'l Goteru pa especificar el color de la imaxe que se deseya convertir a tresparencia."
#. ZPmXf
-#: svtools/uiconfig/ui/graphicexport.ui:594
+#: svtools/uiconfig/ui/graphicexport.ui:593
msgctxt "graphicexport|labe"
msgid "Drawing Objects"
msgstr "Oxetos de dibuxu"
#. KMCxb
-#: svtools/uiconfig/ui/graphicexport.ui:621
+#: svtools/uiconfig/ui/graphicexport.ui:620
msgctxt "graphicexport|binarycb"
msgid "Binary"
msgstr "Binariu"
#. qFTuj
-#: svtools/uiconfig/ui/graphicexport.ui:630
+#: svtools/uiconfig/ui/graphicexport.ui:629
msgctxt "graphicexport|extended_tip|binarycb"
msgid "Exports the file in binary format. The resulting file is smaller than a text file."
msgstr "Esportar el ficheru en formatu binariu. El ficheru resultante ye mas pequeñu que un ficheru de testu"
#. 8cZsH
-#: svtools/uiconfig/ui/graphicexport.ui:641
+#: svtools/uiconfig/ui/graphicexport.ui:640
msgctxt "graphicexport|textcb"
msgid "Text"
msgstr "Testu"
#. GFbg2
-#: svtools/uiconfig/ui/graphicexport.ui:650
+#: svtools/uiconfig/ui/graphicexport.ui:649
msgctxt "graphicexport|extended_tip|textcb"
msgid "Exports the file in ASCII text format. The resulting file is larger than a binary file."
msgstr "Esporta'l ficheru en formatu de testu ASCII. Esti tipu de ficheru ye más grande qu'un binariu."
#. ECUb9
-#: svtools/uiconfig/ui/graphicexport.ui:665
+#: svtools/uiconfig/ui/graphicexport.ui:664
msgctxt "graphicexport|label16"
msgid "Encoding"
msgstr "Codificación"
#. aeV52
-#: svtools/uiconfig/ui/graphicexport.ui:697
+#: svtools/uiconfig/ui/graphicexport.ui:696
msgctxt "graphicexport|tiffpreviewcb"
msgid "Image preview (TIFF)"
msgstr "Entever imaxe (TIFF)"
#. H8vtD
-#: svtools/uiconfig/ui/graphicexport.ui:706
+#: svtools/uiconfig/ui/graphicexport.ui:705
msgctxt "graphicexport|extended_tip|tiffpreviewcb"
msgid "Specifies whether a preview image is exported in the TIFF format together with the actual PostScript file."
msgstr "Especifica si tien d'esportase una vista previa en formatu TIFF xuntu col mesmu ficheru PostScript."
#. AeEJu
-#: svtools/uiconfig/ui/graphicexport.ui:717
+#: svtools/uiconfig/ui/graphicexport.ui:716
msgctxt "graphicexport|epsipreviewcb"
msgid "Interchange (EPSI)"
msgstr "Intercambéu (EPSI)"
#. gLbUQ
-#: svtools/uiconfig/ui/graphicexport.ui:725
+#: svtools/uiconfig/ui/graphicexport.ui:724
msgctxt "graphicexport|extended_tip|epsipreviewcb"
msgid "Specifies whether a monochrome preview graphic in EPSI format is exported together with the PostScript file. This format only contains printable characters from the 7-bit ASCII code."
msgstr "Especifica si tien d'esportase un gráficu de vista previa monocromática en formatu EPSI xuntu col mesmu ficheru PostScript. Esti formatu contién namái caráuteres imprentables ASCII de 7 bits."
#. sRbZb
-#: svtools/uiconfig/ui/graphicexport.ui:740
+#: svtools/uiconfig/ui/graphicexport.ui:739
msgctxt "graphicexport|label17"
msgid "Preview"
msgstr "Entever"
#. Jfbgx
-#: svtools/uiconfig/ui/graphicexport.ui:767
+#: svtools/uiconfig/ui/graphicexport.ui:766
msgctxt "graphicexport|color1rb"
msgid "Color"
msgstr "Color"
#. LNHEi
-#: svtools/uiconfig/ui/graphicexport.ui:776
+#: svtools/uiconfig/ui/graphicexport.ui:775
msgctxt "graphicexport|extended_tip|color1rb"
msgid "Exports the file in color."
msgstr "Esporta'l ficheru en color ."
#. VeZFK
-#: svtools/uiconfig/ui/graphicexport.ui:787
+#: svtools/uiconfig/ui/graphicexport.ui:786
msgctxt "graphicexport|color2rb"
msgid "Grayscale"
msgstr "Escala de buxos"
#. TWEx8
-#: svtools/uiconfig/ui/graphicexport.ui:796
+#: svtools/uiconfig/ui/graphicexport.ui:795
msgctxt "graphicexport|extended_tip|color2rb"
msgid "Exports the file in grayscale tones."
msgstr "Esporta'l ficheru en tonos d'escala de buxu."
#. BbSGF
-#: svtools/uiconfig/ui/graphicexport.ui:811
+#: svtools/uiconfig/ui/graphicexport.ui:810
msgctxt "graphicexport|label18"
msgid "Color Format"
msgstr "Formatu del color"
#. b6J7X
-#: svtools/uiconfig/ui/graphicexport.ui:838
+#: svtools/uiconfig/ui/graphicexport.ui:837
msgctxt "graphicexport|level1rb"
msgid "Level 1"
msgstr "Nivel 1"
#. pEcBC
-#: svtools/uiconfig/ui/graphicexport.ui:847
+#: svtools/uiconfig/ui/graphicexport.ui:846
msgctxt "graphicexport|extended_tip|level1rb"
msgid "Compression is not available at this level. Select the Level 1 option if your PostScript printer does not offer the capabilities of Level 2."
msgstr "Nesti nivel la compresión nun ta disponible. Escueyi la opción Nivel 1 si la imprentadora PostScript nun ufierta les capacidaes del Nivel 2."
#. kuCNX
-#: svtools/uiconfig/ui/graphicexport.ui:858
+#: svtools/uiconfig/ui/graphicexport.ui:857
msgctxt "graphicexport|level2rb"
msgid "Level 2"
msgstr "Nivel 2"
#. wiWrE
-#: svtools/uiconfig/ui/graphicexport.ui:867
+#: svtools/uiconfig/ui/graphicexport.ui:866
msgctxt "graphicexport|extended_tip|level2rb"
msgid "Select the Level 2 option if your output device supports colored bitmaps, palette graphics and compressed graphics."
msgstr "Escueyi la opción Nivel 2 si'l preséu de salida almite mapes de bits en color, gráficos de paleta y gráficos comprimíos."
#. JUuBZ
-#: svtools/uiconfig/ui/graphicexport.ui:882
+#: svtools/uiconfig/ui/graphicexport.ui:881
msgctxt "graphicexport|label19"
msgid "Version"
msgstr "Versión"
#. FjkbL
-#: svtools/uiconfig/ui/graphicexport.ui:909
+#: svtools/uiconfig/ui/graphicexport.ui:908
msgctxt "graphicexport|compresslzw"
msgid "LZW encoding"
msgstr "Codificación LZW"
#. 5cYFM
-#: svtools/uiconfig/ui/graphicexport.ui:918
+#: svtools/uiconfig/ui/graphicexport.ui:917
msgctxt "graphicexport|extended_tip|compresslzw"
msgid "LZW compression is the compression of a file into a smaller file using a table-based lookup algorithm."
msgstr "La compresión LZW ye la compresión d'un ficheru nun ficheru más pequeñu usando un algoritmu de gueta basáu en tables."
#. vXGXe
-#: svtools/uiconfig/ui/graphicexport.ui:929
+#: svtools/uiconfig/ui/graphicexport.ui:928
msgctxt "graphicexport|compressnone"
msgid "None"
msgstr "Denguna"
#. kW3QD
-#: svtools/uiconfig/ui/graphicexport.ui:938
+#: svtools/uiconfig/ui/graphicexport.ui:937
msgctxt "graphicexport|extended_tip|compressnone"
msgid "Specifies that you do not wish to use compression."
msgstr "Indica que nun quies utilizar compresión."
#. ghAqZ
-#: svtools/uiconfig/ui/graphicexport.ui:953
+#: svtools/uiconfig/ui/graphicexport.ui:952
msgctxt "graphicexport|label20"
msgid "Compression"
msgstr "Compresión"
#. LmAeC
-#: svtools/uiconfig/ui/graphicexport.ui:992
+#: svtools/uiconfig/ui/graphicexport.ui:991
msgctxt "graphicexport|label4"
msgid "Information"
msgstr "Información"
@@ -5809,7 +5815,7 @@ msgid "For the Skia changes to take effect, %PRODUCTNAME must be restarted."
msgstr ""
#. v9FjK
-#: svtools/uiconfig/ui/thineditcontrol.ui:69
+#: svtools/uiconfig/ui/thineditcontrol.ui:72
msgctxt "thineditcontrol|button"
msgid "Pick Date"
msgstr ""
diff --git a/source/ast/svx/messages.po b/source/ast/svx/messages.po
index f16e821341f..bea49c51ef5 100644
--- a/source/ast/svx/messages.po
+++ b/source/ast/svx/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-20 13:03+0200\n"
-"PO-Revision-Date: 2021-09-22 20:36+0000\n"
+"POT-Creation-Date: 2021-10-20 13:08+0200\n"
+"PO-Revision-Date: 2021-10-21 11:33+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/ast/>\n"
"Language: ast\n"
@@ -9997,125 +9997,125 @@ msgctxt "RID_SVXSTR_TRANSPARENCY"
msgid "Transparency:"
msgstr "Tresparencia:"
-#. zvqUJ
+#. PGuXa
#. strings related to borders
#: include/svx/strings.hrc:1777
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
-msgid "Set No Borders"
-msgstr ""
+msgid "No Borders"
+msgstr "Dengún berbesu"
-#. ABKEK
+#. LzhYZ
#: include/svx/strings.hrc:1778
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
-msgid "Set Outer Border Only"
+msgid "Outer Border Only"
msgstr ""
-#. ygU8P
+#. EniNF
#: include/svx/strings.hrc:1779
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
-msgid "Set Outer Border and Horizontal Lines"
+msgid "Outer Border and Horizontal Lines"
msgstr ""
-#. q5KJ8
+#. BuDWX
#: include/svx/strings.hrc:1780
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
-msgid "Set Outer Border and All Inner Lines"
+msgid "Outer Border and All Inner Lines"
msgstr ""
-#. TFuZb
+#. ckL2Z
#: include/svx/strings.hrc:1781
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
-msgid "Set Outer Border and Vertical Lines"
+msgid "Outer Border and Vertical Lines"
msgstr ""
-#. H5s9X
+#. Q9hj4
#: include/svx/strings.hrc:1782
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
-msgid "Set Outer Border Without Changing Inner Lines"
+msgid "Outer Border Without Changing Inner Lines"
msgstr ""
-#. T5crG
+#. b7wCr
#: include/svx/strings.hrc:1783
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
-msgid "Set Diagonal Lines Only"
+msgid "Diagonal Lines Only"
msgstr ""
-#. oodJY
+#. 8r98a
#: include/svx/strings.hrc:1784
-msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALLEFT"
-msgid "Set Diagonal Left Border"
+msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
+msgid "Diagonal Down Border"
msgstr ""
-#. gFFgD
+#. P4FGE
#: include/svx/strings.hrc:1785
-msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALRIGHT"
-msgid "Set Diagonal Right Border"
+msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
+msgid "Diagonal Up Border"
msgstr ""
-#. D6FCE
+#. VxBrT
#: include/svx/strings.hrc:1786
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
-msgid "Set Criss-Cross Border"
+msgid "Criss-Cross Border"
msgstr ""
-#. S6AAA
+#. hTi3j
#: include/svx/strings.hrc:1787
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
-msgid "Set All Four Borders"
+msgid "All Four Borders"
msgstr ""
-#. tknFJ
+#. o8fB8
#: include/svx/strings.hrc:1788
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
-msgid "Set Left and Right Borders Only"
+msgid "Left and Right Borders Only"
msgstr ""
-#. hSmnW
+#. 6NnM2
#: include/svx/strings.hrc:1789
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
-msgid "Set Top and Bottom Borders Only"
+msgid "Top and Bottom Borders Only"
msgstr ""
-#. DsEAB
+#. KTYVW
#: include/svx/strings.hrc:1790
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
-msgid "Set Top and Bottom Borders, and All Horizontal Lines"
+msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. Dy2UG
+#. fRcEu
#: include/svx/strings.hrc:1791
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Set Left Border Only"
+msgid "Left Border Only"
msgstr ""
-#. yF8RP
+#. uqzE7
#: include/svx/strings.hrc:1792
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Set Right Border Only"
+msgid "Right Border Only"
msgstr ""
-#. E2jZj
+#. 6ecLB
#: include/svx/strings.hrc:1793
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Set Top Border Only"
+msgid "Top Border Only"
msgstr ""
-#. 7ixEC
+#. B6KZc
#: include/svx/strings.hrc:1794
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Set Bottom Border Only"
+msgid "Bottom Border Only"
msgstr ""
-#. nCjXG
+#. aCMGz
#: include/svx/strings.hrc:1795
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
-msgid "Set Top and Bottom Borders, and All Inner Lines"
+msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
-#. 46Fq7
+#. t38dT
#: include/svx/strings.hrc:1796
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
-msgid "Set Left and Right Borders, and All Inner Lines"
+msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
#. wH3TZ
@@ -14530,13 +14530,13 @@ msgid "Delete footer?"
msgstr "¿Desaniciar el pie de páxina?"
#. GE3hT
-#: svx/uiconfig/ui/deletefooterdialog.ui:14
+#: svx/uiconfig/ui/deletefooterdialog.ui:13
msgctxt "deletefooterdialog|DeleteFooterDialog"
msgid "Are you sure you want to delete the footer?"
msgstr "¿Seguro que quier desaniciar el pie de páxina?"
#. EthWp
-#: svx/uiconfig/ui/deletefooterdialog.ui:15
+#: svx/uiconfig/ui/deletefooterdialog.ui:14
msgctxt "deletefooterdialog|DeleteFooterDialog"
msgid "All contents of the footer will be deleted and can not be restored."
msgstr "Desaniciaráse'l conteníu completu del pie de páxina y nun podrá recuperase."
@@ -14548,13 +14548,13 @@ msgid "Delete header?"
msgstr "¿Desaniciar la testera?"
#. YfZTx
-#: svx/uiconfig/ui/deleteheaderdialog.ui:14
+#: svx/uiconfig/ui/deleteheaderdialog.ui:13
msgctxt "deleteheaderdialog|DeleteHeaderDialog"
msgid "Are you sure you want to delete the header?"
msgstr "¿Seguro que quier desaniciar la testera?"
#. 86Aks
-#: svx/uiconfig/ui/deleteheaderdialog.ui:15
+#: svx/uiconfig/ui/deleteheaderdialog.ui:14
msgctxt "deleteheaderdialog|DeleteHeaderDialog"
msgid "All contents of the header will be deleted and can not be restored."
msgstr "Desaniciaráse'l conteníu completu de la testera y nun podrá recuperase."
@@ -19218,21 +19218,21 @@ msgid "Standard selection"
msgstr "Seleición estándar"
#. DGKv2
-#: svx/uiconfig/ui/selectionmenu.ui:20
+#: svx/uiconfig/ui/selectionmenu.ui:21
#, fuzzy
msgctxt "selectionmenu|extending"
msgid "Extending selection"
msgstr "Estender seleición"
#. fqC9L
-#: svx/uiconfig/ui/selectionmenu.ui:28
+#: svx/uiconfig/ui/selectionmenu.ui:30
#, fuzzy
msgctxt "selectionmenu|adding"
msgid "Adding selection"
msgstr "Amestar seleición"
#. DbjFT
-#: svx/uiconfig/ui/selectionmenu.ui:36
+#: svx/uiconfig/ui/selectionmenu.ui:39
#, fuzzy
msgctxt "selectionmenu|block"
msgid "Block selection"
@@ -20146,54 +20146,54 @@ msgid "More Options"
msgstr ""
#. DJ6vY
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:18
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:60
#, fuzzy
msgctxt "textcharacterspacingcontrol|very_tight"
msgid "Very Tight"
msgstr "~Mui estrechu"
#. GYD7d
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:34
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:77
#, fuzzy
msgctxt "textcharacterspacingcontrol|tight"
msgid "Tight"
msgstr "Drecha"
#. 8EcPH
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:50
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:94
msgctxt "textcharacterspacingcontrol|normal"
msgid "Normal"
msgstr "Normal"
#. hEuRj
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:66
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:111
#, fuzzy
msgctxt "textcharacterspacingcontrol|loose"
msgid "Loose"
msgstr "~Separtáu"
#. 4kdQx
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:82
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:128
#, fuzzy
msgctxt "textcharacterspacingcontrol|very_loose"
msgid "Very Loose"
msgstr "Mui sepa~rtáu"
#. hsu3c
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:98
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:145
#, fuzzy
msgctxt "textcharacterspacingcontrol|last_custom"
msgid "Last Custom Value"
msgstr "Últimos valores personalizaos"
#. pZZ9u
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:127
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:177
msgctxt "textcharacterspacingcontrol|kerning"
msgid "0.0"
msgstr ""
#. 6kNQD
-#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:139
+#: svx/uiconfig/ui/textcharacterspacingcontrol.ui:187
msgctxt "textcharacterspacingcontrol|label2"
msgid "Custom Value"
msgstr ""
@@ -20255,73 +20255,73 @@ msgid "Tabs"
msgstr "Etiquetes"
#. hHwzA
-#: svx/uiconfig/ui/textunderlinecontrol.ui:19
+#: svx/uiconfig/ui/textunderlinecontrol.ui:74
msgctxt "textunderlinecontrol|none"
msgid "(Without)"
msgstr "(Ensin)"
#. 9VDo4
-#: svx/uiconfig/ui/textunderlinecontrol.ui:37
+#: svx/uiconfig/ui/textunderlinecontrol.ui:93
msgctxt "textunderlinecontrol|single|tooltip_text"
msgid "Single"
msgstr "Simple"
#. czS3W
-#: svx/uiconfig/ui/textunderlinecontrol.ui:54
+#: svx/uiconfig/ui/textunderlinecontrol.ui:110
msgctxt "textunderlinecontrol|double|tooltip_text"
msgid "Double"
msgstr "Doble"
#. DBg8Y
-#: svx/uiconfig/ui/textunderlinecontrol.ui:71
+#: svx/uiconfig/ui/textunderlinecontrol.ui:127
msgctxt "textunderlinecontrol|bold|tooltip_text"
msgid "Bold"
msgstr "Negrina"
#. fNrBz
-#: svx/uiconfig/ui/textunderlinecontrol.ui:88
+#: svx/uiconfig/ui/textunderlinecontrol.ui:144
msgctxt "textunderlinecontrol|dot|tooltip_text"
msgid "Dotted"
msgstr "Puntiáu"
#. JEgvk
-#: svx/uiconfig/ui/textunderlinecontrol.ui:105
+#: svx/uiconfig/ui/textunderlinecontrol.ui:161
msgctxt "textunderlinecontrol|dotbold|tooltip_text"
msgid "Dotted (Bold)"
msgstr "Puntiáu (Negrina)"
#. 46nci
-#: svx/uiconfig/ui/textunderlinecontrol.ui:122
+#: svx/uiconfig/ui/textunderlinecontrol.ui:178
msgctxt "textunderlinecontrol|dash|tooltip_text"
msgid "Dash"
msgstr "Guión"
#. D8gB4
-#: svx/uiconfig/ui/textunderlinecontrol.ui:139
+#: svx/uiconfig/ui/textunderlinecontrol.ui:195
msgctxt "textunderlinecontrol|dashlong|tooltip_text"
msgid "Long Dash"
msgstr "Trazu llargu"
#. gkUzu
-#: svx/uiconfig/ui/textunderlinecontrol.ui:156
+#: svx/uiconfig/ui/textunderlinecontrol.ui:212
msgctxt "textunderlinecontrol|dashdot|tooltip_text"
msgid "Dot Dash"
msgstr "Puntu trazu"
#. qMLxK
-#: svx/uiconfig/ui/textunderlinecontrol.ui:173
+#: svx/uiconfig/ui/textunderlinecontrol.ui:229
msgctxt "textunderlinecontrol|dashdotdot|tooltip_text"
msgid "Dot Dot Dash"
msgstr "Puntu puntu trazu"
#. dusMw
-#: svx/uiconfig/ui/textunderlinecontrol.ui:190
+#: svx/uiconfig/ui/textunderlinecontrol.ui:246
msgctxt "textunderlinecontrol|wave|tooltip_text"
msgid "Wave"
msgstr "Onda"
#. xJTZe
-#: svx/uiconfig/ui/textunderlinecontrol.ui:204
+#: svx/uiconfig/ui/textunderlinecontrol.ui:260
msgctxt "textunderlinecontrol|moreoptions"
msgid "_More Options..."
msgstr "_Más opciones..."
diff --git a/source/ast/sw/messages.po b/source/ast/sw/messages.po
index 0a04ae602c6..45d66f3cbf4 100644
--- a/source/ast/sw/messages.po
+++ b/source/ast/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-04 19:52+0200\n"
-"PO-Revision-Date: 2021-10-03 06:36+0000\n"
+"POT-Creation-Date: 2021-10-25 12:50+0200\n"
+"PO-Revision-Date: 2021-10-05 21:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/ast/>\n"
"Language: ast\n"
@@ -4448,20 +4448,26 @@ msgctxt "STR_CONTENT_ENDNOTE"
msgid "Endnote"
msgstr ""
-#. jThGW
+#. sEQCK
#: sw/inc/strings.hrc:407
+msgctxt "STR_FOOTNOTE_ENDNOTE_SEPARATOR_TIP"
+msgid "Footnotes are listed above this line and Endnotes are listed below"
+msgstr ""
+
+#. jThGW
+#: sw/inc/strings.hrc:408
msgctxt "STR_DEFINE_NUMBERFORMAT"
msgid "Additional formats..."
msgstr "Formatos adicionales..."
#. Cfiyt
-#: sw/inc/strings.hrc:408
+#: sw/inc/strings.hrc:409
msgctxt "RID_STR_SYSTEM"
msgid "[System]"
msgstr "[Sistema]"
#. iD3WQ
-#: sw/inc/strings.hrc:409
+#: sw/inc/strings.hrc:410
msgctxt "STR_MULT_INTERACT_HYPH_WARN"
msgid ""
"The interactive hyphenation is already active\n"
@@ -4471,656 +4477,656 @@ msgstr ""
"n'otru documentu"
#. 68AYK
-#: sw/inc/strings.hrc:410
+#: sw/inc/strings.hrc:411
msgctxt "STR_HYPH_TITLE"
msgid "Hyphenation"
msgstr "Separtación silábica"
#. EDxsk
-#: sw/inc/strings.hrc:411
+#: sw/inc/strings.hrc:412
msgctxt "STR_HYPH_MISSING"
msgid "Missing hyphenation data"
msgstr ""
#. TEP66
-#: sw/inc/strings.hrc:412
+#: sw/inc/strings.hrc:413
msgctxt "STR_HYPH_MISSING"
msgid "Please install the hyphenation package for locale “%1”."
msgstr ""
#. bJFYS
-#: sw/inc/strings.hrc:413
+#: sw/inc/strings.hrc:414
msgctxt "STR_HIDDEN_CHANGES"
msgid "Track Changes"
msgstr "Siguimientu de cambeos"
#. DcXvE
-#: sw/inc/strings.hrc:414
+#: sw/inc/strings.hrc:415
msgctxt "STR_HIDDEN_CHANGES_DETAIL"
msgid "Document contains tracked changes and recording is enabled."
msgstr ""
#. zxuEu
-#: sw/inc/strings.hrc:415
+#: sw/inc/strings.hrc:416
msgctxt "STR_HIDDEN_CHANGES_DETAIL2"
msgid "Recording of changes is enabled."
msgstr ""
#. BH7Ud
-#: sw/inc/strings.hrc:416
+#: sw/inc/strings.hrc:417
msgctxt "STR_HIDDEN_CHANGES_DETAIL3"
msgid "Document contains tracked changes."
msgstr ""
#. MEN2d
#. Undo
-#: sw/inc/strings.hrc:419
+#: sw/inc/strings.hrc:420
msgctxt "STR_CANT_UNDO"
msgid "not possible"
msgstr "imposible"
#. 5GdxN
-#: sw/inc/strings.hrc:420
+#: sw/inc/strings.hrc:421
msgctxt "STR_DELETE_UNDO"
msgid "Delete $1"
msgstr "Desaniciar $1"
#. i6vB4
-#: sw/inc/strings.hrc:421
+#: sw/inc/strings.hrc:422
msgctxt "STR_INSERT_UNDO"
msgid "Insert $1"
msgstr "Inxertar $1"
#. JESFv
-#: sw/inc/strings.hrc:422
+#: sw/inc/strings.hrc:423
msgctxt "STR_OVR_UNDO"
msgid "Overwrite: $1"
msgstr "Sobrescribir: $1"
#. FVqpL
-#: sw/inc/strings.hrc:423
+#: sw/inc/strings.hrc:424
msgctxt "STR_SPLITNODE_UNDO"
msgid "New Paragraph"
msgstr "Párrafu nuevu"
#. r3iVE
-#: sw/inc/strings.hrc:424
+#: sw/inc/strings.hrc:425
msgctxt "STR_MOVE_UNDO"
msgid "Move"
msgstr "Mover"
#. Z2Ft8
-#: sw/inc/strings.hrc:425
+#: sw/inc/strings.hrc:426
msgctxt "STR_INSATTR_UNDO"
msgid "Apply attributes"
msgstr "Aplicar atributos"
#. hetuZ
-#: sw/inc/strings.hrc:426
+#: sw/inc/strings.hrc:427
msgctxt "STR_SETFMTCOLL_UNDO"
msgid "Apply Styles: $1"
msgstr "Aplicar estilos: $1"
#. GokWu
-#: sw/inc/strings.hrc:427
+#: sw/inc/strings.hrc:428
msgctxt "STR_RESET_ATTR_UNDO"
msgid "Reset attributes"
msgstr "Reaniciar atributos"
#. mDgEJ
-#: sw/inc/strings.hrc:428
+#: sw/inc/strings.hrc:429
msgctxt "STR_INSFMT_ATTR_UNDO"
msgid "Change style: $1"
msgstr "Camudar estilu: $1"
#. onBFE
-#: sw/inc/strings.hrc:429
+#: sw/inc/strings.hrc:430
msgctxt "STR_INSERT_DOC_UNDO"
msgid "Insert file"
msgstr "Inxertar ficheru"
#. WCCkF
-#: sw/inc/strings.hrc:430
+#: sw/inc/strings.hrc:431
msgctxt "STR_INSERT_GLOSSARY"
msgid "Insert AutoText"
msgstr "Inxertar AutoTestu"
#. CyNXC
-#: sw/inc/strings.hrc:431
+#: sw/inc/strings.hrc:432
msgctxt "STR_DELBOOKMARK"
msgid "Delete bookmark: $1"
msgstr "Desaniciar marcador: $1"
#. 54y8f
-#: sw/inc/strings.hrc:432
+#: sw/inc/strings.hrc:433
msgctxt "STR_INSBOOKMARK"
msgid "Insert bookmark: $1"
msgstr "Inxertar marcador: $1"
#. XHkEY
-#: sw/inc/strings.hrc:433
+#: sw/inc/strings.hrc:434
msgctxt "STR_SORT_TBL"
msgid "Sort table"
msgstr "Ordenar tabla"
#. gui6q
-#: sw/inc/strings.hrc:434
+#: sw/inc/strings.hrc:435
msgctxt "STR_SORT_TXT"
msgid "Sort text"
msgstr "Ordenar testu"
#. APAMG
-#: sw/inc/strings.hrc:435
+#: sw/inc/strings.hrc:436
msgctxt "STR_INSTABLE_UNDO"
msgid "Insert table: $1$2$3"
msgstr "Inxertar tabla: $1$2$3"
#. 4pGhz
-#: sw/inc/strings.hrc:436
+#: sw/inc/strings.hrc:437
msgctxt "STR_TEXTTOTABLE_UNDO"
msgid "Convert text -> table"
msgstr "Convertir testu -> tabla"
#. h3EH7
-#: sw/inc/strings.hrc:437
+#: sw/inc/strings.hrc:438
msgctxt "STR_TABLETOTEXT_UNDO"
msgid "Convert table -> text"
msgstr "Convertir tabla -> testu"
#. uKreq
-#: sw/inc/strings.hrc:438
+#: sw/inc/strings.hrc:439
msgctxt "STR_COPY_UNDO"
msgid "Copy: $1"
msgstr "Copiar: $1"
#. BfGaZ
-#: sw/inc/strings.hrc:439
+#: sw/inc/strings.hrc:440
msgctxt "STR_REPLACE_UNDO"
msgid "Replace $1 $2 $3"
msgstr "Trocar $1 $2 $3"
#. GEC4C
-#: sw/inc/strings.hrc:440
+#: sw/inc/strings.hrc:441
msgctxt "STR_INSERT_PAGE_BREAK_UNDO"
msgid "Insert page break"
msgstr "Inxertar saltu de páxina"
#. mrWg2
-#: sw/inc/strings.hrc:441
+#: sw/inc/strings.hrc:442
msgctxt "STR_INSERT_COLUMN_BREAK_UNDO"
msgid "Insert column break"
msgstr "Inxertar saltu de columna"
#. MGqRt
-#: sw/inc/strings.hrc:442
+#: sw/inc/strings.hrc:443
msgctxt "STR_INSERT_ENV_UNDO"
msgid "Insert Envelope"
msgstr "Inxertar sobre"
#. g8ALR
-#: sw/inc/strings.hrc:443
+#: sw/inc/strings.hrc:444
msgctxt "STR_DRAG_AND_COPY"
msgid "Copy: $1"
msgstr "Copiar: $1"
#. qHdLG
-#: sw/inc/strings.hrc:444
+#: sw/inc/strings.hrc:445
msgctxt "STR_DRAG_AND_MOVE"
msgid "Move: $1"
msgstr "Mover: $1"
#. xqxPn
-#: sw/inc/strings.hrc:445
+#: sw/inc/strings.hrc:446
msgctxt "STR_INSERT_CHART"
msgid "Insert %PRODUCTNAME Chart"
msgstr "Inxertar gráfica de %PRODUCTNAME"
#. qWEVG
-#: sw/inc/strings.hrc:446
+#: sw/inc/strings.hrc:447
msgctxt "STR_INSERTFLY"
msgid "Insert frame"
msgstr "Inxertar marcu"
#. GmqXE
-#: sw/inc/strings.hrc:447
+#: sw/inc/strings.hrc:448
msgctxt "STR_DELETEFLY"
msgid "Delete frame"
msgstr "Desaniciar marcu"
#. z9Eai
-#: sw/inc/strings.hrc:448
+#: sw/inc/strings.hrc:449
msgctxt "STR_AUTOFORMAT"
msgid "AutoFormat"
msgstr "Auto formatu"
#. E6uaH
-#: sw/inc/strings.hrc:449
+#: sw/inc/strings.hrc:450
msgctxt "STR_TABLEHEADLINE"
msgid "Table heading"
msgstr "Testera de la tabla"
#. gnndv
-#: sw/inc/strings.hrc:450
+#: sw/inc/strings.hrc:451
msgctxt "STR_REPLACE"
msgid "Replace: $1 $2 $3"
msgstr "Trocar: $1 $2 $3"
#. WwuFC
-#: sw/inc/strings.hrc:451
+#: sw/inc/strings.hrc:452
msgctxt "STR_INSERTSECTION"
msgid "Insert section"
msgstr "Inxertar estaya"
#. 7pzWX
-#: sw/inc/strings.hrc:452
+#: sw/inc/strings.hrc:453
msgctxt "STR_DELETESECTION"
msgid "Delete section"
msgstr "Desaniciar estaya"
#. AFkoM
-#: sw/inc/strings.hrc:453
+#: sw/inc/strings.hrc:454
msgctxt "STR_CHANGESECTION"
msgid "Modify section"
msgstr "Camudar estaya"
#. BY9gB
-#: sw/inc/strings.hrc:454
+#: sw/inc/strings.hrc:455
msgctxt "STR_CHANGEDEFATTR"
msgid "Modify default values"
msgstr "Camudar valores predeterminaos"
#. X7eMx
-#: sw/inc/strings.hrc:455
+#: sw/inc/strings.hrc:456
msgctxt "STR_REPLACE_STYLE"
msgid "Replace style: $1 $2 $3"
msgstr "Camudar estilu: $1 $2 $3"
#. EXFvJ
-#: sw/inc/strings.hrc:456
+#: sw/inc/strings.hrc:457
msgctxt "STR_DELETE_PAGE_BREAK"
msgid "Delete page break"
msgstr "Desaniciar saltu de páxina"
#. kHVr9
-#: sw/inc/strings.hrc:457
+#: sw/inc/strings.hrc:458
msgctxt "STR_TEXT_CORRECTION"
msgid "Text Correction"
msgstr "Correición del testu"
#. ZPCQf
-#: sw/inc/strings.hrc:458
+#: sw/inc/strings.hrc:459
msgctxt "STR_OUTLINE_LR"
msgid "Promote/demote outline"
msgstr "Xubir/baxar cadarma"
#. WQJz2
-#: sw/inc/strings.hrc:459
+#: sw/inc/strings.hrc:460
msgctxt "STR_OUTLINE_UD"
msgid "Move outline"
msgstr "Mover cadarma"
#. 3UGKP
-#: sw/inc/strings.hrc:460
+#: sw/inc/strings.hrc:461
msgctxt "STR_OUTLINE_EDIT"
msgid "Modify outline"
msgstr ""
#. RjcRH
-#: sw/inc/strings.hrc:461
+#: sw/inc/strings.hrc:462
msgctxt "STR_INSNUM"
msgid "Insert numbering"
msgstr "Inxertar numberación"
#. hbCQa
-#: sw/inc/strings.hrc:462
+#: sw/inc/strings.hrc:463
msgctxt "STR_NUMUP"
msgid "Promote level"
msgstr "Xubir un nivel"
#. 63Ec4
-#: sw/inc/strings.hrc:463
+#: sw/inc/strings.hrc:464
msgctxt "STR_NUMDOWN"
msgid "Demote level"
msgstr "Baxar un nivel"
#. FGciC
-#: sw/inc/strings.hrc:464
+#: sw/inc/strings.hrc:465
msgctxt "STR_MOVENUM"
msgid "Move paragraphs"
msgstr "Mover párrafos"
#. WdMCK
-#: sw/inc/strings.hrc:465
+#: sw/inc/strings.hrc:466
msgctxt "STR_INSERTDRAW"
msgid "Insert drawing object: $1"
msgstr "Inxertar oxetu de dibuxu: $1"
#. ErB3W
-#: sw/inc/strings.hrc:466
+#: sw/inc/strings.hrc:467
msgctxt "STR_NUMORNONUM"
msgid "Number On/Off"
msgstr "Activar/Desactivar númberu"
#. rEZvN
-#: sw/inc/strings.hrc:467
+#: sw/inc/strings.hrc:468
msgctxt "STR_INC_LEFTMARGIN"
msgid "Increase Indent"
msgstr "Aumentar sangría"
#. aJxcG
-#: sw/inc/strings.hrc:468
+#: sw/inc/strings.hrc:469
msgctxt "STR_DEC_LEFTMARGIN"
msgid "Decrease indent"
msgstr "Amenorgar sangría"
#. 4GP7c
-#: sw/inc/strings.hrc:469
+#: sw/inc/strings.hrc:470
msgctxt "STR_INSERTLABEL"
msgid "Insert caption: $1"
msgstr "Inxertar lleenda: $1"
#. GGFM8
-#: sw/inc/strings.hrc:470
+#: sw/inc/strings.hrc:471
msgctxt "STR_SETNUMRULESTART"
msgid "Restart numbering"
msgstr "Reaniciar numberación"
#. pHfp7
-#: sw/inc/strings.hrc:471
+#: sw/inc/strings.hrc:472
msgctxt "STR_CHANGEFTN"
msgid "Modify footnote"
msgstr "Camudar nota al pie"
#. Knr9y
-#: sw/inc/strings.hrc:472
+#: sw/inc/strings.hrc:473
msgctxt "STR_ACCEPT_REDLINE"
msgid "Accept change: $1"
msgstr "Aceutar cambiu: $1"
#. jAvjr
-#: sw/inc/strings.hrc:473
+#: sw/inc/strings.hrc:474
msgctxt "STR_REJECT_REDLINE"
msgid "Reject change: $1"
msgstr "Torgar el cambiu: $1"
#. uCGqy
-#: sw/inc/strings.hrc:474
+#: sw/inc/strings.hrc:475
msgctxt "STR_SPLIT_TABLE"
msgid "Split Table"
msgstr "Dixebrar tabla"
#. TJCZ8
-#: sw/inc/strings.hrc:475
+#: sw/inc/strings.hrc:476
msgctxt "STR_DONTEXPAND"
msgid "Stop attribute"
msgstr "Parar atributu"
#. qyCiy
-#: sw/inc/strings.hrc:476
+#: sw/inc/strings.hrc:477
msgctxt "STR_AUTOCORRECT"
msgid "AutoCorrect"
msgstr "AutoCorreición"
#. f4Jfr
-#: sw/inc/strings.hrc:477
+#: sw/inc/strings.hrc:478
msgctxt "STR_MERGE_TABLE"
msgid "Merge table"
msgstr "Amestar la tabla"
#. BLcCC
-#: sw/inc/strings.hrc:478
+#: sw/inc/strings.hrc:479
msgctxt "STR_TRANSLITERATE"
msgid "Change Case"
msgstr "Camudar mayúscules y minúscules"
#. BTGyD
-#: sw/inc/strings.hrc:479
+#: sw/inc/strings.hrc:480
msgctxt "STR_DELNUM"
msgid "Delete numbering"
msgstr "Desaniciar numberación"
#. TMvTD
-#: sw/inc/strings.hrc:480
+#: sw/inc/strings.hrc:481
msgctxt "STR_DRAWUNDO"
msgid "Drawing objects: $1"
msgstr "Oxetos de dibuxu: $1"
#. FG7rN
-#: sw/inc/strings.hrc:481
+#: sw/inc/strings.hrc:482
msgctxt "STR_DRAWGROUP"
msgid "Group draw objects"
msgstr "Aconceyar oxetos de dibuxu"
#. xZqoJ
-#: sw/inc/strings.hrc:482
+#: sw/inc/strings.hrc:483
msgctxt "STR_DRAWUNGROUP"
msgid "Ungroup drawing objects"
msgstr "Separtar oxetos de dibuxu"
#. FA3Vo
-#: sw/inc/strings.hrc:483
+#: sw/inc/strings.hrc:484
msgctxt "STR_DRAWDELETE"
msgid "Delete drawing objects"
msgstr "Desaniciar oxetos de dibuxu"
#. MbJSs
-#: sw/inc/strings.hrc:484
+#: sw/inc/strings.hrc:485
msgctxt "STR_REREAD"
msgid "Replace Image"
msgstr "Sustituir la imaxe"
#. 6GmVr
-#: sw/inc/strings.hrc:485
+#: sw/inc/strings.hrc:486
msgctxt "STR_DELGRF"
msgid "Delete Image"
msgstr "Desaniciar la imaxe"
#. PAmBF
-#: sw/inc/strings.hrc:486
+#: sw/inc/strings.hrc:487
msgctxt "STR_TABLE_ATTR"
msgid "Apply table attributes"
msgstr "Aplicar atributos de tabla"
#. GA8gF
-#: sw/inc/strings.hrc:487
+#: sw/inc/strings.hrc:488
msgctxt "STR_UNDO_TABLE_AUTOFMT"
msgid "AutoFormat Table"
msgstr "Formatu automáticu de Tabla"
#. AAPTL
-#: sw/inc/strings.hrc:488
+#: sw/inc/strings.hrc:489
msgctxt "STR_UNDO_TABLE_INSCOL"
msgid "Insert Column"
msgstr "Inxertar columna"
#. tA7ss
-#: sw/inc/strings.hrc:489
+#: sw/inc/strings.hrc:490
msgctxt "STR_UNDO_TABLE_INSROW"
msgid "Insert Row"
msgstr "Inxertar filera"
#. LAzxr
-#: sw/inc/strings.hrc:490
+#: sw/inc/strings.hrc:491
msgctxt "STR_UNDO_TABLE_DELBOX"
msgid "Delete row/column"
msgstr "Desaniciar filera/columna"
#. yFDYp
-#: sw/inc/strings.hrc:491
+#: sw/inc/strings.hrc:492
msgctxt "STR_UNDO_COL_DELETE"
msgid "Delete column"
msgstr "Desaniciar columna"
#. 9SF9L
-#: sw/inc/strings.hrc:492
+#: sw/inc/strings.hrc:493
msgctxt "STR_UNDO_ROW_DELETE"
msgid "Delete row"
msgstr "Desaniciar filera"
#. FnLC7
-#: sw/inc/strings.hrc:493
+#: sw/inc/strings.hrc:494
msgctxt "STR_UNDO_TABLE_SPLIT"
msgid "Split Cells"
msgstr "Dixebrar caxelles"
#. 3Em7B
-#: sw/inc/strings.hrc:494
+#: sw/inc/strings.hrc:495
msgctxt "STR_UNDO_TABLE_MERGE"
msgid "Merge Cells"
msgstr "Amestar caxelles"
#. 3VVmF
-#: sw/inc/strings.hrc:495
+#: sw/inc/strings.hrc:496
msgctxt "STR_TABLE_NUMFORMAT"
msgid "Format cell"
msgstr "Formatu de la caxella"
#. UbSKw
-#: sw/inc/strings.hrc:496
+#: sw/inc/strings.hrc:497
msgctxt "STR_INSERT_TOX"
msgid "Insert index/table"
msgstr "Inxertar índiz/tabla"
#. szpbj
-#: sw/inc/strings.hrc:497
+#: sw/inc/strings.hrc:498
msgctxt "STR_CLEAR_TOX_RANGE"
msgid "Remove index/table"
msgstr "Desaniciar índiz/tabla"
#. cN5DN
-#: sw/inc/strings.hrc:498
+#: sw/inc/strings.hrc:499
msgctxt "STR_TABLE_TBLCPYTBL"
msgid "Copy table"
msgstr "Copiar tabla"
#. eUFgx
-#: sw/inc/strings.hrc:499
+#: sw/inc/strings.hrc:500
msgctxt "STR_TABLE_CPYTBL"
msgid "Copy table"
msgstr "Copiar tabla"
#. TC6mz
-#: sw/inc/strings.hrc:500
+#: sw/inc/strings.hrc:501
msgctxt "STR_INS_FROM_SHADOWCRSR"
msgid "Set cursor"
msgstr "Configurar cursor"
#. 4GStA
-#: sw/inc/strings.hrc:501
+#: sw/inc/strings.hrc:502
msgctxt "STR_UNDO_CHAIN"
msgid "Link frames"
msgstr ""
#. XV4Ap
-#: sw/inc/strings.hrc:502
+#: sw/inc/strings.hrc:503
msgctxt "STR_UNDO_UNCHAIN"
msgid "Unlink frames"
msgstr ""
#. vUJG9
-#: sw/inc/strings.hrc:503
+#: sw/inc/strings.hrc:504
msgctxt "STR_UNDO_FTNINFO"
msgid "Modify footnote options"
msgstr "Camudar les opciones de notes al pie"
#. AgREs
-#: sw/inc/strings.hrc:504
+#: sw/inc/strings.hrc:505
msgctxt "STR_UNDO_COMPAREDOC"
msgid "Compare Document"
msgstr "Comparar documentu"
#. kZATW
-#: sw/inc/strings.hrc:505
+#: sw/inc/strings.hrc:506
msgctxt "STR_UNDO_SETFLYFRMFMT"
msgid "Apply frame style: $1"
msgstr "Aplicar estilu de marcu: $1"
#. 4Ae2X
-#: sw/inc/strings.hrc:506
+#: sw/inc/strings.hrc:507
msgctxt "STR_UNDO_SETRUBYATTR"
msgid "Ruby Setting"
msgstr "Atributu de ruby"
#. J4AUR
-#: sw/inc/strings.hrc:507
+#: sw/inc/strings.hrc:508
msgctxt "STR_INSERT_FOOTNOTE"
msgid "Insert footnote"
msgstr "Inxertar nota al pie"
#. RMgFD
-#: sw/inc/strings.hrc:508
+#: sw/inc/strings.hrc:509
msgctxt "STR_INSERT_URLBTN"
msgid "insert URL button"
msgstr "inxertar botón d'URL"
#. UKN7k
-#: sw/inc/strings.hrc:509
+#: sw/inc/strings.hrc:510
msgctxt "STR_INSERT_URLTXT"
msgid "Insert Hyperlink"
msgstr "Inxertar hiperenllaz"
#. 9odT8
-#: sw/inc/strings.hrc:510
+#: sw/inc/strings.hrc:511
msgctxt "STR_DELETE_INVISIBLECNTNT"
msgid "remove invisible content"
msgstr "desaniciar conteníu invisible"
#. e6U2R
-#: sw/inc/strings.hrc:511
+#: sw/inc/strings.hrc:512
msgctxt "STR_TOXCHANGE"
msgid "Table/index changed"
msgstr "Tabla/índiz camudáu"
#. JpGh6
-#: sw/inc/strings.hrc:512
+#: sw/inc/strings.hrc:513
msgctxt "STR_START_QUOTE"
msgid "“"
msgstr "«"
#. kZoAG
-#: sw/inc/strings.hrc:513
+#: sw/inc/strings.hrc:514
msgctxt "STR_END_QUOTE"
msgid "”"
msgstr "»"
#. wNZDq
-#: sw/inc/strings.hrc:514
+#: sw/inc/strings.hrc:515
msgctxt "STR_LDOTS"
msgid "..."
msgstr "..."
#. yiQgo
-#: sw/inc/strings.hrc:515
+#: sw/inc/strings.hrc:516
msgctxt "STR_MULTISEL"
msgid "multiple selection"
msgstr "esbilla múltiple"
#. qFESB
-#: sw/inc/strings.hrc:516
+#: sw/inc/strings.hrc:517
msgctxt "STR_TYPING_UNDO"
msgid "Typing: $1"
msgstr "Escritura: $1"
#. A6HSG
-#: sw/inc/strings.hrc:517
+#: sw/inc/strings.hrc:518
msgctxt "STR_PASTE_CLIPBOARD_UNDO"
msgid "Paste clipboard"
msgstr "Apegar del cartafueyu"
#. mfDMF
-#: sw/inc/strings.hrc:518
+#: sw/inc/strings.hrc:519
msgctxt "STR_YIELDS"
msgid "→"
msgstr "→"
#. wNRhZ
-#: sw/inc/strings.hrc:519
+#: sw/inc/strings.hrc:520
msgctxt "STR_OCCURRENCES_OF"
msgid "occurrences of"
msgstr "ocurrencies de"
#. hHUZi
-#: sw/inc/strings.hrc:520
+#: sw/inc/strings.hrc:521
msgctxt "STR_UNDO_TABS"
msgid "One tab"
msgid_plural "$1 tabs"
@@ -5128,7 +5134,7 @@ msgstr[0] ""
msgstr[1] ""
#. eP6mC
-#: sw/inc/strings.hrc:521
+#: sw/inc/strings.hrc:522
msgctxt "STR_UNDO_NLS"
msgid "One line break"
msgid_plural "$1 line breaks"
@@ -5136,312 +5142,312 @@ msgstr[0] "1 saltu de ringlera"
msgstr[1] "$1 saltos de ringlera"
#. yS3nP
-#: sw/inc/strings.hrc:522
+#: sw/inc/strings.hrc:523
msgctxt "STR_UNDO_PAGEBREAKS"
msgid "page break"
msgstr "saltu de páxina"
#. Q4YVg
-#: sw/inc/strings.hrc:523
+#: sw/inc/strings.hrc:524
msgctxt "STR_UNDO_COLBRKS"
msgid "column break"
msgstr "saltu de columna"
#. L6qva
-#: sw/inc/strings.hrc:524
+#: sw/inc/strings.hrc:525
msgctxt "STR_UNDO_REDLINE_INSERT"
msgid "Insert $1"
msgstr "Inxertar $1"
#. i8ZQo
-#: sw/inc/strings.hrc:525
+#: sw/inc/strings.hrc:526
msgctxt "STR_UNDO_REDLINE_DELETE"
msgid "Delete $1"
msgstr "Desaniciar $1"
#. 5KECk
-#: sw/inc/strings.hrc:526
+#: sw/inc/strings.hrc:527
#, fuzzy
msgctxt "STR_UNDO_REDLINE_FORMAT"
msgid "Attributes changed"
msgstr "Atributos camudaos"
#. N7CUk
-#: sw/inc/strings.hrc:527
+#: sw/inc/strings.hrc:528
#, fuzzy
msgctxt "STR_UNDO_REDLINE_TABLE"
msgid "Table changed"
msgstr "Camudamientu de tabla"
#. DCGPF
-#: sw/inc/strings.hrc:528
+#: sw/inc/strings.hrc:529
#, fuzzy
msgctxt "STR_UNDO_REDLINE_FMTCOLL"
msgid "Style changed"
msgstr "Camudamientu de tabla"
#. p77WZ
-#: sw/inc/strings.hrc:529
+#: sw/inc/strings.hrc:530
msgctxt "STR_UNDO_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr ""
#. nehrq
-#: sw/inc/strings.hrc:530
+#: sw/inc/strings.hrc:531
msgctxt "STR_UNDO_REDLINE_TABLE_ROW_INSERT"
msgid "Insert Row"
msgstr "Inxertar filera"
#. Ud4qT
-#: sw/inc/strings.hrc:531
+#: sw/inc/strings.hrc:532
msgctxt "STR_UNDO_REDLINE_TABLE_ROW_DELETE"
msgid "Delete Row"
msgstr "Desaniciar filera"
#. GvxsC
-#: sw/inc/strings.hrc:532
+#: sw/inc/strings.hrc:533
msgctxt "STR_UNDO_REDLINE_TABLE_CELL_INSERT"
msgid "Insert Cell"
msgstr "Inxertar caxella"
#. ZMrVY
-#: sw/inc/strings.hrc:533
+#: sw/inc/strings.hrc:534
#, fuzzy
msgctxt "STR_UNDO_REDLINE_TABLE_CELL_DELETE"
msgid "Delete Cell"
msgstr "Desaniciar caxelles"
#. DqprY
-#: sw/inc/strings.hrc:534
+#: sw/inc/strings.hrc:535
msgctxt "STR_N_REDLINES"
msgid "$1 changes"
msgstr "$1 cambios"
#. ve5ZA
-#: sw/inc/strings.hrc:535
+#: sw/inc/strings.hrc:536
msgctxt "STR_UNDO_PAGEDESC"
msgid "Change page style: $1"
msgstr "Camudar estilu de páxina: $1"
#. RDkdy
-#: sw/inc/strings.hrc:536
+#: sw/inc/strings.hrc:537
msgctxt "STR_UNDO_PAGEDESC_CREATE"
msgid "Create page style: $1"
msgstr "Crear estilu de páxina: $1"
#. tBVzV
-#: sw/inc/strings.hrc:537
+#: sw/inc/strings.hrc:538
msgctxt "STR_UNDO_PAGEDESC_DELETE"
msgid "Delete page style: $1"
msgstr "Desaniciar estilu de páxina: $1"
#. wzjRB
-#: sw/inc/strings.hrc:538
+#: sw/inc/strings.hrc:539
msgctxt "STR_UNDO_PAGEDESC_RENAME"
msgid "Rename page style: $1 $2 $3"
msgstr "Renomar estilu de páxina: $1 $2 $3"
#. UcTVv
-#: sw/inc/strings.hrc:539
+#: sw/inc/strings.hrc:540
msgctxt "STR_UNDO_HEADER_FOOTER"
msgid "Header/footer changed"
msgstr "Testera/pie de páxina camudáu"
#. tGyeC
-#: sw/inc/strings.hrc:540
+#: sw/inc/strings.hrc:541
msgctxt "STR_UNDO_FIELD"
msgid "Field changed"
msgstr "Campu camudáu"
#. xh3dq
-#: sw/inc/strings.hrc:541
+#: sw/inc/strings.hrc:542
msgctxt "STR_UNDO_TXTFMTCOL_CREATE"
msgid "Create paragraph style: $1"
msgstr "Crear estilu de párrafu: $1"
#. aRf6Z
-#: sw/inc/strings.hrc:542
+#: sw/inc/strings.hrc:543
msgctxt "STR_UNDO_TXTFMTCOL_DELETE"
msgid "Delete paragraph style: $1"
msgstr "Desaniciar estilu de párrafu: $1"
#. DtD6w
-#: sw/inc/strings.hrc:543
+#: sw/inc/strings.hrc:544
msgctxt "STR_UNDO_TXTFMTCOL_RENAME"
msgid "Rename paragraph style: $1 $2 $3"
msgstr "Renomar estilu de párrafu: $1 $2 $3"
#. J2FcF
-#: sw/inc/strings.hrc:544
+#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_CHARFMT_CREATE"
msgid "Create character style: $1"
msgstr "Crear estilu de caráuter: $1"
#. FjT56
-#: sw/inc/strings.hrc:545
+#: sw/inc/strings.hrc:546
msgctxt "STR_UNDO_CHARFMT_DELETE"
msgid "Delete character style: $1"
msgstr "Desaniciar estilu de caráuter: $1"
#. mT2GJ
-#: sw/inc/strings.hrc:546
+#: sw/inc/strings.hrc:547
msgctxt "STR_UNDO_CHARFMT_RENAME"
msgid "Rename character style: $1 $2 $3"
msgstr "Renomar estilu de caráuteres: $1 $2 $3"
#. AvK4p
-#: sw/inc/strings.hrc:547
+#: sw/inc/strings.hrc:548
msgctxt "STR_UNDO_FRMFMT_CREATE"
msgid "Create frame style: $1"
msgstr "Crear estilu de marcu: $1"
#. zHLcd
-#: sw/inc/strings.hrc:548
+#: sw/inc/strings.hrc:549
msgctxt "STR_UNDO_FRMFMT_DELETE"
msgid "Delete frame style: $1"
msgstr "Desaniciar estilu de marcu: $1"
#. BUdbD
-#: sw/inc/strings.hrc:549
+#: sw/inc/strings.hrc:550
msgctxt "STR_UNDO_FRMFMT_RENAME"
msgid "Rename frame style: $1 $2 $3"
msgstr "Renomar estilu de marcu: $1 $2 $3"
#. GG9BH
-#: sw/inc/strings.hrc:550
+#: sw/inc/strings.hrc:551
msgctxt "STR_UNDO_NUMRULE_CREATE"
msgid "Create numbering style: $1"
msgstr "Crear estilu de numberación: $1"
#. zYZW8
-#: sw/inc/strings.hrc:551
+#: sw/inc/strings.hrc:552
msgctxt "STR_UNDO_NUMRULE_DELETE"
msgid "Delete numbering style: $1"
msgstr "Desaniciar estilu de numberación: $1"
#. QhDFe
-#: sw/inc/strings.hrc:552
+#: sw/inc/strings.hrc:553
msgctxt "STR_UNDO_NUMRULE_RENAME"
msgid "Rename numbering style: $1 $2 $3"
msgstr "Renomar estilu de numberación: $1 $2 $3"
#. oWrh9
-#: sw/inc/strings.hrc:553
+#: sw/inc/strings.hrc:554
msgctxt "STR_UNDO_BOOKMARK_RENAME"
msgid "Rename bookmark: $1 $2 $3"
msgstr "Renomar marcador: $1 $2 $3"
#. WTcEw
-#: sw/inc/strings.hrc:554
+#: sw/inc/strings.hrc:555
msgctxt "STR_UNDO_INDEX_ENTRY_INSERT"
msgid "Insert index entry"
msgstr "Inxertar entrada d'índiz"
#. fbidx
-#: sw/inc/strings.hrc:555
+#: sw/inc/strings.hrc:556
msgctxt "STR_UNDO_INDEX_ENTRY_DELETE"
msgid "Delete index entry"
msgstr "Desaniciar entrada d'índiz"
#. WCDy7
-#: sw/inc/strings.hrc:556
+#: sw/inc/strings.hrc:557
msgctxt "STR_FIELD"
msgid "field"
msgstr "campu"
#. aC9iU
-#: sw/inc/strings.hrc:557
+#: sw/inc/strings.hrc:558
msgctxt "STR_UNDO_INSERT_TEXTBOX"
msgid "text box"
msgstr ""
#. yNjem
#. undo: STR_PARAGRAPHS, string.text
-#: sw/inc/strings.hrc:559
+#: sw/inc/strings.hrc:560
msgctxt "STR_PARAGRAPHS"
msgid "Paragraphs"
msgstr "Párrafos"
#. 9fb4z
-#: sw/inc/strings.hrc:560
+#: sw/inc/strings.hrc:561
msgctxt "STR_FRAME"
msgid "frame"
msgstr "marcu"
#. gcZ3a
-#: sw/inc/strings.hrc:561
+#: sw/inc/strings.hrc:562
msgctxt "STR_OLE"
msgid "OLE-object"
msgstr "Oxetu OLE"
#. db5Tg
-#: sw/inc/strings.hrc:562
+#: sw/inc/strings.hrc:563
msgctxt "STR_MATH_FORMULA"
msgid "formula"
msgstr "fórmula"
#. BirkF
-#: sw/inc/strings.hrc:563
+#: sw/inc/strings.hrc:564
msgctxt "STR_CHART"
msgid "chart"
msgstr "gráfica"
#. YxCuu
-#: sw/inc/strings.hrc:564
+#: sw/inc/strings.hrc:565
msgctxt "STR_NOTE"
msgid "comment"
msgstr "comentariu"
#. CKqsU
-#: sw/inc/strings.hrc:565
+#: sw/inc/strings.hrc:566
msgctxt "STR_REFERENCE"
msgid "cross-reference"
msgstr "referencia cruzada"
#. q9BGR
-#: sw/inc/strings.hrc:566
+#: sw/inc/strings.hrc:567
msgctxt "STR_SCRIPT"
msgid "script"
msgstr "script"
#. o6FWi
-#: sw/inc/strings.hrc:567
+#: sw/inc/strings.hrc:568
msgctxt "STR_AUTHORITY_ENTRY"
msgid "bibliography entry"
msgstr "entrada bibliográfica"
#. qbRLG
-#: sw/inc/strings.hrc:568
+#: sw/inc/strings.hrc:569
msgctxt "STR_SPECIALCHAR"
msgid "special character"
msgstr "caráuter especial"
#. qJd8G
-#: sw/inc/strings.hrc:569
+#: sw/inc/strings.hrc:570
msgctxt "STR_FOOTNOTE"
msgid "footnote"
msgstr "nota al pie"
#. bKvaD
-#: sw/inc/strings.hrc:570
+#: sw/inc/strings.hrc:571
msgctxt "STR_GRAPHIC"
msgid "image"
msgstr "imaxe"
#. J7CgG
-#: sw/inc/strings.hrc:571
+#: sw/inc/strings.hrc:572
msgctxt "STR_DRAWING_OBJECTS"
msgid "drawing object(s)"
msgstr "oxetu(os) de dibuxu"
#. rYPFG
-#: sw/inc/strings.hrc:572
+#: sw/inc/strings.hrc:573
msgctxt "STR_TABLE_NAME"
msgid "table: $1$2$3"
msgstr "tabla: $1$2$3"
#. AtWxA
-#: sw/inc/strings.hrc:573
+#: sw/inc/strings.hrc:574
msgctxt "STR_CHAPTERS"
msgid "chapter"
msgid_plural "chapters"
@@ -5449,800 +5455,800 @@ msgstr[0] "capítulu"
msgstr[1] "capítulos"
#. 2JCL2
-#: sw/inc/strings.hrc:574
+#: sw/inc/strings.hrc:575
msgctxt "STR_PARAGRAPH_UNDO"
msgid "paragraph"
msgstr "párrafu"
#. DvnGA
-#: sw/inc/strings.hrc:575
+#: sw/inc/strings.hrc:576
msgctxt "STR_PARAGRAPH_SIGN_UNDO"
msgid "Paragraph sign"
msgstr ""
#. oL9GG
-#: sw/inc/strings.hrc:576
+#: sw/inc/strings.hrc:577
msgctxt "STR_UNDO_FLYFRMFMT_TITLE"
msgid "Change object title of $1"
msgstr "Camudar títulu d'oxetu $1"
#. 3Cv7E
-#: sw/inc/strings.hrc:577
+#: sw/inc/strings.hrc:578
msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr ""
#. rWw8U
-#: sw/inc/strings.hrc:578
+#: sw/inc/strings.hrc:579
#, fuzzy
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
msgid "Create table style: $1"
msgstr "Crear estilu de páxina: $1"
#. jGxgy
-#: sw/inc/strings.hrc:579
+#: sw/inc/strings.hrc:580
#, fuzzy
msgctxt "STR_UNDO_TBLSTYLE_DELETE"
msgid "Delete table style: $1"
msgstr "Desaniciar estilu de páxina: $1"
#. 6NWP3
-#: sw/inc/strings.hrc:580
+#: sw/inc/strings.hrc:581
#, fuzzy
msgctxt "STR_UNDO_TBLSTYLE_UPDATE"
msgid "Update table style: $1"
msgstr "Crear estilu de páxina: $1"
#. JegfU
-#: sw/inc/strings.hrc:581
+#: sw/inc/strings.hrc:582
#, fuzzy
msgctxt "STR_UNDO_TABLE_DELETE"
msgid "Delete table"
msgstr "Desaniciar páxina"
#. KSMpJ
-#: sw/inc/strings.hrc:582
+#: sw/inc/strings.hrc:583
msgctxt "STR_UNDO_INSERT_FORM_FIELD"
msgid "Insert form field"
msgstr ""
#. 2zJmG
-#: sw/inc/strings.hrc:583
+#: sw/inc/strings.hrc:584
msgctxt "STR_DROP_DOWN_FIELD_ITEM_LIMIT"
msgid "You can specify maximum of 25 items for a drop-down form field."
msgstr ""
#. CUXeF
-#: sw/inc/strings.hrc:585
+#: sw/inc/strings.hrc:586
msgctxt "STR_ACCESS_DOC_NAME"
msgid "Document view"
msgstr "Visualización del documentu"
#. FrBrC
-#: sw/inc/strings.hrc:586
+#: sw/inc/strings.hrc:587
msgctxt "STR_ACCESS_DOC_DESC"
msgid "Document view"
msgstr "Visualización del documentu"
#. BCEgS
-#: sw/inc/strings.hrc:587
+#: sw/inc/strings.hrc:588
msgctxt "STR_ACCESS_HEADER_NAME"
msgid "Header $(ARG1)"
msgstr "Encabezáu $(ARG1)"
#. zKdDR
-#: sw/inc/strings.hrc:588
+#: sw/inc/strings.hrc:589
msgctxt "STR_ACCESS_HEADER_DESC"
msgid "Header page $(ARG1)"
msgstr "Páxina d'encabezáu $(ARG1)"
#. NhFrV
-#: sw/inc/strings.hrc:589
+#: sw/inc/strings.hrc:590
msgctxt "STR_ACCESS_FOOTER_NAME"
msgid "Footer $(ARG1)"
msgstr "Pie de páxina $(ARG1)"
#. 6GJNd
-#: sw/inc/strings.hrc:590
+#: sw/inc/strings.hrc:591
msgctxt "STR_ACCESS_FOOTER_DESC"
msgid "Footer page $(ARG1)"
msgstr "Páxina de pie de páxina $(ARG1)"
#. VGUwW
-#: sw/inc/strings.hrc:591
+#: sw/inc/strings.hrc:592
msgctxt "STR_ACCESS_FOOTNOTE_NAME"
msgid "Footnote $(ARG1)"
msgstr "Nota al pie $(ARG1)"
#. a7XMU
-#: sw/inc/strings.hrc:592
+#: sw/inc/strings.hrc:593
msgctxt "STR_ACCESS_FOOTNOTE_DESC"
msgid "Footnote $(ARG1)"
msgstr "Nota al pie $(ARG1)"
#. 3ExiP
-#: sw/inc/strings.hrc:593
+#: sw/inc/strings.hrc:594
msgctxt "STR_ACCESS_ENDNOTE_NAME"
msgid "Endnote $(ARG1)"
msgstr "Nota final $(ARG1)"
#. 8XdTm
-#: sw/inc/strings.hrc:594
+#: sw/inc/strings.hrc:595
msgctxt "STR_ACCESS_ENDNOTE_DESC"
msgid "Endnote $(ARG1)"
msgstr "Nota final $(ARG1)"
#. 4sTZN
-#: sw/inc/strings.hrc:595
+#: sw/inc/strings.hrc:596
msgctxt "STR_ACCESS_TABLE_DESC"
msgid "$(ARG1) on page $(ARG2)"
msgstr "$(ARG1) na páxina $(ARG2)"
#. Z5Uy9
-#: sw/inc/strings.hrc:596
+#: sw/inc/strings.hrc:597
msgctxt "STR_ACCESS_PAGE_NAME"
msgid "Page $(ARG1)"
msgstr "Páxina $(ARG1)"
#. CWroT
-#: sw/inc/strings.hrc:597
+#: sw/inc/strings.hrc:598
msgctxt "STR_ACCESS_PAGE_DESC"
msgid "Page: $(ARG1)"
msgstr "Páxina: $(ARG1)"
#. iwfxM
-#: sw/inc/strings.hrc:598
+#: sw/inc/strings.hrc:599
msgctxt "STR_ACCESS_ANNOTATION_AUTHOR_NAME"
msgid "Author"
msgstr "Autor"
#. sff9t
-#: sw/inc/strings.hrc:599
+#: sw/inc/strings.hrc:600
msgctxt "STR_ACCESS_ANNOTATION_DATE_NAME"
msgid "Date"
msgstr "Data"
#. VScXC
-#: sw/inc/strings.hrc:600
+#: sw/inc/strings.hrc:601
msgctxt "STR_ACCESS_ANNOTATION_RESOLVED_NAME"
msgid "Resolved"
msgstr "Solucionáu"
#. JtzA4
-#: sw/inc/strings.hrc:601
+#: sw/inc/strings.hrc:602
msgctxt "STR_ACCESS_ANNOTATION_BUTTON_NAME"
msgid "Actions"
msgstr "Aiciones"
#. cHWqM
-#: sw/inc/strings.hrc:602
+#: sw/inc/strings.hrc:603
msgctxt "STR_ACCESS_ANNOTATION_BUTTON_DESC"
msgid "Activate this button to open a list of actions which can be performed on this comment and other comments"
msgstr "Activa esti botón p'abrir una llista d'aiciones que pueden llevase a cau sobro ésti u otros comentarios"
#. 9YxaB
-#: sw/inc/strings.hrc:603
+#: sw/inc/strings.hrc:604
msgctxt "STR_ACCESS_PREVIEW_DOC_NAME"
msgid "Document preview"
msgstr "Entever documentu"
#. eYFFo
-#: sw/inc/strings.hrc:604
+#: sw/inc/strings.hrc:605
msgctxt "STR_ACCESS_PREVIEW_DOC_SUFFIX"
msgid "(Preview mode)"
msgstr "(Mou d'entever)"
#. Fp7Hn
-#: sw/inc/strings.hrc:605
+#: sw/inc/strings.hrc:606
msgctxt "STR_ACCESS_DOC_WORDPROCESSING"
msgid "%PRODUCTNAME Document"
msgstr "Documentu de %PRODUCTNAME"
#. CsQKH
-#: sw/inc/strings.hrc:607
+#: sw/inc/strings.hrc:608
#, fuzzy
msgctxt "STR_COMCORE_READERROR"
msgid "Read Error"
msgstr "Fallu de llectura"
#. ztbVu
-#: sw/inc/strings.hrc:608
+#: sw/inc/strings.hrc:609
msgctxt "STR_COMCORE_CANT_SHOW"
msgid "Image cannot be displayed."
msgstr "La imaxe nun se pue amosar."
#. iJsFt
-#: sw/inc/strings.hrc:609
+#: sw/inc/strings.hrc:610
msgctxt "STR_ERROR_CLPBRD_READ"
msgid "Error reading from the clipboard."
msgstr "Fallu al lleer al portapapeles."
#. bXZQD
-#: sw/inc/strings.hrc:611
+#: sw/inc/strings.hrc:612
msgctxt "STR_COLUMN_BREAK"
msgid "Manual Column Break"
msgstr "Saltu de columna manual"
#. 7DzNG
-#: sw/inc/strings.hrc:613
+#: sw/inc/strings.hrc:614
msgctxt "STR_CHART2_ROW_LABEL_TEXT"
msgid "Row %ROWNUMBER"
msgstr "Filera %ROWNUMBER"
#. GYFVF
-#: sw/inc/strings.hrc:614
+#: sw/inc/strings.hrc:615
msgctxt "STR_CHART2_COL_LABEL_TEXT"
msgid "Column %COLUMNLETTER"
msgstr "Columna %COLUMNLETTER"
#. GGS2b
-#: sw/inc/strings.hrc:615
+#: sw/inc/strings.hrc:616
msgctxt "STR_STYLE_FAMILY_CHARACTER"
msgid "Character"
msgstr "Caráuter"
#. KBw5e
-#: sw/inc/strings.hrc:616
+#: sw/inc/strings.hrc:617
msgctxt "STR_STYLE_FAMILY_PARAGRAPH"
msgid "Paragraph"
msgstr "Párrafu"
#. ERH8o
-#: sw/inc/strings.hrc:617
+#: sw/inc/strings.hrc:618
msgctxt "STR_STYLE_FAMILY_FRAME"
msgid "Frame"
msgstr "Marcu"
#. Cqjn8
-#: sw/inc/strings.hrc:618
+#: sw/inc/strings.hrc:619
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Pages"
msgstr "Páxines"
#. FFZEr
-#: sw/inc/strings.hrc:619
+#: sw/inc/strings.hrc:620
msgctxt "STR_STYLE_FAMILY_NUMBERING"
msgid "List"
msgstr ""
#. NydLs
-#: sw/inc/strings.hrc:620
+#: sw/inc/strings.hrc:621
msgctxt "STR_STYLE_FAMILY_TABLE"
msgid "Table"
msgstr "Tabla"
#. XUhuM
-#: sw/inc/strings.hrc:621
+#: sw/inc/strings.hrc:622
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell"
msgstr "Caxella"
#. DRqDZ
-#: sw/inc/strings.hrc:623
+#: sw/inc/strings.hrc:624
msgctxt "ST_SCRIPT_ASIAN"
msgid "Asian"
msgstr "Asia"
#. owFtq
-#: sw/inc/strings.hrc:624
+#: sw/inc/strings.hrc:625
msgctxt "ST_SCRIPT_CTL"
msgid "CTL"
msgstr "CTL"
#. ap5iF
-#: sw/inc/strings.hrc:625
+#: sw/inc/strings.hrc:626
msgctxt "ST_SCRIPT_WESTERN"
msgid "Western"
msgstr "Oeste"
#. HD64i
-#: sw/inc/strings.hrc:626
+#: sw/inc/strings.hrc:627
#, fuzzy
msgctxt "STR_PRINTOPTUI_PRODUCTNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. q6egu
-#: sw/inc/strings.hrc:627
+#: sw/inc/strings.hrc:628
msgctxt "STR_PRINTOPTUI_CONTENTS"
msgid "Contents"
msgstr "Conteníu"
#. Ka4fM
-#: sw/inc/strings.hrc:628
+#: sw/inc/strings.hrc:629
#, fuzzy
msgctxt "STR_PRINTOPTUI_PAGE_BACKGROUND"
msgid "Page ba~ckground"
msgstr "Fondu de la pá~xina"
#. YPEEH
-#: sw/inc/strings.hrc:629
+#: sw/inc/strings.hrc:630
msgctxt "STR_PRINTOPTUI_PICTURES"
msgid "~Images and other graphic objects"
msgstr ""
#. L6GSj
-#: sw/inc/strings.hrc:630
+#: sw/inc/strings.hrc:631
#, fuzzy
msgctxt "STR_PRINTOPTUI_HIDDEN"
msgid "Hidden te~xt"
msgstr "Te~stu anubríu"
#. pXiRN
-#: sw/inc/strings.hrc:631
+#: sw/inc/strings.hrc:632
#, fuzzy
msgctxt "STR_PRINTOPTUI_TEXT_PLACEHOLDERS"
msgid "~Text placeholders"
msgstr "Espacios acutaos pa ~testu"
#. JBWVd
-#: sw/inc/strings.hrc:632
+#: sw/inc/strings.hrc:633
#, fuzzy
msgctxt "STR_PRINTOPTUI_FORM_CONTROLS"
msgid "Form control~s"
msgstr "Controle~s de formulariu"
#. X8Bfu
-#: sw/inc/strings.hrc:633
+#: sw/inc/strings.hrc:634
msgctxt "STR_PRINTOPTUI_COLOR"
msgid "Color"
msgstr "Color"
#. kQDcq
-#: sw/inc/strings.hrc:634
+#: sw/inc/strings.hrc:635
#, fuzzy
msgctxt "STR_PRINTOPTUI_PRINT_BLACK"
msgid "Print text in blac~k"
msgstr "Impre~ntar testu en prieto"
#. DEELn
-#: sw/inc/strings.hrc:635
+#: sw/inc/strings.hrc:636
msgctxt "STR_PRINTOPTUI_PAGES_TEXT"
msgid "Pages:"
msgstr "Páxines:"
#. uddbB
-#: sw/inc/strings.hrc:636
+#: sw/inc/strings.hrc:637
#, fuzzy
msgctxt "STR_PRINTOPTUI_PRINT_BLANK"
msgid "Print ~automatically inserted blank pages"
msgstr "Imprentar páxines baleres inxertaes ~automáticamente"
#. MTJt2
-#: sw/inc/strings.hrc:637
+#: sw/inc/strings.hrc:638
#, fuzzy
msgctxt "STR_PRINTOPTUI_ONLY_PAPER"
msgid "~Use only paper tray from printer preferences"
msgstr "~Usa namái la bandexa de papel de les preferencies d'impresora"
#. 4uBam
-#: sw/inc/strings.hrc:638
+#: sw/inc/strings.hrc:639
#, fuzzy
msgctxt "STR_PRINTOPTUI_NONE"
msgid "None (document only)"
msgstr "Dengún (namái el documentu)"
#. pbQtA
-#: sw/inc/strings.hrc:639
+#: sw/inc/strings.hrc:640
#, fuzzy
msgctxt "STR_PRINTOPTUI_COMMENTS_ONLY"
msgid "Comments only"
msgstr "Namái comentarios"
#. sVnbD
-#: sw/inc/strings.hrc:640
+#: sw/inc/strings.hrc:641
#, fuzzy
msgctxt "STR_PRINTOPTUI_PLACE_END"
msgid "Place at end of document"
msgstr "Poner al final del documentu"
#. D4BXH
-#: sw/inc/strings.hrc:641
+#: sw/inc/strings.hrc:642
#, fuzzy
msgctxt "STR_PRINTOPTUI_PLACE_PAGE"
msgid "Place at end of page"
msgstr "Poner al final de la páxina"
#. 6rzab
-#: sw/inc/strings.hrc:642
+#: sw/inc/strings.hrc:643
#, fuzzy
msgctxt "STR_PRINTOPTUI_COMMENTS"
msgid "~Comments"
msgstr "~Comentarios"
#. cnqLU
-#: sw/inc/strings.hrc:643
+#: sw/inc/strings.hrc:644
#, fuzzy
msgctxt "STR_PRINTOPTUI_BROCHURE"
msgid "Broch~ure"
msgstr "Prospect~u"
#. t6drz
-#: sw/inc/strings.hrc:644
+#: sw/inc/strings.hrc:645
#, fuzzy
msgctxt "STR_PRINTOPTUI_LEFT_SCRIPT"
msgid "Left-to-right script"
msgstr "Escritura d'esquierda a drecha"
#. QgmxB
-#: sw/inc/strings.hrc:645
+#: sw/inc/strings.hrc:646
#, fuzzy
msgctxt "STR_PRINTOPTUI_RIGHT_SCRIPT"
msgid "Right-to-left script"
msgstr "Escritura de drecha a esquierda"
#. t4Cm7
-#: sw/inc/strings.hrc:646
+#: sw/inc/strings.hrc:647
msgctxt "STR_PRINTOPTUI_PRINTALLPAGES"
msgid "~All Pages"
msgstr ""
#. ZDRM2
-#: sw/inc/strings.hrc:647
+#: sw/inc/strings.hrc:648
msgctxt "STR_PRINTOPTUI_PRINTPAGES"
msgid "Pa~ges:"
msgstr ""
#. rajyx
-#: sw/inc/strings.hrc:648
+#: sw/inc/strings.hrc:649
msgctxt "STR_PRINTOPTUI_PRINTSELECTION"
msgid "~Selection"
msgstr ""
#. 9EXcV
-#: sw/inc/strings.hrc:649
+#: sw/inc/strings.hrc:650
msgctxt "STR_PRINTOPTUI_PLACE_MARGINS"
msgid "Place in margins"
msgstr ""
#. NGQw3
-#: sw/inc/strings.hrc:651
+#: sw/inc/strings.hrc:652
msgctxt "STR_FORMULA_CALC"
msgid "Functions"
msgstr "Funciones"
#. D3RCG
-#: sw/inc/strings.hrc:652
+#: sw/inc/strings.hrc:653
msgctxt "STR_FORMULA_CANCEL"
msgid "Cancel"
msgstr "Encaboxar"
#. 3Tg3C
-#: sw/inc/strings.hrc:653
+#: sw/inc/strings.hrc:654
msgctxt "STR_FORMULA_APPLY"
msgid "Apply"
msgstr "Aplicar"
#. UDkFb
-#: sw/inc/strings.hrc:654
+#: sw/inc/strings.hrc:655
msgctxt "STR_ACCESS_FORMULA_TOOLBAR"
msgid "Formula Tool Bar"
msgstr "Barra de fórmules"
#. Z3CB5
-#: sw/inc/strings.hrc:655
+#: sw/inc/strings.hrc:656
msgctxt "STR_ACCESS_FORMULA_TYPE"
msgid "Formula Type"
msgstr ""
#. 3CCa7
-#: sw/inc/strings.hrc:656
+#: sw/inc/strings.hrc:657
#, fuzzy
msgctxt "STR_ACCESS_FORMULA_TEXT"
msgid "Formula Text"
msgstr "Testu de la fórmula"
#. FXNer
-#: sw/inc/strings.hrc:658
+#: sw/inc/strings.hrc:659
msgctxt "STR_ACCESS_TL_GLOBAL"
msgid "Global View"
msgstr ""
#. aeeRP
-#: sw/inc/strings.hrc:659
+#: sw/inc/strings.hrc:660
msgctxt "STR_ACCESS_TL_CONTENT"
msgid "Content Navigation View"
msgstr ""
#. UAExA
-#: sw/inc/strings.hrc:660
+#: sw/inc/strings.hrc:661
#, fuzzy
msgctxt "STR_OUTLINE_LEVEL"
msgid "Outline Level"
msgstr "Esquema: Nivel "
#. yERK6
-#: sw/inc/strings.hrc:661
+#: sw/inc/strings.hrc:662
#, fuzzy
msgctxt "STR_DRAGMODE"
msgid "Drag Mode"
msgstr "Mou Arrastrar"
#. PAB4k
-#: sw/inc/strings.hrc:662
+#: sw/inc/strings.hrc:663
msgctxt "STR_SEND_OUTLINE_TO_CLIPBOARD_ENTRY"
msgid "Send Outline to Clipboard"
msgstr ""
#. b5tPU
-#: sw/inc/strings.hrc:663
+#: sw/inc/strings.hrc:664
msgctxt "STR_OUTLINE_TRACKING"
msgid "Outline Tracking"
msgstr ""
#. qzXwn
-#: sw/inc/strings.hrc:664
+#: sw/inc/strings.hrc:665
msgctxt "STR_OUTLINE_TRACKING_DEFAULT"
msgid "Default"
msgstr ""
#. HGDgJ
-#: sw/inc/strings.hrc:665
+#: sw/inc/strings.hrc:666
msgctxt "STR_OUTLINE_TRACKING_FOCUS"
msgid "Focus"
msgstr ""
#. BYRpF
-#: sw/inc/strings.hrc:666
+#: sw/inc/strings.hrc:667
msgctxt "STR_OUTLINE_TRACKING_OFF"
msgid "Off"
msgstr ""
#. NGgt3
-#: sw/inc/strings.hrc:667
+#: sw/inc/strings.hrc:668
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle outline folding"
msgstr ""
#. 44jEc
-#: sw/inc/strings.hrc:668
+#: sw/inc/strings.hrc:669
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
msgstr ""
#. mnZA9
-#: sw/inc/strings.hrc:669
+#: sw/inc/strings.hrc:670
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle outline folding"
msgstr ""
#. rkD8H
-#: sw/inc/strings.hrc:670
+#: sw/inc/strings.hrc:671
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
msgstr ""
#. oBH6y
-#: sw/inc/strings.hrc:671
+#: sw/inc/strings.hrc:672
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_TOGGLE"
msgid "Toggle"
msgstr ""
#. YBDFD
-#: sw/inc/strings.hrc:672
+#: sw/inc/strings.hrc:673
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_SHOW_ALL"
msgid "Unfold All"
msgstr ""
#. Cj4js
-#: sw/inc/strings.hrc:673
+#: sw/inc/strings.hrc:674
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_HIDE_ALL"
msgid "Fold All"
msgstr ""
#. 9Fipd
-#: sw/inc/strings.hrc:675
+#: sw/inc/strings.hrc:676
msgctxt "STR_EXPANDALL"
msgid "Expand All"
msgstr ""
#. FxGVt
-#: sw/inc/strings.hrc:676
+#: sw/inc/strings.hrc:677
msgctxt "STR_COLLAPSEALL"
msgid "Collapse All"
msgstr ""
#. xvSRm
-#: sw/inc/strings.hrc:677
+#: sw/inc/strings.hrc:678
msgctxt "STR_HYPERLINK"
msgid "Insert as Hyperlink"
msgstr "Inxertar como hiperenllaz"
#. sdfGe
-#: sw/inc/strings.hrc:678
+#: sw/inc/strings.hrc:679
msgctxt "STR_LINK_REGION"
msgid "Insert as Link"
msgstr "Inxertar como enllaz"
#. Suaiz
-#: sw/inc/strings.hrc:679
+#: sw/inc/strings.hrc:680
msgctxt "STR_COPY_REGION"
msgid "Insert as Copy"
msgstr "Inxertar como copia"
#. VgdhT
-#: sw/inc/strings.hrc:680
+#: sw/inc/strings.hrc:681
msgctxt "STR_DISPLAY"
msgid "Display"
msgstr "Visualizar"
#. 3VXp5
-#: sw/inc/strings.hrc:681
+#: sw/inc/strings.hrc:682
#, fuzzy
msgctxt "STR_ACTIVE_VIEW"
msgid "Active Window"
msgstr "Ventana activa"
#. fAAUc
-#: sw/inc/strings.hrc:682
+#: sw/inc/strings.hrc:683
#, fuzzy
msgctxt "STR_HIDDEN"
msgid "hidden"
msgstr "anubríu"
#. 3VWjq
-#: sw/inc/strings.hrc:683
+#: sw/inc/strings.hrc:684
msgctxt "STR_ACTIVE"
msgid "active"
msgstr "activa"
#. YjPvg
-#: sw/inc/strings.hrc:684
+#: sw/inc/strings.hrc:685
msgctxt "STR_INACTIVE"
msgid "inactive"
msgstr "inactiva"
#. tBPKU
-#: sw/inc/strings.hrc:685
+#: sw/inc/strings.hrc:686
msgctxt "STR_EDIT_ENTRY"
msgid "Edit..."
msgstr "Editar..."
#. ppC87
-#: sw/inc/strings.hrc:686
+#: sw/inc/strings.hrc:687
#, fuzzy
msgctxt "STR_UPDATE"
msgid "~Update"
msgstr "Anovar"
#. 44Esc
-#: sw/inc/strings.hrc:687
+#: sw/inc/strings.hrc:688
msgctxt "STR_EDIT_CONTENT"
msgid "Edit"
msgstr "Editar"
#. w3ZrD
-#: sw/inc/strings.hrc:688
+#: sw/inc/strings.hrc:689
#, fuzzy
msgctxt "STR_EDIT_LINK"
msgid "Edit link"
msgstr "Editar enllaces"
#. xyPWE
-#: sw/inc/strings.hrc:689
+#: sw/inc/strings.hrc:690
msgctxt "STR_EDIT_INSERT"
msgid "Insert"
msgstr "Inxertar"
#. AT9SS
-#: sw/inc/strings.hrc:690
+#: sw/inc/strings.hrc:691
#, fuzzy
msgctxt "STR_INDEX"
msgid "~Index"
msgstr "Índiz"
#. MnBLc
-#: sw/inc/strings.hrc:691
+#: sw/inc/strings.hrc:692
msgctxt "STR_FILE"
msgid "File"
msgstr "Ficheru"
#. DdBgh
-#: sw/inc/strings.hrc:692
+#: sw/inc/strings.hrc:693
msgctxt "STR_NEW_FILE"
msgid "New Document"
msgstr "Documentu nuevu"
#. aV9Uy
-#: sw/inc/strings.hrc:693
+#: sw/inc/strings.hrc:694
msgctxt "STR_INSERT_TEXT"
msgid "Text"
msgstr "Testu"
#. 5rD3D
-#: sw/inc/strings.hrc:694
+#: sw/inc/strings.hrc:695
msgctxt "STR_DELETE"
msgid "Delete"
msgstr "Desaniciar"
#. 9MrsU
-#: sw/inc/strings.hrc:695
+#: sw/inc/strings.hrc:696
msgctxt "STR_DELETE_ENTRY"
msgid "~Delete"
msgstr "~Desaniciar"
#. A28Rb
-#: sw/inc/strings.hrc:696
+#: sw/inc/strings.hrc:697
msgctxt "STR_UPDATE_SEL"
msgid "Selection"
msgstr "Esbilla"
#. gRBxA
-#: sw/inc/strings.hrc:697
+#: sw/inc/strings.hrc:698
msgctxt "STR_UPDATE_INDEX"
msgid "Indexes"
msgstr "Índices"
#. WKwLS
-#: sw/inc/strings.hrc:698
+#: sw/inc/strings.hrc:699
#, fuzzy
msgctxt "STR_UPDATE_LINK"
msgid "Links"
msgstr "Enllaz"
#. TaaJK
-#: sw/inc/strings.hrc:699
+#: sw/inc/strings.hrc:700
msgctxt "STR_UPDATE_ALL"
msgid "All"
msgstr "Too"
#. HpMeb
-#: sw/inc/strings.hrc:701
+#: sw/inc/strings.hrc:702
#, fuzzy
msgctxt "STR_INVISIBLE"
msgid "hidden"
msgstr "anubríu"
#. XcCnB
-#: sw/inc/strings.hrc:702
+#: sw/inc/strings.hrc:703
#, fuzzy
msgctxt "STR_BROKEN_LINK"
msgid "File not found: "
msgstr "Nun s'atopó la peñera."
#. UC53U
-#: sw/inc/strings.hrc:704
+#: sw/inc/strings.hrc:705
msgctxt "STR_RESOLVED"
msgid "RESOLVED"
msgstr "SOLUCIONÁU"
#. 3ceMF
-#: sw/inc/strings.hrc:706
+#: sw/inc/strings.hrc:707
#, fuzzy
msgctxt "STR_MARGIN_TOOLTIP_LEFT"
msgid "Left: "
msgstr "Izquierda: "
#. EiXF2
-#: sw/inc/strings.hrc:707
+#: sw/inc/strings.hrc:708
#, fuzzy
msgctxt "STR_MARGIN_TOOLTIP_RIGHT"
msgid ". Right: "
msgstr ". Drecha: "
#. UFpVa
-#: sw/inc/strings.hrc:708
+#: sw/inc/strings.hrc:709
#, fuzzy
msgctxt "STR_MARGIN_TOOLTIP_INNER"
msgid "Inner: "
msgstr "Interior: "
#. XE7Wb
-#: sw/inc/strings.hrc:709
+#: sw/inc/strings.hrc:710
#, fuzzy
msgctxt "STR_MARGIN_TOOLTIP_OUTER"
msgid ". Outer: "
msgstr ". Esterior: "
#. 3A8Vg
-#: sw/inc/strings.hrc:710
+#: sw/inc/strings.hrc:711
#, fuzzy
msgctxt "STR_MARGIN_TOOLTIP_TOP"
msgid ". Top: "
msgstr ". Superior: "
#. dRhyZ
-#: sw/inc/strings.hrc:711
+#: sw/inc/strings.hrc:712
#, fuzzy
msgctxt "STR_MARGIN_TOOLTIP_BOT"
msgid ". Bottom: "
@@ -6250,901 +6256,901 @@ msgstr ". Inferior: "
#. XuC4Y
#. Error calculator
-#: sw/inc/strings.hrc:714
+#: sw/inc/strings.hrc:715
msgctxt "STR_POSTIT_PAGE"
msgid "Page"
msgstr "Páxina"
#. AeDYh
-#: sw/inc/strings.hrc:715
+#: sw/inc/strings.hrc:716
msgctxt "STR_POSTIT_LINE"
msgid "Line"
msgstr "Llinia"
#. kfJG6
-#: sw/inc/strings.hrc:716
+#: sw/inc/strings.hrc:717
msgctxt "STR_POSTIT_AUTHOR"
msgid "Author"
msgstr "Autor"
#. gejqG
-#: sw/inc/strings.hrc:717
+#: sw/inc/strings.hrc:718
msgctxt "STR_CALC_SYNTAX"
msgid "** Syntax Error **"
msgstr ""
#. q6dUT
-#: sw/inc/strings.hrc:718
+#: sw/inc/strings.hrc:719
msgctxt "STR_CALC_ZERODIV"
msgid "** Division by zero **"
msgstr ""
#. HSo6d
-#: sw/inc/strings.hrc:719
+#: sw/inc/strings.hrc:720
msgctxt "STR_CALC_BRACK"
msgid "** Wrong use of brackets **"
msgstr ""
#. jcNfg
-#: sw/inc/strings.hrc:720
+#: sw/inc/strings.hrc:721
msgctxt "STR_CALC_POW"
msgid "** Square function overflow **"
msgstr ""
#. C453V
-#: sw/inc/strings.hrc:721
+#: sw/inc/strings.hrc:722
msgctxt "STR_CALC_OVERFLOW"
msgid "** Overflow **"
msgstr ""
#. KEQfz
-#: sw/inc/strings.hrc:722
+#: sw/inc/strings.hrc:723
msgctxt "STR_CALC_DEFAULT"
msgid "** Error **"
msgstr ""
#. hxrg9
-#: sw/inc/strings.hrc:723
+#: sw/inc/strings.hrc:724
msgctxt "STR_CALC_ERROR"
msgid "** Expression is faulty **"
msgstr ""
#. 2yBhF
-#: sw/inc/strings.hrc:724
+#: sw/inc/strings.hrc:725
msgctxt "STR_GETREFFLD_REFITEMNOTFOUND"
msgid "Error: Reference source not found"
msgstr ""
#. jgRW7
-#: sw/inc/strings.hrc:725
+#: sw/inc/strings.hrc:726
msgctxt "STR_TEMPLATE_NONE"
msgid "None"
msgstr "Denguna"
#. KRD6s
-#: sw/inc/strings.hrc:726
+#: sw/inc/strings.hrc:727
msgctxt "STR_FIELD_FIXED"
msgid "(fixed)"
msgstr ""
#. FCRUB
-#: sw/inc/strings.hrc:727
+#: sw/inc/strings.hrc:728
msgctxt "STR_DURATION_FORMAT"
msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#. ocA84
-#: sw/inc/strings.hrc:728
+#: sw/inc/strings.hrc:729
msgctxt "STR_TOI"
msgid "Alphabetical Index"
msgstr "Índiz alfabéticu"
#. GDCRF
-#: sw/inc/strings.hrc:729
+#: sw/inc/strings.hrc:730
msgctxt "STR_TOU"
msgid "User-Defined"
msgstr "Definíu pol usuariu"
#. vnaNc
-#: sw/inc/strings.hrc:730
+#: sw/inc/strings.hrc:731
msgctxt "STR_TOC"
msgid "Table of Contents"
msgstr "Sumariu"
#. BESjb
-#: sw/inc/strings.hrc:731
+#: sw/inc/strings.hrc:732
msgctxt "STR_TOX_AUTH"
msgid "Bibliography"
msgstr "Bibliografía"
#. ZFBUD
-#: sw/inc/strings.hrc:732
+#: sw/inc/strings.hrc:733
#, fuzzy
msgctxt "STR_TOX_CITATION"
msgid "Citation"
msgstr "Encomilláu"
#. WAs8q
-#: sw/inc/strings.hrc:733
+#: sw/inc/strings.hrc:734
msgctxt "STR_TOX_TBL"
msgid "Index of Tables"
msgstr "Índiz de tables"
#. NFzTx
-#: sw/inc/strings.hrc:734
+#: sw/inc/strings.hrc:735
msgctxt "STR_TOX_OBJ"
msgid "Table of Objects"
msgstr "Índiz d'oxetos"
#. mSyms
-#: sw/inc/strings.hrc:735
+#: sw/inc/strings.hrc:736
msgctxt "STR_TOX_ILL"
msgid "Table of Figures"
msgstr "Índiz de figures"
#. TspkU
#. SubType DocInfo
-#: sw/inc/strings.hrc:737
+#: sw/inc/strings.hrc:738
msgctxt "FLD_DOCINFO_TITEL"
msgid "Title"
msgstr "Títulu"
#. ziEpC
-#: sw/inc/strings.hrc:738
+#: sw/inc/strings.hrc:739
#, fuzzy
msgctxt "FLD_DOCINFO_THEMA"
msgid "Subject"
msgstr "Asuntu:"
#. FCVZS
-#: sw/inc/strings.hrc:739
+#: sw/inc/strings.hrc:740
msgctxt "FLD_DOCINFO_KEYS"
msgid "Keywords"
msgstr "Pallabres clave"
#. kHC7q
-#: sw/inc/strings.hrc:740
+#: sw/inc/strings.hrc:741
msgctxt "FLD_DOCINFO_COMMENT"
msgid "Comments"
msgstr "Comentarios"
#. i6psX
-#: sw/inc/strings.hrc:741
+#: sw/inc/strings.hrc:742
#, fuzzy
msgctxt "FLD_DOCINFO_CREATE"
msgid "Created"
msgstr "Crear"
#. L2Bxp
-#: sw/inc/strings.hrc:742
+#: sw/inc/strings.hrc:743
msgctxt "FLD_DOCINFO_CHANGE"
msgid "Modified"
msgstr "Modificáu"
#. D2YKS
-#: sw/inc/strings.hrc:743
+#: sw/inc/strings.hrc:744
msgctxt "FLD_DOCINFO_PRINT"
msgid "Last printed"
msgstr "Cabera impresión"
#. QtuZM
-#: sw/inc/strings.hrc:744
+#: sw/inc/strings.hrc:745
msgctxt "FLD_DOCINFO_DOCNO"
msgid "Revision number"
msgstr "Númberu de revisión"
#. YDFbi
-#: sw/inc/strings.hrc:745
+#: sw/inc/strings.hrc:746
msgctxt "FLD_DOCINFO_EDIT"
msgid "Total editing time"
msgstr "Tiempu total d'edición"
#. EpZ9C
-#: sw/inc/strings.hrc:746
+#: sw/inc/strings.hrc:747
msgctxt "STR_PAGEDESC_NAME"
msgid "Convert $(ARG1)"
msgstr ""
#. nY3NU
-#: sw/inc/strings.hrc:747
+#: sw/inc/strings.hrc:748
msgctxt "STR_PAGEDESC_FIRSTNAME"
msgid "First convert $(ARG1)"
msgstr ""
#. eQtGV
-#: sw/inc/strings.hrc:748
+#: sw/inc/strings.hrc:749
msgctxt "STR_PAGEDESC_FOLLOWNAME"
msgid "Next convert $(ARG1)"
msgstr ""
#. aBwxC
-#: sw/inc/strings.hrc:749
+#: sw/inc/strings.hrc:750
msgctxt "STR_AUTH_TYPE_ARTICLE"
msgid "Article"
msgstr "Artículu"
#. di8ud
-#: sw/inc/strings.hrc:750
+#: sw/inc/strings.hrc:751
msgctxt "STR_AUTH_TYPE_BOOK"
msgid "Book"
msgstr "Llibru"
#. GD5KJ
-#: sw/inc/strings.hrc:751
+#: sw/inc/strings.hrc:752
#, fuzzy
msgctxt "STR_AUTH_TYPE_BOOKLET"
msgid "Brochures"
msgstr "Prospect~u"
#. mfFSf
-#: sw/inc/strings.hrc:752
+#: sw/inc/strings.hrc:753
msgctxt "STR_AUTH_TYPE_CONFERENCE"
msgid "Conference proceedings"
msgstr "Informe de reunión"
#. Et2Px
-#: sw/inc/strings.hrc:753
+#: sw/inc/strings.hrc:754
msgctxt "STR_AUTH_TYPE_INBOOK"
msgid "Book excerpt"
msgstr "Esbilla del llibru"
#. ys2B8
-#: sw/inc/strings.hrc:754
+#: sw/inc/strings.hrc:755
msgctxt "STR_AUTH_TYPE_INCOLLECTION"
msgid "Book excerpt with title"
msgstr "Esbilla del llibru con títulu"
#. mdEqj
-#: sw/inc/strings.hrc:755
+#: sw/inc/strings.hrc:756
msgctxt "STR_AUTH_TYPE_INPROCEEDINGS"
msgid "Conference proceedings"
msgstr "Informe de reunión"
#. jNmVD
-#: sw/inc/strings.hrc:756
+#: sw/inc/strings.hrc:757
msgctxt "STR_AUTH_TYPE_JOURNAL"
msgid "Journal"
msgstr "Diariu"
#. M3xkM
-#: sw/inc/strings.hrc:757
+#: sw/inc/strings.hrc:758
msgctxt "STR_AUTH_TYPE_MANUAL"
msgid "Techn. documentation"
msgstr "Documentación téunica"
#. EJAj4
-#: sw/inc/strings.hrc:758
+#: sw/inc/strings.hrc:759
msgctxt "STR_AUTH_TYPE_MASTERSTHESIS"
msgid "Thesis"
msgstr "Tesis"
#. NoUCv
-#: sw/inc/strings.hrc:759
+#: sw/inc/strings.hrc:760
#, fuzzy
msgctxt "STR_AUTH_TYPE_MISC"
msgid "Miscellaneous"
msgstr "Amestáu"
#. qNGGE
-#: sw/inc/strings.hrc:760
+#: sw/inc/strings.hrc:761
msgctxt "STR_AUTH_TYPE_PHDTHESIS"
msgid "Dissertation"
msgstr "Disertación"
#. L7W7R
-#: sw/inc/strings.hrc:761
+#: sw/inc/strings.hrc:762
msgctxt "STR_AUTH_TYPE_PROCEEDINGS"
msgid "Conference proceedings"
msgstr "Informe de reunión"
#. X8bGG
-#: sw/inc/strings.hrc:762
+#: sw/inc/strings.hrc:763
msgctxt "STR_AUTH_TYPE_TECHREPORT"
msgid "Research report"
msgstr "Informe d'investigación"
#. 4dDC9
-#: sw/inc/strings.hrc:763
+#: sw/inc/strings.hrc:764
msgctxt "STR_AUTH_TYPE_UNPUBLISHED"
msgid "Unpublished"
msgstr "Non publicáu"
#. Gb38d
-#: sw/inc/strings.hrc:764
+#: sw/inc/strings.hrc:765
msgctxt "STR_AUTH_TYPE_EMAIL"
msgid "Email"
msgstr "Corréu"
#. 9HKD6
-#: sw/inc/strings.hrc:765
+#: sw/inc/strings.hrc:766
msgctxt "STR_AUTH_TYPE_WWW"
msgid "WWW document"
msgstr "Documentu WWW"
#. qA449
-#: sw/inc/strings.hrc:766
+#: sw/inc/strings.hrc:767
msgctxt "STR_AUTH_TYPE_CUSTOM1"
msgid "User-defined1"
msgstr "Definíu pol usuariu 1"
#. nyzxz
-#: sw/inc/strings.hrc:767
+#: sw/inc/strings.hrc:768
msgctxt "STR_AUTH_TYPE_CUSTOM2"
msgid "User-defined2"
msgstr "Definíu pol usuariu 2"
#. cCFTF
-#: sw/inc/strings.hrc:768
+#: sw/inc/strings.hrc:769
msgctxt "STR_AUTH_TYPE_CUSTOM3"
msgid "User-defined3"
msgstr "Definíu pol usuariu 3"
#. mrqJC
-#: sw/inc/strings.hrc:769
+#: sw/inc/strings.hrc:770
msgctxt "STR_AUTH_TYPE_CUSTOM4"
msgid "User-defined4"
msgstr "Definíu pol usuariu 4"
#. fFs86
-#: sw/inc/strings.hrc:770
+#: sw/inc/strings.hrc:771
msgctxt "STR_AUTH_TYPE_CUSTOM5"
msgid "User-defined5"
msgstr "Definíu pol usuariu 5"
#. nsCwi
-#: sw/inc/strings.hrc:771
+#: sw/inc/strings.hrc:772
msgctxt "STR_AUTH_FIELD_IDENTIFIER"
msgid "Short name"
msgstr "Nome curtiu"
#. CpKgc
-#: sw/inc/strings.hrc:772
+#: sw/inc/strings.hrc:773
msgctxt "STR_AUTH_FIELD_AUTHORITY_TYPE"
msgid "Type"
msgstr "Triba"
#. kUGDr
-#: sw/inc/strings.hrc:773
+#: sw/inc/strings.hrc:774
msgctxt "STR_AUTH_FIELD_ADDRESS"
msgid "Address"
msgstr "Direición"
#. DquVQ
-#: sw/inc/strings.hrc:774
+#: sw/inc/strings.hrc:775
msgctxt "STR_AUTH_FIELD_ANNOTE"
msgid "Annotation"
msgstr "Anotación"
#. sduuV
-#: sw/inc/strings.hrc:775
+#: sw/inc/strings.hrc:776
msgctxt "STR_AUTH_FIELD_AUTHOR"
msgid "Author(s)"
msgstr "Autor(es)"
#. fXvz6
-#: sw/inc/strings.hrc:776
+#: sw/inc/strings.hrc:777
msgctxt "STR_AUTH_FIELD_BOOKTITLE"
msgid "Book title"
msgstr "Títulu del llibru"
#. c8PFE
-#: sw/inc/strings.hrc:777
+#: sw/inc/strings.hrc:778
msgctxt "STR_AUTH_FIELD_CHAPTER"
msgid "Chapter"
msgstr "Capítulu"
#. GXqxF
-#: sw/inc/strings.hrc:778
+#: sw/inc/strings.hrc:779
msgctxt "STR_AUTH_FIELD_EDITION"
msgid "Edition"
msgstr "Edición"
#. p7A3p
-#: sw/inc/strings.hrc:779
+#: sw/inc/strings.hrc:780
#, fuzzy
msgctxt "STR_AUTH_FIELD_EDITOR"
msgid "Editor"
msgstr "Editor"
#. aAFEz
-#: sw/inc/strings.hrc:780
+#: sw/inc/strings.hrc:781
#, fuzzy
msgctxt "STR_AUTH_FIELD_HOWPUBLISHED"
msgid "Publication type"
msgstr "M~ena de publicación"
#. 8DwdJ
-#: sw/inc/strings.hrc:781
+#: sw/inc/strings.hrc:782
msgctxt "STR_AUTH_FIELD_INSTITUTION"
msgid "Institution"
msgstr "Institución"
#. VWNxy
-#: sw/inc/strings.hrc:782
+#: sw/inc/strings.hrc:783
msgctxt "STR_AUTH_FIELD_JOURNAL"
msgid "Journal"
msgstr "Diariu"
#. Da4fW
-#: sw/inc/strings.hrc:783
+#: sw/inc/strings.hrc:784
msgctxt "STR_AUTH_FIELD_MONTH"
msgid "Month"
msgstr "Mes"
#. SdSBt
-#: sw/inc/strings.hrc:784
+#: sw/inc/strings.hrc:785
msgctxt "STR_AUTH_FIELD_NOTE"
msgid "Note"
msgstr "Nota"
#. MZYpD
-#: sw/inc/strings.hrc:785
+#: sw/inc/strings.hrc:786
msgctxt "STR_AUTH_FIELD_NUMBER"
msgid "Number"
msgstr "Númberu"
#. ZB7Go
-#: sw/inc/strings.hrc:786
+#: sw/inc/strings.hrc:787
msgctxt "STR_AUTH_FIELD_ORGANIZATIONS"
msgid "Organization"
msgstr "Organización"
#. C4CdP
-#: sw/inc/strings.hrc:787
+#: sw/inc/strings.hrc:788
msgctxt "STR_AUTH_FIELD_PAGES"
msgid "Page(s)"
msgstr "Páxina(es)"
#. yFPFa
-#: sw/inc/strings.hrc:788
+#: sw/inc/strings.hrc:789
msgctxt "STR_AUTH_FIELD_PUBLISHER"
msgid "Publisher"
msgstr "Editor"
#. d9u3p
-#: sw/inc/strings.hrc:789
+#: sw/inc/strings.hrc:790
#, fuzzy
msgctxt "STR_AUTH_FIELD_SCHOOL"
msgid "University"
msgstr "Universidá"
#. Qxsdb
-#: sw/inc/strings.hrc:790
+#: sw/inc/strings.hrc:791
msgctxt "STR_AUTH_FIELD_SERIES"
msgid "Series"
msgstr "Serie"
#. YhXPg
-#: sw/inc/strings.hrc:791
+#: sw/inc/strings.hrc:792
msgctxt "STR_AUTH_FIELD_TITLE"
msgid "Title"
msgstr "Títulu"
#. qEBhL
-#: sw/inc/strings.hrc:792
+#: sw/inc/strings.hrc:793
#, fuzzy
msgctxt "STR_AUTH_FIELD_TYPE"
msgid "Type of report"
msgstr "Mena d'in~forme"
#. Sij9w
-#: sw/inc/strings.hrc:793
+#: sw/inc/strings.hrc:794
msgctxt "STR_AUTH_FIELD_VOLUME"
msgid "Volume"
msgstr "Volume"
#. K8miv
-#: sw/inc/strings.hrc:794
+#: sw/inc/strings.hrc:795
msgctxt "STR_AUTH_FIELD_YEAR"
msgid "Year"
msgstr "Añu"
#. pFMSV
-#: sw/inc/strings.hrc:795
+#: sw/inc/strings.hrc:796
msgctxt "STR_AUTH_FIELD_URL"
msgid "URL"
msgstr "URL"
#. xFG3c
-#: sw/inc/strings.hrc:796
+#: sw/inc/strings.hrc:797
msgctxt "STR_AUTH_FIELD_CUSTOM1"
msgid "User-defined1"
msgstr "Definíu pol usuariu 1"
#. wtDyU
-#: sw/inc/strings.hrc:797
+#: sw/inc/strings.hrc:798
msgctxt "STR_AUTH_FIELD_CUSTOM2"
msgid "User-defined2"
msgstr "Definíu pol usuariu 2"
#. VH3Se
-#: sw/inc/strings.hrc:798
+#: sw/inc/strings.hrc:799
msgctxt "STR_AUTH_FIELD_CUSTOM3"
msgid "User-defined3"
msgstr "Definíu pol usuariu 3"
#. twuKb
-#: sw/inc/strings.hrc:799
+#: sw/inc/strings.hrc:800
msgctxt "STR_AUTH_FIELD_CUSTOM4"
msgid "User-defined4"
msgstr "Definíu pol usuariu 4"
#. WAo7Z
-#: sw/inc/strings.hrc:800
+#: sw/inc/strings.hrc:801
msgctxt "STR_AUTH_FIELD_CUSTOM5"
msgid "User-defined5"
msgstr "Definíu pol usuariu 5"
#. 3r6Wg
-#: sw/inc/strings.hrc:801
+#: sw/inc/strings.hrc:802
msgctxt "STR_AUTH_FIELD_ISBN"
msgid "ISBN"
msgstr "ISBN"
#. BhDrt
-#: sw/inc/strings.hrc:802
+#: sw/inc/strings.hrc:803
msgctxt "STR_AUTH_FIELD_LOCAL_URL"
msgid "Local copy"
msgstr ""
#. eFnnx
-#: sw/inc/strings.hrc:804
+#: sw/inc/strings.hrc:805
msgctxt "STR_IDXMRK_EDIT"
msgid "Edit Index Entry"
msgstr "Editar entrada d'índiz"
#. EHTHH
-#: sw/inc/strings.hrc:805
+#: sw/inc/strings.hrc:806
msgctxt "STR_IDXMRK_INSERT"
msgid "Insert Index Entry"
msgstr "Inxertar una entrada d'índiz"
#. D2gkA
-#: sw/inc/strings.hrc:806
+#: sw/inc/strings.hrc:807
#, fuzzy
msgctxt "STR_QUERY_CHANGE_AUTH_ENTRY"
msgid "The document already contains the bibliography entry but with different data. Do you want to adjust the existing entries?"
msgstr "El documentu ya caltien la entrada bibliográfica, pero con datos distintos. ¿Quies axustar les entraes existentes?"
#. mK84T
-#: sw/inc/strings.hrc:808
+#: sw/inc/strings.hrc:809
msgctxt "STR_COMMENTS_LABEL"
msgid "Comments"
msgstr "Comentarios"
#. fwecS
-#: sw/inc/strings.hrc:809
+#: sw/inc/strings.hrc:810
msgctxt "STR_SHOW_COMMENTS"
msgid "Show comments"
msgstr "Ver los comentarios"
#. HkUvy
-#: sw/inc/strings.hrc:810
+#: sw/inc/strings.hrc:811
msgctxt "STR_HIDE_COMMENTS"
msgid "Hide comments"
msgstr "Anubrir los comentarios"
#. FcmEy
-#: sw/inc/strings.hrc:812
+#: sw/inc/strings.hrc:813
msgctxt "STR_DOUBLE_SHORTNAME"
msgid "Shortcut name already exists. Please choose another name."
msgstr "Yá esiste'l nome del atayu. Escueya otru nome."
#. VhMST
-#: sw/inc/strings.hrc:813
+#: sw/inc/strings.hrc:814
msgctxt "STR_QUERY_DELETE"
msgid "Delete AutoText?"
msgstr "¿Desaniciar testu automáticu?"
#. E5MLr
-#: sw/inc/strings.hrc:814
+#: sw/inc/strings.hrc:815
msgctxt "STR_QUERY_DELETE_GROUP1"
msgid "Delete the category "
msgstr "Desaniciar la categoría "
#. qndNh
-#: sw/inc/strings.hrc:815
+#: sw/inc/strings.hrc:816
msgctxt "STR_QUERY_DELETE_GROUP2"
msgid "?"
msgstr "?"
#. B6xah
-#: sw/inc/strings.hrc:816
+#: sw/inc/strings.hrc:817
msgctxt "STR_GLOSSARY"
msgid "AutoText :"
msgstr "Autotestu:"
#. ChetY
-#: sw/inc/strings.hrc:817
+#: sw/inc/strings.hrc:818
msgctxt "STR_SAVE_GLOSSARY"
msgid "Save AutoText"
msgstr "Guardar Autotestu"
#. QxAiF
-#: sw/inc/strings.hrc:818
+#: sw/inc/strings.hrc:819
msgctxt "STR_NO_GLOSSARIES"
msgid "There is no AutoText in this file."
msgstr "Nun hai Autotestu nesti ficheru."
#. sG8Xt
-#: sw/inc/strings.hrc:819
+#: sw/inc/strings.hrc:820
msgctxt "STR_MY_AUTOTEXT"
msgid "My AutoText"
msgstr "El mio AutoTestu"
#. GaoqR
-#: sw/inc/strings.hrc:821
+#: sw/inc/strings.hrc:822
msgctxt "STR_NOGLOS"
msgid "AutoText for Shortcut '%1' not found."
msgstr "Nun s'alcontró'l testu automáticu pal accesu rápidu «%1»."
#. MwUEP
-#: sw/inc/strings.hrc:822
+#: sw/inc/strings.hrc:823
msgctxt "STR_NO_TABLE"
msgid "A table with no rows or no cells cannot be inserted"
msgstr "Nun pue insertase una tabla ensin fileres o caxelles"
#. AawM4
-#: sw/inc/strings.hrc:823
+#: sw/inc/strings.hrc:824
msgctxt "STR_TABLE_TOO_LARGE"
msgid "The table cannot be inserted because it is too large"
msgstr "Nun pue inxertase la tabla porque ye pergrande"
#. GGo8i
-#: sw/inc/strings.hrc:824
+#: sw/inc/strings.hrc:825
msgctxt "STR_ERR_INSERT_GLOS"
msgid "AutoText could not be created."
msgstr "Nun pudo crease'l testu automáticu."
#. DCPSB
-#: sw/inc/strings.hrc:825
+#: sw/inc/strings.hrc:826
msgctxt "STR_CLPBRD_FORMAT_ERROR"
msgid "Requested clipboard format is not available."
msgstr "El formatu que quies del cartafueyu nun ta disponible."
#. YxCCF
-#: sw/inc/strings.hrc:826
+#: sw/inc/strings.hrc:827
msgctxt "STR_PRIVATETEXT"
msgid "%PRODUCTNAME %PRODUCTVERSION Text Document"
msgstr "Documentu de testu de %PRODUCTNAME %PRODUCTVERSION"
#. 8ygN3
-#: sw/inc/strings.hrc:827
+#: sw/inc/strings.hrc:828
msgctxt "STR_PRIVATEGRAPHIC"
msgid "Image (%PRODUCTNAME %PRODUCTVERSION Text Document)"
msgstr ""
#. ewPPB
-#: sw/inc/strings.hrc:828
+#: sw/inc/strings.hrc:829
msgctxt "STR_PRIVATEOLE"
msgid "Object (%PRODUCTNAME %PRODUCTVERSION Text Document)"
msgstr ""
#. 9VEc3
-#: sw/inc/strings.hrc:829
+#: sw/inc/strings.hrc:830
msgctxt "STR_DDEFORMAT"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
#. svrE7
-#: sw/inc/strings.hrc:831
+#: sw/inc/strings.hrc:832
msgctxt "STR_DELETE_ALL_NOTES"
msgid "All Comments"
msgstr "Tolos comentarios"
#. YGNN4
-#: sw/inc/strings.hrc:832
+#: sw/inc/strings.hrc:833
msgctxt "STR_FORMAT_ALL_NOTES"
msgid "All Comments"
msgstr "Tolos comentarios"
#. GDH49
-#: sw/inc/strings.hrc:833
+#: sw/inc/strings.hrc:834
msgctxt "STR_DELETE_AUTHOR_NOTES"
msgid "Comments by "
msgstr "Comentarios por "
#. RwAcm
-#: sw/inc/strings.hrc:834
+#: sw/inc/strings.hrc:835
msgctxt "STR_NODATE"
msgid "(no date)"
msgstr "(ensin data)"
#. ytxKG
-#: sw/inc/strings.hrc:835
+#: sw/inc/strings.hrc:836
msgctxt "STR_NOAUTHOR"
msgid "(no author)"
msgstr "(ensin autor)"
#. nAwMG
-#: sw/inc/strings.hrc:836
+#: sw/inc/strings.hrc:837
msgctxt "STR_REPLY"
msgid "Reply to $1"
msgstr "Rempuesta a $1"
#. CVVa6
-#: sw/inc/strings.hrc:838
+#: sw/inc/strings.hrc:839
msgctxt "ST_TITLE_EDIT"
msgid "Edit Address Block"
msgstr "Editar bloque de direiciones"
#. njGGA
-#: sw/inc/strings.hrc:839
+#: sw/inc/strings.hrc:840
msgctxt "ST_TITLE_MALE"
msgid "Custom Salutation (Male Recipients)"
msgstr "Saludu personalizáu (destinatarios masculinos)"
#. ZVuKY
-#: sw/inc/strings.hrc:840
+#: sw/inc/strings.hrc:841
msgctxt "ST_TITLE_FEMALE"
msgid "Custom Salutation (Female Recipients)"
msgstr "Saludu personalizáu (destinatarios femeninos)"
#. h4yuq
-#: sw/inc/strings.hrc:841
+#: sw/inc/strings.hrc:842
msgctxt "ST_SALUTATIONELEMENTS"
msgid "Salutation e~lements"
msgstr "E~lementos de saludu"
#. kWhqT
-#: sw/inc/strings.hrc:842
+#: sw/inc/strings.hrc:843
msgctxt "ST_INSERTSALUTATIONFIELD"
msgid "Add to salutation"
msgstr "Amestar a saludu"
#. hvF3V
-#: sw/inc/strings.hrc:843
+#: sw/inc/strings.hrc:844
msgctxt "ST_REMOVESALUTATIONFIELD"
msgid "Remove from salutation"
msgstr "Quitar del saludu"
#. A6XaR
-#: sw/inc/strings.hrc:844
+#: sw/inc/strings.hrc:845
msgctxt "ST_DRAGSALUTATION"
msgid "1. ~Drag salutation elements into the box below"
msgstr "1. ~Arrastra los elementos del saludu hasta al caxa siguiente"
#. 4VJWL
-#: sw/inc/strings.hrc:845
+#: sw/inc/strings.hrc:846
msgctxt "ST_SALUTATION"
msgid "Salutation"
msgstr "Tratamientu"
#. Vj6XT
-#: sw/inc/strings.hrc:846
+#: sw/inc/strings.hrc:847
msgctxt "ST_PUNCTUATION"
msgid "Punctuation Mark"
msgstr "Signu de puntuación"
#. bafeG
-#: sw/inc/strings.hrc:847
+#: sw/inc/strings.hrc:848
msgctxt "ST_TEXT"
msgid "Text"
msgstr "Testu"
#. tt6sA
-#: sw/inc/strings.hrc:848
+#: sw/inc/strings.hrc:849
#, fuzzy
msgctxt "ST_SALUTATIONMATCHING"
msgid "Assign the fields from your data source to match the salutation elements."
msgstr "Asigna los campos del orixe de datos pa que coincidan colos elementos de direición."
#. zrUsN
-#: sw/inc/strings.hrc:849
+#: sw/inc/strings.hrc:850
msgctxt "ST_SALUTATIONPREVIEW"
msgid "Salutation preview"
msgstr "Vista previa de saludu"
#. 2UVE6
-#: sw/inc/strings.hrc:850
+#: sw/inc/strings.hrc:851
msgctxt "ST_ADDRESSELEMENT"
msgid "Address elements"
msgstr "Elementos de la direición"
#. Bd6pd
-#: sw/inc/strings.hrc:851
+#: sw/inc/strings.hrc:852
msgctxt "ST_SALUTATIONELEMENT"
msgid "Salutation elements"
msgstr "Elementos del saludu"
#. 9krzf
-#: sw/inc/strings.hrc:852
+#: sw/inc/strings.hrc:853
msgctxt "ST_MATCHESTO"
msgid "Matches to field:"
msgstr "Coincidencies col campu:"
#. oahCQ
-#: sw/inc/strings.hrc:853
+#: sw/inc/strings.hrc:854
msgctxt "ST_PREVIEW"
msgid "Preview"
msgstr "Vista previa"
#. ijdxe
-#: sw/inc/strings.hrc:854
+#: sw/inc/strings.hrc:855
msgctxt "ST_DELETE_CONFIRM"
msgid "Do you want to delete this registered data source?"
msgstr "¿Quier desaniciar esta fonte de datos rexistrada?"
#. kE5C3
-#: sw/inc/strings.hrc:856
+#: sw/inc/strings.hrc:857
msgctxt "STR_NOTASSIGNED"
msgid " not yet matched "
msgstr " entá nun coincide "
#. Y6FhG
-#: sw/inc/strings.hrc:857
+#: sw/inc/strings.hrc:858
msgctxt "STR_FILTER_ALL"
msgid "All files"
msgstr "Tolos ficheros"
#. 7cNjh
-#: sw/inc/strings.hrc:858
+#: sw/inc/strings.hrc:859
msgctxt "STR_FILTER_ALL_DATA"
msgid "Address lists(*.*)"
msgstr "Llistes de señes(*.*)"
#. Ef8TY
-#: sw/inc/strings.hrc:859
+#: sw/inc/strings.hrc:860
msgctxt "STR_FILTER_SXB"
msgid "%PRODUCTNAME Base (*.odb)"
msgstr "%PRODUCTNAME Base (*.odb)"
#. 24opW
-#: sw/inc/strings.hrc:860
+#: sw/inc/strings.hrc:861
msgctxt "STR_FILTER_SXC"
msgid "%PRODUCTNAME Calc (*.ods;*.sxc)"
msgstr "%PRODUCTNAME Calc (*.ods;*.sxc)"
#. sq73T
-#: sw/inc/strings.hrc:861
+#: sw/inc/strings.hrc:862
msgctxt "STR_FILTER_SXW"
msgid "%PRODUCTNAME Writer (*.odt;*.sxw)"
msgstr "%PRODUCTNAME Writer (*.odt;*.sxw)"
#. QupGC
-#: sw/inc/strings.hrc:862
+#: sw/inc/strings.hrc:863
msgctxt "STR_FILTER_DBF"
msgid "dBase (*.dbf)"
msgstr "dBase (*.dbf)"
#. SzqRv
-#: sw/inc/strings.hrc:863
+#: sw/inc/strings.hrc:864
msgctxt "STR_FILTER_XLS"
msgid "Microsoft Excel (*.xls;*.xlsx)"
msgstr "Microsoft Excel (*.xls;*.xlsx)"
#. zAUu8
-#: sw/inc/strings.hrc:864
+#: sw/inc/strings.hrc:865
msgctxt "STR_FILTER_DOC"
msgid "Microsoft Word (*.doc;*.docx)"
msgstr "Microsoft Word (*.doc;*.docx)"
#. JBZFc
-#: sw/inc/strings.hrc:865
+#: sw/inc/strings.hrc:866
msgctxt "STR_FILTER_TXT"
msgid "Plain text (*.txt)"
msgstr "Testu simple (*.txt)"
#. CRJb6
-#: sw/inc/strings.hrc:866
+#: sw/inc/strings.hrc:867
msgctxt "STR_FILTER_CSV"
msgid "Text Comma Separated (*.csv)"
msgstr "Testu separtáu por comes (*.csv)"
#. U4H2j
-#: sw/inc/strings.hrc:867
+#: sw/inc/strings.hrc:868
msgctxt "STR_FILTER_MDB"
msgid "Microsoft Access (*.mdb;*.mde)"
msgstr "Microsoft Access (*.mdb;*.mde)"
#. DwxF8
-#: sw/inc/strings.hrc:868
+#: sw/inc/strings.hrc:869
msgctxt "STR_FILTER_ACCDB"
msgid "Microsoft Access 2007 (*.accdb,*.accde)"
msgstr "Microsoft Access 2007 (*.accdb,*.accde)"
#. uDNRt
-#: sw/inc/strings.hrc:869
+#: sw/inc/strings.hrc:870
msgctxt "ST_CONFIGUREMAIL"
msgid ""
"In order to be able to send mail merge documents by email, %PRODUCTNAME requires information about the email account to be used.\n"
@@ -7153,92 +7159,92 @@ msgid ""
msgstr ""
#. r9BVg
-#: sw/inc/strings.hrc:870
+#: sw/inc/strings.hrc:871
msgctxt "ST_FILTERNAME"
msgid "%PRODUCTNAME Address List (.csv)"
msgstr "Llista de direiciones de %PRODUCTNAME (.csv)"
#. jiJuZ
-#: sw/inc/strings.hrc:872
+#: sw/inc/strings.hrc:873
msgctxt "ST_STARTING"
msgid "Select Starting Document"
msgstr ""
#. FiUyK
-#: sw/inc/strings.hrc:873
+#: sw/inc/strings.hrc:874
msgctxt "ST_DOCUMENTTYPE"
msgid "Select Document Type"
msgstr ""
#. QwrpS
-#: sw/inc/strings.hrc:874
+#: sw/inc/strings.hrc:875
msgctxt "ST_ADDRESSBLOCK"
msgid "Insert Address Block"
msgstr ""
#. omRZF
-#: sw/inc/strings.hrc:875
+#: sw/inc/strings.hrc:876
msgctxt "ST_ADDRESSLIST"
msgid "Select Address List"
msgstr ""
#. YrDuD
-#: sw/inc/strings.hrc:876
+#: sw/inc/strings.hrc:877
msgctxt "ST_GREETINGSLINE"
msgid "Create Salutation"
msgstr ""
#. tTr4B
-#: sw/inc/strings.hrc:877
+#: sw/inc/strings.hrc:878
msgctxt "ST_LAYOUT"
msgid "Adjust Layout"
msgstr ""
#. S4p5M
-#: sw/inc/strings.hrc:878
+#: sw/inc/strings.hrc:879
msgctxt "ST_EXCLUDE"
msgid "Exclude recipient"
msgstr ""
#. N5YUH
-#: sw/inc/strings.hrc:879
+#: sw/inc/strings.hrc:880
msgctxt "ST_FINISH"
msgid "~Finish"
msgstr "~Finar"
#. L5FEG
-#: sw/inc/strings.hrc:880
+#: sw/inc/strings.hrc:881
#, fuzzy
msgctxt "ST_MMWTITLE"
msgid "Mail Merge Wizard"
msgstr "Asistente pa combinar correspondencia"
#. CEhZj
-#: sw/inc/strings.hrc:882
+#: sw/inc/strings.hrc:883
msgctxt "ST_TABLE"
msgid "Table"
msgstr "Tabla"
#. v9hEB
-#: sw/inc/strings.hrc:883
+#: sw/inc/strings.hrc:884
msgctxt "ST_QUERY"
msgid "Query"
msgstr "Consulta"
#. HxGAu
-#: sw/inc/strings.hrc:885
+#: sw/inc/strings.hrc:886
msgctxt "STR_QUERY_SPELL_CONTINUE"
msgid "Continue checking at beginning of document?"
msgstr "¿Siguir comprobando pel entamu del documentu?"
#. gE7CA
-#: sw/inc/strings.hrc:886
+#: sw/inc/strings.hrc:887
msgctxt "STR_SPELLING_COMPLETED"
msgid "The spellcheck is complete."
msgstr "Completóse la revisión ortográfica."
#. 2SuqF
-#: sw/inc/strings.hrc:887
+#: sw/inc/strings.hrc:888
msgctxt "STR_DICTIONARY_UNAVAILABLE"
msgid "No dictionary available"
msgstr ""
@@ -7248,252 +7254,252 @@ msgstr ""
#. Description: strings for the types
#. --------------------------------------------------------------------
#. range document
-#: sw/inc/strings.hrc:893
+#: sw/inc/strings.hrc:894
msgctxt "STR_DATEFLD"
msgid "Date"
msgstr "Data"
#. V9cQp
-#: sw/inc/strings.hrc:894
+#: sw/inc/strings.hrc:895
msgctxt "STR_TIMEFLD"
msgid "Time"
msgstr "Hora"
#. 2zgWi
-#: sw/inc/strings.hrc:895
+#: sw/inc/strings.hrc:896
msgctxt "STR_FILENAMEFLD"
msgid "File name"
msgstr "Nome ficheru"
#. FdSaU
-#: sw/inc/strings.hrc:896
+#: sw/inc/strings.hrc:897
msgctxt "STR_DBNAMEFLD"
msgid "Database Name"
msgstr "Nome Base de Datos"
#. XZADh
-#: sw/inc/strings.hrc:897
+#: sw/inc/strings.hrc:898
msgctxt "STR_CHAPTERFLD"
msgid "Chapter"
msgstr "Capítulu"
#. wYWy2
-#: sw/inc/strings.hrc:898
+#: sw/inc/strings.hrc:899
msgctxt "STR_PAGENUMBERFLD"
msgid "Page number"
msgstr ""
#. EXC6N
-#: sw/inc/strings.hrc:899
+#: sw/inc/strings.hrc:900
msgctxt "STR_DOCSTATFLD"
msgid "Statistics"
msgstr "Estadístiques"
#. EW86G
-#: sw/inc/strings.hrc:900
+#: sw/inc/strings.hrc:901
msgctxt "STR_AUTHORFLD"
msgid "Author"
msgstr "Autor"
#. 5aFak
-#: sw/inc/strings.hrc:901
+#: sw/inc/strings.hrc:902
msgctxt "STR_TEMPLNAMEFLD"
msgid "Templates"
msgstr "Plantilles"
#. 3wdud
-#: sw/inc/strings.hrc:902
+#: sw/inc/strings.hrc:903
msgctxt "STR_EXTUSERFLD"
msgid "Sender"
msgstr "Remitente"
#. LxZEm
#. range functions
-#: sw/inc/strings.hrc:904
+#: sw/inc/strings.hrc:905
msgctxt "STR_SETFLD"
msgid "Set variable"
msgstr "Afitar variable"
#. ckA26
-#: sw/inc/strings.hrc:905
+#: sw/inc/strings.hrc:906
msgctxt "STR_GETFLD"
msgid "Show variable"
msgstr "Amosar variable"
#. Fjzgu
-#: sw/inc/strings.hrc:906
+#: sw/inc/strings.hrc:907
msgctxt "STR_FORMELFLD"
msgid "Insert Formula"
msgstr "Inxertar Fórmula"
#. AXoAT
-#: sw/inc/strings.hrc:907
+#: sw/inc/strings.hrc:908
msgctxt "STR_INPUTFLD"
msgid "Input field"
msgstr "Campu d'entrada"
#. VfqNE
-#: sw/inc/strings.hrc:908
+#: sw/inc/strings.hrc:909
msgctxt "STR_SETINPUTFLD"
msgid "Input field (variable)"
msgstr "Campu d'entrada (variable)"
#. E8JAd
-#: sw/inc/strings.hrc:909
+#: sw/inc/strings.hrc:910
msgctxt "STR_USRINPUTFLD"
msgid "Input field (user)"
msgstr "Campu d'entrada (usuariu)"
#. 8LGEQ
-#: sw/inc/strings.hrc:910
+#: sw/inc/strings.hrc:911
msgctxt "STR_CONDTXTFLD"
msgid "Conditional text"
msgstr "Testu condicional"
#. jrZ7i
-#: sw/inc/strings.hrc:911
+#: sw/inc/strings.hrc:912
msgctxt "STR_DDEFLD"
msgid "DDE field"
msgstr "Campu DDE"
#. 9WAT9
-#: sw/inc/strings.hrc:912
+#: sw/inc/strings.hrc:913
msgctxt "STR_MACROFLD"
msgid "Execute macro"
msgstr "Executar macro"
#. qEBxa
-#: sw/inc/strings.hrc:913
+#: sw/inc/strings.hrc:914
msgctxt "STR_SEQFLD"
msgid "Number range"
msgstr "Rangu númberos"
#. ACE5s
-#: sw/inc/strings.hrc:914
+#: sw/inc/strings.hrc:915
msgctxt "STR_SETREFPAGEFLD"
msgid "Set page variable"
msgstr "Afitar páxina variable"
#. ayB3N
-#: sw/inc/strings.hrc:915
+#: sw/inc/strings.hrc:916
msgctxt "STR_GETREFPAGEFLD"
msgid "Show page variable"
msgstr "Amosar páxina variable"
#. DBM4P
-#: sw/inc/strings.hrc:916
+#: sw/inc/strings.hrc:917
msgctxt "STR_INTERNETFLD"
msgid "Load URL"
msgstr "Cargar URL"
#. LJFF5
-#: sw/inc/strings.hrc:917
+#: sw/inc/strings.hrc:918
msgctxt "STR_JUMPEDITFLD"
msgid "Placeholder"
msgstr "Marcador de posición"
#. zZCg6
-#: sw/inc/strings.hrc:918
+#: sw/inc/strings.hrc:919
msgctxt "STR_COMBINED_CHARS"
msgid "Combine characters"
msgstr "Combinar caráuteres"
#. 9MGU6
-#: sw/inc/strings.hrc:919
+#: sw/inc/strings.hrc:920
msgctxt "STR_DROPDOWN"
msgid "Input list"
msgstr "Llista d'entrada"
#. 7BWSk
#. range references
-#: sw/inc/strings.hrc:921
+#: sw/inc/strings.hrc:922
msgctxt "STR_SETREFFLD"
msgid "Set Reference"
msgstr "Afitar Referencia"
#. FJ2X8
-#: sw/inc/strings.hrc:922
+#: sw/inc/strings.hrc:923
msgctxt "STR_GETREFFLD"
msgid "Insert Reference"
msgstr "Inxertar Referencia"
#. sztLS
#. range database
-#: sw/inc/strings.hrc:924
+#: sw/inc/strings.hrc:925
msgctxt "STR_DBFLD"
msgid "Mail merge fields"
msgstr "Amestar campos corréu"
#. JP2DU
-#: sw/inc/strings.hrc:925
+#: sw/inc/strings.hrc:926
msgctxt "STR_DBNEXTSETFLD"
msgid "Next record"
msgstr "Rexistru siguiente"
#. GizhA
-#: sw/inc/strings.hrc:926
+#: sw/inc/strings.hrc:927
msgctxt "STR_DBNUMSETFLD"
msgid "Any record"
msgstr "Cualisquier rexistru"
#. aMGxm
-#: sw/inc/strings.hrc:927
+#: sw/inc/strings.hrc:928
msgctxt "STR_DBSETNUMBERFLD"
msgid "Record number"
msgstr "Númberu rexistru"
#. DtYzi
-#: sw/inc/strings.hrc:928
+#: sw/inc/strings.hrc:929
msgctxt "STR_PREVPAGEFLD"
msgid "Previous page"
msgstr "Páxina anterior"
#. UCSej
-#: sw/inc/strings.hrc:929
+#: sw/inc/strings.hrc:930
msgctxt "STR_NEXTPAGEFLD"
msgid "Next page"
msgstr "Próxima páxina"
#. M8Fac
-#: sw/inc/strings.hrc:930
+#: sw/inc/strings.hrc:931
msgctxt "STR_HIDDENTXTFLD"
msgid "Hidden text"
msgstr "Testu anubríu"
#. WvBF2
#. range user fields
-#: sw/inc/strings.hrc:932
+#: sw/inc/strings.hrc:933
msgctxt "STR_USERFLD"
msgid "User Field"
msgstr "Campu d'usuariu"
#. XELYN
-#: sw/inc/strings.hrc:933
+#: sw/inc/strings.hrc:934
msgctxt "STR_POSTITFLD"
msgid "Note"
msgstr "Nota"
#. MB6kt
-#: sw/inc/strings.hrc:934
+#: sw/inc/strings.hrc:935
msgctxt "STR_SCRIPTFLD"
msgid "Script"
msgstr "Script"
#. BWU6A
-#: sw/inc/strings.hrc:935
+#: sw/inc/strings.hrc:936
msgctxt "STR_AUTHORITY"
msgid "Bibliography entry"
msgstr "Entrada bibliografía"
#. 7EGCR
-#: sw/inc/strings.hrc:936
+#: sw/inc/strings.hrc:937
msgctxt "STR_HIDDENPARAFLD"
msgid "Hidden Paragraph"
msgstr "Párrafu anubríu"
#. dRBRK
#. range DocumentInfo
-#: sw/inc/strings.hrc:938
+#: sw/inc/strings.hrc:939
msgctxt "STR_DOCINFOFLD"
msgid "DocInformation"
msgstr "Información Documentu"
@@ -7502,87 +7508,87 @@ msgstr "Información Documentu"
#. --------------------------------------------------------------------
#. Description: SubCmd-Strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:942
+#: sw/inc/strings.hrc:943
msgctxt "FLD_DATE_STD"
msgid "Date"
msgstr "Data"
#. qMCEh
-#: sw/inc/strings.hrc:943
+#: sw/inc/strings.hrc:944
msgctxt "FLD_DATE_FIX"
msgid "Date (fixed)"
msgstr "Fecha (fixada)"
#. AXmyw
-#: sw/inc/strings.hrc:944
+#: sw/inc/strings.hrc:945
msgctxt "FLD_TIME_STD"
msgid "Time"
msgstr "Tiempu"
#. 6dxVs
-#: sw/inc/strings.hrc:945
+#: sw/inc/strings.hrc:946
msgctxt "FLD_TIME_FIX"
msgid "Time (fixed)"
msgstr "Tiempu (fixu)"
#. U3SW8
#. SubCmd Statistic
-#: sw/inc/strings.hrc:947
+#: sw/inc/strings.hrc:948
msgctxt "FLD_STAT_TABLE"
msgid "Tables"
msgstr "Tables"
#. 7qW4K
-#: sw/inc/strings.hrc:948
+#: sw/inc/strings.hrc:949
msgctxt "FLD_STAT_CHAR"
msgid "Characters"
msgstr "Caráuteres"
#. zDRCp
-#: sw/inc/strings.hrc:949
+#: sw/inc/strings.hrc:950
msgctxt "FLD_STAT_WORD"
msgid "Words"
msgstr "Pallabres"
#. 2wgLC
-#: sw/inc/strings.hrc:950
+#: sw/inc/strings.hrc:951
msgctxt "FLD_STAT_PARA"
msgid "Paragraphs"
msgstr "Párrafos"
#. JPGG7
-#: sw/inc/strings.hrc:951
+#: sw/inc/strings.hrc:952
msgctxt "FLD_STAT_GRF"
msgid "Image"
msgstr "Imaxe"
#. CzoFh
-#: sw/inc/strings.hrc:952
+#: sw/inc/strings.hrc:953
msgctxt "FLD_STAT_OBJ"
msgid "Objects"
msgstr "Oxetos"
#. bDG6R
-#: sw/inc/strings.hrc:953
+#: sw/inc/strings.hrc:954
msgctxt "FLD_STAT_PAGE"
msgid "Pages"
msgstr "Páxines"
#. yqhF5
#. SubCmd DDETypes
-#: sw/inc/strings.hrc:955
+#: sw/inc/strings.hrc:956
msgctxt "FMT_DDE_HOT"
msgid "DDE automatic"
msgstr "DDE Automáticu"
#. xPP2E
-#: sw/inc/strings.hrc:956
+#: sw/inc/strings.hrc:957
msgctxt "FMT_DDE_NORMAL"
msgid "DDE manual"
msgstr "DDE Manual"
#. spdXd
-#: sw/inc/strings.hrc:957
+#: sw/inc/strings.hrc:958
msgctxt "FLD_INPUT_TEXT"
msgid "[Text]"
msgstr ""
@@ -7591,103 +7597,103 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: SubType Extuser
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:962
+#: sw/inc/strings.hrc:963
msgctxt "FLD_EU_FIRMA"
msgid "Company"
msgstr "Compañía"
#. WWxTK
-#: sw/inc/strings.hrc:963
+#: sw/inc/strings.hrc:964
msgctxt "FLD_EU_VORNAME"
msgid "First Name"
msgstr "Nome"
#. 4tdAc
-#: sw/inc/strings.hrc:964
+#: sw/inc/strings.hrc:965
msgctxt "FLD_EU_NAME"
msgid "Last Name"
msgstr "Apellíos"
#. xTV7n
-#: sw/inc/strings.hrc:965
+#: sw/inc/strings.hrc:966
msgctxt "FLD_EU_ABK"
msgid "Initials"
msgstr "Iniciales"
#. AKD3k
-#: sw/inc/strings.hrc:966
+#: sw/inc/strings.hrc:967
msgctxt "FLD_EU_STRASSE"
msgid "Street"
msgstr "Cai"
#. ErMju
-#: sw/inc/strings.hrc:967
+#: sw/inc/strings.hrc:968
msgctxt "FLD_EU_LAND"
msgid "Country"
msgstr "País"
#. ESbkx
-#: sw/inc/strings.hrc:968
+#: sw/inc/strings.hrc:969
msgctxt "FLD_EU_PLZ"
msgid "Zip code"
msgstr "Códigu postal"
#. WDAc2
-#: sw/inc/strings.hrc:969
+#: sw/inc/strings.hrc:970
msgctxt "FLD_EU_ORT"
msgid "City"
msgstr "Ciudá"
#. pg7MV
-#: sw/inc/strings.hrc:970
+#: sw/inc/strings.hrc:971
msgctxt "FLD_EU_TITEL"
msgid "Title"
msgstr "Títulu"
#. DwLhZ
-#: sw/inc/strings.hrc:971
+#: sw/inc/strings.hrc:972
msgctxt "FLD_EU_POS"
msgid "Position"
msgstr "Posición"
#. LDTdu
-#: sw/inc/strings.hrc:972
+#: sw/inc/strings.hrc:973
msgctxt "FLD_EU_TELPRIV"
msgid "Tel. (Home)"
msgstr "Tel. (Llar)"
#. JBZyj
-#: sw/inc/strings.hrc:973
+#: sw/inc/strings.hrc:974
msgctxt "FLD_EU_TELFIRMA"
msgid "Tel. (Work)"
msgstr "Tel. (Trabayu)"
#. 5EmGH
-#: sw/inc/strings.hrc:974
+#: sw/inc/strings.hrc:975
msgctxt "FLD_EU_FAX"
msgid "Fax"
msgstr "Fax"
#. AtN9J
-#: sw/inc/strings.hrc:975
+#: sw/inc/strings.hrc:976
msgctxt "FLD_EU_EMAIL"
msgid "Email"
msgstr "Corréu"
#. 6GBRm
-#: sw/inc/strings.hrc:976
+#: sw/inc/strings.hrc:977
msgctxt "FLD_EU_STATE"
msgid "State"
msgstr "Estáu"
#. pbrdQ
-#: sw/inc/strings.hrc:977
+#: sw/inc/strings.hrc:978
msgctxt "FLD_PAGEREF_OFF"
msgid "off"
msgstr "desactiváu"
#. wC8SE
-#: sw/inc/strings.hrc:978
+#: sw/inc/strings.hrc:979
msgctxt "FLD_PAGEREF_ON"
msgid "on"
msgstr "activáu"
@@ -7697,37 +7703,37 @@ msgstr "activáu"
#. Description: path name
#. --------------------------------------------------------------------
#. Format FileName
-#: sw/inc/strings.hrc:983
+#: sw/inc/strings.hrc:984
msgctxt "FMT_FF_NAME"
msgid "File name"
msgstr "Nome ficheru"
#. RBpz3
-#: sw/inc/strings.hrc:984
+#: sw/inc/strings.hrc:985
msgctxt "FMT_FF_NAME_NOEXT"
msgid "File name without extension"
msgstr "Nome ficheru ensin estensión"
#. BCzy8
-#: sw/inc/strings.hrc:985
+#: sw/inc/strings.hrc:986
msgctxt "FMT_FF_PATHNAME"
msgid "Path/File name"
msgstr "Nome Camín/Ficheru"
#. ChFwM
-#: sw/inc/strings.hrc:986
+#: sw/inc/strings.hrc:987
msgctxt "FMT_FF_PATH"
msgid "Path"
msgstr "Camín"
#. R6KrL
-#: sw/inc/strings.hrc:987
+#: sw/inc/strings.hrc:988
msgctxt "FMT_FF_UI_NAME"
msgid "Template name"
msgstr ""
#. ANM2H
-#: sw/inc/strings.hrc:988
+#: sw/inc/strings.hrc:989
msgctxt "FMT_FF_UI_RANGE"
msgid "Category"
msgstr "Categoría"
@@ -7736,25 +7742,25 @@ msgstr "Categoría"
#. --------------------------------------------------------------------
#. Description: format chapter
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:992
+#: sw/inc/strings.hrc:993
msgctxt "FMT_CHAPTER_NAME"
msgid "Chapter name"
msgstr "Nome capítulu"
#. tnLqE
-#: sw/inc/strings.hrc:993
+#: sw/inc/strings.hrc:994
msgctxt "FMT_CHAPTER_NO"
msgid "Chapter number"
msgstr "Númberu capítulu"
#. qGEAs
-#: sw/inc/strings.hrc:994
+#: sw/inc/strings.hrc:995
msgctxt "FMT_CHAPTER_NO_NOSEPARATOR"
msgid "Chapter number without separator"
msgstr "Númberu de capítulu ensin separtador"
#. WFA5R
-#: sw/inc/strings.hrc:995
+#: sw/inc/strings.hrc:996
msgctxt "FMT_CHAPTER_NAMENO"
msgid "Chapter number and name"
msgstr "Númberu capítulu y nome"
@@ -7763,55 +7769,55 @@ msgstr "Númberu capítulu y nome"
#. --------------------------------------------------------------------
#. Description: formats
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:999
+#: sw/inc/strings.hrc:1000
msgctxt "FMT_NUM_ABC"
msgid "A B C"
msgstr ""
#. jm7G7
-#: sw/inc/strings.hrc:1000
+#: sw/inc/strings.hrc:1001
msgctxt "FMT_NUM_SABC"
msgid "a b c"
msgstr ""
#. ETgy7
-#: sw/inc/strings.hrc:1001
+#: sw/inc/strings.hrc:1002
msgctxt "FMT_NUM_ABC_N"
msgid "A .. AA .. AAA"
msgstr ""
#. m84Fb
-#: sw/inc/strings.hrc:1002
+#: sw/inc/strings.hrc:1003
msgctxt "FMT_NUM_SABC_N"
msgid "a .. aa .. aaa"
msgstr ""
#. d9YtB
-#: sw/inc/strings.hrc:1003
+#: sw/inc/strings.hrc:1004
msgctxt "FMT_NUM_ROMAN"
msgid "Roman (I II III)"
msgstr "Romanu (I II III)"
#. vA5RT
-#: sw/inc/strings.hrc:1004
+#: sw/inc/strings.hrc:1005
msgctxt "FMT_NUM_SROMAN"
msgid "Roman (i ii iii)"
msgstr "Romanu (i ii iii)"
#. 3ZDgc
-#: sw/inc/strings.hrc:1005
+#: sw/inc/strings.hrc:1006
msgctxt "FMT_NUM_ARABIC"
msgid "Arabic (1 2 3)"
msgstr "Arábicu (1 2 3)"
#. CHmdp
-#: sw/inc/strings.hrc:1006
+#: sw/inc/strings.hrc:1007
msgctxt "FMT_NUM_PAGEDESC"
msgid "As Page Style"
msgstr "Cómo Estilu Páxina"
#. xBKwZ
-#: sw/inc/strings.hrc:1007
+#: sw/inc/strings.hrc:1008
msgctxt "FMT_NUM_PAGESPECIAL"
msgid "Text"
msgstr "Testu"
@@ -7820,13 +7826,13 @@ msgstr "Testu"
#. --------------------------------------------------------------------
#. Description: Author
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1011
+#: sw/inc/strings.hrc:1012
msgctxt "FMT_AUTHOR_NAME"
msgid "Name"
msgstr "Nome"
#. RCnZb
-#: sw/inc/strings.hrc:1012
+#: sw/inc/strings.hrc:1013
msgctxt "FMT_AUTHOR_SCUT"
msgid "Initials"
msgstr "Iniciales"
@@ -7835,49 +7841,49 @@ msgstr "Iniciales"
#. --------------------------------------------------------------------
#. Description: set variable
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1016
+#: sw/inc/strings.hrc:1017
msgctxt "FMT_SETVAR_SYS"
msgid "System"
msgstr "Sistema"
#. qKXLW
-#: sw/inc/strings.hrc:1017
+#: sw/inc/strings.hrc:1018
msgctxt "FMT_SETVAR_TEXT"
msgid "Text"
msgstr "Testu"
#. E86ZD
-#: sw/inc/strings.hrc:1018
+#: sw/inc/strings.hrc:1019
msgctxt "FMT_GETVAR_NAME"
msgid "Name"
msgstr "Nome"
#. FB3Rp
-#: sw/inc/strings.hrc:1019
+#: sw/inc/strings.hrc:1020
msgctxt "FMT_GETVAR_TEXT"
msgid "Text"
msgstr "Testu"
#. KiBai
-#: sw/inc/strings.hrc:1020
+#: sw/inc/strings.hrc:1021
msgctxt "FMT_USERVAR_CMD"
msgid "Formula"
msgstr "Fórmula"
#. 9AsdS
-#: sw/inc/strings.hrc:1021
+#: sw/inc/strings.hrc:1022
msgctxt "FMT_USERVAR_TEXT"
msgid "Text"
msgstr "Testu"
#. GokUf
-#: sw/inc/strings.hrc:1022
+#: sw/inc/strings.hrc:1023
msgctxt "FMT_DBFLD_DB"
msgid "Database"
msgstr "Base de datos"
#. UBADL
-#: sw/inc/strings.hrc:1023
+#: sw/inc/strings.hrc:1024
msgctxt "FMT_DBFLD_SYS"
msgid "System"
msgstr "Sistema"
@@ -7886,19 +7892,19 @@ msgstr "Sistema"
#. --------------------------------------------------------------------
#. Description: storage fields
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1027
+#: sw/inc/strings.hrc:1028
msgctxt "FMT_REG_AUTHOR"
msgid "Author"
msgstr "Autor"
#. aqFVp
-#: sw/inc/strings.hrc:1028
+#: sw/inc/strings.hrc:1029
msgctxt "FMT_REG_TIME"
msgid "Time"
msgstr "Hora"
#. FaZKx
-#: sw/inc/strings.hrc:1029
+#: sw/inc/strings.hrc:1030
msgctxt "FMT_REG_DATE"
msgid "Date"
msgstr "Data"
@@ -7907,79 +7913,79 @@ msgstr "Data"
#. --------------------------------------------------------------------
#. Description: formats references
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1033
+#: sw/inc/strings.hrc:1034
msgctxt "FMT_REF_TEXT"
msgid "Referenced text"
msgstr ""
#. eeSAu
-#: sw/inc/strings.hrc:1034
+#: sw/inc/strings.hrc:1035
msgctxt "FMT_REF_PAGE"
msgid "Page number (unstyled)"
msgstr "Númberu de páxina (ensin estilu)"
#. MaB3q
-#: sw/inc/strings.hrc:1035
+#: sw/inc/strings.hrc:1036
msgctxt "FMT_REF_CHAPTER"
msgid "Chapter"
msgstr "Capítulu"
#. VBMno
-#: sw/inc/strings.hrc:1036
+#: sw/inc/strings.hrc:1037
msgctxt "FMT_REF_UPDOWN"
msgid "“Above”/“Below”"
msgstr ""
#. 96emU
-#: sw/inc/strings.hrc:1037
+#: sw/inc/strings.hrc:1038
msgctxt "FMT_REF_PAGE_PGDSC"
msgid "Page number (styled)"
msgstr "Númberu de páxina (con estilu)"
#. CQitd
-#: sw/inc/strings.hrc:1038
+#: sw/inc/strings.hrc:1039
msgctxt "FMT_REF_ONLYNUMBER"
msgid "Category and Number"
msgstr "Categoría y númberu"
#. BsvCn
-#: sw/inc/strings.hrc:1039
+#: sw/inc/strings.hrc:1040
msgctxt "FMT_REF_ONLYCAPTION"
msgid "Caption Text"
msgstr "Testu de la lleenda"
#. P7wiX
-#: sw/inc/strings.hrc:1040
+#: sw/inc/strings.hrc:1041
msgctxt "FMT_REF_ONLYSEQNO"
msgid "Numbering"
msgstr "Numberación"
#. QBGit
-#: sw/inc/strings.hrc:1041
+#: sw/inc/strings.hrc:1042
msgctxt "FMT_REF_NUMBER"
msgid "Number"
msgstr "Númberu"
#. CGkV7
-#: sw/inc/strings.hrc:1042
+#: sw/inc/strings.hrc:1043
msgctxt "FMT_REF_NUMBER_NO_CONTEXT"
msgid "Number (no context)"
msgstr "Númberu (ensin contestu)"
#. XgSb3
-#: sw/inc/strings.hrc:1043
+#: sw/inc/strings.hrc:1044
msgctxt "FMT_REF_NUMBER_FULL_CONTEXT"
msgid "Number (full context)"
msgstr "Númberu (contestu completu)"
#. zQTNF
-#: sw/inc/strings.hrc:1045
+#: sw/inc/strings.hrc:1046
msgctxt "FMT_REF_WITH_LOWERCASE_HU_ARTICLE"
msgid "Article a/az + "
msgstr ""
#. 97Vs7
-#: sw/inc/strings.hrc:1046
+#: sw/inc/strings.hrc:1047
msgctxt "FMT_REF_WITH_UPPERCASE_HU_ARTICLE"
msgid "Article A/Az + "
msgstr ""
@@ -7988,31 +7994,31 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: placeholder
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1050
+#: sw/inc/strings.hrc:1051
msgctxt "FMT_MARK_TEXT"
msgid "Text"
msgstr "Testu"
#. rAQoE
-#: sw/inc/strings.hrc:1051
+#: sw/inc/strings.hrc:1052
msgctxt "FMT_MARK_TABLE"
msgid "Table"
msgstr "Tabla"
#. biUa2
-#: sw/inc/strings.hrc:1052
+#: sw/inc/strings.hrc:1053
msgctxt "FMT_MARK_FRAME"
msgid "Frame"
msgstr "Marcu"
#. 7mkZb
-#: sw/inc/strings.hrc:1053
+#: sw/inc/strings.hrc:1054
msgctxt "FMT_MARK_GRAFIC"
msgid "Image"
msgstr "Imaxe"
#. GgbFY
-#: sw/inc/strings.hrc:1054
+#: sw/inc/strings.hrc:1055
msgctxt "FMT_MARK_OLE"
msgid "Object"
msgstr "Oxetu"
@@ -8021,1593 +8027,1593 @@ msgstr "Oxetu"
#. --------------------------------------------------------------------
#. Description: ExchangeStrings for Edit/NameFT
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1058
+#: sw/inc/strings.hrc:1059
msgctxt "STR_COND"
msgid "~Condition"
msgstr "~Condición"
#. X9cqJ
-#: sw/inc/strings.hrc:1059
+#: sw/inc/strings.hrc:1060
msgctxt "STR_TEXT"
msgid "Then, Else"
msgstr "Entós, Si non"
#. bo8yF
-#: sw/inc/strings.hrc:1060
+#: sw/inc/strings.hrc:1061
msgctxt "STR_DDE_CMD"
msgid "DDE Statement"
msgstr "Instrucción DDE"
#. LixXA
-#: sw/inc/strings.hrc:1061
+#: sw/inc/strings.hrc:1062
msgctxt "STR_INSTEXT"
msgid "Hidden t~ext"
msgstr "Anubrir t~estu"
#. EX3bJ
-#: sw/inc/strings.hrc:1062
+#: sw/inc/strings.hrc:1063
msgctxt "STR_MACNAME"
msgid "~Macro name"
msgstr "Nome ~macro"
#. dNZtd
-#: sw/inc/strings.hrc:1063
+#: sw/inc/strings.hrc:1064
msgctxt "STR_PROMPT"
msgid "~Reference"
msgstr "~Referencia"
#. bfRPa
-#: sw/inc/strings.hrc:1064
+#: sw/inc/strings.hrc:1065
msgctxt "STR_COMBCHRS_FT"
msgid "Ch~aracters"
msgstr "C~aráuteres"
#. j2G5G
-#: sw/inc/strings.hrc:1065
+#: sw/inc/strings.hrc:1066
msgctxt "STR_OFFSET"
msgid "O~ffset"
msgstr "S~eparación"
#. vEgGo
-#: sw/inc/strings.hrc:1066
+#: sw/inc/strings.hrc:1067
msgctxt "STR_VALUE"
msgid "Value"
msgstr "Valor"
#. YQesU
-#: sw/inc/strings.hrc:1067
+#: sw/inc/strings.hrc:1068
msgctxt "STR_FORMULA"
msgid "Formula"
msgstr "Fórmula"
#. Eq5xq
-#: sw/inc/strings.hrc:1068
+#: sw/inc/strings.hrc:1069
msgctxt "STR_CUSTOM_FIELD"
msgid "Custom"
msgstr "Personalizáu"
#. 32NzA
-#: sw/inc/strings.hrc:1070
+#: sw/inc/strings.hrc:1071
msgctxt "STR_CUSTOM_LABEL"
msgid "[User]"
msgstr "[Usuariu]"
#. dYQTU
-#: sw/inc/strings.hrc:1072
+#: sw/inc/strings.hrc:1073
msgctxt "STR_HDIST"
msgid "H. Pitch"
msgstr "Dist. horizontal"
#. xELZY
-#: sw/inc/strings.hrc:1073
+#: sw/inc/strings.hrc:1074
msgctxt "STR_VDIST"
msgid "V. Pitch"
msgstr "Dist. vertical"
#. F9Ldz
-#: sw/inc/strings.hrc:1074
+#: sw/inc/strings.hrc:1075
msgctxt "STR_WIDTH"
msgid "Width"
msgstr "Anchor"
#. rdxcb
-#: sw/inc/strings.hrc:1075
+#: sw/inc/strings.hrc:1076
msgctxt "STR_HEIGHT"
msgid "Height"
msgstr "Altor"
#. DQm2h
-#: sw/inc/strings.hrc:1076
+#: sw/inc/strings.hrc:1077
msgctxt "STR_LEFT"
msgid "Left margin"
msgstr "Marxe esquierdu"
#. imDMU
-#: sw/inc/strings.hrc:1077
+#: sw/inc/strings.hrc:1078
msgctxt "STR_UPPER"
msgid "Top margin"
msgstr "Marxe superior"
#. ayQss
-#: sw/inc/strings.hrc:1078
+#: sw/inc/strings.hrc:1079
msgctxt "STR_COLS"
msgid "Columns"
msgstr "Columnes"
#. 3moLd
-#: sw/inc/strings.hrc:1079
+#: sw/inc/strings.hrc:1080
msgctxt "STR_ROWS"
msgid "Rows"
msgstr "Fileres"
#. XWMSH
-#: sw/inc/strings.hrc:1081
+#: sw/inc/strings.hrc:1082
msgctxt "STR_WORDCOUNT_HINT"
msgid "Word and character count. Click to open Word Count dialog."
msgstr ""
#. nxGNq
-#: sw/inc/strings.hrc:1082
+#: sw/inc/strings.hrc:1083
msgctxt "STR_VIEWLAYOUT_ONE"
msgid "Single-page view"
msgstr ""
#. 57ju6
-#: sw/inc/strings.hrc:1083
+#: sw/inc/strings.hrc:1084
msgctxt "STR_VIEWLAYOUT_MULTI"
msgid "Multiple-page view"
msgstr ""
#. tbig8
-#: sw/inc/strings.hrc:1084
+#: sw/inc/strings.hrc:1085
#, fuzzy
msgctxt "STR_VIEWLAYOUT_BOOK"
msgid "Book view"
msgstr "Vista previa de llibru"
#. xBHUG
-#: sw/inc/strings.hrc:1085
+#: sw/inc/strings.hrc:1086
msgctxt "STR_BOOKCTRL_HINT"
msgid "Page number in document. Click to open Go to Page dialog or right-click for bookmark list."
msgstr ""
#. XaF3v
-#: sw/inc/strings.hrc:1086
+#: sw/inc/strings.hrc:1087
msgctxt "STR_BOOKCTRL_HINT_EXTENDED"
msgid "Page number in document (Page number on printed document). Click to open Go to Page dialog."
msgstr ""
#. EWtd2
-#: sw/inc/strings.hrc:1087
+#: sw/inc/strings.hrc:1088
msgctxt "STR_TMPLCTRL_HINT"
msgid "Page Style. Right-click to change style or click to open Style dialog."
msgstr ""
#. jQAym
#. Strings for textual attributes.
-#: sw/inc/strings.hrc:1090
+#: sw/inc/strings.hrc:1091
msgctxt "STR_DROP_OVER"
msgid "Drop Caps over"
msgstr ""
#. PLAVt
-#: sw/inc/strings.hrc:1091
+#: sw/inc/strings.hrc:1092
msgctxt "STR_DROP_LINES"
msgid "rows"
msgstr "fileres"
#. sg6Za
-#: sw/inc/strings.hrc:1092
+#: sw/inc/strings.hrc:1093
#, fuzzy
msgctxt "STR_NO_DROP_LINES"
msgid "No Drop Caps"
msgstr "Quitar mayúscules"
#. gueRC
-#: sw/inc/strings.hrc:1093
+#: sw/inc/strings.hrc:1094
#, fuzzy
msgctxt "STR_NO_PAGEDESC"
msgid "No page break"
msgstr "saltu de páxina"
#. G3CQN
-#: sw/inc/strings.hrc:1094
+#: sw/inc/strings.hrc:1095
msgctxt "STR_NO_MIRROR"
msgid "Don't mirror"
msgstr ""
#. MVEk8
-#: sw/inc/strings.hrc:1095
+#: sw/inc/strings.hrc:1096
#, fuzzy
msgctxt "STR_VERT_MIRROR"
msgid "Flip vertically"
msgstr "Reflexar verticalmente"
#. Dns6t
-#: sw/inc/strings.hrc:1096
+#: sw/inc/strings.hrc:1097
#, fuzzy
msgctxt "STR_HORI_MIRROR"
msgid "Flip horizontal"
msgstr "Reflexar %1 horizontalmente"
#. ZUKCy
-#: sw/inc/strings.hrc:1097
+#: sw/inc/strings.hrc:1098
msgctxt "STR_BOTH_MIRROR"
msgid "Horizontal and Vertical Flip"
msgstr ""
#. LoQic
-#: sw/inc/strings.hrc:1098
+#: sw/inc/strings.hrc:1099
msgctxt "STR_MIRROR_TOGGLE"
msgid "+ mirror horizontal on even pages"
msgstr ""
#. kbnTf
-#: sw/inc/strings.hrc:1099
+#: sw/inc/strings.hrc:1100
msgctxt "STR_CHARFMT"
msgid "Character Style"
msgstr "Estilu de caráuter"
#. D99ZJ
-#: sw/inc/strings.hrc:1100
+#: sw/inc/strings.hrc:1101
#, fuzzy
msgctxt "STR_NO_CHARFMT"
msgid "No Character Style"
msgstr "Estilu de caráuter"
#. fzG3P
-#: sw/inc/strings.hrc:1101
+#: sw/inc/strings.hrc:1102
#, fuzzy
msgctxt "STR_FOOTER"
msgid "Footer"
msgstr "Pie"
#. 9RCsQ
-#: sw/inc/strings.hrc:1102
+#: sw/inc/strings.hrc:1103
#, fuzzy
msgctxt "STR_NO_FOOTER"
msgid "No footer"
msgstr "Dir al pie de páxina"
#. zFTin
-#: sw/inc/strings.hrc:1103
+#: sw/inc/strings.hrc:1104
msgctxt "STR_HEADER"
msgid "Header"
msgstr "Testera"
#. PcYEB
-#: sw/inc/strings.hrc:1104
+#: sw/inc/strings.hrc:1105
#, fuzzy
msgctxt "STR_NO_HEADER"
msgid "No header"
msgstr "Dir a la testera"
#. 8Jgfg
-#: sw/inc/strings.hrc:1105
+#: sw/inc/strings.hrc:1106
msgctxt "STR_SURROUND_IDEAL"
msgid "Optimal"
msgstr ""
#. HEuGy
-#: sw/inc/strings.hrc:1106
+#: sw/inc/strings.hrc:1107
msgctxt "STR_SURROUND_NONE"
msgid "None"
msgstr "Nengún"
#. 4tA4q
-#: sw/inc/strings.hrc:1107
+#: sw/inc/strings.hrc:1108
msgctxt "STR_SURROUND_THROUGH"
msgid "Through"
msgstr "Continuu"
#. ypvD6
-#: sw/inc/strings.hrc:1108
+#: sw/inc/strings.hrc:1109
msgctxt "STR_SURROUND_PARALLEL"
msgid "Parallel"
msgstr ""
#. hyEQ5
-#: sw/inc/strings.hrc:1109
+#: sw/inc/strings.hrc:1110
msgctxt "STR_SURROUND_LEFT"
msgid "Before"
msgstr "Enantes"
#. bGBtQ
-#: sw/inc/strings.hrc:1110
+#: sw/inc/strings.hrc:1111
msgctxt "STR_SURROUND_RIGHT"
msgid "After"
msgstr "Dempués"
#. SrG3D
-#: sw/inc/strings.hrc:1111
+#: sw/inc/strings.hrc:1112
msgctxt "STR_SURROUND_ANCHORONLY"
msgid "(Anchor only)"
msgstr ""
#. 9Ywzb
-#: sw/inc/strings.hrc:1112
+#: sw/inc/strings.hrc:1113
msgctxt "STR_FRM_WIDTH"
msgid "Width:"
msgstr "Anchor:"
#. 2GYT7
-#: sw/inc/strings.hrc:1113
+#: sw/inc/strings.hrc:1114
msgctxt "STR_FRM_FIXEDHEIGHT"
msgid "Fixed height:"
msgstr "Altor fixu:"
#. QrFMi
-#: sw/inc/strings.hrc:1114
+#: sw/inc/strings.hrc:1115
msgctxt "STR_FRM_MINHEIGHT"
msgid "Min. height:"
msgstr ""
#. kLiYd
-#: sw/inc/strings.hrc:1115
+#: sw/inc/strings.hrc:1116
msgctxt "STR_FLY_AT_PARA"
msgid "to paragraph"
msgstr "al párrafu"
#. A8nAb
-#: sw/inc/strings.hrc:1116
+#: sw/inc/strings.hrc:1117
msgctxt "STR_FLY_AS_CHAR"
msgid "as character"
msgstr "como caráuter"
#. Uszmm
-#: sw/inc/strings.hrc:1117
+#: sw/inc/strings.hrc:1118
msgctxt "STR_FLY_AT_CHAR"
msgid "to character"
msgstr ""
#. hDUSa
-#: sw/inc/strings.hrc:1118
+#: sw/inc/strings.hrc:1119
msgctxt "STR_FLY_AT_PAGE"
msgid "to page"
msgstr "a la páxina"
#. JMHRz
-#: sw/inc/strings.hrc:1119
+#: sw/inc/strings.hrc:1120
msgctxt "STR_POS_X"
msgid "X Coordinate:"
msgstr "Coordenada X:"
#. oCZWW
-#: sw/inc/strings.hrc:1120
+#: sw/inc/strings.hrc:1121
msgctxt "STR_POS_Y"
msgid "Y Coordinate:"
msgstr "Coordenada Y:"
#. YNKE6
-#: sw/inc/strings.hrc:1121
+#: sw/inc/strings.hrc:1122
msgctxt "STR_VERT_TOP"
msgid "at top"
msgstr ""
#. GPTAu
-#: sw/inc/strings.hrc:1122
+#: sw/inc/strings.hrc:1123
msgctxt "STR_VERT_CENTER"
msgid "Centered vertically"
msgstr "Centráu en vertical"
#. fcpTS
-#: sw/inc/strings.hrc:1123
+#: sw/inc/strings.hrc:1124
#, fuzzy
msgctxt "STR_VERT_BOTTOM"
msgid "at bottom"
msgstr "P'abaxo"
#. 37hos
-#: sw/inc/strings.hrc:1124
+#: sw/inc/strings.hrc:1125
msgctxt "STR_LINE_TOP"
msgid "Top of line"
msgstr "Llinia superior"
#. MU7hC
-#: sw/inc/strings.hrc:1125
+#: sw/inc/strings.hrc:1126
#, fuzzy
msgctxt "STR_LINE_CENTER"
msgid "Line centered"
msgstr "Centru izquierda"
#. ZvEq7
-#: sw/inc/strings.hrc:1126
+#: sw/inc/strings.hrc:1127
msgctxt "STR_LINE_BOTTOM"
msgid "Bottom of line"
msgstr "Cabero de llinia"
#. jypsG
-#: sw/inc/strings.hrc:1127
+#: sw/inc/strings.hrc:1128
msgctxt "STR_REGISTER_ON"
msgid "Page line-spacing"
msgstr ""
#. Cui3U
-#: sw/inc/strings.hrc:1128
+#: sw/inc/strings.hrc:1129
msgctxt "STR_REGISTER_OFF"
msgid "Not page line-spacing"
msgstr ""
#. 4RL9X
-#: sw/inc/strings.hrc:1129
+#: sw/inc/strings.hrc:1130
msgctxt "STR_HORI_RIGHT"
msgid "at the right"
msgstr ""
#. wzGK7
-#: sw/inc/strings.hrc:1130
+#: sw/inc/strings.hrc:1131
msgctxt "STR_HORI_CENTER"
msgid "Centered horizontally"
msgstr "Centráu n'horizontal"
#. ngRmB
-#: sw/inc/strings.hrc:1131
+#: sw/inc/strings.hrc:1132
msgctxt "STR_HORI_LEFT"
msgid "at the left"
msgstr ""
#. JyHkM
-#: sw/inc/strings.hrc:1132
+#: sw/inc/strings.hrc:1133
#, fuzzy
msgctxt "STR_HORI_INSIDE"
msgid "inside"
msgstr "Adientro"
#. iXSZZ
-#: sw/inc/strings.hrc:1133
+#: sw/inc/strings.hrc:1134
#, fuzzy
msgctxt "STR_HORI_OUTSIDE"
msgid "outside"
msgstr "Afuera"
#. kDY9Z
-#: sw/inc/strings.hrc:1134
+#: sw/inc/strings.hrc:1135
#, fuzzy
msgctxt "STR_HORI_FULL"
msgid "Full width"
msgstr "Anc_hor completu"
#. Hvn8D
-#: sw/inc/strings.hrc:1135
+#: sw/inc/strings.hrc:1136
msgctxt "STR_COLUMNS"
msgid "Columns"
msgstr "Columnes"
#. 6j6TA
-#: sw/inc/strings.hrc:1136
+#: sw/inc/strings.hrc:1137
msgctxt "STR_LINE_WIDTH"
msgid "Separator Width:"
msgstr ""
#. dvdDt
-#: sw/inc/strings.hrc:1137
+#: sw/inc/strings.hrc:1138
msgctxt "STR_MAX_FTN_HEIGHT"
msgid "Max. footnote area:"
msgstr ""
#. BWqF3
-#: sw/inc/strings.hrc:1138
+#: sw/inc/strings.hrc:1139
#, fuzzy
msgctxt "STR_EDIT_IN_READONLY"
msgid "Editable in read-only document"
msgstr "E_ditable en documentos de namái llectura"
#. SCL5F
-#: sw/inc/strings.hrc:1139
+#: sw/inc/strings.hrc:1140
msgctxt "STR_LAYOUT_SPLIT"
msgid "Split"
msgstr "Dixebrar"
#. CFmBk
-#: sw/inc/strings.hrc:1140
+#: sw/inc/strings.hrc:1141
msgctxt "STR_NUMRULE_ON"
msgid "List Style: (%LISTSTYLENAME)"
msgstr ""
#. HvZBm
-#: sw/inc/strings.hrc:1141
+#: sw/inc/strings.hrc:1142
msgctxt "STR_NUMRULE_OFF"
msgid "List Style: (None)"
msgstr ""
#. QDaFk
-#: sw/inc/strings.hrc:1142
+#: sw/inc/strings.hrc:1143
msgctxt "STR_CONNECT1"
msgid "linked to "
msgstr ""
#. rWmT8
-#: sw/inc/strings.hrc:1143
+#: sw/inc/strings.hrc:1144
msgctxt "STR_CONNECT2"
msgid "and "
msgstr "y "
#. H2Kwq
-#: sw/inc/strings.hrc:1144
+#: sw/inc/strings.hrc:1145
msgctxt "STR_LINECOUNT"
msgid "Count lines"
msgstr ""
#. yjSiJ
-#: sw/inc/strings.hrc:1145
+#: sw/inc/strings.hrc:1146
msgctxt "STR_DONTLINECOUNT"
msgid "don't count lines"
msgstr ""
#. HE4BV
-#: sw/inc/strings.hrc:1146
+#: sw/inc/strings.hrc:1147
msgctxt "STR_LINCOUNT_START"
msgid "restart line count with: "
msgstr ""
#. 7Q8qC
-#: sw/inc/strings.hrc:1147
+#: sw/inc/strings.hrc:1148
#, fuzzy
msgctxt "STR_LUMINANCE"
msgid "Brightness: "
msgstr "Rellumu"
#. sNxPE
-#: sw/inc/strings.hrc:1148
+#: sw/inc/strings.hrc:1149
#, fuzzy
msgctxt "STR_CHANNELR"
msgid "Red: "
msgstr "Restaurar "
#. u73NC
-#: sw/inc/strings.hrc:1149
+#: sw/inc/strings.hrc:1150
msgctxt "STR_CHANNELG"
msgid "Green: "
msgstr ""
#. qQsPp
-#: sw/inc/strings.hrc:1150
+#: sw/inc/strings.hrc:1151
msgctxt "STR_CHANNELB"
msgid "Blue: "
msgstr ""
#. BS4nZ
-#: sw/inc/strings.hrc:1151
+#: sw/inc/strings.hrc:1152
#, fuzzy
msgctxt "STR_CONTRAST"
msgid "Contrast: "
msgstr "Contraste"
#. avJBK
-#: sw/inc/strings.hrc:1152
+#: sw/inc/strings.hrc:1153
msgctxt "STR_GAMMA"
msgid "Gamma: "
msgstr ""
#. HQCJZ
-#: sw/inc/strings.hrc:1153
+#: sw/inc/strings.hrc:1154
#, fuzzy
msgctxt "STR_TRANSPARENCY"
msgid "Transparency: "
msgstr "Tresparencia"
#. 5jDK3
-#: sw/inc/strings.hrc:1154
+#: sw/inc/strings.hrc:1155
#, fuzzy
msgctxt "STR_INVERT"
msgid "Invert"
msgstr "Inxertar"
#. DVSAx
-#: sw/inc/strings.hrc:1155
+#: sw/inc/strings.hrc:1156
msgctxt "STR_INVERT_NOT"
msgid "do not invert"
msgstr ""
#. Z7tXB
-#: sw/inc/strings.hrc:1156
+#: sw/inc/strings.hrc:1157
#, fuzzy
msgctxt "STR_DRAWMODE"
msgid "Graphics mode: "
msgstr "Mou gráficos"
#. RXuUF
-#: sw/inc/strings.hrc:1157
+#: sw/inc/strings.hrc:1158
msgctxt "STR_DRAWMODE_STD"
msgid "Standard"
msgstr "Estándar"
#. kbALJ
-#: sw/inc/strings.hrc:1158
+#: sw/inc/strings.hrc:1159
#, fuzzy
msgctxt "STR_DRAWMODE_GREY"
msgid "Grayscales"
msgstr "Escala de buxos"
#. eSHEj
-#: sw/inc/strings.hrc:1159
+#: sw/inc/strings.hrc:1160
#, fuzzy
msgctxt "STR_DRAWMODE_BLACKWHITE"
msgid "Black & White"
msgstr "Blancu y prietu"
#. tABTr
-#: sw/inc/strings.hrc:1160
+#: sw/inc/strings.hrc:1161
msgctxt "STR_DRAWMODE_WATERMARK"
msgid "Watermark"
msgstr "Marca d'agua"
#. 8SwC3
-#: sw/inc/strings.hrc:1161
+#: sw/inc/strings.hrc:1162
msgctxt "STR_ROTATION"
msgid "Rotation"
msgstr "Xiru"
#. hWEeF
-#: sw/inc/strings.hrc:1162
+#: sw/inc/strings.hrc:1163
msgctxt "STR_GRID_NONE"
msgid "No grid"
msgstr "Ensin cuadrícula"
#. HEuEv
-#: sw/inc/strings.hrc:1163
+#: sw/inc/strings.hrc:1164
msgctxt "STR_GRID_LINES_ONLY"
msgid "Grid (lines only)"
msgstr "Cuadrícula (sólo llinies)"
#. VFgMq
-#: sw/inc/strings.hrc:1164
+#: sw/inc/strings.hrc:1165
msgctxt "STR_GRID_LINES_CHARS"
msgid "Grid (lines and characters)"
msgstr "Cuadrícula (llinies y caráuteres)"
#. VRJrB
-#: sw/inc/strings.hrc:1165
+#: sw/inc/strings.hrc:1166
msgctxt "STR_FOLLOW_TEXT_FLOW"
msgid "Follow text flow"
msgstr "Siguir el fluxu del testu"
#. Sb3Je
-#: sw/inc/strings.hrc:1166
+#: sw/inc/strings.hrc:1167
msgctxt "STR_DONT_FOLLOW_TEXT_FLOW"
msgid "Do not follow text flow"
msgstr ""
#. yXFKP
-#: sw/inc/strings.hrc:1167
+#: sw/inc/strings.hrc:1168
msgctxt "STR_CONNECT_BORDER_ON"
msgid "Merge borders"
msgstr ""
#. vwHbS
-#: sw/inc/strings.hrc:1168
+#: sw/inc/strings.hrc:1169
msgctxt "STR_CONNECT_BORDER_OFF"
msgid "Do not merge borders"
msgstr ""
#. 3874B
-#: sw/inc/strings.hrc:1170
+#: sw/inc/strings.hrc:1171
msgctxt "ST_TBL"
msgid "Table"
msgstr "Tabla"
#. T9JAj
-#: sw/inc/strings.hrc:1171
+#: sw/inc/strings.hrc:1172
msgctxt "ST_FRM"
msgid "Frame"
msgstr ""
#. Fsnm6
-#: sw/inc/strings.hrc:1172
+#: sw/inc/strings.hrc:1173
msgctxt "ST_PGE"
msgid "Page"
msgstr "Páxina"
#. pKFCz
-#: sw/inc/strings.hrc:1173
+#: sw/inc/strings.hrc:1174
msgctxt "ST_DRW"
msgid "Drawing"
msgstr "Dibuxu"
#. amiSY
-#: sw/inc/strings.hrc:1174
+#: sw/inc/strings.hrc:1175
#, fuzzy
msgctxt "ST_CTRL"
msgid "Control"
msgstr "Control"
#. GEw9u
-#: sw/inc/strings.hrc:1175
+#: sw/inc/strings.hrc:1176
msgctxt "ST_REG"
msgid "Section"
msgstr "Seición"
#. bEiyL
-#: sw/inc/strings.hrc:1176
+#: sw/inc/strings.hrc:1177
msgctxt "ST_BKM"
msgid "Bookmark"
msgstr "Marcador"
#. 6gXCo
-#: sw/inc/strings.hrc:1177
+#: sw/inc/strings.hrc:1178
msgctxt "ST_GRF"
msgid "Graphics"
msgstr "Gráficos"
#. d5eSc
-#: sw/inc/strings.hrc:1178
+#: sw/inc/strings.hrc:1179
msgctxt "ST_OLE"
msgid "OLE object"
msgstr "Oxetu OLE"
#. h5QQ8
-#: sw/inc/strings.hrc:1179
+#: sw/inc/strings.hrc:1180
msgctxt "ST_OUTL"
msgid "Headings"
msgstr "Testeres"
#. Cbktp
-#: sw/inc/strings.hrc:1180
+#: sw/inc/strings.hrc:1181
msgctxt "ST_SEL"
msgid "Selection"
msgstr "Esbilla"
#. nquvS
-#: sw/inc/strings.hrc:1181
+#: sw/inc/strings.hrc:1182
msgctxt "ST_FTN"
msgid "Footnote"
msgstr "Nota al pie"
#. GpAUo
-#: sw/inc/strings.hrc:1182
+#: sw/inc/strings.hrc:1183
msgctxt "ST_MARK"
msgid "Reminder"
msgstr ""
#. nDFKa
-#: sw/inc/strings.hrc:1183
+#: sw/inc/strings.hrc:1184
msgctxt "ST_POSTIT"
msgid "Comment"
msgstr "Comentariu"
#. qpbDE
-#: sw/inc/strings.hrc:1184
+#: sw/inc/strings.hrc:1185
#, fuzzy
msgctxt "ST_SRCH_REP"
msgid "Repeat search"
msgstr "Repitir la Gueta"
#. ipxfH
-#: sw/inc/strings.hrc:1185
+#: sw/inc/strings.hrc:1186
msgctxt "ST_INDEX_ENTRY"
msgid "Index entry"
msgstr ""
#. sfmff
-#: sw/inc/strings.hrc:1186
+#: sw/inc/strings.hrc:1187
msgctxt "ST_TABLE_FORMULA"
msgid "Table formula"
msgstr ""
#. DtkuT
-#: sw/inc/strings.hrc:1187
+#: sw/inc/strings.hrc:1188
msgctxt "ST_TABLE_FORMULA_ERROR"
msgid "Wrong table formula"
msgstr ""
#. A6Vgk
-#: sw/inc/strings.hrc:1188
+#: sw/inc/strings.hrc:1189
msgctxt "ST_RECENCY"
msgid "Recency"
msgstr ""
#. pCp7u
-#: sw/inc/strings.hrc:1189
+#: sw/inc/strings.hrc:1190
msgctxt "ST_FIELD"
msgid "Field"
msgstr ""
#. LYuHA
-#: sw/inc/strings.hrc:1190
+#: sw/inc/strings.hrc:1191
msgctxt "ST_FIELD_BYTYPE"
msgid "Field by type"
msgstr ""
#. ECFxw
#. Strings for the quickhelp of the View-PgUp/Down-Buttons
-#: sw/inc/strings.hrc:1192
+#: sw/inc/strings.hrc:1193
msgctxt "STR_IMGBTN_TBL_DOWN"
msgid "Next table"
msgstr ""
#. yhnpi
-#: sw/inc/strings.hrc:1193
+#: sw/inc/strings.hrc:1194
msgctxt "STR_IMGBTN_FRM_DOWN"
msgid "Next frame"
msgstr ""
#. M4BCA
-#: sw/inc/strings.hrc:1194
+#: sw/inc/strings.hrc:1195
msgctxt "STR_IMGBTN_PGE_DOWN"
msgid "Next page"
msgstr "Próxima páxina"
#. UWeq4
-#: sw/inc/strings.hrc:1195
+#: sw/inc/strings.hrc:1196
#, fuzzy
msgctxt "STR_IMGBTN_DRW_DOWN"
msgid "Next drawing"
msgstr "Ensin encabezamientu"
#. ZVCrD
-#: sw/inc/strings.hrc:1196
+#: sw/inc/strings.hrc:1197
msgctxt "STR_IMGBTN_CTRL_DOWN"
msgid "Next control"
msgstr ""
#. NGAqr
-#: sw/inc/strings.hrc:1197
+#: sw/inc/strings.hrc:1198
#, fuzzy
msgctxt "STR_IMGBTN_REG_DOWN"
msgid "Next section"
msgstr "Seición nueva"
#. Mwcvm
-#: sw/inc/strings.hrc:1198
+#: sw/inc/strings.hrc:1199
#, fuzzy
msgctxt "STR_IMGBTN_BKM_DOWN"
msgid "Next bookmark"
msgstr "Dir al siguiente marcador"
#. xbxDs
-#: sw/inc/strings.hrc:1199
+#: sw/inc/strings.hrc:1200
msgctxt "STR_IMGBTN_GRF_DOWN"
msgid "Next graphic"
msgstr ""
#. 4ovAF
-#: sw/inc/strings.hrc:1200
+#: sw/inc/strings.hrc:1201
msgctxt "STR_IMGBTN_OLE_DOWN"
msgid "Next OLE object"
msgstr ""
#. YzK6w
-#: sw/inc/strings.hrc:1201
+#: sw/inc/strings.hrc:1202
#, fuzzy
msgctxt "STR_IMGBTN_OUTL_DOWN"
msgid "Next heading"
msgstr "Ensin encabezamientu"
#. skdRc
-#: sw/inc/strings.hrc:1202
+#: sw/inc/strings.hrc:1203
#, fuzzy
msgctxt "STR_IMGBTN_SEL_DOWN"
msgid "Next selection"
msgstr "Seición nueva"
#. RBFga
-#: sw/inc/strings.hrc:1203
+#: sw/inc/strings.hrc:1204
#, fuzzy
msgctxt "STR_IMGBTN_FTN_DOWN"
msgid "Next footnote"
msgstr "Dir a la nota al pie siguiente"
#. GNLrx
-#: sw/inc/strings.hrc:1204
+#: sw/inc/strings.hrc:1205
msgctxt "STR_IMGBTN_MARK_DOWN"
msgid "Next Reminder"
msgstr ""
#. mFCfp
-#: sw/inc/strings.hrc:1205
+#: sw/inc/strings.hrc:1206
msgctxt "STR_IMGBTN_POSTIT_DOWN"
msgid "Next Comment"
msgstr "Comentariu Siguiente"
#. gbnwp
-#: sw/inc/strings.hrc:1206
+#: sw/inc/strings.hrc:1207
msgctxt "STR_IMGBTN_SRCH_REP_DOWN"
msgid "Continue search forward"
msgstr ""
#. TXYkA
-#: sw/inc/strings.hrc:1207
+#: sw/inc/strings.hrc:1208
#, fuzzy
msgctxt "STR_IMGBTN_INDEX_ENTRY_DOWN"
msgid "Next index entry"
msgstr "Inxertar entrada d'índiz"
#. EyvbV
-#: sw/inc/strings.hrc:1208
+#: sw/inc/strings.hrc:1209
#, fuzzy
msgctxt "STR_IMGBTN_TBL_UP"
msgid "Previous table"
msgstr "Páxina anterior"
#. cC5vJ
-#: sw/inc/strings.hrc:1209
+#: sw/inc/strings.hrc:1210
msgctxt "STR_IMGBTN_FRM_UP"
msgid "Previous frame"
msgstr ""
#. eQPFD
-#: sw/inc/strings.hrc:1210
+#: sw/inc/strings.hrc:1211
msgctxt "STR_IMGBTN_PGE_UP"
msgid "Previous page"
msgstr "Páxina anterior"
#. p5jbU
-#: sw/inc/strings.hrc:1211
+#: sw/inc/strings.hrc:1212
msgctxt "STR_IMGBTN_DRW_UP"
msgid "Previous drawing"
msgstr ""
#. 2WMmZ
-#: sw/inc/strings.hrc:1212
+#: sw/inc/strings.hrc:1213
msgctxt "STR_IMGBTN_CTRL_UP"
msgid "Previous control"
msgstr ""
#. 6uGDP
-#: sw/inc/strings.hrc:1213
+#: sw/inc/strings.hrc:1214
#, fuzzy
msgctxt "STR_IMGBTN_REG_UP"
msgid "Previous section"
msgstr "Seición anterior"
#. YYCtk
-#: sw/inc/strings.hrc:1214
+#: sw/inc/strings.hrc:1215
#, fuzzy
msgctxt "STR_IMGBTN_BKM_UP"
msgid "Previous bookmark"
msgstr "Dir a la marca anterior"
#. nFLdX
-#: sw/inc/strings.hrc:1215
+#: sw/inc/strings.hrc:1216
msgctxt "STR_IMGBTN_GRF_UP"
msgid "Previous graphic"
msgstr ""
#. VuxvB
-#: sw/inc/strings.hrc:1216
+#: sw/inc/strings.hrc:1217
msgctxt "STR_IMGBTN_OLE_UP"
msgid "Previous OLE object"
msgstr ""
#. QSuct
-#: sw/inc/strings.hrc:1217
+#: sw/inc/strings.hrc:1218
msgctxt "STR_IMGBTN_OUTL_UP"
msgid "Previous heading"
msgstr ""
#. CzLBr
-#: sw/inc/strings.hrc:1218
+#: sw/inc/strings.hrc:1219
msgctxt "STR_IMGBTN_SEL_UP"
msgid "Previous selection"
msgstr ""
#. B7PoL
-#: sw/inc/strings.hrc:1219
+#: sw/inc/strings.hrc:1220
#, fuzzy
msgctxt "STR_IMGBTN_FTN_UP"
msgid "Previous footnote"
msgstr "Dir a la nota al pie anterior"
#. AgtLD
-#: sw/inc/strings.hrc:1220
+#: sw/inc/strings.hrc:1221
msgctxt "STR_IMGBTN_MARK_UP"
msgid "Previous Reminder"
msgstr ""
#. GJQ6F
-#: sw/inc/strings.hrc:1221
+#: sw/inc/strings.hrc:1222
msgctxt "STR_IMGBTN_POSTIT_UP"
msgid "Previous Comment"
msgstr "Comentariu Anterior"
#. GWnfD
-#: sw/inc/strings.hrc:1222
+#: sw/inc/strings.hrc:1223
msgctxt "STR_IMGBTN_SRCH_REP_UP"
msgid "Continue search backwards"
msgstr ""
#. uDtcG
-#: sw/inc/strings.hrc:1223
+#: sw/inc/strings.hrc:1224
msgctxt "STR_IMGBTN_INDEX_ENTRY_UP"
msgid "Previous index entry"
msgstr ""
#. VR6DX
-#: sw/inc/strings.hrc:1224
+#: sw/inc/strings.hrc:1225
#, fuzzy
msgctxt "STR_IMGBTN_TBLFML_UP"
msgid "Previous table formula"
msgstr "Dir a la fórmula anterior"
#. GqESF
-#: sw/inc/strings.hrc:1225
+#: sw/inc/strings.hrc:1226
msgctxt "STR_IMGBTN_TBLFML_DOWN"
msgid "Next table formula"
msgstr ""
#. gBgxo
-#: sw/inc/strings.hrc:1226
+#: sw/inc/strings.hrc:1227
#, fuzzy
msgctxt "STR_IMGBTN_TBLFML_ERR_UP"
msgid "Previous faulty table formula"
msgstr "Dir a l'anterior fórmula incorreuta"
#. UAon9
-#: sw/inc/strings.hrc:1227
+#: sw/inc/strings.hrc:1228
#, fuzzy
msgctxt "STR_IMGBTN_TBLFML_ERR_DOWN"
msgid "Next faulty table formula"
msgstr "Dir a la siguiente fórmula incorreuta"
#. L2Apv
-#: sw/inc/strings.hrc:1228
+#: sw/inc/strings.hrc:1229
msgctxt "STR_IMGBTN_RECENCY_UP"
msgid "Go back"
msgstr ""
#. jCsGs
-#: sw/inc/strings.hrc:1229
+#: sw/inc/strings.hrc:1230
msgctxt "STR_IMGBTN_RECENCY_DOWN"
msgid "Go forward"
msgstr ""
#. o3BBz
-#: sw/inc/strings.hrc:1230
+#: sw/inc/strings.hrc:1231
msgctxt "STR_IMGBTN_FIELD_UP"
msgid "Previous field"
msgstr ""
#. bQ33Z
-#: sw/inc/strings.hrc:1231
+#: sw/inc/strings.hrc:1232
msgctxt "STR_IMGBTN_FIELD_DOWN"
msgid "Next field"
msgstr ""
#. bhUaK
-#: sw/inc/strings.hrc:1232
+#: sw/inc/strings.hrc:1233
msgctxt "STR_IMGBTN_FIELD_BYTYPE_UP"
msgid "Previous '%FIELDTYPE' field"
msgstr ""
#. A8HWi
-#: sw/inc/strings.hrc:1233
+#: sw/inc/strings.hrc:1234
msgctxt "STR_IMGBTN_FIELD_BYTYPE_DOWN"
msgid "Next '%FIELDTYPE' field"
msgstr ""
#. hSYa3
-#: sw/inc/strings.hrc:1235
+#: sw/inc/strings.hrc:1236
#, fuzzy
msgctxt "STR_REDLINE_INSERT"
msgid "Inserted"
msgstr "Inxertar"
#. LnFkq
-#: sw/inc/strings.hrc:1236
+#: sw/inc/strings.hrc:1237
#, fuzzy
msgctxt "STR_REDLINE_DELETE"
msgid "Deleted"
msgstr "Desaniciar"
#. cTNEn
-#: sw/inc/strings.hrc:1237
+#: sw/inc/strings.hrc:1238
msgctxt "STR_REDLINE_FORMAT"
msgid "Formatted"
msgstr ""
#. YWr7C
-#: sw/inc/strings.hrc:1238
+#: sw/inc/strings.hrc:1239
#, fuzzy
msgctxt "STR_REDLINE_TABLE"
msgid "Table changed"
msgstr "Camudamientu de tabla"
#. 6xVDN
-#: sw/inc/strings.hrc:1239
+#: sw/inc/strings.hrc:1240
msgctxt "STR_REDLINE_FMTCOLL"
msgid "Applied Paragraph Styles"
msgstr "Estilos de párrafu aplicaos"
#. 32AND
-#: sw/inc/strings.hrc:1240
+#: sw/inc/strings.hrc:1241
msgctxt "STR_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr ""
#. wLDkj
-#: sw/inc/strings.hrc:1241
+#: sw/inc/strings.hrc:1242
#, fuzzy
msgctxt "STR_REDLINE_TABLE_ROW_INSERT"
msgid "Row Inserted"
msgstr "Filera inxertada "
#. Eb5Gb
-#: sw/inc/strings.hrc:1242
+#: sw/inc/strings.hrc:1243
#, fuzzy
msgctxt "STR_REDLINE_TABLE_ROW_DELETE"
msgid "Row Deleted"
msgstr "Fierla desaniciada"
#. i5ZJt
-#: sw/inc/strings.hrc:1243
+#: sw/inc/strings.hrc:1244
msgctxt "STR_REDLINE_TABLE_CELL_INSERT"
msgid "Cell Inserted"
msgstr ""
#. 4gE3z
-#: sw/inc/strings.hrc:1244
+#: sw/inc/strings.hrc:1245
msgctxt "STR_REDLINE_TABLE_CELL_DELETE"
msgid "Cell Deleted"
msgstr ""
#. DRCyp
-#: sw/inc/strings.hrc:1245
+#: sw/inc/strings.hrc:1246
#, fuzzy
msgctxt "STR_ENDNOTE"
msgid "Endnote: "
msgstr "Nota final"
#. qpW2q
-#: sw/inc/strings.hrc:1246
+#: sw/inc/strings.hrc:1247
#, fuzzy
msgctxt "STR_FTNNOTE"
msgid "Footnote: "
msgstr "Nota al pie"
#. 3RFUd
-#: sw/inc/strings.hrc:1247
+#: sw/inc/strings.hrc:1248
msgctxt "STR_SMARTTAG_CLICK"
msgid "%s-click to open Smart Tag menu"
msgstr ""
#. QCD36
-#: sw/inc/strings.hrc:1248
+#: sw/inc/strings.hrc:1249
msgctxt "STR_HEADER_TITLE"
msgid "Header (%1)"
msgstr ""
#. AYjgB
-#: sw/inc/strings.hrc:1249
+#: sw/inc/strings.hrc:1250
msgctxt "STR_FIRST_HEADER_TITLE"
msgid "First Page Header (%1)"
msgstr ""
#. qVX2k
-#: sw/inc/strings.hrc:1250
+#: sw/inc/strings.hrc:1251
msgctxt "STR_LEFT_HEADER_TITLE"
msgid "Left Page Header (%1)"
msgstr ""
#. DSg3b
-#: sw/inc/strings.hrc:1251
+#: sw/inc/strings.hrc:1252
msgctxt "STR_RIGHT_HEADER_TITLE"
msgid "Right Page Header (%1)"
msgstr ""
#. 6GzuM
-#: sw/inc/strings.hrc:1252
+#: sw/inc/strings.hrc:1253
msgctxt "STR_FOOTER_TITLE"
msgid "Footer (%1)"
msgstr ""
#. FDVNH
-#: sw/inc/strings.hrc:1253
+#: sw/inc/strings.hrc:1254
msgctxt "STR_FIRST_FOOTER_TITLE"
msgid "First Page Footer (%1)"
msgstr ""
#. SL7r3
-#: sw/inc/strings.hrc:1254
+#: sw/inc/strings.hrc:1255
msgctxt "STR_LEFT_FOOTER_TITLE"
msgid "Left Page Footer (%1)"
msgstr ""
#. CBvih
-#: sw/inc/strings.hrc:1255
+#: sw/inc/strings.hrc:1256
msgctxt "STR_RIGHT_FOOTER_TITLE"
msgid "Right Page Footer (%1)"
msgstr ""
#. s8v3h
-#: sw/inc/strings.hrc:1256
+#: sw/inc/strings.hrc:1257
#, fuzzy
msgctxt "STR_DELETE_HEADER"
msgid "Delete Header..."
msgstr "Desaniciar ~capa..."
#. wL3Fr
-#: sw/inc/strings.hrc:1257
+#: sw/inc/strings.hrc:1258
#, fuzzy
msgctxt "STR_FORMAT_HEADER"
msgid "Format Header..."
msgstr "~Formatu de páxina..."
#. DrAUe
-#: sw/inc/strings.hrc:1258
+#: sw/inc/strings.hrc:1259
#, fuzzy
msgctxt "STR_DELETE_FOOTER"
msgid "Delete Footer..."
msgstr "¿Desaniciar el pie de páxina?"
#. 9Xgou
-#: sw/inc/strings.hrc:1259
+#: sw/inc/strings.hrc:1260
#, fuzzy
msgctxt "STR_FORMAT_FOOTER"
msgid "Format Footer..."
msgstr "Formatu del suelu..."
#. ApT5B
-#: sw/inc/strings.hrc:1261
+#: sw/inc/strings.hrc:1262
msgctxt "STR_UNFLOAT_TABLE"
msgid "Un-float Table"
msgstr ""
#. wVAZJ
-#: sw/inc/strings.hrc:1263
+#: sw/inc/strings.hrc:1264
msgctxt "STR_PAGE_BREAK_BUTTON"
msgid "Edit page break"
msgstr ""
#. uvDKE
-#: sw/inc/strings.hrc:1265
+#: sw/inc/strings.hrc:1266
msgctxt "STR_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "El ficheru d'imaxe nun pue abrise"
#. iJuAv
-#: sw/inc/strings.hrc:1266
+#: sw/inc/strings.hrc:1267
msgctxt "STR_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr "El ficheru d'imaxe nun pue lleese"
#. Bwwho
-#: sw/inc/strings.hrc:1267
+#: sw/inc/strings.hrc:1268
msgctxt "STR_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr "Formatu d'imaxe desconocíu"
#. bfog5
-#: sw/inc/strings.hrc:1268
+#: sw/inc/strings.hrc:1269
#, fuzzy
msgctxt "STR_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr "Esta versión del ficheru d'imaxe nun tien encontu"
#. xy4Vm
-#: sw/inc/strings.hrc:1269
+#: sw/inc/strings.hrc:1270
msgctxt "STR_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr "El filtru d'imaxe nun s'alcontró"
#. tEqyq
-#: sw/inc/strings.hrc:1270
+#: sw/inc/strings.hrc:1271
#, fuzzy
msgctxt "STR_GRFILTER_TOOBIG"
msgid "Not enough memory to insert the image."
msgstr "Nun hai memoria bastante pa inxertar la imaxe."
#. 5ihue
-#: sw/inc/strings.hrc:1271
+#: sw/inc/strings.hrc:1272
msgctxt "STR_INSERT_GRAPHIC"
msgid "Insert Image"
msgstr "Inxertar una imaxe"
#. GWzLN
-#: sw/inc/strings.hrc:1272
+#: sw/inc/strings.hrc:1273
msgctxt "STR_REDLINE_COMMENT"
msgid "Comment: "
msgstr "Comentariu: "
#. CoJc8
-#: sw/inc/strings.hrc:1273
+#: sw/inc/strings.hrc:1274
msgctxt "STR_REDLINE_INSERTED"
msgid "Insertion"
msgstr "Inxerción"
#. dfMEF
-#: sw/inc/strings.hrc:1274
+#: sw/inc/strings.hrc:1275
msgctxt "STR_REDLINE_DELETED"
msgid "Deletion"
msgstr "Desaniciu"
#. NytQQ
-#: sw/inc/strings.hrc:1275
+#: sw/inc/strings.hrc:1276
msgctxt "STR_REDLINE_AUTOFMT"
msgid "AutoCorrect"
msgstr "AutoCorreición"
#. YRAQL
-#: sw/inc/strings.hrc:1276
+#: sw/inc/strings.hrc:1277
msgctxt "STR_REDLINE_FORMATTED"
msgid "Formats"
msgstr ""
#. ELCVU
-#: sw/inc/strings.hrc:1277
+#: sw/inc/strings.hrc:1278
msgctxt "STR_REDLINE_TABLECHG"
msgid "Table Changes"
msgstr "Camudamientu de tabla"
#. PzfQF
-#: sw/inc/strings.hrc:1278
+#: sw/inc/strings.hrc:1279
msgctxt "STR_REDLINE_FMTCOLLSET"
msgid "Applied Paragraph Styles"
msgstr "Estilos de párrafu aplicaos"
#. sgEbW
-#: sw/inc/strings.hrc:1279
+#: sw/inc/strings.hrc:1280
msgctxt "STR_PAGE"
msgid "Page "
msgstr "Páxina "
#. 3DpEx
-#: sw/inc/strings.hrc:1280
+#: sw/inc/strings.hrc:1281
msgctxt "STR_PAGE_COUNT"
msgid "Page %1 of %2"
msgstr ""
#. HSbzS
-#: sw/inc/strings.hrc:1281
+#: sw/inc/strings.hrc:1282
msgctxt "STR_PAGE_COUNT_CUSTOM"
msgid "Page %1 of %2 (Page %3)"
msgstr ""
#. a7tDc
-#: sw/inc/strings.hrc:1282
+#: sw/inc/strings.hrc:1283
msgctxt "STR_PAGE_COUNT_PRINTED"
msgid "Page %1 of %2 (Page %3 of %4 to print)"
msgstr ""
#. KjML8
#. Strings for gallery/background
-#: sw/inc/strings.hrc:1284
+#: sw/inc/strings.hrc:1285
msgctxt "STR_SWBG_PARAGRAPH"
msgid "Paragraph"
msgstr "Párrafu"
#. aAtmp
-#: sw/inc/strings.hrc:1285
+#: sw/inc/strings.hrc:1286
msgctxt "STR_SWBG_GRAPHIC"
msgid "Image"
msgstr "Imaxe"
#. UBDMK
-#: sw/inc/strings.hrc:1286
+#: sw/inc/strings.hrc:1287
msgctxt "STR_SWBG_OLE"
msgid "OLE object"
msgstr "Oxetu OLE"
#. xEWbo
-#: sw/inc/strings.hrc:1287
+#: sw/inc/strings.hrc:1288
msgctxt "STR_SWBG_FRAME"
msgid "Frame"
msgstr "Marcu"
#. hfJns
-#: sw/inc/strings.hrc:1288
+#: sw/inc/strings.hrc:1289
msgctxt "STR_SWBG_TABLE"
msgid "Table"
msgstr "Tabla"
#. GRqNY
-#: sw/inc/strings.hrc:1289
+#: sw/inc/strings.hrc:1290
msgctxt "STR_SWBG_TABLE_ROW"
msgid "Table row"
msgstr "Filera de tabla"
#. CDQY4
-#: sw/inc/strings.hrc:1290
+#: sw/inc/strings.hrc:1291
msgctxt "STR_SWBG_TABLE_CELL"
msgid "Table cell"
msgstr "Caxella de la tabla"
#. 2Db9T
-#: sw/inc/strings.hrc:1291
+#: sw/inc/strings.hrc:1292
msgctxt "STR_SWBG_PAGE"
msgid "Page"
msgstr "Páxina"
#. 63FuG
-#: sw/inc/strings.hrc:1292
+#: sw/inc/strings.hrc:1293
msgctxt "STR_SWBG_HEADER"
msgid "Header"
msgstr "Testera"
#. aDuAY
-#: sw/inc/strings.hrc:1293
+#: sw/inc/strings.hrc:1294
msgctxt "STR_SWBG_FOOTER"
msgid "Footer"
msgstr "Pie"
#. uAp9i
#. End: strings for gallery/background
-#: sw/inc/strings.hrc:1296
+#: sw/inc/strings.hrc:1297
msgctxt "STR_WRITER_WEBDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION HTML Document"
msgstr "Documentu HTML de %PRODUCTNAME %PRODUCTVERSION"
#. y2GBv
-#: sw/inc/strings.hrc:1298
+#: sw/inc/strings.hrc:1299
msgctxt "STR_TITLE"
msgid "Title"
msgstr "Títulu"
#. AipGR
-#: sw/inc/strings.hrc:1299
+#: sw/inc/strings.hrc:1300
msgctxt "STR_ALPHA"
msgid "Separator"
msgstr "Separtador"
#. CoSEf
-#: sw/inc/strings.hrc:1300
+#: sw/inc/strings.hrc:1301
msgctxt "STR_LEVEL"
msgid "Level "
msgstr "Nivel "
#. JdTF4
-#: sw/inc/strings.hrc:1301
+#: sw/inc/strings.hrc:1302
msgctxt "STR_FILE_NOT_FOUND"
msgid "The file, \"%1\" in the \"%2\" path could not be found."
msgstr "Nun pudo atopase'l ficheru «%1» nel camín «%2»."
#. zRWDZ
-#: sw/inc/strings.hrc:1302
+#: sw/inc/strings.hrc:1303
msgctxt "STR_USER_DEFINED_INDEX"
msgid "User-Defined Index"
msgstr "Índiz definíu pol usuariu"
#. t5uWs
-#: sw/inc/strings.hrc:1303
+#: sw/inc/strings.hrc:1304
msgctxt "STR_NOSORTKEY"
msgid "<None>"
msgstr "<Nengún>"
#. vSSnJ
-#: sw/inc/strings.hrc:1304
+#: sw/inc/strings.hrc:1305
msgctxt "STR_NO_CHAR_STYLE"
msgid "<None>"
msgstr "<Nengún>"
#. NSx98
-#: sw/inc/strings.hrc:1305
+#: sw/inc/strings.hrc:1306
msgctxt "STR_DELIM"
msgid "S"
msgstr "S"
#. hK8CX
-#: sw/inc/strings.hrc:1306
+#: sw/inc/strings.hrc:1307
msgctxt "STR_TOKEN_ENTRY_NO"
msgid "E#"
msgstr "E#"
#. 8EgTx
-#: sw/inc/strings.hrc:1307
+#: sw/inc/strings.hrc:1308
msgctxt "STR_TOKEN_ENTRY"
msgid "E"
msgstr "E"
#. gxt8B
-#: sw/inc/strings.hrc:1308
+#: sw/inc/strings.hrc:1309
msgctxt "STR_TOKEN_TAB_STOP"
msgid "T"
msgstr "T"
#. pGAb4
-#: sw/inc/strings.hrc:1309
+#: sw/inc/strings.hrc:1310
msgctxt "STR_TOKEN_PAGE_NUMS"
msgid "#"
msgstr "#"
#. teDm3
-#: sw/inc/strings.hrc:1310
+#: sw/inc/strings.hrc:1311
msgctxt "STR_TOKEN_CHAPTER_INFO"
msgid "CI"
msgstr "CI"
#. XWaFn
-#: sw/inc/strings.hrc:1311
+#: sw/inc/strings.hrc:1312
msgctxt "STR_TOKEN_LINK_START"
msgid "LS"
msgstr "LS"
#. xp6D6
-#: sw/inc/strings.hrc:1312
+#: sw/inc/strings.hrc:1313
msgctxt "STR_TOKEN_LINK_END"
msgid "LE"
msgstr "LE"
#. AogDK
-#: sw/inc/strings.hrc:1313
+#: sw/inc/strings.hrc:1314
msgctxt "STR_TOKEN_AUTHORITY"
msgid "A"
msgstr "A"
#. 5A4jw
-#: sw/inc/strings.hrc:1314
+#: sw/inc/strings.hrc:1315
msgctxt "STR_TOKEN_HELP_ENTRY_NO"
msgid "Chapter number"
msgstr "Númberu capítulu"
#. FH365
-#: sw/inc/strings.hrc:1315
+#: sw/inc/strings.hrc:1316
msgctxt "STR_TOKEN_HELP_ENTRY"
msgid "Entry"
msgstr "Entrada"
#. xZjtZ
-#: sw/inc/strings.hrc:1316
+#: sw/inc/strings.hrc:1317
msgctxt "STR_TOKEN_HELP_TAB_STOP"
msgid "Tab stop"
msgstr "Tabulador parada"
#. aXW8y
-#: sw/inc/strings.hrc:1317
+#: sw/inc/strings.hrc:1318
msgctxt "STR_TOKEN_HELP_TEXT"
msgid "Text"
msgstr "Testu"
#. MCUd2
-#: sw/inc/strings.hrc:1318
+#: sw/inc/strings.hrc:1319
msgctxt "STR_TOKEN_HELP_PAGE_NUMS"
msgid "Page number"
msgstr "Númberu páxina"
#. pXqw3
-#: sw/inc/strings.hrc:1319
+#: sw/inc/strings.hrc:1320
msgctxt "STR_TOKEN_HELP_CHAPTER_INFO"
msgid "Chapter info"
msgstr "Información capítulu"
#. DRBSD
-#: sw/inc/strings.hrc:1320
+#: sw/inc/strings.hrc:1321
msgctxt "STR_TOKEN_HELP_LINK_START"
msgid "Hyperlink start"
msgstr "Aniciar enllaz"
#. Ytn5g
-#: sw/inc/strings.hrc:1321
+#: sw/inc/strings.hrc:1322
msgctxt "STR_TOKEN_HELP_LINK_END"
msgid "Hyperlink end"
msgstr "Fin d'enllaz"
#. hRo3J
-#: sw/inc/strings.hrc:1322
+#: sw/inc/strings.hrc:1323
msgctxt "STR_TOKEN_HELP_AUTHORITY"
msgid "Bibliography entry: "
msgstr "Entrada bibliográfica: "
#. ZKG5v
-#: sw/inc/strings.hrc:1323
+#: sw/inc/strings.hrc:1324
msgctxt "STR_CHARSTYLE"
msgid "Character Style: "
msgstr "Estilu de caráuter: "
#. d9BES
-#: sw/inc/strings.hrc:1324
+#: sw/inc/strings.hrc:1325
msgctxt "STR_STRUCTURE"
msgid "Structure text"
msgstr ""
#. kwoGP
-#: sw/inc/strings.hrc:1325
+#: sw/inc/strings.hrc:1326
msgctxt "STR_ADDITIONAL_ACCNAME_STRING1"
msgid "Press Ctrl+Alt+A to move focus for more operations"
msgstr ""
#. Avm9y
-#: sw/inc/strings.hrc:1326
+#: sw/inc/strings.hrc:1327
msgctxt "STR_ADDITIONAL_ACCNAME_STRING2"
msgid "Press left or right arrow to choose the structure controls"
msgstr ""
#. 59eRi
-#: sw/inc/strings.hrc:1327
+#: sw/inc/strings.hrc:1328
msgctxt "STR_ADDITIONAL_ACCNAME_STRING3"
msgid "Press Ctrl+Alt+B to move focus back to the current structure control"
msgstr ""
#. 8AagG
-#: sw/inc/strings.hrc:1328
+#: sw/inc/strings.hrc:1329
msgctxt "STR_AUTOMARK_TYPE"
msgid "Selection file for the alphabetical index (*.sdi)"
msgstr "Seleición de ficheru pal indiz alfabéticu (*.sdi)"
@@ -9616,264 +9622,264 @@ msgstr "Seleición de ficheru pal indiz alfabéticu (*.sdi)"
#. -----------------------------------------------------------------------
#. Description: character alignment for frmsh.cxx - context menu
#. -----------------------------------------------------------------------
-#: sw/inc/strings.hrc:1333
+#: sw/inc/strings.hrc:1334
msgctxt "STR_FRMUI_TOP_BASE"
msgid "Base line at ~top"
msgstr "Llinia base no cime~ro"
#. 5GiEA
-#: sw/inc/strings.hrc:1334
+#: sw/inc/strings.hrc:1335
msgctxt "STR_FRMUI_BOTTOM_BASE"
msgid "~Base line at bottom"
msgstr "Llinia base no ca~bero"
#. sdyVF
-#: sw/inc/strings.hrc:1335
+#: sw/inc/strings.hrc:1336
msgctxt "STR_FRMUI_CENTER_BASE"
msgid "Base line ~centered"
msgstr "Llinia base ~centrada"
#. NAXyZ
-#: sw/inc/strings.hrc:1336
+#: sw/inc/strings.hrc:1337
msgctxt "STR_FRMUI_OLE_INSERT"
msgid "Insert object"
msgstr "Inxertar oxetu"
#. 5C6Rc
-#: sw/inc/strings.hrc:1337
+#: sw/inc/strings.hrc:1338
msgctxt "STR_FRMUI_OLE_EDIT"
msgid "Edit object"
msgstr "Editar oxetu"
#. 3QFYB
-#: sw/inc/strings.hrc:1338
+#: sw/inc/strings.hrc:1339
msgctxt "STR_FRMUI_COLL_HEADER"
msgid " (Template: "
msgstr " (Plantilla: "
#. oUhnK
-#: sw/inc/strings.hrc:1339
+#: sw/inc/strings.hrc:1340
msgctxt "STR_FRMUI_BORDER"
msgid "Borders"
msgstr "Berbesos"
#. T2SH2
-#: sw/inc/strings.hrc:1340
+#: sw/inc/strings.hrc:1341
msgctxt "STR_FRMUI_PATTERN"
msgid "Background"
msgstr "Fondu"
#. K6Yvs
-#: sw/inc/strings.hrc:1342
+#: sw/inc/strings.hrc:1343
msgctxt "STR_TEXTCOLL_HEADER"
msgid "(Paragraph Style: "
msgstr "(Estilu Párrafu: "
#. Fsanh
-#: sw/inc/strings.hrc:1343
+#: sw/inc/strings.hrc:1344
#, fuzzy
msgctxt "STR_ILLEGAL_PAGENUM"
msgid "Page numbers cannot be applied to the current page. Even numbers can be used on left pages, odd numbers on right pages."
msgstr "Los númberos de páxina nun se puen aplicar na páxina actual. Los númberos pares se puen aplicar nes páxines izquierdes, los impares en páxines dereches."
#. VZnJf
-#: sw/inc/strings.hrc:1345
+#: sw/inc/strings.hrc:1346
msgctxt "STR_WRITER_GLOBALDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Master Document"
msgstr "Documentu maestru de %PRODUCTNAME %PRODUCTVERSION"
#. kWe9j
-#: sw/inc/strings.hrc:1347
+#: sw/inc/strings.hrc:1348
msgctxt "STR_QUERY_CONNECT"
msgid "A file connection will delete the contents of the current section. Connect anyway?"
msgstr ""
#. dLuAF
-#: sw/inc/strings.hrc:1348
+#: sw/inc/strings.hrc:1349
msgctxt "STR_WRONG_PASSWORD"
msgid "The password entered is invalid."
msgstr ""
#. oUR7Y
-#: sw/inc/strings.hrc:1349
+#: sw/inc/strings.hrc:1350
msgctxt "STR_WRONG_PASSWD_REPEAT"
msgid "The password has not been set."
msgstr ""
#. GBVqD
-#: sw/inc/strings.hrc:1351
+#: sw/inc/strings.hrc:1352
msgctxt "STR_HYP_OK"
msgid "Hyphenation completed"
msgstr ""
#. rZBXF
-#: sw/inc/strings.hrc:1352
+#: sw/inc/strings.hrc:1353
msgctxt "STR_LANGSTATUS_NONE"
msgid "None (Do not check spelling)"
msgstr "Dengún (Nun igua la ortografía)"
#. Z8EjG
-#: sw/inc/strings.hrc:1353
+#: sw/inc/strings.hrc:1354
msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE"
msgid "Reset to Default Language"
msgstr "Reafitar a la llingua predeterminada"
#. YEXdS
-#: sw/inc/strings.hrc:1354
+#: sw/inc/strings.hrc:1355
msgctxt "STR_LANGSTATUS_MORE"
msgid "More..."
msgstr "Más..."
#. QecQ3
-#: sw/inc/strings.hrc:1355
+#: sw/inc/strings.hrc:1356
msgctxt "STR_IGNORE_SELECTION"
msgid "~Ignore"
msgstr "~Inorar"
#. aaiBM
-#: sw/inc/strings.hrc:1356
+#: sw/inc/strings.hrc:1357
msgctxt "STR_EXPLANATION_LINK"
msgid "Explanations..."
msgstr ""
#. kSDGu
-#: sw/inc/strings.hrc:1358
+#: sw/inc/strings.hrc:1359
msgctxt "STR_QUERY_SPECIAL_FORCED"
msgid "Check special regions is deactivated. Check anyway?"
msgstr ""
#. KiAdJ
-#: sw/inc/strings.hrc:1359
+#: sw/inc/strings.hrc:1360
msgctxt "STR_NO_MERGE_ENTRY"
msgid "Could not merge documents."
msgstr ""
#. FqsCt
-#: sw/inc/strings.hrc:1360
+#: sw/inc/strings.hrc:1361
msgctxt "STR_NO_BASE_FOR_MERGE"
msgid "%PRODUCTNAME Base component is absent, and it is required to use Mail Merge."
msgstr ""
#. wcuf4
-#: sw/inc/strings.hrc:1361
+#: sw/inc/strings.hrc:1362
msgctxt "STR_ERR_SRCSTREAM"
msgid "The source cannot be loaded."
msgstr ""
#. K9qMS
-#: sw/inc/strings.hrc:1362
+#: sw/inc/strings.hrc:1363
msgctxt "STR_ERR_NO_FAX"
msgid "No fax printer has been set under Tools/Options/%1/Print."
msgstr ""
#. XWQ8w
-#: sw/inc/strings.hrc:1363
+#: sw/inc/strings.hrc:1364
msgctxt "STR_WEBOPTIONS"
msgid "HTML document"
msgstr "Documentu HTML"
#. qVZBx
-#: sw/inc/strings.hrc:1364
+#: sw/inc/strings.hrc:1365
msgctxt "STR_TEXTOPTIONS"
msgid "Text document"
msgstr "Documentu de testu"
#. qmmPU
-#: sw/inc/strings.hrc:1365
+#: sw/inc/strings.hrc:1366
msgctxt "STR_SCAN_NOSOURCE"
msgid "Source not specified."
msgstr "Nun s'especificó l'orixe."
#. 2LgDJ
-#: sw/inc/strings.hrc:1366
+#: sw/inc/strings.hrc:1367
msgctxt "STR_NUM_LEVEL"
msgid "Level "
msgstr "Nivel "
#. AcAD8
-#: sw/inc/strings.hrc:1367
+#: sw/inc/strings.hrc:1368
#, fuzzy
msgctxt "STR_NUM_OUTLINE"
msgid "Outline "
msgstr "Esquema"
#. DE9FZ
-#: sw/inc/strings.hrc:1368
+#: sw/inc/strings.hrc:1369
#, fuzzy
msgctxt "STR_EDIT_FOOTNOTE"
msgid "Edit Footnote/Endnote"
msgstr "Inxertar nota al pie/nota final"
#. EzBCZ
-#: sw/inc/strings.hrc:1369
+#: sw/inc/strings.hrc:1370
#, fuzzy
msgctxt "STR_NB_REPLACED"
msgid "Search key replaced XX times."
msgstr "La clave de busca sustituyó XX vegaes"
#. fgywB
-#: sw/inc/strings.hrc:1370
+#: sw/inc/strings.hrc:1371
msgctxt "STR_SRCVIEW_ROW"
msgid "Row "
msgstr "Filera "
#. GUc4a
-#: sw/inc/strings.hrc:1371
+#: sw/inc/strings.hrc:1372
msgctxt "STR_SRCVIEW_COL"
msgid "Column "
msgstr "Columna "
#. yMyuo
-#: sw/inc/strings.hrc:1372
+#: sw/inc/strings.hrc:1373
msgctxt "STR_SAVEAS_SRC"
msgid "~Export source..."
msgstr ""
#. ywFCb
-#: sw/inc/strings.hrc:1373
+#: sw/inc/strings.hrc:1374
msgctxt "STR_SAVEACOPY_SRC"
msgid "~Export copy of source..."
msgstr ""
#. BT3M3
-#: sw/inc/strings.hrc:1375
+#: sw/inc/strings.hrc:1376
#, fuzzy
msgctxt "ST_CONTINUE"
msgid "~Continue"
msgstr "Siguir"
#. ZR9aw
-#: sw/inc/strings.hrc:1376
+#: sw/inc/strings.hrc:1377
msgctxt "ST_SENDINGTO"
msgid "Sending to: %1"
msgstr ""
#. YCNYb
-#: sw/inc/strings.hrc:1377
+#: sw/inc/strings.hrc:1378
msgctxt "ST_COMPLETED"
msgid "Successfully sent"
msgstr ""
#. fmHmE
-#: sw/inc/strings.hrc:1378
+#: sw/inc/strings.hrc:1379
msgctxt "ST_FAILED"
msgid "Sending failed"
msgstr ""
#. yAAPM
-#: sw/inc/strings.hrc:1380
+#: sw/inc/strings.hrc:1381
msgctxt "STR_SENDER_TOKENS"
msgid "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
msgstr "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
#. mWrXk
-#: sw/inc/strings.hrc:1382
+#: sw/inc/strings.hrc:1383
msgctxt "STR_TBL_FORMULA"
msgid "Text formula"
msgstr ""
#. RmBFW
-#: sw/inc/strings.hrc:1384
+#: sw/inc/strings.hrc:1385
msgctxt "STR_DROP_DOWN_EMPTY_LIST"
msgid "No Item specified"
msgstr ""
@@ -9882,7 +9888,7 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Classification strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1390
+#: sw/inc/strings.hrc:1391
msgctxt "STR_CLASSIFICATION_LEVEL_CHANGED"
msgid "Document classification has changed because a paragraph classification level is higher"
msgstr ""
@@ -9891,122 +9897,122 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Paragraph Signature
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1395
+#: sw/inc/strings.hrc:1396
msgctxt "STR_VALID"
msgid " Valid "
msgstr ""
#. xAKRC
-#: sw/inc/strings.hrc:1396
+#: sw/inc/strings.hrc:1397
msgctxt "STR_INVALID"
msgid "Invalid"
msgstr ""
#. pDAHz
-#: sw/inc/strings.hrc:1397
+#: sw/inc/strings.hrc:1398
msgctxt "STR_INVALID_SIGNATURE"
msgid "Invalid Signature"
msgstr ""
#. etEEx
-#: sw/inc/strings.hrc:1398
+#: sw/inc/strings.hrc:1399
#, fuzzy
msgctxt "STR_SIGNED_BY"
msgid "Signed-by"
msgstr "Firmáu por "
#. BK7ub
-#: sw/inc/strings.hrc:1399
+#: sw/inc/strings.hrc:1400
msgctxt "STR_PARAGRAPH_SIGNATURE"
msgid "Paragraph Signature"
msgstr ""
#. kZKCf
-#: sw/inc/strings.hrc:1401
+#: sw/inc/strings.hrc:1402
msgctxt "labeldialog|cards"
msgid "Business Cards"
msgstr "Tarxetes d'empresa"
#. ECFij
-#: sw/inc/strings.hrc:1403
+#: sw/inc/strings.hrc:1404
msgctxt "STR_MAILCONFIG_DLG_TITLE"
msgid "Email settings"
msgstr ""
#. PwrB9
-#: sw/inc/strings.hrc:1405
+#: sw/inc/strings.hrc:1406
msgctxt "optredlinepage|insertedpreview"
msgid "Insert"
msgstr "Inxertar"
#. NL48o
-#: sw/inc/strings.hrc:1406
+#: sw/inc/strings.hrc:1407
msgctxt "optredlinepage|deletedpreview"
msgid "Delete"
msgstr "Desaniciar"
#. PW4Bz
-#: sw/inc/strings.hrc:1407
+#: sw/inc/strings.hrc:1408
msgctxt "optredlinepage|changedpreview"
msgid "Attributes"
msgstr "Atributos"
#. yfgiq
-#: sw/inc/strings.hrc:1409
+#: sw/inc/strings.hrc:1410
msgctxt "createautomarkdialog|searchterm"
msgid "Search term"
msgstr "Términu de gueta"
#. fhLzk
-#: sw/inc/strings.hrc:1410
+#: sw/inc/strings.hrc:1411
msgctxt "createautomarkdialog|alternative"
msgid "Alternative entry"
msgstr "Entrada alternativa"
#. gD4D3
-#: sw/inc/strings.hrc:1411
+#: sw/inc/strings.hrc:1412
msgctxt "createautomarkdialog|key1"
msgid "1st key"
msgstr "1ᵉʳ clave"
#. BFszo
-#: sw/inc/strings.hrc:1412
+#: sw/inc/strings.hrc:1413
msgctxt "createautomarkdialog|key2"
msgid "2nd key"
msgstr "2ª clave"
#. EoAB8
-#: sw/inc/strings.hrc:1413
+#: sw/inc/strings.hrc:1414
msgctxt "createautomarkdialog|comment"
msgid "Comment"
msgstr "Comentariu"
#. Shstx
-#: sw/inc/strings.hrc:1414
+#: sw/inc/strings.hrc:1415
msgctxt "createautomarkdialog|casesensitive"
msgid "Match case"
msgstr "Concasar mayúscules y minúscules"
#. 8Cjvb
-#: sw/inc/strings.hrc:1415
+#: sw/inc/strings.hrc:1416
msgctxt "createautomarkdialog|wordonly"
msgid "Word only"
msgstr "Sólo pallabra"
#. zD8rb
-#: sw/inc/strings.hrc:1416
+#: sw/inc/strings.hrc:1417
msgctxt "createautomarkdialog|yes"
msgid "Yes"
msgstr "Sí"
#. 4tTop
-#: sw/inc/strings.hrc:1417
+#: sw/inc/strings.hrc:1418
msgctxt "createautomarkdialog|no"
msgid "No"
msgstr "Non"
#. KhKwa
-#: sw/inc/strings.hrc:1419
+#: sw/inc/strings.hrc:1420
msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Personalizáu"
@@ -10523,8 +10529,14 @@ msgctxt "asciifilterdialog|includebom"
msgid "Include byte-order mark"
msgstr ""
+#. 9E8VF
+#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:291
+msgctxt "asciifilterdialog|extended_tip|includebom"
+msgid "For Unicode character set only, a byte order mark (BOM) is a sequence of bytes used to indicate Unicode encoding of a text file."
+msgstr ""
+
#. B2ofV
-#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:304
+#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:309
msgctxt "asciifilterdialog|label1"
msgid "Properties"
msgstr "Propiedaes"
@@ -13222,19 +13234,19 @@ msgstr ""
#: sw/uiconfig/swriter/ui/dropdownformfielddialog.ui:224
msgctxt "dropdownformfielddialog|up"
msgid "Move Up"
-msgstr ""
+msgstr "Mover p'arriba"
#. HADbD
#: sw/uiconfig/swriter/ui/dropdownformfielddialog.ui:238
msgctxt "dropdownformfielddialog|down"
msgid "Move Down"
-msgstr ""
+msgstr "Mover p'abaxo"
#. UD78C
#: sw/uiconfig/swriter/ui/editcategories.ui:18
msgctxt "editcategories|EditCategoriesDialog"
msgid "Edit Categories"
-msgstr "Editar Categoríes"
+msgstr "Editar les categoríes"
#. 2CmpG
#: sw/uiconfig/swriter/ui/editcategories.ui:42
@@ -20131,46 +20143,52 @@ msgctxt "mmresultsavedialog|extended_tip|individualrb"
msgid "Saves the merged document as a separate file for each recipient. The file names of the documents are constructed from the name that you enter, followed by an underscore, and the number of the current record."
msgstr ""
+#. g3Knf
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:157
+msgctxt "mmresultsavedialog|label2"
+msgid "Save As Options"
+msgstr ""
+
#. xRGbs
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:159
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:191
#, fuzzy
msgctxt "mmresultsavedialog|fromrb"
msgid "_From"
msgstr "_Dende"
#. gvAQf
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:170
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:202
msgctxt "mmresultsavedialog|extended_tip|fromrb"
msgid "Selects a range of records starting at the record number in the From box and ending at the record number in the To box."
msgstr ""
#. LGEwR
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:183
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:215
#, fuzzy
msgctxt "mmresultsavedialog|toft"
msgid "_To"
msgstr "_Arriba"
#. XML8V
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:205
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:238
msgctxt "mmresultsavedialog|extended_tip|from"
msgid "Enter the number of the first record to include in the mail merge."
msgstr ""
#. dAWiB
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:224
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:258
msgctxt "mmresultsavedialog|extended_tip|to"
msgid "Enter the number of the last record to include in the mail merge."
msgstr ""
-#. g3Knf
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:245
-msgctxt "mmresultsavedialog|label2"
-msgid "Save As Options"
+#. VibGJ
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:273
+msgctxt "mmresultsavedialog|FromToRange"
+msgid "Range"
msgstr ""
#. 2BCiE
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:267
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:295
msgctxt "mmresultsavedialog|extended_tip|MMResultSaveDialog"
msgid "Save the mail merge output to file."
msgstr ""
@@ -20548,7 +20566,7 @@ msgid "Transfer Status"
msgstr ""
#. c2i5B
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:26
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:20
msgctxt "navigatorcontextmenu|STR_SEND_OUTLINE_TO_CLIPBOARD_ENTRY"
msgid "Send Outline to Clipboard"
msgstr ""
@@ -20560,143 +20578,215 @@ msgid "Go to"
msgstr ""
#. VCmAZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:49
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:43
msgctxt "navigatorcontextmenu|STR_SELECT"
msgid "Select"
msgstr ""
#. dajzZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:57
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:51
msgctxt "navigatorcontextmenu|STR_DELETE"
msgid "Delete"
msgstr ""
#. CQSp3
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:66
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:60
msgctxt "navigatorcontextmenu|STR_PROMOTE_CHAPTER"
msgid "Promote Chapter"
msgstr ""
#. ikRHB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:75
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:69
msgctxt "navigatorcontextmenu|STR_DEMOTE_CHAPTER"
msgid "Demote Chapter"
msgstr ""
#. MhtFa
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:84
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:78
msgctxt "navigatorcontextmenu|STR_PROMOTE_LEVEL"
msgid "Promote Level"
msgstr ""
#. dUM5D
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:93
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:87
msgctxt "navigatorcontextmenu|STR_DEMOTE_LEVEL"
msgid "Demote Level"
msgstr ""
#. tukRq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:102
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:96
msgctxt "navigatorcontextmenu|STR_REMOVE_INDEX"
msgid "_Remove Index"
msgstr ""
#. C4355
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:110
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:104
msgctxt "navigatorcontextmenu|STR_UPDATE"
msgid "_Update"
msgstr ""
#. BtCca
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:118
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:112
msgctxt "navigatorcontextmenu|STR_EDIT_ENTRY"
msgid "Edit..."
msgstr ""
#. BYyhD
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:126
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:120
msgctxt "navigatorcontextmenu|STR_REMOVE_TBL_PROTECTION"
msgid "_Unprotect"
msgstr ""
#. 6KWWG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:134
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:128
msgctxt "navigatorcontextmenu|STR_READONLY_IDX"
msgid "Read-_only"
msgstr ""
#. BUQRq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:142
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:136
msgctxt "navigatorcontextmenu|STR_DELETE_ENTRY"
msgid "_Delete"
msgstr ""
#. CUqD5
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:151
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:145
msgctxt "navigatorcontextmenu|STR_RENAME"
msgid "_Rename..."
msgstr ""
#. U5nAb
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:159
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:153
msgctxt "navigatorcontextmenu|STR_POSTIT_SHOW"
msgid "Show All"
msgstr ""
#. E2wWp
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:167
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:161
msgctxt "navigatorcontextmenu|STR_POSTIT_HIDE"
msgid "Hide All"
msgstr ""
#. aDRke
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:175
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:169
msgctxt "navigatorcontextmenu|STR_POSTIT_DELETE"
msgid "Delete All"
msgstr ""
#. YBipC
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:189
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:183
msgctxt "navigatorcontextmenu|STR_OUTLINE_CONTENT"
msgid "Outline Folding"
msgstr ""
-#. EBK2E
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:209
-msgctxt "navigatorcontextmenu|STR_OUTLINE_TRACKING"
-msgid "Outline Tracking"
-msgstr ""
-
#. cECoG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:223
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:203
msgctxt "navigatorcontextmenu|STR_OUTLINE_LEVEL"
msgid "Outline Level"
msgstr ""
+#. EBK2E
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:217
+msgctxt "navigatorcontextmenu|STR_OUTLINE_TRACKING"
+msgid "Outline Tracking"
+msgstr ""
+
#. fZEEr
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:237
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:231
msgctxt "navigatorcontextmenu|STR_TABLE_TRACKING"
msgid "Table Tracking"
-msgstr ""
+msgstr "Siguimientu de tables"
#. 7oCFa
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:245
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:239
msgctxt "navigatorcontextmenu|STR_SECTION_TRACKING"
msgid "Section Tracking"
+msgstr "Siguimientu de seiciones"
+
+#. YmjQf
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:247
+msgctxt "navigatorcontextmenu|STR_FRAME_TRACKING"
+msgid "Frame Tracking"
+msgstr ""
+
+#. vhxX5
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:255
+msgctxt "navigatorcontextmenu|STR_IMAGE_TRACKING"
+msgid "Image Tracking"
+msgstr ""
+
+#. mcYqZ
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:263
+msgctxt "navigatorcontextmenu|STR_OLE_OBJECT_TRACKING"
+msgid "OLE Object Tracking"
+msgstr ""
+
+#. DRaED
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:271
+msgctxt "navigatorcontextmenu|STR_BOOKMARK_TRACKING"
+msgid "Bookmark Tracking"
+msgstr ""
+
+#. vpLmh
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:279
+msgctxt "navigatorcontextmenu|STR_HYPERLINK_TRACKING"
+msgid "Hyperlink Tracking"
+msgstr ""
+
+#. EvBzN
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:287
+msgctxt "navigatorcontextmenu|STR_REFERENCE_TRACKING"
+msgid "Reference Tracking"
+msgstr ""
+
+#. M8Bes
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:295
+msgctxt "navigatorcontextmenu|STR_INDEX_TRACKING"
+msgid "Index Tracking"
+msgstr ""
+
+#. KBFwM
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:303
+msgctxt "navigatorcontextmenu|STR_COMMENT_TRACKING"
+msgid "Comment Tracking"
+msgstr ""
+
+#. oGavB
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:311
+msgctxt "navigatorcontextmenu|STR_DRAWING_OBJECT_TRACKING"
+msgid "Drawing Object Tracking"
+msgstr ""
+
+#. w8FTW
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:319
+msgctxt "navigatorcontextmenu|STR_FIELD_TRACKING"
+msgid "Field Tracking"
+msgstr ""
+
+#. BoCeZ
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:327
+msgctxt "navigatorcontextmenu|STR_FOOTNOTE_TRACKING"
+msgid "Footnote Tracking"
msgstr ""
#. GyAcG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:253
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:341
msgctxt "navigatorcontextmenu|STR_DRAGMODE"
msgid "Drag Mode"
msgstr ""
#. Zehx2
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:267
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:355
msgctxt "navigatorcontextmenu|STR_DISPLAY"
msgid "Display"
msgstr ""
+#. bgZoy
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:375
+msgctxt "navigatorcontextmenu|STR_COLLAPSE_ALL_CATEGORIES"
+msgid "Collapse All Categories"
+msgstr ""
+
#. ba8wC
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:18
msgctxt "navigatorpanel|hyperlink"
@@ -20986,10 +21076,9 @@ msgstr ""
#. yEETn
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:898
-#, fuzzy
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
-msgstr "Mover a_rriba"
+msgstr "Mover p'arriba"
#. rEFCS
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:902
@@ -20999,10 +21088,9 @@ msgstr ""
#. KN3mN
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:915
-#, fuzzy
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
-msgstr "Mover a_baxo"
+msgstr "Mover p'abaxo"
#. Cs7D9
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:919
diff --git a/source/ast/vcl/messages.po b/source/ast/vcl/messages.po
index 4581f94667c..c3271e46048 100644
--- a/source/ast/vcl/messages.po
+++ b/source/ast/vcl/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-10 23:12+0200\n"
+"POT-Creation-Date: 2021-10-20 13:09+0200\n"
"PO-Revision-Date: 2021-09-22 20:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/ast/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542022501.000000\n"
#. k5jTM
@@ -1966,529 +1966,529 @@ msgid "_Print"
msgstr ""
#. M3L4L
-#: vcl/uiconfig/ui/printdialog.ui:157
+#: vcl/uiconfig/ui/printdialog.ui:160
msgctxt "printdialog|printpreview"
msgid "Print preview"
msgstr ""
#. 67YPm
-#: vcl/uiconfig/ui/printdialog.ui:163
+#: vcl/uiconfig/ui/printdialog.ui:166
msgctxt "printdialog|extended_tip|preview"
msgid "The preview shows how each sheet of paper will look. You can browse through all sheets of paper with the buttons below the preview."
msgstr ""
#. dQEY8
-#: vcl/uiconfig/ui/printdialog.ui:193
+#: vcl/uiconfig/ui/printdialog.ui:196
msgctxt "printdialog|previewbox"
msgid "Pre_view"
msgstr ""
#. EpB5H
-#: vcl/uiconfig/ui/printdialog.ui:202
+#: vcl/uiconfig/ui/printdialog.ui:205
msgctxt "printdialog|extended_tip|previewbox"
msgid "Turn on or off display of the print preview."
msgstr ""
#. SbgFv
-#: vcl/uiconfig/ui/printdialog.ui:232
+#: vcl/uiconfig/ui/printdialog.ui:235
msgctxt "printdialog|firstpage"
msgid "First page"
msgstr ""
#. GVGSq
-#: vcl/uiconfig/ui/printdialog.ui:236
+#: vcl/uiconfig/ui/printdialog.ui:239
msgctxt "printdialog|extended_tip|btnFirst"
msgid "Shows preview of the first page."
msgstr ""
#. ebceU
-#: vcl/uiconfig/ui/printdialog.ui:251
+#: vcl/uiconfig/ui/printdialog.ui:254
msgctxt "printdialog|backward"
msgid "Previous page"
msgstr ""
#. uS5Ka
-#: vcl/uiconfig/ui/printdialog.ui:255
+#: vcl/uiconfig/ui/printdialog.ui:258
msgctxt "printdialog|extended_tip|backward"
msgid "Shows preview of the previous page."
msgstr ""
#. c7uMG
-#: vcl/uiconfig/ui/printdialog.ui:274
+#: vcl/uiconfig/ui/printdialog.ui:277
msgctxt "printdialog|extended_tip|pageedit"
msgid "Enter the number of page to be shown in the preview."
msgstr ""
#. yyFVV
-#: vcl/uiconfig/ui/printdialog.ui:288
+#: vcl/uiconfig/ui/printdialog.ui:291
msgctxt "printdialog|totalnumpages"
msgid "/ %n"
msgstr "/ %n"
#. CZQLF
-#: vcl/uiconfig/ui/printdialog.ui:301
+#: vcl/uiconfig/ui/printdialog.ui:304
msgctxt "printdialog|forward"
msgid "Next page"
msgstr ""
#. emK9r
-#: vcl/uiconfig/ui/printdialog.ui:305
+#: vcl/uiconfig/ui/printdialog.ui:308
msgctxt "printdialog|extended_tip|forward"
msgid "Shows preview of the next page."
msgstr ""
#. Aq6Gv
-#: vcl/uiconfig/ui/printdialog.ui:320
+#: vcl/uiconfig/ui/printdialog.ui:323
msgctxt "printdialog|lastpage"
msgid "Last page"
msgstr "Cabera páxina"
#. RwCmD
-#: vcl/uiconfig/ui/printdialog.ui:324
+#: vcl/uiconfig/ui/printdialog.ui:327
msgctxt "printdialog|extended_tip|btnLast"
msgid "Shows preview of the last page."
msgstr ""
#. PD6Aj
-#: vcl/uiconfig/ui/printdialog.ui:400
+#: vcl/uiconfig/ui/printdialog.ui:403
msgctxt "printdialog|extended_tip|printersbox"
msgid "The list box shows the installed printers. Click the printer to use for the current print job. Click the Properties button to change some of the printer properties."
msgstr ""
#. qgQDX
-#: vcl/uiconfig/ui/printdialog.ui:419
+#: vcl/uiconfig/ui/printdialog.ui:422
msgctxt "printdialog|labelstatus"
msgid "Status:"
msgstr ""
#. dyo2j
-#: vcl/uiconfig/ui/printdialog.ui:434
+#: vcl/uiconfig/ui/printdialog.ui:437
msgctxt "printdialog|status"
msgid "Default Printer"
msgstr ""
#. McZgQ
-#: vcl/uiconfig/ui/printdialog.ui:440
+#: vcl/uiconfig/ui/printdialog.ui:443
msgctxt "printdialog|extended_tip|status"
msgid "Shows the availability of the selected printer."
msgstr ""
#. oBACQ
-#: vcl/uiconfig/ui/printdialog.ui:452
+#: vcl/uiconfig/ui/printdialog.ui:455
msgctxt "printdialog|setup"
msgid "Properties..."
msgstr "Propiedaes..."
#. 89CRC
-#: vcl/uiconfig/ui/printdialog.ui:459
+#: vcl/uiconfig/ui/printdialog.ui:462
msgctxt "printdialog|extended_tip|setup"
msgid "Opens the Printer Properties dialog. The printer properties vary according to the printer that you select."
msgstr ""
#. AJGau
-#: vcl/uiconfig/ui/printdialog.ui:483
+#: vcl/uiconfig/ui/printdialog.ui:486
msgctxt "printdialog|labelprinter"
msgid "Printer"
msgstr ""
#. AyxGJ
-#: vcl/uiconfig/ui/printdialog.ui:521
+#: vcl/uiconfig/ui/printdialog.ui:524
msgctxt "printdialog|rbAllPages"
msgid "_All pages"
msgstr ""
#. AQ7Ms
-#: vcl/uiconfig/ui/printdialog.ui:532
+#: vcl/uiconfig/ui/printdialog.ui:535
msgctxt "printdialog|extended_tip|rbAllPages"
msgid "Prints the entire document."
msgstr ""
#. pYtbq
-#: vcl/uiconfig/ui/printdialog.ui:543
+#: vcl/uiconfig/ui/printdialog.ui:546
msgctxt "printdialog|rbPageRange"
msgid "_Pages:"
msgstr ""
#. azXfE
-#: vcl/uiconfig/ui/printdialog.ui:555
+#: vcl/uiconfig/ui/printdialog.ui:558
msgctxt "printdialog|extended_tip|rbRangePages"
msgid "Prints only the pages or slides that you specify in the Pages box."
msgstr ""
#. 786QC
-#: vcl/uiconfig/ui/printdialog.ui:571
+#: vcl/uiconfig/ui/printdialog.ui:574
msgctxt "printdialog|pagerange"
msgid "e.g.: 1, 3-5, 7, 9"
msgstr ""
#. FTtLK
-#: vcl/uiconfig/ui/printdialog.ui:574
+#: vcl/uiconfig/ui/printdialog.ui:577
msgctxt "printdialog|extended_tip|pagerange"
msgid "To print a range of pages, use a format like 3-6. To print single pages, use a format like 7;9;11. You can print a combination of page ranges and single pages, by using a format like 3-6;8;10;12."
msgstr ""
#. Z5kiB
-#: vcl/uiconfig/ui/printdialog.ui:585
+#: vcl/uiconfig/ui/printdialog.ui:588
msgctxt "printdialog|rbRangeSelection"
msgid "_Selection"
msgstr ""
#. CJ2E7
-#: vcl/uiconfig/ui/printdialog.ui:595
+#: vcl/uiconfig/ui/printdialog.ui:598
msgctxt "printdialog|extended_tip|rbRangeSelection"
msgid "Prints only the selected area(s) or object(s) in the current document."
msgstr ""
#. UKYwM
-#: vcl/uiconfig/ui/printdialog.ui:609
+#: vcl/uiconfig/ui/printdialog.ui:612
msgctxt "printdialog|includeevenodd"
msgid "Include:"
msgstr ""
#. XmeFL
-#: vcl/uiconfig/ui/printdialog.ui:626
+#: vcl/uiconfig/ui/printdialog.ui:629
msgctxt "printdialog|liststore3"
msgid "Odd and Even Pages"
msgstr ""
#. 49y67
-#: vcl/uiconfig/ui/printdialog.ui:627
+#: vcl/uiconfig/ui/printdialog.ui:630
msgctxt "printdialog|liststore3"
msgid "Odd Pages"
msgstr ""
#. 6CkPE
-#: vcl/uiconfig/ui/printdialog.ui:628
+#: vcl/uiconfig/ui/printdialog.ui:631
msgctxt "printdialog|liststore3"
msgid "Even Pages"
msgstr ""
#. ZeA37
-#: vcl/uiconfig/ui/printdialog.ui:632
+#: vcl/uiconfig/ui/printdialog.ui:635
msgctxt "printdialog|extended_tip|evenoddbox"
msgid "Select the subset of pages to print."
msgstr ""
#. wn2kB
-#: vcl/uiconfig/ui/printdialog.ui:663
+#: vcl/uiconfig/ui/printdialog.ui:666
msgctxt "printdialog|fromwhich"
msgid "_From which print:"
msgstr ""
#. Cuc2u
-#: vcl/uiconfig/ui/printdialog.ui:688
+#: vcl/uiconfig/ui/printdialog.ui:691
msgctxt "printdialog|labelpapersides"
msgid "Paper _sides:"
msgstr ""
#. SYxRJ
-#: vcl/uiconfig/ui/printdialog.ui:704
+#: vcl/uiconfig/ui/printdialog.ui:707
msgctxt "printdialog|liststore4"
msgid "Print on one side (simplex)"
msgstr ""
#. hCZPg
-#: vcl/uiconfig/ui/printdialog.ui:705
+#: vcl/uiconfig/ui/printdialog.ui:708
msgctxt "printdialog|liststore4"
msgid "Print on both sides (duplex long edge)"
msgstr ""
#. iqr9C
-#: vcl/uiconfig/ui/printdialog.ui:706
+#: vcl/uiconfig/ui/printdialog.ui:709
msgctxt "printdialog|liststore4"
msgid "Print on both sides (duplex short edge)"
msgstr ""
#. CKpgL
-#: vcl/uiconfig/ui/printdialog.ui:710
+#: vcl/uiconfig/ui/printdialog.ui:713
msgctxt "printdialog|extended_tip|sidesbox"
msgid "If the printer is capable of duplex printing it's possible to choose between using only one side of the paper or both."
msgstr ""
#. AVv6D
-#: vcl/uiconfig/ui/printdialog.ui:724
+#: vcl/uiconfig/ui/printdialog.ui:727
msgctxt "printdialog|labelcopies"
msgid "_Number of copies:"
msgstr ""
#. NwD7S
-#: vcl/uiconfig/ui/printdialog.ui:747
+#: vcl/uiconfig/ui/printdialog.ui:750
msgctxt "printdialog|extended_tip|copycount"
msgid "Enter the number of copies that you want to print."
msgstr ""
#. BT4nY
-#: vcl/uiconfig/ui/printdialog.ui:761
+#: vcl/uiconfig/ui/printdialog.ui:764
msgctxt "printdialog|cbPrintOrder"
msgid "Order:"
msgstr ""
#. vwjVt
-#: vcl/uiconfig/ui/printdialog.ui:774
+#: vcl/uiconfig/ui/printdialog.ui:777
msgctxt "printdialog|reverseorder"
msgid "Print in _reverse order"
msgstr ""
#. svd2Q
-#: vcl/uiconfig/ui/printdialog.ui:783
+#: vcl/uiconfig/ui/printdialog.ui:786
msgctxt "printdialog|extended_tip|reverseorder"
msgid "Check to print pages in reverse order."
msgstr ""
#. G6QEr
-#: vcl/uiconfig/ui/printdialog.ui:800
+#: vcl/uiconfig/ui/printdialog.ui:803
msgctxt "printdialog|collate"
msgid "_Collate"
msgstr ""
#. kR6bA
-#: vcl/uiconfig/ui/printdialog.ui:808
+#: vcl/uiconfig/ui/printdialog.ui:811
msgctxt "printdialog|extended_tip|collate"
msgid "Preserves the page order of the original document."
msgstr ""
#. GZrpG
-#: vcl/uiconfig/ui/printdialog.ui:838
+#: vcl/uiconfig/ui/printdialog.ui:841
msgctxt "printdialog|singlejobs"
msgid "Create separate print jobs for collated output"
msgstr ""
#. X4Am9
-#: vcl/uiconfig/ui/printdialog.ui:846
+#: vcl/uiconfig/ui/printdialog.ui:849
msgctxt "printdialog|extended_tip|collate"
msgid "Check to not rely on the printer to create collated copies but create a print job for each copy instead."
msgstr ""
#. 2MdHu
-#: vcl/uiconfig/ui/printdialog.ui:867
+#: vcl/uiconfig/ui/printdialog.ui:870
msgctxt "printdialog|rangeexpander"
msgid "_More"
msgstr ""
#. ehfCG
-#: vcl/uiconfig/ui/printdialog.ui:883
+#: vcl/uiconfig/ui/printdialog.ui:886
msgctxt "printdialog|label2"
msgid "Range and Copies"
msgstr "Estaya y copies"
#. CBLet
-#: vcl/uiconfig/ui/printdialog.ui:922
+#: vcl/uiconfig/ui/printdialog.ui:925
msgctxt "printdialog|labelorientation"
msgid "Orientation:"
msgstr "Orientación:"
#. U4byk
-#: vcl/uiconfig/ui/printdialog.ui:937
+#: vcl/uiconfig/ui/printdialog.ui:940
msgctxt "printdialog|labelsize"
msgid "Paper size:"
msgstr ""
#. X9iBj
-#: vcl/uiconfig/ui/printdialog.ui:954
+#: vcl/uiconfig/ui/printdialog.ui:957
msgctxt "printdialog|liststore3"
msgid "Automatic"
msgstr "Automáticu"
#. vaWZE
-#: vcl/uiconfig/ui/printdialog.ui:955
+#: vcl/uiconfig/ui/printdialog.ui:958
msgctxt "printdialog|liststore3"
msgid "Portrait"
msgstr "Vertical"
#. Qnpje
-#: vcl/uiconfig/ui/printdialog.ui:956
+#: vcl/uiconfig/ui/printdialog.ui:959
msgctxt "printdialog|liststore3"
msgid "Landscape"
msgstr "Apaisáu"
#. PkAo9
-#: vcl/uiconfig/ui/printdialog.ui:960
+#: vcl/uiconfig/ui/printdialog.ui:963
msgctxt "printdialog|extended_tip|pageorientationbox"
msgid "Select the orientation of the paper."
msgstr ""
#. DSFv2
-#: vcl/uiconfig/ui/printdialog.ui:976
+#: vcl/uiconfig/ui/printdialog.ui:979
msgctxt "printdialog|extended_tip|papersizebox"
msgid "Set the paper size you would like to use. The preview will show how the document would look on a paper of the given size."
msgstr ""
#. EZdsx
-#: vcl/uiconfig/ui/printdialog.ui:1011
+#: vcl/uiconfig/ui/printdialog.ui:1014
msgctxt "printdialog|pagespersheetbtn"
msgid "Pages per sheet:"
msgstr ""
#. ok8Lw
-#: vcl/uiconfig/ui/printdialog.ui:1025
+#: vcl/uiconfig/ui/printdialog.ui:1028
msgctxt "printdialog|extended_tip|pagespersheetbtn"
msgid "Print multiple pages per sheet of paper."
msgstr ""
#. DKP5g
-#: vcl/uiconfig/ui/printdialog.ui:1066
+#: vcl/uiconfig/ui/printdialog.ui:1069
msgctxt "printdialog|liststore1"
msgid "Custom"
msgstr "Personalizáu"
#. duVEo
-#: vcl/uiconfig/ui/printdialog.ui:1073
+#: vcl/uiconfig/ui/printdialog.ui:1076
msgctxt "printdialog|extended_tip|pagespersheetbox"
msgid "Select how many pages to print per sheet of paper."
msgstr ""
#. 65WWt
-#: vcl/uiconfig/ui/printdialog.ui:1086
+#: vcl/uiconfig/ui/printdialog.ui:1089
msgctxt "printdialog|pagespersheettxt"
msgid "Pages:"
msgstr "Páxines:"
#. X8bjE
-#: vcl/uiconfig/ui/printdialog.ui:1106
+#: vcl/uiconfig/ui/printdialog.ui:1109
msgctxt "printdialog|extended_tip|pagerows"
msgid "Select number of rows."
msgstr ""
#. DM5aX
-#: vcl/uiconfig/ui/printdialog.ui:1118
+#: vcl/uiconfig/ui/printdialog.ui:1121
msgctxt "printdialog|by"
msgid "by"
msgstr "por"
#. Z2EDz
-#: vcl/uiconfig/ui/printdialog.ui:1137
+#: vcl/uiconfig/ui/printdialog.ui:1140
msgctxt "printdialog|extended_tip|pagecols"
msgid "Select number of columns."
msgstr ""
#. szcD7
-#: vcl/uiconfig/ui/printdialog.ui:1149
+#: vcl/uiconfig/ui/printdialog.ui:1152
msgctxt "printdialog|pagemargintxt1"
msgid "Margin:"
msgstr ""
#. QxE58
-#: vcl/uiconfig/ui/printdialog.ui:1168
+#: vcl/uiconfig/ui/printdialog.ui:1171
msgctxt "printdialog|extended_tip|pagemarginsb"
msgid "Select margin between individual pages on each sheet of paper."
msgstr ""
#. iGg2m
-#: vcl/uiconfig/ui/printdialog.ui:1181
+#: vcl/uiconfig/ui/printdialog.ui:1184
msgctxt "printdialog|pagemargintxt2"
msgid "between pages"
msgstr "ente les páxines"
#. oryuw
-#: vcl/uiconfig/ui/printdialog.ui:1192
+#: vcl/uiconfig/ui/printdialog.ui:1195
msgctxt "printdialog|sheetmargintxt1"
msgid "Distance:"
msgstr ""
#. EDFnW
-#: vcl/uiconfig/ui/printdialog.ui:1211
+#: vcl/uiconfig/ui/printdialog.ui:1214
msgctxt "printdialog|extended_tip|sheetmarginsb"
msgid "Select margin between the printed pages and paper edge."
msgstr ""
#. XhfvB
-#: vcl/uiconfig/ui/printdialog.ui:1224
+#: vcl/uiconfig/ui/printdialog.ui:1227
msgctxt "printdialog|sheetmargintxt2"
msgid "to sheet border"
msgstr "al berbesu la fueya"
#. AGWe3
-#: vcl/uiconfig/ui/printdialog.ui:1237
+#: vcl/uiconfig/ui/printdialog.ui:1240
msgctxt "printdialog|labelorder"
msgid "Order:"
msgstr ""
#. psAku
-#: vcl/uiconfig/ui/printdialog.ui:1254
+#: vcl/uiconfig/ui/printdialog.ui:1257
msgctxt "printdialog|liststore2"
msgid "Left to right, then down"
msgstr ""
#. fnfLt
-#: vcl/uiconfig/ui/printdialog.ui:1255
+#: vcl/uiconfig/ui/printdialog.ui:1258
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then right"
msgstr ""
#. y6nZE
-#: vcl/uiconfig/ui/printdialog.ui:1256
+#: vcl/uiconfig/ui/printdialog.ui:1259
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then left"
msgstr ""
#. PteTg
-#: vcl/uiconfig/ui/printdialog.ui:1257
+#: vcl/uiconfig/ui/printdialog.ui:1260
msgctxt "printdialog|liststore2"
msgid "Right to left, then down"
msgstr ""
#. DvF8r
-#: vcl/uiconfig/ui/printdialog.ui:1261
+#: vcl/uiconfig/ui/printdialog.ui:1264
msgctxt "printdialog|extended_tip|orderbox"
msgid "Select order in which pages are to be printed."
msgstr ""
#. QG59F
-#: vcl/uiconfig/ui/printdialog.ui:1273
+#: vcl/uiconfig/ui/printdialog.ui:1276
msgctxt "printdialog|bordercb"
msgid "Draw a border around each page"
msgstr "Dibuxar un berbesu alredor de cada páxina"
#. 8aAGu
-#: vcl/uiconfig/ui/printdialog.ui:1282
+#: vcl/uiconfig/ui/printdialog.ui:1285
msgctxt "printdialog|extended_tip|bordercb"
msgid "Check to draw a border around each page."
msgstr ""
#. Yo4xV
-#: vcl/uiconfig/ui/printdialog.ui:1294
+#: vcl/uiconfig/ui/printdialog.ui:1297
msgctxt "printdialog|brochure"
msgid "Brochure"
msgstr "Folletu"
#. 3zcKq
-#: vcl/uiconfig/ui/printdialog.ui:1304
+#: vcl/uiconfig/ui/printdialog.ui:1307
msgctxt "printdialog|extended_tip|brochure"
msgid "Select to print the document in brochure format."
msgstr ""
#. JMA7A
-#: vcl/uiconfig/ui/printdialog.ui:1327
+#: vcl/uiconfig/ui/printdialog.ui:1330
msgctxt "printdialog|collationpreview"
msgid "Collation preview"
msgstr ""
#. dePkB
-#: vcl/uiconfig/ui/printdialog.ui:1332
+#: vcl/uiconfig/ui/printdialog.ui:1335
msgctxt "printdialog|extended_tip|orderpreview"
msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look."
msgstr ""
#. fCjdq
-#: vcl/uiconfig/ui/printdialog.ui:1354
+#: vcl/uiconfig/ui/printdialog.ui:1357
msgctxt "printdialog|layoutexpander"
msgid "M_ore"
msgstr ""
#. rCBA5
-#: vcl/uiconfig/ui/printdialog.ui:1370